@charset "UTF-8";
/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Brand colors ── */
  --navy: #004099; /* Primary (Blue) */
  --navy-dk: #023276; /* Regular – dark navy */
  --navy-xl: #001a44; /* Extra dark navy – hero bg etc. */
  --junior: #004FD9; /* Junior – links / hover */
  --red: #E60039; /* Secondary (Red) */
  --red-dk: #b8002d;
  --gold: #BF9C46; /* Gold tier */
  --gold-lt: #d4b46a;
  --gold-dk: #8a6f2e;
  --premium: #000000; /* Premium tier */
  --charcoal: #1A1A1A; /* Warm Black – body text */
  --char-mid: #2a2a2a;
  --char-lt: #3a3a3a;
  --white: #ffffff; /* Marinos White */
  --off-white:#F5F5F5; /* Light Gray – section bg */
  --gray-lt: #e8e8e8;
  --gray-md: #888888; /* Mid Gray – meta / labels */
  --text-body:#1A1A1A; /* Warm Black */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.12);
  --shadow-md: 0 6px 24px rgba(0,0,0,.18);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.28);
  --content-max: 1180px;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  background: var(--off-white);
  color: var(--text-body);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/bg2.png") center/cover no-repeat;
  z-index: -1;
}

/* ─── Typography helpers ─────────────────────────────── */
.label-xs {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.label-sm {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.num-large {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 700;
}

/* ─── Hero Thumbnail Strip ───────────────────────────── */
.hero-thumbs-strip {
  background: #111;
  border-bottom: 2px solid rgba(191, 156, 70, 0.25);
  padding: 2px 0 0;
  display: flex;
  gap: 1px;
  overflow: hidden;
}
.hero-thumbs-strip:has(> .hero-thumb:only-child) {
  display: none;
}

.hero-thumb {
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  border: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.hero-thumb.active {
  border-bottom-color: var(--gold);
}

.thumb-img {
  width: 100%;
  aspect-ratio: 1/1;
}

.th-1 {
  background: #c8c8c8 url("../images/kv_01.png") center/cover no-repeat;
}

.th-2 {
  background: #cacaca url("../images/kv_02.png") center/cover no-repeat;
}

.th-3 {
  background: #c6c6c6 url("../images/kv_03.png") center/cover no-repeat;
}

.th-4 {
  background: #cbcbcb url("../images/kv_04.png") center/cover no-repeat;
}

.th-5 {
  background: #c4c4c4 url("../images/kv_05.png") center/cover no-repeat;
}

.thumb-label {
  display: none;
}

.thumb-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-thumb.active .thumb-progress::after {
  animation: thumbProgress 4.8s linear forwards;
}

.thumb-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.thumb-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}

.hero-thumb.active .thumb-progress::after {
  animation: thumbProgress 4.8s linear forwards;
}

@keyframes thumbProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* ─── Sticky Nav ─────────────────────────────────────── */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #004098;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 52px;
}

/* ロゴ */
.snav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.snav-logo-img {
  height: 30px;
  width: auto;
  display: block;
}

/* PC リンク（SP では非表示） */
.snav-links {
  display: none;
}

/* 右エリア */
.snav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.snav-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(230, 0, 57, 0.4);
  transition: background 0.2s, transform 0.15s;
}

.snav-cta-btn:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
}

.snav-cta-btn:active {
  background: var(--red-dk);
  transform: scale(0.97);
}

/* ハンバーガーボタン */
.snav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.snav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.snav-burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.snav-burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.snav-burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* SP ドロワー */
.snav-drawer {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 190;
  background: #004098;
  border-bottom: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.25s ease, visibility 0.25s;
}

.snav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.snav-drawer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--gray-lt);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.15s, background 0.15s;
}

.snav-drawer a:last-child {
  border-bottom: none;
}

.snav-drawer a:active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.snav-drawer a svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.5;
}

.snav-drawer .snav-drawer-ext {
  background: #fff;
  color: var(--navy);
}
.snav-drawer .snav-drawer-ext:active {
  color: var(--navy-dk);
  background: rgba(255, 255, 255, 0.85);
}
.snav-drawer .snav-drawer-ext svg {
  opacity: 0.6;
}

/* ドロワー用オーバーレイ */
.snav-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.snav-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
}

/* ─── Hero Slides ─── */
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hs-1 {
  background: #c8c8c8 url("../images/sp_kv_01.png") center/cover no-repeat;
}

.hs-2 {
  background: #cacaca url("../images/kv_02.png") center/cover no-repeat;
}

.hs-3 {
  background: #c6c6c6 url("../images/kv_03.png") center/cover no-repeat;
}

.hs-4 {
  background: #cbcbcb url("../images/kv_04.png") center/cover no-repeat;
}

.hs-5 {
  background: #c4c4c4 url("../images/kv_05.png") center/cover no-repeat;
}

/* ─── Section wrapper ────────────────────────────────── */
section {
  scroll-margin-top: 52px;
}

#timeline {
  background: linear-gradient(109deg, rgba(0, 64, 153, 0.8) 1.32%, rgba(255, 255, 255, 0.8) 26.93%, rgba(255, 255, 255, 0.8) 78.13%, rgba(230, 0, 57, 0.8) 103.74%);
}

#categories {
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0.7) 75%, #FFF 100%);
  position: relative;
}
#categories::before, #categories::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: url("../images/line.png") repeat-x center;
  background-size: auto 100%;
  position: absolute;
  left: 0;
}
#categories::before {
  top: 0;
}
#categories::after {
  bottom: 0;
}

#benefits {
  background: rgba(0, 64, 153, 0.8);
}

#benefits .sec-title {
  color: #fff;
}

#benefits .sec-title em {
  color: var(--gold-lt);
}

#compare {
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.7) 37.02%, rgba(255, 255, 255, 0.7) 63.46%, #FFF 100%);
}

#how-to-join {
  background: rgba(0, 64, 153, 0.8);
}
#how-to-join .sec-title {
  color: #fff;
}
#how-to-join .sec-title em {
  color: var(--gold-lt);
}
#how-to-join .sec-body {
  color: #fff;
}

.join-info {
  margin: 32px auto 0;
  max-width: 80%;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.8;
}

.join-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.join-info-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.join-info-row dt {
  flex-shrink: 0;
  font-weight: 700;
  border: 1px solid #fff;
  padding: 2px 10px;
  height: -moz-fit-content;
  height: fit-content;
  white-space: nowrap;
}
.join-info-row dd p {
  margin-bottom: 6px;
}
.join-info-row dd p:last-child {
  margin-bottom: 0;
}

.join-section .btn-join-full {
  display: block;
  width: 80%;
  margin: 24px auto 0;
  text-align: center;
}

.join-info-note {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-top: 8px;
}

#join-other {
  background: #F4F4F4;
}

#faq {
  background: #FFF;
}

/* ─── Section vertical rhythm ────────────────────────── */
#timeline, #campaign, #categories, #benefits,
#compare, #how-to-join, #join-other, #faq {
  padding: 60px 0 80px;
}

/* ─── Section header ─────────────────────────────────── */
.sec-header {
  padding: 0 22px 0;
  margin-bottom: 20px;
  text-align: center;
}

.sec-eyebrow {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  display: block;
}

.sec-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy-dk);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.sec-title em {
  color: var(--gold-dk);
  font-style: normal;
}

.sec-body {
  margin-top: 10px;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.7;
}

/* ─── Timeline ───────────────────────────────────────── */
.timeline-wrap {
  padding: 0 22px;
}

.timeline-track {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.timeline-track::-webkit-scrollbar {
  display: none;
}

/* continuous line */
.timeline-track::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 55%, var(--navy) 100%);
  z-index: 0;
}

.tl-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 58px;
  position: relative;
  z-index: 1;
  padding: 0 4px;
}

.tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: var(--gray-md);
  margin-bottom: 10px;
  box-shadow: 0 0 0 2px var(--gray-md);
  flex-shrink: 0;
}

.tl-dot.active {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold), 0 0 12px rgba(191, 156, 70, 0.5);
}

.tl-dot.key {
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}

.tl-dot.red {
  background: var(--red);
  box-shadow: 0 0 0 2px var(--red);
}

.tl-month {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-align: center;
}

.tl-note {
  font-size: 1.2rem;
  color: #888;
  text-align: center;
  line-height: 1.3;
  margin-top: 2px;
  white-space: nowrap;
}

.timeline-legend {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.tl-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
  color: #555;
  font-weight: 600;
}

.tl-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ─── Tier Cards ─────────────────────────────────────── */
.tiers-wrap {
  display: none;
}

/* ── PREMIUM ─── */
.card-premium {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(191, 156, 70, 0.25);
  position: relative;
}

.card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt), var(--gold-dk));
}

.card-premium-header {
  padding: 26px 22px 20px;
  background: linear-gradient(135deg, #111 0%, var(--char-mid) 60%, #111 100%);
  position: relative;
  overflow: hidden;
}

.card-premium-header::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(191, 156, 70, 0.15), transparent 70%);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.tier-badge.premium {
  background: rgba(191, 156, 70, 0.15);
  color: var(--gold);
  border: 1px solid rgba(191, 156, 70, 0.3);
}

.tier-badge.gold {
  background: rgba(191, 156, 70, 0.12);
  color: #c8960a;
  border: 1px solid rgba(191, 156, 70, 0.25);
}

.tier-badge.regular {
  background: rgba(0, 64, 153, 0.12);
  color: var(--navy);
  border: 1px solid rgba(0, 64, 153, 0.25);
}

.tier-badge.junior {
  background: rgba(0, 64, 153, 0.08);
  color: #1a5cc8;
  border: 1px solid rgba(0, 64, 153, 0.2);
}

.tier-badge svg {
  width: 12px;
  height: 12px;
}

.tier-name-premium {
  font-family: "Georgia", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.tier-tagline {
  font-size: 1.2rem;
  color: var(--gray-md);
  line-height: 1.5;
}

.premium-price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 18px 0 0;
}

.price-from {
  font-size: 1.2rem;
  color: var(--gray-md);
  font-weight: 600;
  margin-bottom: 6px;
}

.price-num {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.price-unit {
  font-size: 1.4rem;
  color: var(--gray-md);
  font-weight: 600;
  margin-bottom: 8px;
}

.price-note {
  font-size: 1.2rem;
  color: #666;
  margin-top: 8px;
}

.card-body {
  padding: 20px 22px 22px;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.4rem;
  color: var(--gray-md);
  line-height: 1.4;
}

.benefit-item strong {
  color: var(--white);
}

.benefit-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.benefit-check.gold-check {
  background: rgba(191, 156, 70, 0.2);
}

.benefit-check svg {
  width: 10px;
  height: 10px;
}

.card-divider {
  height: 1px;
  background: rgba(191, 156, 70, 0.12);
  margin: 18px 0;
}

/* ── GOLD ─── */
.card-gold {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(191, 156, 70, 0.2);
}

.card-gold-header {
  background: linear-gradient(135deg, #2a1f00 0%, #3d2e00 40%, #2a1f00 100%);
  padding: 22px 20px 18px;
  position: relative;
  overflow: hidden;
}

.card-gold-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(191, 156, 70, 0.2), transparent 70%);
}

.tier-name-gold {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-lt);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.tier-tagline-gold {
  font-size: 1.2rem;
  color: rgba(191, 156, 70, 0.7);
}

.gold-price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 16px;
}

.price-num-gold {
  font-family: "Georgia", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}

.price-unit-gold {
  font-size: 1.2rem;
  color: rgba(191, 156, 70, 0.7);
  font-weight: 600;
  margin-bottom: 6px;
}

.card-gold-body {
  padding: 20px 20px 22px;
}

.benefit-item-gold {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.4rem;
  color: #444;
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-lt);
}

.benefit-item-gold:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.benefit-item-gold strong {
  color: var(--text-body);
}

.gold-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(191, 156, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gold-icon svg {
  width: 15px;
  height: 15px;
  color: var(--gold-dk);
}

/* ── REGULAR ─── */
.card-regular {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 64, 153, 0.12);
}

.card-regular-header {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, var(--navy-dk) 100%);
  padding: 20px 20px 18px;
}

.tier-name-regular {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.regular-price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 14px;
}

.price-num-regular {
  font-family: "Georgia", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.price-unit-regular {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-bottom: 6px;
}

.card-regular-body {
  padding: 18px 20px 20px;
}

/* ── JUNIOR ─── */
.card-junior {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 92, 200, 0.2);
}

.card-junior-header {
  background: linear-gradient(135deg, #1a5cc8 0%, #2468d4 60%, #1a5cc8 100%);
  padding: 18px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tier-name-junior {
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2px;
}

.junior-age-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.junior-price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 12px;
}

.price-num-junior {
  font-family: "Georgia", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.price-unit-junior {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 5px;
}

.card-junior-body {
  padding: 16px 20px 18px;
}

/* ── Shared card elements ─── */
.benefit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-lt);
  font-size: 1.4rem;
  color: #444;
}

.benefit-row:last-of-type {
  border-bottom: none;
}

.benefit-row strong {
  color: var(--text-body);
  display: block;
  font-size: 1.4rem;
}

.benefit-row small {
  color: #888;
  font-size: 1.2rem;
}

.check-navy {
  color: var(--navy);
  flex-shrink: 0;
}

.check-blue {
  color: #1a5cc8;
  flex-shrink: 0;
}

.check-gold {
  color: var(--gold-dk);
  flex-shrink: 0;
}

.btn-learn {
  gap: 6px;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: 16px;
}

.btn-learn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-learn:active {
  opacity: 0.85;
  transform: scale(0.98);
}

.btn-learn-gold {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--white);
}

.btn-learn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-learn-blue {
  background: #1a5cc8;
  color: var(--white);
}

.btn-learn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-join-full {
  gap: 8px;
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(230, 0, 57, 0.35);
  margin-top: 10px;
  transition: background 0.2s, transform 0.15s;
}

.btn-join-full:hover {
  background: #ff1a4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 0, 57, 0.45);
}

.btn-join-full:active {
  background: var(--red-dk);
  transform: scale(0.98);
}

.btn-join-full svg {
  width: 16px;
  height: 16px;
}

/* CTA：5/31受付開始まで無効（有効化時は body から class="cta-pre-open" を削除） */
body.cta-pre-open .snav-cta-btn,
body.cta-pre-open .btn-join-full,
body.cta-pre-open .fab-btn {
  background: #9a9a9a !important;
  color: var(--white) !important;
  box-shadow: none !important;
  pointer-events: none;
  cursor: not-allowed;
  transform: none !important;
}
body.cta-pre-open .snav-cta-btn:hover, body.cta-pre-open .snav-cta-btn:active,
body.cta-pre-open .btn-join-full:hover,
body.cta-pre-open .btn-join-full:active,
body.cta-pre-open .fab-btn:hover,
body.cta-pre-open .fab-btn:active {
  background: #9a9a9a !important;
  transform: none !important;
  box-shadow: none !important;
}
body.cta-pre-open .snav-cta-btn svg,
body.cta-pre-open .btn-join-full svg,
body.cta-pre-open .fab-btn svg {
  display: none;
}

/* ─── Benefits Section ───────────────────────────────── */
.benefits-section {
  padding: 0 16px;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-lt);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, opacity 0.2s;
}
.benefit-card[data-bid]:hover {
  opacity: 0.7;
}
.benefit-card[data-bid]:hover .benefit-card-img img {
  transform: scale(1.06);
}
.benefit-card[data-bid]:active {
  transform: scale(0.97);
}

.benefit-card-img {
  /* 高さは画像の自然比率に従う */
  overflow: hidden;
}

.benefit-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.benefit-card-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.benefit-card-tag {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.benefit-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-dk);
  margin-bottom: 6px;
  line-height: 1.3;
}

.benefit-card-desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

.benefit-tier-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 12px;
}

.tier-pill {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.pill-p {
  background: #1A1A1A;
  color: #fff;
  border: 1px solid #1A1A1A;
}

.pill-g {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold-dk);
}

.pill-r {
  background: #838383;
  color: #fff;
  border: 1px solid #6e6e6e;
}

.pill-j {
  background: #004099;
  color: #fff;
  border: 1px solid #004099;
}

.btn-more {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: gap 0.15s;
  align-self: flex-start;
}

.btn-more:hover {
  gap: 8px;
}

.btn-more svg {
  width: 14px;
  height: 14px;
}

/* ─── How to Join ─────────────────────────────────────── */
.join-section {
  padding: 0;
}

.steps-slider-wrap {
  position: relative;
}

.steps-list {
  display: flex;
  flex-direction: row;
  gap: 16px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.steps-list::-webkit-scrollbar {
  display: none;
}
.steps-list {
  padding: 8px 16px;
}

.step-item {
  flex: 0 0 70%;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  padding: 0 16px 16px;
}

.steps-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.steps-dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}
.steps-dot.active {
  background: var(--red);
  width: 20px;
}

.step-imgwrap {
  aspect-ratio: 1/1;
  position: relative;
  background: #c8c8c8;
  overflow: hidden;
}
.step-imgwrap::after {
  content: "NO IMAGE";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
}
.step-imgwrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.step-contP {
  padding: 12px 12px 14px;
}

.step-iconP {
  display: inline-block;
  background: linear-gradient(125deg, var(--navy) 0%, #4694ff 100%);
  border-radius: 20px;
  padding: 4px 14px 2px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-dk);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

/* ─── Utility: txt-note ──────────────────────────── */
.txt-note {
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
}
.txt-note--light {
  color: #fff;
}

@media (min-width: 768px) {
  .txt-note {
    font-size: 1.6rem;
  }
}
/* ─── Early Campaign ─────────────────────────────── */
#campaign.campaign-wrap {
  background: rgba(0, 64, 153, 0.8);
  padding: 60px 16px 80px;
  overflow: hidden;
}

.sec-header--campaign .sec-title {
  color: var(--white);
}
.sec-header--campaign .sec-title em {
  color: var(--gold-lt);
}
.sec-header--campaign .sec-body {
  color: rgba(255, 255, 255, 0.9);
}

.campaign-inner {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}

.campaign-kv {
  position: relative;
  max-width: 860px;
  margin: 0 auto 24px;
}

.campaign-chara {
  position: absolute;
  height: auto;
  pointer-events: none;
}
.campaign-chara--left {
  left: -30px;
  top: -60px;
  width: 80px;
}
.campaign-chara--right {
  right: -20px;
  top: -60px;
  width: 70px;
}

.campaign-main-img {
  display: block;
  width: 100%;
}

.campaign-bonus {
  max-width: 640px;
  margin: 16px auto 28px;
  padding: 20px 20px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(191, 156, 70, 0.45);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.campaign-bonus-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 14px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--navy);
  background: rgba(191, 156, 70, 0.18);
  border: 1px solid var(--gold);
  border-radius: 999px;
}

.campaign-bonus-main {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.65;
  color: var(--navy-dk);
}
.campaign-bonus-main em {
  font-style: normal;
}

.campaign-bonus-date {
  color: var(--red);
  font-size: 1.9rem;
  font-weight: 900;
}

.campaign-bonus-highlight {
  color: var(--gold-dk);
  font-weight: 900;
}

.campaign-bonus-note {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-md);
}

.campaign-btn {
  max-width: 360px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  #campaign.campaign-wrap {
    padding: 80px 0 120px;
  }
  .campaign-chara--left {
    width: 200px;
    left: -80px;
    top: -150px;
  }
  .campaign-chara--right {
    width: 160px;
    right: -80px;
    top: -130px;
  }
  .campaign-bonus {
    margin: 24px auto 32px;
    padding: 24px 32px 22px;
  }
  .campaign-bonus-label {
    font-size: 1.3rem;
  }
  .campaign-bonus-main {
    font-size: 1.8rem;
  }
  .campaign-bonus-date {
    font-size: 2.1rem;
  }
  .campaign-bonus-note {
    font-size: 1.3rem;
  }
  .campaign-btn {
    max-width: 400px;
    margin-bottom: 0;
  }
}
/* ─── Join Other (インターネット以外の入会方法) ──────────── */
.join-other {
  background: #e4e4e4;
  padding: 0;
}

.join-other-lead {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 20px;
}

.join-other-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.join-other-item + .join-other-item {
  padding-top: 10px;
}

.join-other-quest {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 32px;
  padding: 5px 44px 5px 5px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.join-other-quest::-webkit-details-marker {
  display: none;
}
.join-other-quest::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
}

details[open] .join-other-quest::after {
  content: "−";
}

.join-other-item:nth-child(3) .join-other-quest {
  padding-left: 24px;
}

.join-other-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-other-answer {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  margin-top: 8px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.join-other-midashi {
  display: inline-block;
  font-weight: 700;
  font-size: 1.4rem;
  border-radius: 3px;
  padding: 4px 16px;
  margin-bottom: 6px;
  background: var(--navy-dk);
  color: var(--white);
}

.join-other-txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 10px;
}
.join-other-txt:last-child {
  margin-bottom: 0;
}

.join-other-doc-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 0 16px 8px;
}

.join-other-doc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 14px 24px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity 0.2s;
}
.join-other-doc-link:hover {
  opacity: 0.85;
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq-section {
  padding: 0 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

details.faq-item {
  border-bottom: 1px solid var(--gray-lt);
  overflow: hidden;
}

details.faq-item:first-child {
  border-top: 1px solid var(--gray-lt);
}

summary.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dk);
  cursor: pointer;
  list-style: none;
  gap: 12px;
  -webkit-tap-highlight-color: transparent;
}

summary.faq-q::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  color: var(--navy);
}

details[open] .faq-icon {
  background: var(--navy);
  transform: rotate(45deg);
}

details[open] .faq-icon svg {
  color: var(--white);
}

.faq-a {
  padding: 0 4px 16px;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.7;
}

/* ── Bottom CTA (Appeal) ── */
.bottom-cta {
  position: relative;
  overflow: hidden;
  background: rgba(0, 64, 153, 0.7);
  padding: 40px 0;
}

.bottom-cta-content {
  position: relative;
  text-align: center;
  padding: 0;
}

.bottom-cta-content > * {
  position: relative;
  z-index: 1;
}

.appeal-logo {
  display: block;
  width: 160px;
  height: auto;
  margin: 0 auto 24px;
}

.btn-mascot-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  margin: 0 auto;
}

.bottom-mascot {
  display: block;
  width: 240px;
  height: auto;
  position: relative;
  bottom: -25px;
  z-index: 0;
  margin-bottom: 0;
}

.bottom-cta .btn-join-full {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Footer ── */
footer {
  padding: 70px 0;
  text-align: center;
  color: var(--white);
  background: var(--navy-dk);
}

.footer-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-logo {
  margin: 0 0 0;
}
.footer-logo a {
  display: inline-block;
}
.footer-logo img {
  width: 148px;
  height: auto;
}

.footer-sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
}
.footer-sns dt {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer-sns dd {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  margin: 0;
}
.footer-sns dd a {
  display: inline-block;
}
.footer-sns dd a img {
  width: 22px;
  height: auto;
  display: block;
}

.footer-nav-ul {
  list-style: none;
  border-top: 1px solid #6283BD;
  margin: 0 0 30px;
  padding: 0;
  text-align: left;
}
.footer-nav-ul li {
  border-bottom: 1px solid #6283BD;
}
.footer-nav-ul li a {
  display: flex;
  align-items: center;
  min-height: 66px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0 9.5rem 0 3.5rem;
  text-decoration: none;
  background: url("../images/arrow_ft.svg") no-repeat calc(100% - 35px) 50%;
}
.footer-nav-ul li a:hover {
  opacity: 0.8;
}
.footer-nav-ul .footer-nav-group {
  display: flex;
  flex-wrap: wrap;
}
.footer-nav-ul .footer-nav-group a {
  flex: 1 1 auto;
}

.footer-copy {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0;
}

/* ── FAB (キャラクターカード型) ── */
/* ── FAB (SP: 下部固定バー) ── */
.fab-join {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: rgba(0, 64, 153, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.fab-join.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.fab-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 12px;
}

.fab-chara {
  position: absolute;
  top: -40px;
  left: 10px;
  width: 90px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.fab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  background: var(--red);
  color: var(--white);
  border-radius: 20px;
  padding: 12px 10px 11px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(230, 0, 57, 0.4);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.fab-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.fab-btn:hover {
  background: #ff1a4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 0, 57, 0.6);
}
.fab-btn:active {
  background: var(--red-dk);
  transform: scale(0.95);
}

/* ─── Comparison Table ───────────────────────────────── */
.compare-section {
  padding: 0 16px;
}

.compare-section .btn-join-full {
  display: block;
  width: 100%;
  margin-top: 24px;
  text-align: center;
}

.check-yes {
  color: var(--navy);
  font-size: 1.4rem;
}

.check-gold-yes {
  color: var(--gold-dk);
  font-size: 1.4rem;
  font-weight: 900;
}

.check-no {
  color: var(--gray-md);
  font-size: 1.6rem;
}

/* ── Compare Table (参照サイト同等) ── */
.yokohama_lp_value {
  max-width: 100%;
  padding: 0 0 40px;
}

.col-white {
  background: #fff !important;
  border: none !important;
}

.col-gray-lt {
  background: var(--off-white) !important;
  color: #333333 !important;
}

.col-gray-md {
  background: var(--gray-lt) !important;
  color: #333333 !important;
}

.tbl_benefit_pc {
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  color: var(--charcoal);
}
.tbl_benefit_pc table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse; /* セル間1px */
}
.tbl_benefit_pc thead tr th {
  position: sticky;
  z-index: 10;
  padding: 20px 0;
  font-size: 1.4rem;
  text-align: center;
  border: 1px solid #fff;
  color: var(--white);
}
.tbl_benefit_pc thead tr:first-child th {
  top: 52px;
  z-index: 12;
}
.tbl_benefit_pc thead tr:nth-child(2) th {
  top: calc(52px + 3.875rem);
  z-index: 11;
}
.tbl_benefit_pc thead tr:nth-child(2) th:first-child {
  background: #DDDDDD;
  color: #003288;
}
.tbl_benefit_pc thead tr:nth-child(2) th:nth-child(2) {
  background: #000000;
}
.tbl_benefit_pc thead tr:nth-child(2) th:nth-child(3) {
  background: #BF9C46;
}
.tbl_benefit_pc thead tr:nth-child(2) th:nth-child(4) {
  background: #838383;
}
.tbl_benefit_pc thead tr:nth-child(2) th:nth-child(5) {
  background: #004099;
}
.tbl_benefit_pc thead tr:nth-child(2) th:nth-child(6) {
  background: var(--red);
}
.tbl_benefit_pc thead tr:nth-child(2) th:nth-child(7) {
  background: var(--red-dk);
}
.tbl_benefit_pc tbody tr th, .tbl_benefit_pc tbody tr td {
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  padding: 8px 14px;
}
.tbl_benefit_pc tbody tr th {
  font-size: 1.4rem;
  background: #BAC5CA;
  color: #000;
  border: 1px solid #fff;
  text-align: left;
  font-weight: normal;
}
.tbl_benefit_pc tbody tr th.titY {
  color: #fff;
  background: #758C96;
  padding: 0 5px;
  font-weight: bold;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.tbl_benefit_pc tbody tr th.titY.eventTh {
  background: #858585;
}
.tbl_benefit_pc tbody tr th.titY.otherTh {
  background: #51585B;
}
.tbl_benefit_pc tbody tr th.eventTh {
  background: #C2C2C2;
}
.tbl_benefit_pc tbody tr th.otherTh {
  background: #979B9D;
}
.tbl_benefit_pc tbody tr th span {
  font-size: 1rem;
  font-weight: normal;
  display: block;
}
.tbl_benefit_pc tbody tr td {
  background: #DDDDDD;
  border: 1px solid #fff;
  font-size: 1.4rem;
  text-align: center;
}
.tbl_benefit_pc tbody tr td span {
  font-size: 1.4rem;
  font-weight: normal;
  display: block;
}
.tbl_benefit_pc tbody tr td span.sprt {
  font-size: 1rem;
  display: inline-block;
}
.tbl_benefit_pc tbody tr td.col-p {
  color: #000000;
}
.tbl_benefit_pc tbody tr td.col-g {
  color: #BF9C46;
}
.tbl_benefit_pc tbody tr td.col-r {
  color: #838383;
}
.tbl_benefit_pc tbody tr td.col-j {
  color: #004099;
}
.tbl_benefit_pc tbody tr td.col-st,
.tbl_benefit_pc tbody tr td.col-sth {
  color: var(--red);
}

.tbl_benefit_sp {
  text-align: center;
  margin: 0 auto 10px;
  font-size: 1.4rem;
  color: var(--charcoal);
  height: 500px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in;
  /* グラデーション オーバーレイ */
}
.tbl_benefit_sp::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg, #fff 50%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.2s ease-in;
  z-index: 2;
  pointer-events: none;
}
.tbl_benefit_sp {
  /* 展開状態 */
}
.tbl_benefit_sp.active {
  overflow: visible;
  margin-bottom: 80px;
}
.tbl_benefit_sp.active::before {
  opacity: 0;
  visibility: hidden;
}
.tbl_benefit_sp.active .btn_more {
  bottom: -50px;
}
.tbl_benefit_sp {
  /* もっと見るボタン */
}
.tbl_benefit_sp .btn_more {
  position: absolute;
  color: #000;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  text-align: center;
  width: 100px;
  padding: 0 10px 5px;
  font-size: 1.4rem;
  border-bottom: 1px solid #000;
  z-index: 3;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.tbl_benefit_sp table {
  width: calc(100% - 1px);
  table-layout: fixed;
  border-collapse: collapse;
}
.tbl_benefit_sp table thead tr th {
  position: sticky;
  z-index: 2;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  color: var(--white);
  padding: 10px 2px;
  line-height: 1.3;
  border: 1px solid #fff;
}
.tbl_benefit_sp table thead tr:first-child th {
  top: 0;
  z-index: 12;
}
.tbl_benefit_sp table thead tr:first-child th:first-child {
  width: 10%;
  background: transparent;
  border: none;
}
.tbl_benefit_sp table thead tr:nth-child(2) th {
  top: 2.5rem;
  z-index: 11;
}
.tbl_benefit_sp table thead tr:nth-child(2) th:first-child {
  width: 10%;
  background: transparent;
  border: none;
}
.tbl_benefit_sp table thead tr:nth-child(2) th:nth-child(2) {
  background: #000000;
}
.tbl_benefit_sp table thead tr:nth-child(2) th:nth-child(3) {
  background: #BF9C46;
}
.tbl_benefit_sp table thead tr:nth-child(2) th:nth-child(4) {
  background: #838383;
}
.tbl_benefit_sp table thead tr:nth-child(2) th:nth-child(5) {
  background: #004099;
}
.tbl_benefit_sp table thead tr:nth-child(2) th:nth-child(6) {
  background: var(--red);
}
.tbl_benefit_sp table thead tr:nth-child(2) th:nth-child(7) {
  background: var(--red-dk);
  border-right: none;
}
.tbl_benefit_sp table.active thead tr:first-child th {
  top: 52px;
}
.tbl_benefit_sp table.active thead tr:nth-child(2) th {
  top: calc(52px + 2.5rem);
}
.tbl_benefit_sp table tbody tr th, .tbl_benefit_sp table tbody tr td {
  font-weight: 700;
  vertical-align: middle;
  padding: 8px 6px;
  border-bottom: 1px solid #fff;
}
.tbl_benefit_sp table tbody tr th {
  font-size: 1rem;
  background: #BAC5CA;
  color: #000;
  border-right: 1px solid #fff;
  text-align: left;
}
.tbl_benefit_sp table tbody tr th[colspan] {
  border-right: none;
}
.tbl_benefit_sp table tbody tr th.titY {
  width: 10%;
  text-align: center;
  color: #fff;
  background: #758C96;
  padding: 0 6px;
  border-right: 1px solid #fff;
}
.tbl_benefit_sp table tbody tr th.titY span {
  white-space: pre;
  writing-mode: vertical-rl;
}
.tbl_benefit_sp table tbody tr th.titY.eventTh {
  background: #858585;
}
.tbl_benefit_sp table tbody tr th.titY.otherTh {
  background: #51585B;
}
.tbl_benefit_sp table tbody tr th.eventTh {
  background: #C2C2C2;
}
.tbl_benefit_sp table tbody tr th.otherTh {
  background: #979B9D;
}
.tbl_benefit_sp table tbody tr th span {
  font-size: 1rem;
  font-weight: normal;
  display: block;
}
.tbl_benefit_sp table tbody tr td {
  background: #DDDDDD;
  font-size: 1.4rem;
  text-align: center;
  border-right: 1px solid #fff;
}
.tbl_benefit_sp table tbody tr td span.sprt {
  font-size: 0.9rem;
  font-weight: normal;
  display: block;
}
.tbl_benefit_sp table tbody tr td span:not(.sprt) {
  font-size: 1rem;
  font-weight: normal;
  display: block;
}
.tbl_benefit_sp table tbody tr td.col-p {
  color: #000000;
}
.tbl_benefit_sp table tbody tr td.col-g {
  color: #BF9C46;
}
.tbl_benefit_sp table tbody tr td.col-r {
  color: #838383;
}
.tbl_benefit_sp table tbody tr td.col-j {
  color: #004099;
}
.tbl_benefit_sp table tbody tr td.col-st,
.tbl_benefit_sp table tbody tr td.col-sth {
  color: var(--red);
}
.tbl_benefit_sp table tbody tr td.col-sth {
  border-right: none;
}

.tbl_attention {
  list-style: none;
  padding: 16px 0 0;
  text-align: center;
}
.tbl_attention li {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 4px;
}
.tbl_attention li::before {
  content: "";
}

.pc {
  display: none;
}

.sp {
  display: block;
}

@media (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .yokohama_lp_value {
    padding: 0 clamp(24px, 5vw, 60px) 60px;
  }
}
/* ─── Barlow Condensed helper ───────────────────────── */
.font-barlow {
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
}

/* ════════════════════════════════════════════════════════
   CATEGORY TAB UI
════════════════════════════════════════════════════════ */
.cat-tabs-wrap {
  padding: 0 16px;
}

/* Tab bar */
.cat-tab-bar {
  display: flex;
  gap: 6px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  padding-bottom: 16px;
}

.cat-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 6px 10px;
  cursor: pointer;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  gap: 5px;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  flex: 1;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
}
.cat-tab-btn:hover {
  opacity: 0.7;
}

.cat-tab-btn .tab-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}

.cat-tab-btn[data-tier=premium] {
  background: #111827;
  border: 1px solid #D4AF37;
}

.cat-tab-btn[data-tier=gold] {
  background: #B8920A;
}

.cat-tab-btn[data-tier=regular] {
  background: #838383;
}

.cat-tab-btn[data-tier=junior] {
  background: #004099;
}

.cat-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 10px solid transparent;
}

.cat-tab-btn[data-tier=premium].active::after {
  border-top-color: #111827;
}

.cat-tab-btn[data-tier=gold].active::after {
  border-top-color: #B8920A;
}

.cat-tab-btn[data-tier=regular].active::after {
  border-top-color: #838383;
}

.cat-tab-btn[data-tier=junior].active::after {
  border-top-color: #004099;
}

/* Panels wrapper */
.cat-panel {
  display: none;
  border-radius: 16px;
  overflow: hidden;
}

.cat-panel.active {
  display: block;
  padding: 24px 8%;
  animation: tabFadeIn 0.28s ease both;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── Premium Panel ── */
.cp-premium {
  background: linear-gradient(170deg, #000 0%, #303030 44.23%, #646464 100%);
  border: 2px solid #D4AF37;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
}

.cp-header {
  padding: 26px 22px 22px;
  position: relative;
  z-index: 1;
}

.cp-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 8px;
  display: block;
}

.cp-name-premium {
  font-family: "Barlow Condensed", "Georgia", sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold-lt);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.cp-tagline {
  font-size: 1.2rem;
  color: #888;
  line-height: 1.5;
}

.cp-price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 18px;
  margin-bottom: 2px;
}

.cp-price-from {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 7px;
}

.cp-price {
  font-family: "Barlow Condensed", "Georgia", sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

.cp-price-unit {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 8px;
}

.cp-price-note {
  font-size: 1.2rem;
  color: #555;
  margin-top: 4px;
}

.cp-body {
  padding: 0 22px 24px;
  position: relative;
  z-index: 1;
}

.cp-divider {
  height: 1px;
  background: rgba(191, 156, 70, 0.15);
  margin: 16px 0;
}

.cp-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1.4rem;
  color: #999;
  line-height: 1.4;
}

.cp-benefit:last-of-type {
  border-bottom: none;
}

.cp-benefit strong {
  color: var(--white);
  display: block;
  font-size: 1.4rem;
}

.cp-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(191, 156, 70, 0.15);
  border: 1px solid rgba(191, 156, 70, 0.3);
  margin-top: 1px;
}

.cp-check svg {
  width: 10px;
  height: 10px;
}

.cp-exclusive-tag {
  display: inline-block;
  background: rgba(191, 156, 70, 0.12);
  border: 1px solid rgba(191, 156, 70, 0.3);
  color: var(--gold-lt);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── Gold Panel ── */
.cp-gold {
  background: linear-gradient(180deg, #BF9C46 0%, #E7CB88 100%);
  border: 2px solid #8A6F2E;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
}

/* ── Regular Panel ── */
.cp-regular {
  background: #838383;
  border: 2px solid #838383;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
}

/* ── Junior Panel ── */
.cp-junior {
  background: #023276;
  border: 2px solid #023276;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
}

.cp-topbar-desc-note {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1.6;
}

.faq-doc-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 0 16px 8px;
}

.faq-doc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 14px 24px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity 0.2s;
}
.faq-doc-link:hover {
  opacity: 0.85;
}

.join-info-note a {
  color: #fff;
  text-decoration: underline;
}

.cp-age-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

/* shared panel CTA */
.cp-cta-area {
  padding: 0 22px 22px;
}

/* ════════════════════════════════════════════════════════
   SEASON DIAGRAM (Jリーグ移行図解)
════════════════════════════════════════════════════════ */
.sdi-section {
  padding: 0 16px;
}

.sdi-timeline-img {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.sdi-compare {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-lt);
  margin-bottom: 24px;
}

.sdi-period {
  max-width: 640px;
  margin: 0 auto;
  padding: 16px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0, 46, 110, 0.12);
}

.sdi-period-label {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 6px;
}

.sdi-period-date {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy-dk);
  line-height: 1.45;
}

@media (min-width: 768px) {
  .sdi-period {
    padding: 20px 28px;
  }
  .sdi-period-label {
    font-size: 1.6rem;
  }
  .sdi-period-date {
    font-size: 2.2rem;
  }
}
/* "旧制度" header strip */
.sdi-old-header {
  background: #e8e8e8;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sdi-old-badge {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: #999;
  color: var(--white);
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}

.sdi-old-label {
  font-size: 1.6rem;
  font-weight: 700;
  color: #888;
}

.sdi-old-sub {
  font-size: 1.6rem;
  color: #999;
  margin-left: auto;
  max-width: 100%;
}

/* "新制度" header strip */
.sdi-new-header {
  background: var(--navy-xl);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(191, 156, 70, 0.2);
}

.sdi-new-badge {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: var(--red);
  color: var(--white);
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}

.sdi-new-label {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-lt);
}

.sdi-new-sub {
  font-size: 1.6rem;
  color: #ccc;
  margin-left: auto;
}

/* Month bar track */
.sdi-track-wrap {
  padding: 12px 14px 14px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sdi-track-wrap::-webkit-scrollbar {
  display: none;
}

.sdi-track {
  display: flex;
  gap: 3px;
  min-width: -moz-max-content;
  min-width: max-content;
  align-items: flex-end;
}

/* individual month block */
.sdi-month {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.sdi-bar {
  width: 28px;
  border-radius: 4px 4px 0 0;
  position: relative;
}

.sdi-bar-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}

/* Old season bar colors */
.sdi-bar.old-active {
  background: #ccc;
  height: 32px;
}

.sdi-bar.old-break {
  background: #efefef;
  height: 12px;
  border-radius: 4px;
}

/* New season bar colors */
.sdi-bar.new-kickoff {
  background: var(--red);
  height: 48px;
  box-shadow: 0 0 8px rgba(230, 0, 57, 0.4);
  position: relative;
}

.sdi-bar.new-active {
  background: var(--gold);
  height: 40px;
}

.sdi-bar.new-break {
  background: #ddd;
  height: 12px;
  border-radius: 4px;
}

.sdi-bar.new-return {
  background: var(--navy);
  height: 38px;
}

.sdi-bar.new-finale {
  background: var(--navy-dk);
  height: 44px;
  position: relative;
}

/* Kickoff pulse badge */
.sdi-kickoff-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 2px 5px;
  border-radius: 3px;
  white-space: nowrap;
  animation: kickoffPulse 2s ease-in-out infinite;
}

.sdi-kickoff-badge::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--red);
  width: 0;
  height: 0;
}

@keyframes kickoffPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(230, 0, 57, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(230, 0, 57, 0);
  }
}
/* Finale badge */
.sdi-finale-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-dk);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 2px 5px;
  border-radius: 3px;
  white-space: nowrap;
}

.sdi-finale-badge::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--navy-dk);
  width: 0;
  height: 0;
}

.sdi-old-track .sdi-bar-label {
  color: #aaa;
}

.sdi-new-track .sdi-bar-label {
  color: #999;
  font-size: 1.4rem;
}

/* Legend */
.sdi-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--gray-lt);
  background: #fafafa;
}

.sdi-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.2rem;
  color: #666;
  font-weight: 600;
}

.sdi-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Year label band */
.sdi-year-band {
  display: flex;
  gap: 3px;
  padding: 6px 14px 0;
  align-items: center;
  margin-bottom: 6px;
}

.sdi-year-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.sdi-year-divider {
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

/* Winter break overlay */
.sdi-break-zone {
  position: relative;
  padding-top: 22px;
}

.sdi-break-zone::before {
  content: "冬季休止";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: 700;
  color: #aaa;
  white-space: nowrap;
  background: var(--white);
  padding: 0 4px;
}

/* ════════════════════════════════════════════════════════
   EARLY CAMPAIGN SECTION
════════════════════════════════════════════════════════ */
.campaign-section {
  padding: 0 16px;
}

.campaign-copy {
  text-align: center;
  padding: 0 8px 24px;
}

.campaign-copy-main {
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy-dk);
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 6px;
}

.campaign-copy-main em {
  color: var(--red);
  font-style: normal;
}

.campaign-copy-sub {
  font-size: 1.2rem;
  color: #777;
  line-height: 1.5;
}

.campaign-img {
  display: block;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto 24px;
}

/* funnel container - each step wider, benefits larger */
.campaign-funnel {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* vertical connector line */
.campaign-funnel::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--red) 0%, var(--gold) 40%, var(--navy) 100%);
  z-index: 0;
}

.cp-step {
  display: flex;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

/* Step number bubble */
.cp-step-num {
  flex-shrink: 0;
  width: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cp-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.cp-step:nth-child(1) .cp-step-circle {
  background: var(--red);
  color: var(--white);
  border-color: var(--red-dk);
}

.cp-step:nth-child(2) .cp-step-circle {
  background: #c8640a;
  color: var(--white);
  border-color: #9e4e08;
}

.cp-step:nth-child(3) .cp-step-circle {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold-dk);
}

.cp-step:nth-child(5) .cp-step-circle {
  background: var(--navy-dk);
  color: var(--white);
  border-color: #001030;
}

.cp-step:nth-child(7) .cp-step-circle {
  background: #d0d0d0;
  color: #555;
  border-color: #b8b8b8;
}

.cp-step:nth-child(9) .cp-step-circle {
  background: #d0d0d0;
  color: #555;
  border-color: #b8b8b8;
}

/* Card body - widens per step (funnel effect, reversed → first = widest) */
.cp-step-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-lt);
  position: relative;
  overflow: hidden;
}

.cp-step:nth-child(1) .cp-step-card {
  border-color: var(--red);
}

.cp-step:nth-child(3) .cp-step-card {
  border-color: #c8640a;
}

.cp-step:nth-child(5) .cp-step-card {
  border-color: var(--gold);
}

.cp-step:nth-child(7) .cp-step-card {
  border-color: var(--navy);
}

.cp-step:nth-child(9) .cp-step-card {
  border-color: var(--navy-dk);
}

/* glow on step 1 */
.cp-step:nth-child(1) .cp-step-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(230, 0, 57, 0.03));
}

.cp-step-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.cp-step-wave {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
}

.cp-step:nth-child(1) .cp-step-wave {
  background: rgba(230, 0, 57, 0.1);
  color: var(--red);
}

.cp-step:nth-child(2) .cp-step-wave {
  background: rgba(200, 100, 10, 0.1);
  color: #c8640a;
}

.cp-step:nth-child(3) .cp-step-wave {
  background: rgba(191, 156, 70, 0.15);
  color: var(--gold-dk);
}

.cp-step:nth-child(4) .cp-step-wave {
  background: rgba(0, 64, 153, 0.08);
  color: var(--navy);
}

.cp-step:nth-child(5) .cp-step-wave {
  background: rgba(0, 45, 110, 0.08);
  color: var(--navy-dk);
}

.cp-step-deadline {
  font-size: 1.2rem;
  font-weight: 700;
  color: #888;
  margin-left: auto;
}

.cp-step-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-dk);
  margin-bottom: 4px;
}

.cp-step-desc {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.5;
}

.cp-step-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.cp-step-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.cp-benefit-chip {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.chip-red {
  background: rgba(230, 0, 57, 0.1);
  color: var(--red);
}

.chip-orange {
  background: rgba(200, 100, 10, 0.1);
  color: #c8640a;
}

.chip-gold {
  background: rgba(191, 156, 70, 0.15);
  color: var(--gold-dk);
}

.chip-navy {
  background: rgba(0, 64, 153, 0.08);
  color: var(--navy);
}

/* campaign arrow between steps */
.cp-arrow {
  display: flex;
  align-items: center;
  padding: 2px 0 2px 50px;
  font-size: 1.2rem;
  color: #bbb;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cp-arrow::before {
  content: "▼";
  font-size: 1.2rem;
  margin-right: 4px;
  color: #ccc;
}

/* campaign bottom note */
.campaign-note {
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(230, 0, 57, 0.06), rgba(191, 156, 70, 0.06));
  border: 1px solid rgba(230, 0, 57, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.campaign-note-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.campaign-note-text {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

.campaign-note-text strong {
  color: var(--red);
}

/* ════════════════════════════════════════════════════════
   TIER TOP BAR (price + desc inside panel)
════════════════════════════════════════════════════════ */
/* ── Panel topbar (header) ── */
.cp-topbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 6px;
}

.cp-topbar-left {
  flex: 1;
  min-width: 0;
}

.cp-topbar-limit {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 6px;
}

.cp-topbar-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cp-topbar-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.cp-topbar-name {
  font-family: "Noto Serif JP", "Noto Sans JP", serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #D4AF37;
}

.cp-topbar-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.6;
}

.cp-topbar-right {
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.cp-topbar-right .cp-topbar-price-lbl {
  color: #fff;
}

.cp-topbar-right .cp-topbar-tax {
  color: #fff;
}

.cp-topbar-price-lbl {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 2px;
  text-align: left;
}

.cp-topbar-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.cp-topbar-tax {
  font-size: 1.2rem;
  font-weight: 600;
}

.cp-hr {
  height: 1px;
  border: none;
  margin: 14px 0;
}

.cp-topbar-desc {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 0;
  color: #fff;
}

/* Tier colors */
.cp-topbar-p .cp-topbar-limit {
  background: rgba(191, 156, 70, 0.18);
  color: var(--gold);
  border: 1px solid rgba(191, 156, 70, 0.3);
}

.cp-topbar-p .cp-topbar-icon,
.cp-topbar-p .cp-topbar-name {
  color: var(--gold-lt);
}

.cp-topbar-p .cp-topbar-en {
  color: var(--gold);
  opacity: 0.7;
}

.cp-topbar-p .cp-topbar-price-lbl {
  color: rgba(191, 156, 70, 0.8);
}

.cp-topbar-p .cp-topbar-price {
  color: var(--gold);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.cp-topbar-p .cp-topbar-tax {
  color: rgba(191, 156, 70, 0.8);
}

.cp-topbar-p .cp-hr {
  background: #BF9C46;
}

.cp-topbar-p .cp-topbar-desc {
  color: rgba(255, 255, 255, 0.75);
}

.cp-topbar-g .cp-topbar-icon,
.cp-topbar-g .cp-topbar-name {
  color: #3D2000;
  font-family: "Noto Sans JP", sans-serif;
}

.cp-topbar-g .cp-topbar-en {
  color: #3D2000;
  opacity: 0.6;
}

.cp-topbar-g .cp-topbar-price-lbl {
  color: rgba(61, 32, 0, 0.6);
}

.cp-topbar-g .cp-topbar-price {
  color: #3D2000;
}

.cp-topbar-g .cp-topbar-tax {
  color: rgba(61, 32, 0, 0.6);
}

.cp-topbar-g .cp-hr {
  background: #5C3A00;
}

.cp-topbar-g .cp-topbar-desc {
  color: rgba(0, 0, 0, 0.65);
}

.cp-topbar-r .cp-topbar-icon,
.cp-topbar-r .cp-topbar-name {
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
}

.cp-topbar-r .cp-topbar-en {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.cp-topbar-r .cp-topbar-price-lbl {
  color: #fff;
}

.cp-topbar-r .cp-topbar-price {
  color: var(--white);
}

.cp-topbar-r .cp-topbar-tax {
  color: #fff;
}

.cp-topbar-r .cp-hr {
  background: rgba(255, 255, 255, 0.25);
}

.cp-topbar-r .cp-topbar-desc {
  color: rgba(255, 255, 255, 0.85);
}

.cp-topbar-j .cp-topbar-icon,
.cp-topbar-j .cp-topbar-name {
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
}

.cp-topbar-j .cp-topbar-en {
  color: rgba(136, 170, 255, 0.7);
  opacity: 1;
}

.cp-topbar-j .cp-topbar-price-lbl {
  color: #fff;
}

.cp-topbar-j .cp-topbar-price {
  color: #fff;
}

.cp-topbar-j .cp-topbar-tax {
  color: #fff;
}

.cp-topbar-j .cp-hr {
  background: #88AAFF;
}

.cp-topbar-j .cp-topbar-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* ════════════════════════════════════════════════════════
   BENEFIT SECTION HEADER + GRID
════════════════════════════════════════════════════════ */
.bsec {
  padding: 24px 0;
}

.bsec + .bsec {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bsec-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.bsec-hd-line {
  flex: 1;
  height: 1px;
}

.bsec-hd-text {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.bsec-hd-p .bsec-hd-line {
  background: #BF9C46;
}

.bsec-hd-p .bsec-hd-text {
  color: var(--gold);
}

.bsec-hd-g .bsec-hd-line {
  background: #5C3A00;
}

.bsec-hd-g .bsec-hd-text {
  color: #3D2000;
}

.bsec-hd-r .bsec-hd-line {
  background: rgba(255, 255, 255, 0.35);
}

.bsec-hd-r .bsec-hd-text {
  color: #fff;
}

.bsec-hd-j .bsec-hd-line {
  background: #88AAFF;
}

.bsec-hd-j .bsec-hd-text {
  color: #fff;
}

.bsec-full {
  margin-bottom: 6px;
}

.bsec-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.bsec-row:last-child {
  margin-bottom: 0;
}

.bsec-note {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.5;
}

.bsec-note-p {
  color: rgba(191, 156, 70, 0.55);
}

.bsec-note-g {
  color: rgba(191, 156, 70, 0.45);
}

/* ── Benefit card ── */
.bc {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s, opacity 0.2s;
}
.bc:hover {
  opacity: 0.7;
}
.bc:hover .bc-imgwrap img {
  transform: scale(1.06);
}
.bc:active {
  transform: scale(0.97);
}

.bc-full {
  width: 100%;
}

.bc-half {
  flex: 1;
  min-width: 0;
}

.bc-imgwrap {
  width: 100%;
  overflow: hidden;
}

.bc-imgwrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.bc-imgwrap picture {
  display: block;
  width: 100%;
}

.bc-imgwrap picture img {
  width: 100%;
  height: auto;
  display: block;
}

.bc-imgwrap--badge {
  position: relative;
}

.bc-imgwrap--photo {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.bc-imgwrap--photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.bc-detail {
  padding: 10px 10px 8px;
  background: #fff;
  text-align: left;
  flex: 1;
}

.bc-detail-badge {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(0, 64, 153, 0.12);
  border-radius: 3px;
}

.bc-detail-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 6px;
}

.bc-detail-desc {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.55;
  margin-bottom: 4px;
}

.bc-detail-note {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  line-height: 1.4;
}

.bc:has(.bc-detail) .bc-foot {
  display: none;
}

.bc-early-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: #E60039;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  padding: 4px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.bc-coming-soon {
  width: 100%;
  aspect-ratio: 16/9;
  background: #c4c4c4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(80, 80, 80, 0.7);
}

.bc-coming-soon::before {
  content: "Coming Soon";
}

.bc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 9px 8px;
  gap: 4px;
  flex: 1;
}

.bc-lbl {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.bc-half .bc-lbl {
  font-size: 1.2rem;
}

.bc-half .bc-foot {
  flex-direction: column;
  align-items: flex-start;
}

.bc-mbtn {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  pointer-events: none;
}

.bc-p .bc-foot {
  background: #0c0c0c;
}

.bc-p .bc-lbl {
  color: rgba(255, 255, 255, 0.82);
}

.bc-p .bc-mbtn {
  background: rgba(191, 156, 70, 0.12);
  color: var(--gold);
  border: 1px solid rgba(191, 156, 70, 0.22);
  font-size: 1rem;
}

.bc-g .bc-foot {
  background: rgba(61, 32, 0, 0.12);
}

.bc-g .bc-lbl {
  color: #2A1800;
}

.bc-g .bc-mbtn {
  background: rgba(61, 32, 0, 0.1);
  color: #5C3A00;
  border: 1px solid rgba(61, 32, 0, 0.2);
}

.bc-r .bc-foot {
  background: #000e28;
}

.bc-r .bc-lbl {
  color: rgba(255, 255, 255, 0.82);
}

.bc-r .bc-mbtn {
  background: rgba(77, 136, 224, 0.1);
  color: #4d88e0;
  border: 1px solid rgba(77, 136, 224, 0.18);
}

.bc-j .bc-foot {
  background: #090f1c;
}

.bc-j .bc-lbl {
  color: rgba(255, 255, 255, 0.82);
}

.bc-j .bc-mbtn {
  background: rgba(136, 170, 255, 0.08);
  color: #88aaff;
  border: 1px solid rgba(136, 170, 255, 0.16);
}

.cp-panel-cta {
  padding: 4px 12px 18px;
  text-align: center;
}

/* ════════════════════════════════════════════════════════
   POPUP / BOTTOM SHEET
════════════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  backdrop-filter: blur(4px);
}

.popup-overlay.open {
  opacity: 1;
  visibility: visible;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
}

.popup-sheet {
  width: 100%;
  max-width: 520px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.68, 0, 1.15), opacity 0.25s ease;
}

.popup-overlay.open .popup-sheet {
  transform: translateY(0);
  opacity: 1;
}

.popup-drag-bar {
  display: none;
}

.popup-hero {
  /* height / aspect-ratio は JS で制御 */
  height: 200px; /* fallback（画像なし時） */
  max-height: 380px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}

.popup-hero-emoji {
  font-size: 7rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.popup-close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.popup-body {
  padding: 16px 22px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.popup-badge {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 8px;
}

.popup-badge-p {
  background: rgba(191, 156, 70, 0.15);
  color: var(--gold);
  border: 1px solid rgba(191, 156, 70, 0.3);
}

.popup-badge-g {
  background: rgba(200, 150, 10, 0.1);
  color: #c8960a;
  border: 1px solid rgba(200, 150, 10, 0.2);
}

.popup-badge-r {
  background: rgba(0, 64, 153, 0.1);
  color: var(--navy);
  border: 1px solid rgba(0, 64, 153, 0.2);
}

.popup-badge-j {
  background: rgba(26, 92, 200, 0.1);
  color: #1a5cc8;
  border: 1px solid rgba(26, 92, 200, 0.2);
}

.popup-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy-dk);
  line-height: 1.3;
  margin-bottom: 12px;
}

.popup-desc {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.8;
  white-space: pre-line;
}

.popup-note-txt {
  font-size: 1.2rem;
  color: #999;
  margin-top: 10px;
  line-height: 1.5;
  white-space: pre-line;
}

/* ─── Animations ─────────────────────────────────────── */
@keyframes fabCharaBounce {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  25% {
    transform: translateX(-50%) translateY(-10px) scale(1.04);
  }
  50% {
    transform: translateX(-50%) translateY(-5px) scale(1.02);
  }
  75% {
    transform: translateX(-50%) translateY(-12px) scale(1.05);
  }
  100% {
    transform: translateX(-50%) translateY(-8px) scale(1.03);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: fadeUp 0.5s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Tablet 768px / Desktop 1024px
════════════════════════════════════════════════════════ */
/* Inner content wrapper (used in footer) */
.inner {
  width: 100%;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}

/* ── SDI label/variant classes ── */
.sdi-new-track {
  background: var(--navy-xl);
}

.sdi-new-track .sdi-year-label {
  color: rgb(191, 156, 70);
}

.sdi-new-track .sdi-year-divider {
  background: rgba(191, 156, 70, 0.5);
}

.sdi-year-label--gap {
  margin-left: 6px;
}

.sdi-bar.sdi-dim-lo {
  opacity: 0.55;
}

.sdi-bar.sdi-dim-hi {
  opacity: 0.6;
}

.sdi-month--gap-md {
  margin-left: 6px;
}

.sdi-month--gap-sm {
  margin-left: 4px;
}

.sdi-bar-label.lbl-old-break {
  color: #ccc;
  font-size: 1.4rem;
}

.lbl-pre-season {
  color: #999;
}

.lbl-kickoff {
  color: var(--red);
  font-weight: 900;
}

.lbl-active {
  color: var(--gold-dk);
}

.lbl-winter {
  color: #666;
}

.lbl-return {
  color: #4d88e0;
}

.lbl-finale {
  color: var(--navy-dk);
  font-weight: 900;
}

.sdi-month--with-badge {
  position: relative;
  padding-top: 26px;
}

.sdi-bar--event {
  position: relative;
}

.sdi-old-event-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
}

.sdi-kickoff-badge--winter {
  background: #999;
  animation: none;
  font-size: 7px;
  top: -18px;
}

.sdi-legend-dot--red {
  background: var(--red);
}

.sdi-legend-dot--gold {
  background: var(--gold);
}

.sdi-legend-dot--navy {
  background: var(--navy);
}

.sdi-legend-dot--navy-dk {
  background: var(--navy-dk);
}

.sdi-legend-dot--break {
  background: #ddd;
}

/* ── Season alert ── */
.season-alert {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(230, 0, 57, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(230, 0, 57, 0.12);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.season-alert-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.season-alert-text {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

.season-alert strong {
  color: var(--red);
}

/* ── cp-panel-cta variants ── */
/* ── cp-topbar-limit junior variant ── */
.cp-topbar-limit--junior {
  background: rgba(136, 170, 255, 0.15);
  color: #88aaff;
  border: 1px solid rgba(136, 170, 255, 0.3);
}

/* ── btn-learn-outline variants ── */
.btn-learn-outline--gold {
  background: rgba(191, 156, 70, 0.08);
  color: var(--gold);
  border-color: rgba(191, 156, 70, 0.3);
}

.btn-learn-outline--junior {
  color: #1a5cc8;
  border-color: #1a5cc8;
}

.btn-learn-outline--mt {
  margin-top: 10px;
}

/* ── price-from variants ── */
.price-from--gold {
  color: rgba(191, 156, 70, 0.6);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.price-from--white {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

/* ── Tier card misc ── */
.gold-price-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tier-tagline--muted {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.2rem;
}

.tier-badge--mb {
  margin-bottom: 8px;
}

.junior-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.junior-price-from {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

/* ── btn-join-full margin variants ── */
.btn-join-full--mt20 {
  margin-top: 20px;
}

.btn-join-full--mt24 {
  margin-top: 24px;
}

/* ── Compare note ── */
.compare-note {
  font-size: 1.1rem;
  color: #888;
  margin-top: 10px;
  padding: 0 4px;
}

/* ── Tablet: 768px ── */
@media (min-width: 768px) {
  /* Hero: PC版は元のアスペクト比・画像に戻す */
  .hero {
    aspect-ratio: 1980/950;
  }
  .hs-1 {
    background: #c8c8c8 url("../images/kv_01.png") center/cover no-repeat;
  }
  /* Sticky Nav */
  /* Hero thumbs: PC版はラベル表示・固定幅 */
  .hero-thumbs-strip {
    gap: 8px;
    padding: 8px clamp(24px, 5vw, 60px);
    justify-content: center;
  }
  .hero-thumb {
    flex: 0 0 auto;
    width: 120px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
  }
  .hero-thumb.active {
    border-color: var(--gold);
    border-bottom-color: var(--gold);
  }
  .thumb-img {
    height: 60px;
  }
  .thumb-label {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    padding: 5px 6px;
    text-align: center;
    background: rgba(0, 0, 0, 0.65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-thumb.active .thumb-label {
    color: var(--gold-lt);
  }
  /* PC nav: リンクを中央表示、ハンバーガー非表示 */
  .sticky-nav {
    padding: 0 clamp(24px, 5vw, 60px);
    height: 60px;
  }
  .snav-logo-img {
    height: 38px;
  }
  .snav-links {
    display: flex;
    align-items: center;
    margin-left: auto;
    overflow-x: visible;
  }
  .snav-links a {
    flex: 0 0 auto;
    color: var(--gray-lt);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0 14px;
    height: 60px;
    line-height: 60px;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }
  .snav-links a:hover, .snav-links a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }
  .snav-links .snav-ext {
    background: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 4px 10px;
    border: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-radius: 20px;
    white-space: normal;
    box-sizing: border-box;
    max-height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
  }
  .snav-links .snav-ext:not(:last-child) {
    margin-right: 4px;
  }
  .snav-links .snav-ext:hover {
    color: #fff;
    opacity: 0.75;
    border-bottom-color: #fff;
  }
  .snav-links .snav-ext svg {
    width: 11px;
    height: 11px;
    margin-left: 4px;
    vertical-align: middle;
    color: #fff;
  }
  #nav-faq {
    margin-right: 24px;
  }
  .snav-right {
    gap: 12px;
    margin-left: 32px;
  }
  .snav-cta-btn {
    font-size: 1.3rem;
    padding: 9px 20px;
  }
  .snav-burger {
    display: none;
  }
  .snav-drawer, .snav-drawer-overlay {
    display: none;
  }
  /* Section headers */
  .sec-header {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px) 40px;
  }
  /* Section vertical rhythm — PC */
  #timeline, #campaign, #categories, #benefits,
  #compare, #how-to-join, #join-other, #faq {
    padding: 80px 0 120px;
  }
  .sec-title {
    font-size: 3.2rem;
  }
  .sec-body {
    font-size: 1.4rem;
  }
  /* Timeline */
  .sdi-section {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
  }
  .sdi-track-wrap {
    overflow-x: visible;
  }
  .sdi-track {
    min-width: 0;
  }
  .sdi-month {
    flex: 1;
  }
  .sdi-bar {
    width: 100%;
  }
  .sdi-bar.new-kickoff {
    height: 56px;
  }
  .sdi-bar.new-active {
    height: 46px;
  }
  .sdi-bar.new-finale {
    height: 52px;
  }
  .sdi-bar.old-active {
    height: 40px;
  }
  .sdi-bar-label {
    font-size: 1.2rem;
  }
  /* Category tabs */
  .cat-tabs-wrap {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
  }
  .cat-tab-bar {
    gap: 10px;
  }
  .cat-tab-btn {
    flex-direction: row;
    border-radius: 9999px;
    border: none;
    font-size: 1.4rem;
    padding: 14px 20px;
    gap: 8px;
    white-space: nowrap;
    text-align: left;
  }
  .cat-tab-btn .tab-icon svg {
    width: 20px;
    height: 20px;
  }
  /* Adjust card aspect ratios for wider screens */
  .bc-half .bc-imgwrap::before {
    padding-bottom: 55%;
  }
  .bc-full .bc-imgwrap::before {
    padding-bottom: 36%;
  }
  .bc-lbl {
    font-size: 1.6rem;
  }
  .bc-half .bc-lbl {
    font-size: 1.6rem;
  }
  .bc-foot {
    padding: 10px 12px 11px;
  }
  /* Campaign */
  .campaign-section {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
  }
  .campaign-copy-main {
    font-size: 2.4rem;
  }
  .campaign-img {
    margin-bottom: 40px;
  }
  .campaign-funnel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .campaign-funnel::before {
    display: none;
  }
  .cp-arrow {
    display: none;
  }
  .cp-step {
    margin-bottom: 0;
  }
  .cp-panel-cta a {
    max-width: 400px;
    display: block;
    margin: 0 auto;
  }
  .campaign-note {
    margin-top: 28px;
    padding: 18px 20px;
  }
  .campaign-note-text {
    font-size: 1.4rem;
  }
  /* Comparison */
  .compare-section {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
  }
  .yokohama_lp_value {
    padding: 0 0 60px;
  }
  /* Benefit cards */
  .benefits-section {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .benefit-card-title {
    font-size: 2rem;
  }
  .benefit-card-desc {
    font-size: 1.4rem;
  }
  /* How to join */
  .join-section {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
  }
  .steps-list {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    overflow-x: visible;
    padding: 0;
    scroll-snap-type: none;
    gap: 10px;
  }
  .step-item {
    flex: 1;
    min-width: 0;
    padding: 0;
  }
  .steps-dots {
    display: none;
  }
  .step-title {
    font-size: 1.4rem;
  }
  .step-desc {
    font-size: 1.3rem;
  }
  .step-iconP {
    font-size: 1.6rem;
  }
  /* Join Other */
  .join-other {
    padding: 0;
  }
  .join-other-lead {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  .join-other-item + .join-other-item {
    padding-top: 16px;
  }
  .join-other-quest {
    font-size: 1.8rem;
  }
  .join-other-answer {
    padding: 24px 30px;
  }
  /* FAQ */
  .faq-section {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
  }
  .faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
    align-items: start;
  }
  details.faq-item:nth-child(2) {
    border-top: 1px solid var(--gray-lt);
  }
  summary.faq-q {
    font-size: 1.4rem;
    padding: 18px 4px;
  }
  /* Bottom CTA */
  .bottom-cta {
    padding: 72px clamp(24px, 5vw, 60px);
  }
  .bottom-cta-content {
    max-width: var(--content-max);
    margin: 0 auto;
  }
  .bottom-cta-title {
    font-size: 3.2rem;
  }
  .bottom-cta-desc {
    font-size: 1.4rem;
  }
  .appeal-logo {
    width: 200px;
    margin-bottom: 32px;
  }
  .bottom-mascot {
    width: 280px;
    bottom: auto;
    margin-bottom: -30px;
  }
  .btn-join-full {
    display: block;
    max-width: 400px;
    margin: 40px auto 0;
    text-align: center;
  }
  .bottom-cta .btn-join-full {
    max-width: 440px;
    font-size: 1.6rem;
    padding: 18px;
  }
  /* Footer */
  footer {
    padding: 70px 0;
  }
  .footer-nav-ul li a {
    font-size: 1.8rem;
    padding: 0 9.5rem 0 3.5rem;
  }
  /* Popup */
  .popup-sheet {
    max-width: 600px;
  }
  .popup-hero {
    max-height: 480px;
  }
  .popup-hero-emoji {
    font-size: 9rem;
  }
  .popup-title {
    font-size: 2.4rem;
  }
  .popup-desc {
    font-size: 1.4rem;
  }
  /* FAB: slightly repositioned */
  /* FAB: PC */
  .fab-join {
    bottom: 28px;
    right: 24px;
    left: auto;
    width: 200px;
    background: transparent;
  }
  .fab-body {
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 0;
    gap: 0;
  }
  .fab-chara {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 160px;
    transition: transform 0.3s ease;
  }
  .fab-join:hover .fab-chara {
    animation: fabCharaBounce 0.6s ease forwards;
  }
  .fab-btn {
    border: 3px solid #fff;
    font-size: 1.4rem;
    width: 100%;
    flex: none;
    padding: 12px 10px 11px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }
  .fab-join:hover .fab-btn {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(230, 0, 57, 0.65);
    border-color: rgba(255, 255, 255, 0.7);
  }
  .fab-join {
    cursor: pointer;
  }
}
/* ── Season Ticket Banner ── */
#season-ticket-banner .stb-hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 16px;
}
#season-ticket-banner .stb-hero-inner picture,
#season-ticket-banner .stb-hero-inner img {
  width: 100%;
  height: auto;
  display: block;
}
#season-ticket-banner .stb-body {
  padding: 28px 20px 32px;
  text-align: center;
}
#season-ticket-banner .stb-note {
  font-size: 1.3rem;
  color: #555;
  margin: 0 0 20px;
}
#season-ticket-banner .stb-btn {
  display: block;
  margin: 0 auto;
  padding: 15px 20px;
  border: 2px solid var(--red);
  border-radius: 8px;
  color: var(--red);
  background: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
#season-ticket-banner .stb-btn:hover {
  background: var(--red);
  color: #fff;
}
#season-ticket-banner .stb-disclaimer {
  font-size: 1.1rem;
  color: #777;
  margin: 16px 0 0;
  line-height: 1.6;
}

/* ── Desktop: 1024px ── */
@media (min-width: 1024px) {
  /* Typography — PC scale */
  .sec-body {
    font-size: 1.6rem;
  }
  .sec-title {
    font-size: 3.2rem;
  }
  .cp-topbar {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }
  .cp-topbar-name {
    font-size: 4.8rem;
  }
  .cp-topbar-limit {
    font-size: 2rem;
  }
  .cp-topbar-en {
    font-size: 1.6rem;
  }
  .cp-topbar-price {
    font-size: 4.8rem;
  }
  .cp-topbar-desc {
    font-size: 1.6rem;
  }
  .bsec-hd-text {
    font-size: 2.4rem;
  }
  .campaign-copy-sub {
    font-size: 1.6rem;
  }
  .cp-step-desc {
    font-size: 1.6rem;
  }
  .cp-step-wave {
    font-size: 1.6rem;
  }
  .cp-benefit-chip {
    font-size: 1.4rem;
  }
  /* Category tab: 3-col benefit card rows */
  .bsec-row {
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .bc-half {
    flex: 0 0 calc(50% - 3px);
  }
  .bc-half .bc-imgwrap::before {
    padding-bottom: 48%;
  }
  .bc-full .bc-imgwrap::before {
    padding-bottom: 30%;
  }
  .cat-tab-btn {
    font-size: 1.5rem;
    padding: 16px 28px;
    gap: 10px;
  }
  /* Benefits: 2-col */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  /* Campaign: larger copy */
  .campaign-copy-main {
    font-size: 3.2rem;
  }
  .cp-step-title {
    font-size: 1.4rem;
  }
  /* Timeline: taller bars */
  .sdi-bar.new-kickoff {
    height: 68px;
  }
  .sdi-bar.new-active {
    height: 56px;
  }
  .sdi-bar.new-finale {
    height: 62px;
  }
  .sdi-bar.old-active {
    height: 48px;
  }
  .sdi-bar-label {
    font-size: 1.2rem;
  }
  /* Steps layout */
  .step-contP {
    padding: 14px 16px 18px;
  }
  .step-title {
    font-size: 1.5rem;
  }
  .step-desc {
    font-size: 1.4rem;
  }
  /* Join Other */
  .join-other {
    padding: 0;
  }
  .join-other-lead {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .join-other-quest {
    font-size: 2rem;
  }
  /* FAQs */
  summary.faq-q {
    font-size: 1.6rem;
  }
  /* Season Ticket Banner */
  #season-ticket-banner .stb-hero-inner {
    padding: 0 clamp(24px, 5vw, 60px);
  }
  #season-ticket-banner .stb-btn {
    max-width: 440px;
    font-size: 1.6rem;
    padding: 18px 30px;
  }
}/*# sourceMappingURL=yokohama_lp_style.css.map */