/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1b2a;
  --navy-mid: #162436;
  --navy-light: #1e3250;
  --gold: #c9a227;
  --gold-light: #e8c44a;
  --gold-pale: #f5e6b0;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e0e4ea;
  --gray-400: #9aa3b0;
  --gray-600: #5a6474;
  --gray-800: #2d3748;
  --danger: #e53e3e;
  --success: #38a169;
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Oswald', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 24px rgba(201,162,39,0.35);
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-jp);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-jp);
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { 
  background: linear-gradient(135deg, var(--gold-light) 0%, #f0d060 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201,162,39,0.5);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 18px 40px; font-size: 17px; }
.btn--xl { padding: 20px 40px; font-size: 18px; }
.btn--full { width: 100%; }

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,39,0.3);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  padding: 10px 0;
}
.sticky-cta.visible { transform: translateY(0); }

.sticky-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta__text {
  color: var(--white);
  font-size: 13px;
}
.sticky-cta__text strong {
  color: var(--gold-light);
  font-size: 16px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.92) 0%,
    rgba(13, 27, 42, 0.75) 50%,
    rgba(13, 27, 42, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 60px;
  box-sizing: border-box;
}

.hero__badge {
  margin-bottom: 20px;
}
.hero__badge-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: transparent;
}

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-family: var(--font-en);
}

.hero__title {
  font-family: var(--font-jp);
  font-size: clamp(26px, 6.5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.hero__sub {
  font-size: clamp(14px, 3.5vw, 20px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  font-weight: 500;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  max-width: 100%;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}
.tag--outline {
  border: 1.5px solid rgba(201,162,39,0.7);
  color: var(--gold-light);
  background: rgba(201,162,39,0.1);
}

.hero__monitor-badge {
  margin-bottom: 28px;
}
.monitor-badge {
  display: inline-flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.1));
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  gap: 2px;
}
.monitor-badge__label {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-en);
}
.monitor-badge__main {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}
.monitor-badge__main strong {
  color: var(--gold-light);
  font-size: 32px;
}
.monitor-badge__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.hero__cta { margin-bottom: 12px; }

.hero__note {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__note::before {
  content: '🔒';
  font-size: 12px;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 72px 0;
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--gray {
  background: var(--gray-100);
}

.section__eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section__eyebrow--light { color: var(--gold-light); }

.section__title {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 40px;
  color: var(--navy);
}
.section__title--light { color: var(--white); }

.highlight {
  color: var(--gold);
  position: relative;
}
.highlight-gold { color: var(--gold-light); }

/* ===== HOOK ===== */
.hook__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.hook__item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}
.hook__icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}
.hook__item p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.hook__item strong { color: var(--gold-light); }

.hook__answer {
  text-align: center;
  background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.1));
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px;
}
.hook__answer p {
  font-size: 18px;
  color: var(--white);
}
.hook__answer strong { color: var(--gold-light); }

/* ===== WHAT IS ===== */
.what-is__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.what-is__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.what-is__image { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.what-is__image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13,27,42,0.85));
  padding: 20px 16px 12px;
}
.what-is__image-label span {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.what-is__text p {
  margin-bottom: 16px;
  color: var(--gray-600);
  line-height: 1.8;
}
.what-is__text strong { color: var(--navy); }

.what-is__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  font-weight: 500;
}
.point-item__icon {
  color: var(--gold);
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== VALUES ===== */
.values__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.value-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-card__icon-wrap--blue { background: linear-gradient(135deg, #1e3a5f, #2d5a8e); color: var(--white); }
.value-card__icon-wrap--gold { background: linear-gradient(135deg, #8a6914, var(--gold)); color: var(--white); }
.value-card__icon-wrap--navy { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); }

.value-card__num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 4px;
}
.value-card__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.value-card__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.value-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.value-card__list li {
  font-size: 13px;
  color: var(--gray-800);
  padding-left: 16px;
  position: relative;
}
.value-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== FOR WHO ===== */
.for-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.for-who-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}
.for-who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.for-who-card__icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.for-who-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.for-who-card__desc {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== ATHLETE DIFF TABLE ===== */
.athlete-section__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.diff-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.diff-table__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,0.05);
}
.diff-table__col {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.diff-table__col--bad {
  color: rgba(255,255,255,0.5);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.diff-table__col--good {
  color: var(--gold-light);
}
.diff-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.diff-table__cell {
  padding: 14px 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.diff-table__cell--bad {
  color: rgba(255,255,255,0.5);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.diff-table__cell--good {
  color: var(--white);
  background: rgba(201,162,39,0.08);
}
.diff-icon--bad { color: #fc8181; font-size: 16px; }
.diff-icon--good { color: var(--gold-light); font-size: 16px; }

.athlete-quote {
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 20px 20px 24px;
}
.athlete-quote p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 12px;
}
.athlete-quote footer {
  font-size: 12px;
  color: var(--gold-light);
  font-style: normal;
}

/* ===== PRICING ===== */
.pricing__note {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: -28px;
  margin-bottom: 32px;
}
.pricing__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.pricing-card--best {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}
.pricing-card--best::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.pricing-card__best-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
}
.pricing-card__header {
  margin-bottom: 16px;
}
.pricing-card__type {
  font-size: 11px;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.pricing-card__name {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
}
.pricing-card__price {
  margin-bottom: 6px;
}
.pricing-card__amount {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
}
.pricing-card__unit {
  font-size: 13px;
  color: var(--gray-600);
  margin-left: 4px;
}
.pricing-card__per {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.pricing-card__validity {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 20px;
  padding: 6px 12px;
  background: var(--gray-100);
  border-radius: 6px;
  display: inline-block;
}
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.pricing-card__features li {
  font-size: 14px;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 8px;
}
.check { color: var(--gold); font-weight: 900; }

/* Student price */
.student-price {
  background: linear-gradient(135deg, #f0f7ff, #e8f4ff);
  border: 1.5px solid #90c4f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.student-price__inner {
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.student-price__icon { font-size: 36px; flex-shrink: 0; }
.student-price__title {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.student-price__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}
.student-price__desc strong { color: var(--navy); }
.student-price__examples {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.student-price__examples span {
  font-size: 14px;
  color: var(--gray-800);
}
.student-price__examples strong { color: var(--navy); font-weight: 900; }
.student-price__note {
  font-size: 11px;
  color: var(--gray-400);
}

/* ===== RULES ===== */
.rules__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rule-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.rule-item--warning {
  border-color: #fed7aa;
  background: #fffaf5;
}
.rule-item__icon { font-size: 28px; flex-shrink: 0; }
.rule-item__body { flex: 1; }
.rule-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.rule-item__desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
}
.rule-item__desc strong { color: var(--navy); }

/* ===== FLOW ===== */
.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow__step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.flow__step-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 40px;
}
.flow__step-icon { font-size: 28px; flex-shrink: 0; }
.flow__step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.flow__step-desc {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
}
.flow__arrow {
  text-align: center;
  font-size: 20px;
  color: var(--gold);
  padding: 4px 0;
  transform: rotate(90deg);
  line-height: 1;
}

/* ===== TRUST ===== */
.trust__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.trust__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.trust__image { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.trust__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px;
}
.trust-item__icon { font-size: 28px; flex-shrink: 0; }
.trust-item__body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.trust-item__body p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq__q {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}
details[open] .faq__q::after {
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 20px 18px;
  border-top: 1px solid var(--gray-200);
}
.faq__a p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  padding-top: 14px;
}

/* ===== MONITOR BANNER ===== */
.monitor-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
}
.monitor-banner__inner {
  text-align: center;
}
.monitor-banner__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.monitor-banner__title {
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}
.monitor-banner__num {
  color: var(--gold-light);
  font-family: var(--font-en);
  font-size: 1.3em;
}
.monitor-banner__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 20px;
}
.monitor-banner__urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 700;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ===== APPLY LEAD ===== */
.apply__lead {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f0f7ff, #e8f4ff);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.apply__lead strong { color: var(--navy); }

/* ===== FORM SECTION TITLE ===== */
.form-section-title {
  font-size: 13px;
  font-weight: 900;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 8px;
  margin: 28px 0 16px;
}

/* ===== FORM HINT ===== */
.form-hint {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 4px;
  line-height: 1.5;
}

/* ===== OPTIONAL BADGE ===== */
.optional {
  display: inline-block;
  background: #e8f4ff;
  color: #3b82f6;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ===== PAYMENT FLOW ===== */
.payment-flow {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  overflow: hidden;
}
.payment-flow__inner {
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.payment-flow__icon { font-size: 36px; flex-shrink: 0; }
.payment-flow__title {
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.payment-flow__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 8px;
}
.payment-flow__desc strong { color: var(--gold-light); }
.payment-flow__note {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

/* ===== APPLY FORM ===== */
.apply {
  background: var(--gray-50);
}
.apply__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-group {
  margin-bottom: 20px;
}
.form-group--check { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.required {
  display: inline-block;
  background: #fee2e2;
  color: var(--danger);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239aa3b0' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}
.form-link { color: var(--gold); text-decoration: underline; }

.apply-form__submit {
  margin-bottom: 12px;
}
.apply-form__note {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.7;
}

.apply-success {
  text-align: center;
  padding: 40px 20px;
}
.apply-success__icon { font-size: 56px; margin-bottom: 16px; }
.apply-success h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.apply-success p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 40px 0 32px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.footer__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: transparent;
}
.footer__name {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.footer__sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 24px;
}
.footer__nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--gold-light); }
.footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* ===== RESPONSIVE: TABLET & DESKTOP ===== */
@media (min-width: 640px) {
  .hook__list { grid-template-columns: 1fr 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr 1fr; }
  .for-who__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr 1fr 1fr; }
  .flow__steps {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0;
  }
  .flow__step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
  }
  .flow__arrow {
    transform: rotate(0deg);
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 24px;
    margin-top: 24px;
  }
  .what-is__body { flex-direction: row; align-items: flex-start; }
  .what-is__image-wrap { flex: 1; }
  .what-is__text { flex: 1; }
  .trust__body { flex-direction: row; align-items: flex-start; }
  .trust__image-wrap { flex: 0 0 45%; }
  .trust__items { flex: 1; }
  .athlete-section__body { flex-direction: row; }
  .athlete-section__text { flex: 1; }
  .athlete-section__quote { flex: 1; }
}

@media (min-width: 768px) {
  .section { padding: 96px 0; }
  .hero__content { padding: 120px 40px 80px; }
  .apply__form-wrap { padding: 48px 40px; }
}

/* ===== HERO EYEBROW EN ===== */
.hero__eyebrow-en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 12px;
  opacity: 0.85;
}

/* ===== HERO DESC ===== */
.hero__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===== HERO CTA GROUP ===== */
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ===== LAUNCH BANNER ===== */
.launch-banner {
  background: var(--gold);
  padding: 10px 0;
  text-align: center;
}
.launch-banner__text {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.launch-banner__text strong {
  font-family: var(--font-en);
  font-size: 14px;
}

/* ===== CONCEPT ===== */
.concept__body {
  max-width: 680px;
  margin: 0 auto;
}
.concept__text {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  margin-bottom: 20px;
}
.concept__highlight {
  background: rgba(201,162,39,0.15);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.concept__highlight p {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.7;
}
.concept__highlight strong { color: var(--gold-light); }

/* ===== SKILLS ===== */
.skills__lead {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
  margin-top: -24px;
}
.skills__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.skill-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  border: 1px solid rgba(201,162,39,0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.skill-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201,162,39,0.2);
}
.skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.skill-card--wide {
  grid-column: 1 / -1;
}
.skill-card__num {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
.skill-card__en {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.skill-card__ja {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.skill-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.skill-card__list li {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.skill-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.skills__note {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
}
.skills__note p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.feature-card__num {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.feature-card__icon {
  font-size: 28px;
  flex-shrink: 0;
}
.feature-card__title {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-card__desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===== FOR WHO NOTE ===== */
.for-who__note {
  margin-top: 20px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.for-who__note p {
  font-size: 13px;
  color: #856404;
  line-height: 1.6;
}

/* ===== SUPPORT SECTION ===== */
.support__body {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.support__text {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  margin-bottom: 20px;
}
.support__text--em {
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}
.support__ways {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.support-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}
.support-item__icon { font-size: 24px; flex-shrink: 0; }
.support__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 639px) {

  /* 横はみ出し根本対策 */
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* ヒーローセクション */
  .hero {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* 重要：max-width:100vwとpaddingの併用がはみ出しの原因のため、100%に変更 */
  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 72px 18px 44px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .hero__badge-img {
    width: 56px;
    height: 56px;
  }

  .hero__eyebrow-en {
    font-size: 10px;
    letter-spacing: 0.03em;
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.28;
    letter-spacing: -0.03em;
    max-width: 100%;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .hero__sub {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero__desc {
    font-size: 12px;
    line-height: 1.8;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero__note {
    max-width: 100%;
    overflow-wrap: break-word;
    flex-wrap: wrap;
  }

  /* タグ */
  .hero__tags {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .tag {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: keep-all;
    font-size: 10.5px;
    padding: 5px 8px;
    box-sizing: border-box;
  }

  /* モニターバッジ */
  .hero__monitor-badge {
    max-width: 100%;
  }
  .monitor-badge {
    max-width: 100%;
    box-sizing: border-box;
  }
  .monitor-badge__main strong {
    font-size: 26px;
  }

  /* CTAボタン */
  .hero__cta-group,
  .hero__cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }

  /* calc(100vw - 64px) = 画面幅 - 左号32pxずつの余白で確実に画面内に収める */
  .hero__cta-group .btn,
  .hero__cta .btn,
  a.btn.btn--gold,
  a.btn.btn--outline-light {
    display: flex;
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    min-width: 0;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 10px;
    font-size: 14px;
    white-space: normal;
    overflow-wrap: break-word;
    text-align: center;
  }

  .hero__cta-group .btn svg,
  .hero__cta .btn svg {
    flex-shrink: 0;
  }

  /* ローンチバナー */
  .launch-banner__text {
    font-size: 11px;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  /* スキルカード */
  .skills__grid {
    grid-template-columns: 1fr;
  }
  .skill-card--wide {
    grid-column: 1;
  }

  /* フィーチャーカード */
  .feature-card {
    flex-direction: column;
    gap: 8px;
  }

  /* 料金カード */
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  /* 申込フォーム */
  .apply__form-wrap {
    padding: 24px 16px;
  }

  /* サポートCTA */
  .support__cta {
    flex-direction: column;
  }
  .support__cta .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* ===== 430px対応：CTAボタンの右端見切れ追加修正 ===== */
@media (max-width: 480px) {
  .hero__cta-group,
  .hero__cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
  }

  .hero__cta-group .btn,
  .hero__cta .btn,
  a.btn.btn--gold,
  a.btn.btn--outline-light {
    width: calc(100vw - 72px);
    max-width: calc(100vw - 72px);
    min-width: 0;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    white-space: normal;
    overflow-wrap: break-word;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
