/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:       #D90B2B;
  --red-bright:#FF1A3C;
  --red-dark:  #A00820;
  --black:     #080808;
  --dark:      #111111;
  --dark2:     #1A1A1A;
  --dark3:     #242424;
  --white:     #F8F8F8;
  --gray:      #888;
  --gray-light:#B0B0B0;
  --font-jp:   'Noto Sans JP', sans-serif;
  --font-en:   'Inter', sans-serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-jp);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-out), width 0.3s, height 0.3s;
}
.cursor-ring {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}
body.cursor-hover .cursor-dot { width: 0; height: 0; }
body.cursor-hover .cursor-ring { width: 64px; height: 64px; border-color: var(--red-bright); }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  transition: background 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--font-en); font-weight: 800; font-size: 1.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--white) 0%, var(--red-bright) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  padding: 12px 28px; border-radius: 4px;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
  cursor: none;
}
.nav-cta:hover { background: var(--red-bright); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 48px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--black);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(217,11,43,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,11,43,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-glow {
  position: absolute; z-index: 0;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,11,43,0.15) 0%, transparent 70%);
  top: -200px; right: -200px;
  filter: blur(60px);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero-content { position: relative; z-index: 1; max-width: 1200px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red-bright); margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--red-bright);
}
.hero-headline {
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.hero-headline .line {
  display: block; overflow: hidden;
  white-space: nowrap;
}
.hero-headline .line span {
  white-space: nowrap;
  opacity: 0; transform: translateY(110%);
  animation: slideUp 1s var(--ease-out) forwards;
}
.hero-headline .line:nth-child(1) span { animation-delay: 0.5s; }
.hero-headline .line:nth-child(2) span { animation-delay: 0.65s; }
.hero-headline .accent { color: var(--red-bright); display: inline-block; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300; color: var(--gray-light);
  line-height: 1.8; max-width: 560px;
  margin-bottom: 56px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.3s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--red); color: var(--white);
  padding: 20px 40px; border-radius: 4px;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.02em;
  cursor: none; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red-bright);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gray-light); font-size: 0.9rem;
  cursor: none; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost .play-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover .play-icon { border-color: var(--red); background: var(--red); }
.hero-badge {
  position: absolute; bottom: 60px; right: 48px; z-index: 1;
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 1.6s forwards;
}
.hero-stat {
  text-align: center;
  padding: 20px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}
.hero-stat-num {
  font-family: var(--font-en); font-size: 2rem; font-weight: 800;
  color: var(--red-bright); line-height: 1;
  letter-spacing: -0.04em;
}
.hero-stat-label {
  font-size: 0.7rem; color: var(--gray); margin-top: 4px;
  letter-spacing: 0.05em;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-en); font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--gray); text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 2s forwards, bounce 2s 2.8s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0; overflow: hidden;
  background: var(--dark2);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 24px;
  padding: 0 40px;
  font-family: var(--font-en); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray);
}
.marquee-item .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 120px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red-bright); margin-bottom: 24px;
}
.section-label::before {
  content: ''; width: 24px; height: 1px; background: var(--red-bright);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.2; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem; color: var(--gray-light);
  line-height: 1.9; max-width: 600px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  background: var(--dark);
  padding: 120px 48px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 80px;
}
.problem-intro { grid-column: 1 / -1; }
.problem-cards { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 1px; }
.problem-card {
  display: flex; align-items: flex-start; gap: 32px;
  padding: 36px 40px;
  background: var(--dark2);
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}
.problem-card:hover {
  border-left-color: var(--red);
  background: var(--dark3);
}
.problem-num {
  font-family: var(--font-en); font-size: 3rem; font-weight: 900;
  color: rgba(217,11,43,0.2); line-height: 1;
  letter-spacing: -0.05em; min-width: 60px;
  transition: color 0.3s;
}
.problem-card:hover .problem-num { color: var(--red); }
.problem-text h3 {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 8px; line-height: 1.4;
}
.problem-text p {
  font-size: 0.9rem; color: var(--gray); line-height: 1.8;
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-section { padding: 120px 48px; }
.solution-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-bottom: 100px;
  align-items: center;
}
.solution-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.solution-circle {
  width: 360px; height: 360px; border-radius: 50%;
  border: 1px solid rgba(217,11,43,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: rotate 20s linear infinite;
}
.solution-circle::before {
  content: ''; position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px dashed rgba(217,11,43,0.3);
  animation: rotate 15s linear infinite reverse;
}
.solution-circle::after {
  content: 'ATHLETE\ATHOUGHT';
  font-family: var(--font-en); font-size: 0.6rem;
  font-weight: 700; letter-spacing: 0.3em;
  color: var(--gray);
}
.solution-core {
  position: absolute; text-align: center;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,11,43,0.15), rgba(217,11,43,0.03));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 1px solid rgba(217,11,43,0.3);
  animation: counter-rotate 20s linear infinite;
}
.solution-core-text {
  font-family: var(--font-en); font-size: 2rem; font-weight: 900;
  color: var(--red-bright); line-height: 1;
}
.solution-core-sub {
  font-size: 0.65rem; color: var(--gray); margin-top: 4px;
  letter-spacing: 0.1em;
}
.orbit-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 20px var(--red);
}
.orbit-dot:nth-child(1) { top: -5px; left: 50%; transform: translateX(-50%); }
.orbit-dot:nth-child(2) { bottom: -5px; left: 50%; transform: translateX(-50%); }
.orbit-dot:nth-child(3) { left: -5px; top: 50%; transform: translateY(-50%); }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes counter-rotate { to { transform: rotate(-360deg); } }
.solution-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 80px;
}
.pillar-card {
  padding: 40px 32px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover {
  border-color: rgba(217,11,43,0.3);
  transform: translateY(-4px);
}
.pillar-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: rgba(217,11,43,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.pillar-num {
  font-family: var(--font-en); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.2em;
  color: var(--red); margin-bottom: 12px;
}
.pillar-title {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 12px; line-height: 1.5;
}
.pillar-desc {
  font-size: 0.85rem; color: var(--gray);
  line-height: 1.8;
}

/* ============================================================
   PROFILE SECTION
   ============================================================ */
.profile-section {
  background: var(--dark);
  padding: 120px 48px;
}
.profile-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.profile-visual {
  position: relative;
}
.profile-img-wrap {
  position: relative;
  width: 100%; aspect-ratio: 3/4;
  border-radius: 8px; overflow: hidden;
  background: var(--dark3);
  display: flex; align-items: center; justify-content: center;
}
.profile-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.profile-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(217,11,43,0.15);
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
}
.profile-name-placeholder {
  font-size: 1.2rem; font-weight: 700; color: var(--gray-light);
}
.profile-img-label {
  font-size: 0.7rem; color: var(--gray); letter-spacing: 0.1em;
}
.profile-badge-wrap {
  position: absolute; bottom: -20px; right: -20px;
  padding: 20px 24px;
  background: var(--red);
  border-radius: 8px;
}
.profile-badge-num {
  font-family: var(--font-en); font-size: 2.5rem; font-weight: 900;
  line-height: 1; letter-spacing: -0.04em;
}
.profile-badge-text { font-size: 0.75rem; font-weight: 700; margin-top: 4px; }
.profile-title {
  font-size: 0.75rem; color: var(--red-bright);
  letter-spacing: 0.2em; text-transform: uppercase;
  font-family: var(--font-en); font-weight: 700;
  margin-bottom: 16px;
}
.profile-name {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.profile-name-en {
  font-family: var(--font-en); font-size: 1rem;
  color: var(--gray); margin-bottom: 32px; font-weight: 400;
}
.profile-desc {
  font-size: 0.95rem; color: var(--gray-light);
  line-height: 2; margin-bottom: 40px;
}
.profile-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; overflow: hidden;
  margin-bottom: 40px;
}
.profile-stat {
  padding: 24px 20px; background: var(--dark2);
  text-align: center;
}
.profile-stat-num {
  font-family: var(--font-en); font-size: 1.8rem;
  font-weight: 900; color: var(--red-bright);
  letter-spacing: -0.04em; line-height: 1;
}
.profile-stat-unit {
  font-size: 0.85rem; color: var(--gray-light);
}
.profile-stat-label {
  font-size: 0.72rem; color: var(--gray);
  margin-top: 4px;
}
.achievement-list {
  display: flex; flex-direction: column; gap: 12px;
}
.achievement-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; line-height: 1.6;
}
.achievement-item::before {
  content: ''; min-width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); margin-top: 8px;
}

/* ============================================================
   PROGRAM SECTION
   ============================================================ */
.program-section { padding: 120px 48px; }
.program-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 64px;
}
.program-card {
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  background: var(--dark);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.program-card:hover {
  border-color: rgba(217,11,43,0.3);
  transform: translateY(-4px);
}
.program-card-num {
  font-family: var(--font-en); font-size: 5rem; font-weight: 900;
  color: rgba(255,255,255,0.03); line-height: 1;
  letter-spacing: -0.05em; position: absolute; top: 24px; right: 32px;
}
.program-tag {
  display: inline-block;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(217,11,43,0.15);
  border: 1px solid rgba(217,11,43,0.3);
  font-size: 0.7rem; font-weight: 700;
  color: var(--red-bright); letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.program-card h3 {
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 16px; line-height: 1.4;
}
.program-card p {
  font-size: 0.9rem; color: var(--gray);
  line-height: 1.9;
}
.program-card-wide {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.program-card-wide .program-details {
  display: flex; flex-direction: column; gap: 16px;
}
.program-detail-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px; border: 1px solid rgba(255,255,255,0.06);
}
.program-detail-icon { min-width: 32px; }
.program-detail-text { font-size: 0.9rem; line-height: 1.5; }
.program-detail-label {
  font-size: 0.7rem; color: var(--red-bright);
  font-weight: 700; letter-spacing: 0.1em;
  display: block; margin-bottom: 2px;
}

/* ============================================================
   SESSION DETAILS
   ============================================================ */
.session-section {
  background: var(--dark); padding: 120px 48px;
}
.session-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: start; margin-top: 64px;
}
.session-info-list { display: flex; flex-direction: column; gap: 1px; }
.session-info-item {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 24px; padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.session-info-label {
  font-size: 0.78rem; font-weight: 700;
  color: var(--gray); letter-spacing: 0.05em;
  padding-top: 3px;
}
.session-info-value {
  font-size: 0.95rem; line-height: 1.7;
}
.session-info-value strong { color: var(--red-bright); }
.session-price-box {
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(217,11,43,0.1), rgba(217,11,43,0.02));
  border: 1px solid rgba(217,11,43,0.25);
  border-radius: 8px; text-align: center;
}
.session-price-label {
  font-size: 0.8rem; color: var(--gray); margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.session-price {
  font-family: var(--font-en); font-size: 4rem;
  font-weight: 900; color: var(--red-bright);
  letter-spacing: -0.05em; line-height: 1;
  margin-bottom: 8px;
}
.session-price-unit {
  font-size: 1.2rem; color: var(--white); margin-bottom: 24px;
}
.session-price-note {
  font-size: 0.85rem; color: var(--gray-light);
  line-height: 1.8; margin-bottom: 40px;
}
.session-seats {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 32px;
}
.seat-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
}
.seat-dot.empty { background: var(--dark3); border: 1px solid rgba(255,255,255,0.15); }
.session-seats-label {
  font-size: 0.78rem; color: var(--gray);
  margin-left: 8px;
}

/* ============================================================
   VOICE / TESTIMONIAL
   ============================================================ */
.voice-section { padding: 120px 48px; }
.voice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px;
}
.voice-card {
  padding: 36px 32px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.voice-card:hover {
  border-color: rgba(217,11,43,0.25);
  transform: translateY(-4px);
}
.voice-quote {
  font-size: 2rem; color: var(--red); line-height: 1;
  margin-bottom: 16px; font-family: var(--font-en);
}
.voice-text {
  font-size: 0.9rem; line-height: 1.9;
  color: var(--gray-light); margin-bottom: 24px;
}
.voice-author {
  display: flex; align-items: center; gap: 12px;
}
.voice-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(217,11,43,0.15);
  border: 1px solid rgba(217,11,43,0.3);
  display: flex; align-items: center; justify-content: center;
}
.voice-author-name {
  font-size: 0.85rem; font-weight: 700;
}
.voice-author-role {
  font-size: 0.75rem; color: var(--gray); margin-top: 2px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative; padding: 160px 48px;
  overflow: hidden;
  background: var(--dark);
}
.cta-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en); font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900; letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  white-space: nowrap; z-index: 0; user-select: none;
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 800px; margin: 0 auto;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(217,11,43,0.12), transparent);
  filter: blur(40px); z-index: 0;
}
.cta-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(217,11,43,0.15);
  border: 1px solid rgba(217,11,43,0.3);
  font-size: 0.78rem; font-weight: 700;
  color: var(--red-bright); letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.cta-label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-bright);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}
.cta-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.1; margin-bottom: 24px;
}
.cta-desc {
  font-size: 1rem; color: var(--gray-light);
  line-height: 1.9; margin-bottom: 48px;
}
.cta-btn-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--red); color: var(--white);
  padding: 24px 56px; border-radius: 4px;
  font-weight: 900; font-size: 1.15rem; letter-spacing: 0.02em;
  cursor: none; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  box-shadow: 0 0 0 rgba(217,11,43,0);
}
.btn-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red-bright);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn-cta:hover::before { transform: translateX(0); }
.btn-cta span, .btn-cta svg { position: relative; z-index: 1; }
.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 60px rgba(217,11,43,0.4);
}
.cta-note {
  font-size: 0.8rem; color: var(--gray);
  display: flex; align-items: center; gap: 8px;
}
.cta-note::before {
  content: ''; width: 16px; height: 1px; background: var(--gray);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 48px 40px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-brand .nav-logo { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.footer-tagline { font-size: 0.85rem; color: var(--gray); line-height: 1.8; }
.footer-heading {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem; color: var(--gray-light);
  cursor: none; transition: color 0.2s;
}
.footer-link:hover { color: var(--red-bright); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--gray);
}
.footer-credits { display: flex; gap: 24px; }
.footer-credit { display: flex; align-items: center; gap: 6px; }
.footer-credit-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider-line {
  height: 1px; background: rgba(255,255,255,0.06);
  margin: 0;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-red { color: var(--red-bright); }

/* ============================================================
   SOLUTION CHECKS
   ============================================================ */
.solution-checks {
  margin-top: 48px; display: flex; flex-direction: column; gap: 16px;
}
.solution-check {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; line-height: 1.6;
}

/* ============================================================
   10の思考法 SECTION
   ============================================================ */
.thinking-section {
  background: var(--dark); padding: 120px 48px;
}
.thinking-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; margin-top: 64px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; overflow: hidden;
}
.thinking-card {
  display: flex; flex-direction: column;
  padding: 32px 24px;
  background: var(--dark2);
  transition: background 0.3s;
  cursor: default;
  position: relative;
}
.thinking-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.thinking-card:hover::after { transform: scaleX(1); }
.thinking-card:hover { background: var(--dark3); }
.thinking-num {
  font-family: var(--font-en); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.2em;
  color: var(--red); margin-bottom: 16px;
}
.thinking-title {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 12px; line-height: 1.4;
}
.thinking-desc {
  font-size: 0.8rem; color: var(--gray);
  line-height: 1.8; flex: 1;
}

/* ============================================================
   SESSION INFO BOX (within program section)
   ============================================================ */
.session-info-box {
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; overflow: hidden;
}
.session-info-row {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 24px; padding: 20px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
}
.session-info-row:last-child { border-bottom: none; }
.session-info-label {
  font-size: 0.78rem; font-weight: 700;
  color: var(--gray); letter-spacing: 0.05em;
}
.session-info-value { font-size: 0.95rem; line-height: 1.7; }
.session-info-value strong { color: var(--white); }

/* ============================================================
   CASE STUDY SECTION
   ============================================================ */
.case-section { padding: 120px 48px; }
.case-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 64px;
}
.case-card {
  padding: 40px 36px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.case-card:hover {
  border-color: rgba(217,11,43,0.3);
  transform: translateY(-4px);
}
.case-industry {
  font-size: 0.75rem; font-weight: 700;
  color: var(--red-bright); letter-spacing: 0.1em;
  margin-bottom: 24px; text-transform: uppercase;
  font-family: var(--font-en);
}
.case-metrics {
  display: flex; gap: 32px; margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.case-metric {}
.case-metric-num {
  font-family: var(--font-en); font-size: 2.4rem;
  font-weight: 900; color: var(--red-bright);
  line-height: 1; letter-spacing: -0.04em;
}
.case-metric-unit { font-size: 1.1rem; }
.case-metric-label {
  font-size: 0.72rem; color: var(--gray);
  margin-top: 4px;
}
.case-comment {
  font-size: 0.88rem; color: var(--gray-light);
  line-height: 1.9; margin-bottom: 20px;
}
.case-author {
  font-size: 0.78rem; color: var(--gray);
  font-weight: 700;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--dark); padding: 120px 48px;
}
.faq-list {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  padding: 28px 0; background: none; border: none;
  color: var(--white); cursor: none;
  font-family: var(--font-jp); font-size: 1rem;
  font-weight: 700; text-align: left; line-height: 1.5;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--red-bright); }
.faq-icon {
  min-width: 20px; color: var(--gray);
  transition: transform 0.35s var(--ease-out), color 0.2s;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg); color: var(--red-bright);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 28px;
}
.faq-a p {
  font-size: 0.92rem; color: var(--gray-light);
  line-height: 1.9;
}

/* ============================================================
   APPLY FORM
   ============================================================ */
.apply-form {
  margin-top: 48px; max-width: 680px;
  margin-left: auto; margin-right: auto;
  text-align: left;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-label {
  font-size: 0.8rem; font-weight: 700;
  color: var(--gray-light); letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 8px;
}
.form-required {
  font-size: 0.65rem; padding: 2px 6px;
  background: rgba(217,11,43,0.2);
  border: 1px solid rgba(217,11,43,0.4);
  border-radius: 2px; color: var(--red-bright);
  letter-spacing: 0.05em;
}
.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 14px 16px;
  color: var(--white); font-family: var(--font-jp);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-input::placeholder { color: var(--gray); }
.form-input:focus {
  border-color: var(--red);
  background: rgba(217,11,43,0.05);
}
.form-radio-group {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 16px 0;
}
.form-radio {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; cursor: none;
  color: var(--gray-light);
  transition: color 0.2s;
}
.form-radio:hover { color: var(--white); }
.form-radio input[type="radio"] { display: none; }
.form-radio-mark {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  position: relative; flex-shrink: 0;
  transition: border-color 0.2s;
}
.form-radio input:checked + .form-radio-mark {
  border-color: var(--red);
}
.form-radio input:checked + .form-radio-mark::after {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
}
.btn-submit {
  width: 100%; display: flex; align-items: center;
  justify-content: center; gap: 16px;
  background: var(--red); color: var(--white);
  padding: 22px 40px; border: none; border-radius: 4px;
  font-family: var(--font-jp); font-weight: 900;
  font-size: 1.1rem; letter-spacing: 0.02em;
  cursor: none; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  margin-top: 8px;
}
.btn-submit::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red-bright);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn-submit:hover::before { transform: translateX(0); }
.btn-submit span, .btn-submit svg { position: relative; z-index: 1; }
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(217,11,43,0.4);
}
.form-note {
  font-size: 0.78rem; color: var(--gray);
  text-align: center; margin-top: 16px;
  line-height: 1.7;
}

/* ============================================================
   COUNTER ANIMATION
   ============================================================ */
.counter { display: inline-block; }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--red); z-index: 200;
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { padding: 140px 32px 80px; }
  .nav { padding: 20px 32px; }
  .nav.scrolled { padding: 14px 32px; }
  .problem-section, .solution-section, .profile-section,
  .thinking-section, .case-section, .faq-section,
  .cta-section, .program-section { padding: 80px 32px; }
  .solution-header { grid-template-columns: 1fr; gap: 48px; }
  .solution-circle { width: 280px; height: 280px; }
  .solution-circle::before { width: 220px; height: 220px; }
  .solution-core { width: 140px; height: 140px; }
  .thinking-grid { grid-template-columns: repeat(3, 1fr); }
  .profile-inner { grid-template-columns: 1fr; gap: 48px; }
  .program-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .hero { padding: 120px 24px 80px; }
  .hero-badge { position: relative; bottom: auto; right: auto; margin-top: 48px; flex-wrap: wrap; }
  .problem-section, .solution-section, .profile-section,
  .thinking-section, .case-section, .faq-section,
  .cta-section, .program-section { padding: 64px 24px; }
  .solution-pillars { grid-template-columns: 1fr; }
  .thinking-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-stats { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-credits { flex-direction: column; align-items: center; gap: 8px; }
  .hero-scroll { display: none; }
  .cursor { display: none; }
  body { cursor: auto; }
  .btn-primary, .btn-cta, .nav-cta, .btn-submit, .faq-q { cursor: pointer; }
  .form-radio { cursor: pointer; }
}
