/* =============================================
   KOROMO Athletic Training — Baseball Conditioning LP
   Design: Matches Home page world — Clean, editorial,
           white-base, premium sports-performance
   Palette: White / Pale Gray / Navy (#1b3a4b) / Deep Green
   ============================================= */

/* ---------- Custom Properties (inherited from home.css) ---------- */
:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --pale-gray: #f5f5f3;
  --light-gray: #e8e8e6;
  --mid-gray: #b0aea8;
  --text-primary: #1e1e1e;
  --text-secondary: #555550;
  --text-light: #8a8a85;

  --navy: #1b3a4b;
  --navy-dark: #132d3c;
  --navy-light: #2a5a72;
  --green-deep: #2d5a3d;
  --green-accent: #3a7255;

  --line-color: #06c755;
  --instagram-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --cta-bg: var(--navy);

  --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --font-en: 'Inter', 'Noto Sans JP', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;

  --section-py: 120px;
  --section-py-m: 80px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-subtle: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 36px rgba(0,0,0,0.10);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --duration: .35s;
}


/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ja);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease); }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.pc-only { display: inline; }
.sp-only { display: none; }


/* ---------- Fade-In Animation (matches home) ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================
   HEADER (matches home style)
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--duration) var(--ease);
}
.site-header.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.06); }

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.logo-main {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--navy);
}
.logo-sub {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--text-light);
  text-transform: uppercase;
}

.header-nav { display: flex; }
.nav-menu { display: flex; gap: 28px; align-items: center; }
.nav-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: .3px;
  padding: 6px 0;
  position: relative;
}
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--navy);
  transition: width var(--duration) var(--ease);
}
.nav-item:hover { color: var(--navy); }
.nav-item:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.btn-reserve-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all var(--duration) var(--ease);
}
.btn-reserve-header:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav { padding: 40px 32px 60px; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav li { border-bottom: 1px solid var(--light-gray); }
.mobile-nav a {
  display: block;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}
.mobile-cta {
  display: flex; flex-direction: column; gap: 12px; margin-top: 32px;
}


/* =============================================
   BUTTONS (matches home style — rounded pill)
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 50px;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 4px 16px rgba(27,58,75,0.25);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(27,58,75,0.30);
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--instagram-gradient);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 50px;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 4px 16px rgba(220,39,67,0.2);
}
.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(220,39,67,0.30);
  filter: brightness(1.08);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 50px;
  transition: all var(--duration) var(--ease);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg { padding: 16px 40px; font-size: 15px; }

.btn-primary-sm, .btn-instagram-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--duration) var(--ease);
}
.btn-primary-sm {
  background: var(--navy);
  color: var(--white);
}
.btn-primary-sm:hover { background: var(--navy-light); }
.btn-instagram-sm {
  background: var(--instagram-gradient);
  color: var(--white);
}
.btn-instagram-sm:hover { filter: brightness(1.08); }


/* =============================================
   HERO (matches home style — image bg + overlay)
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1b3a4b 0%, #0a1a24 40%, #111 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,58,75,0.55) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.10) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.hero-text-wrap {
  max-width: 720px;
  animation: heroFadeIn 1.2s var(--ease) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.65;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.hero-subtitle {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .5px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
}
.hero-tag i { font-size: 11px; }

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: .3px;
}

/* Hero Scroll (matches home) */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-bar {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--white);
  animation: scrollDown 2s infinite var(--ease);
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}


/* =============================================
   STRENGTHS BAR (matches home)
   ============================================= */
.strengths-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 40px 0;
}
.strengths-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.strength-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.strength-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pale-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
  flex-shrink: 0;
}
.strength-text { display: flex; flex-direction: column; }
.strength-en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--text-light);
  text-transform: uppercase;
}
.strength-ja {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: .5px;
}
.strength-divider { width: 1px; height: 36px; background: var(--light-gray); }


/* =============================================
   SECTION LABEL (matches home — Cormorant + Noto)
   ============================================= */
.section-label {
  text-align: center;
  margin-bottom: 56px;
}
.label-en {
  display: block;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.label-ja {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
  line-height: 1.5;
}
.section-lead {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 48px;
}


/* =============================================
   PROBLEMS SECTION
   ============================================= */
.section-problems {
  padding: var(--section-py) 0;
  background: var(--white);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.problem-card {
  background: var(--pale-gray);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.problem-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  color: var(--navy);
}
.problem-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.problems-message {
  text-align: center;
  padding: 40px;
  background: var(--pale-gray);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--navy);
}
.problems-message p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-secondary);
}
.problems-message strong { color: var(--navy); font-weight: 600; }


/* =============================================
   MID CTA
   ============================================= */
.mid-cta {
  padding: 36px 0;
  background: var(--pale-gray);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.mid-cta-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: .5px;
}
.mid-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* =============================================
   BENEFITS SECTION
   ============================================= */
.section-benefits {
  padding: var(--section-py) 0;
  background: var(--pale-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.benefit-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 16px;
}
.benefit-card:hover .benefit-num { color: var(--navy); }

.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.5;
}
.benefit-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* last 2 items centering */
.benefits-grid .benefit-card:nth-child(4) { grid-column: 1 / 2; }
.benefits-grid .benefit-card:nth-child(5) { grid-column: 2 / 3; }


/* =============================================
   PROGRAM SECTION
   ============================================= */
.section-program {
  padding: var(--section-py) 0;
  background: var(--white);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.program-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.program-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.program-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--navy);
}
.program-num {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
}
.program-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
  padding: 4px 14px;
  border-radius: 50px;
}

.program-card-img {
  height: 180px;
  background: var(--pale-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-img-placeholder {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(27,58,75,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--navy);
}

.program-card-body { padding: 28px 24px 32px; }
.program-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 8px;
}
.program-target {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-gray);
}
.program-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}
.program-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.program-meta span {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.program-meta i { color: var(--navy); font-size: 12px; }

/* Program Flow */
.program-flow {
  background: var(--pale-gray);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.flow-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  min-width: 100px;
}
.flow-num {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--navy);
}
.flow-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.flow-arrow { color: var(--mid-gray); font-size: 14px; }


/* =============================================
   FEATURES SECTION
   ============================================= */
.section-features {
  padding: var(--section-py) 0;
  background: var(--pale-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  transition: all var(--duration) var(--ease);
}
.feature-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

/* center last card if 7 items */
.features-grid .feature-card:last-child:nth-child(3n+1) {
  grid-column: 2 / 3;
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--pale-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--navy);
  transition: all var(--duration) var(--ease);
}
.feature-card:hover .feature-icon {
  background: var(--navy);
  color: var(--white);
}
.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.5;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.85;
}


/* =============================================
   SCHEDULE SECTION
   ============================================= */
.section-schedule {
  padding: var(--section-py) 0;
  background: var(--white);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.schedule-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px;
  background: var(--pale-gray);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
  border: 1px solid transparent;
}
.schedule-row:hover {
  border-color: var(--light-gray);
  box-shadow: var(--shadow-subtle);
}

.schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  flex-shrink: 0;
}
.schedule-month {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 2px;
}
.schedule-day {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
}
.schedule-dow {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  color: var(--white);
  background: var(--navy);
  padding: 2px 12px;
  border-radius: 50px;
  letter-spacing: 2px;
}

.schedule-info { flex: 1; }
.schedule-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.schedule-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.schedule-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.schedule-meta span {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.schedule-meta i { color: var(--navy); font-size: 12px; }

.schedule-status { flex-shrink: 0; }
.status-open {
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--green-deep);
  background: rgba(45,90,61,0.08);
  border: 1px solid rgba(45,90,61,0.2);
  border-radius: 50px;
}

.schedule-venue {
  text-align: center;
}
.schedule-venue p {
  font-size: 14px;
  color: var(--text-secondary);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.schedule-venue i { color: var(--navy); margin-right: 4px; }
.venue-address {
  font-size: 13px;
  color: var(--text-light);
}


/* =============================================
   PRICING SECTION
   ============================================= */
.section-pricing {
  padding: var(--section-py) 0;
  background: var(--pale-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--duration) var(--ease);
}
.pricing-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.pricing-card-head {
  padding: 28px 20px 20px;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
  position: relative;
}
.pricing-card-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.4;
}
.pricing-sub { font-size: 13px; color: var(--text-light); }

.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--navy);
  background: rgba(27,58,75,0.08);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.badge-recommended {
  color: var(--white);
  background: var(--navy);
}

.pricing-card-recommended {
  border-color: var(--navy);
  position: relative;
  transform: scale(1.03);
  box-shadow: var(--shadow-card);
}
.pricing-card-recommended:hover { transform: scale(1.03) translateY(-4px); }

.pricing-card-full { border-color: var(--light-gray); }

.pricing-card-body {
  padding: 24px 20px 28px;
  text-align: center;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}
.yen {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}
.num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1;
}
.pricing-card-recommended .num { color: var(--navy); }
.unit {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 4px;
}
.pricing-tax { font-size: 11px; color: var(--text-light); margin-bottom: 12px; }

.pricing-save {
  display: inline-block;
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--pale-gray);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.pricing-save strong { color: var(--green-deep); font-weight: 700; }

.pricing-list { text-align: left; margin-bottom: 20px; }
.pricing-list li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 4px 0 4px 20px;
  position: relative;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
}

.pricing-card-body .btn-outline,
.pricing-card-body .btn-primary {
  width: 100%;
  justify-content: center;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pricing-note i { color: var(--navy); }


/* =============================================
   RECOMMEND SECTION
   ============================================= */
.section-recommend {
  padding: var(--section-py) 0;
  background: var(--white);
}

.recommend-list {
  max-width: 700px;
  margin: 0 auto;
}
.recommend-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}
.recommend-item:last-child { border-bottom: none; }
.recommend-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.recommend-check i { color: var(--white); font-size: 12px; }
.recommend-item p {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.8;
  font-weight: 500;
}


/* =============================================
   INSTRUCTOR SECTION
   ============================================= */
.section-instructor {
  padding: var(--section-py) 0;
  background: var(--pale-gray);
}

.instructor-card {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.instructor-img {
  flex-shrink: 0;
  width: 200px; height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-gray);
}
.instructor-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--mid-gray);
  background: var(--white);
}

.instructor-en {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--mid-gray);
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.instructor-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.instructor-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.instructor-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 16px;
}
.instructor-location {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.instructor-location i { color: var(--navy); }


/* =============================================
   NOTICE SECTION
   ============================================= */
.section-notice {
  padding: 80px 0;
  background: var(--white);
}
.notice-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 40px;
  background: var(--pale-gray);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--mid-gray);
}
.notice-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.notice-box h3 i { color: var(--text-light); }
.notice-box li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
  padding: 4px 0 4px 18px;
  position: relative;
}
.notice-box li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--text-light);
}


/* =============================================
   APPLY / CTA SECTION
   ============================================= */
.section-apply {
  padding: var(--section-py) 0;
  background: var(--pale-gray);
}
.apply-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.apply-inner .label-en { margin-bottom: 12px; }
.apply-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.apply-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 32px;
}
.apply-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.apply-note {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}


/* =============================================
   FAQ SECTION
   ============================================= */
.section-faq {
  padding: var(--section-py) 0;
  background: var(--white);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  line-height: 1.6;
  gap: 16px;
  transition: color var(--duration) var(--ease);
}
.faq-q:hover { color: var(--navy); }

.faq-icon {
  font-size: 14px;
  color: var(--mid-gray);
  transition: transform var(--duration) var(--ease);
  flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--navy); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .5s var(--ease);
}
.faq-item.active .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-a p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
}


/* =============================================
   FINAL CTA
   ============================================= */
.section-final-cta {
  padding: 100px 0;
  background: var(--navy-dark);
  text-align: center;
}
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta-inner .label-en {
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.final-cta-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.65;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.final-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  margin-bottom: 36px;
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.final-cta-buttons .btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}
.final-cta-buttons .btn-primary:hover {
  background: var(--off-white);
  box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}
.final-cta-buttons .btn-instagram {
  box-shadow: none;
}


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--text-primary);
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.4);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.footer-brand { margin-bottom: 20px; }
.footer-logo-main {
  display: block;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--white);
}
.footer-logo-sub {
  display: block;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.footer-info { margin-bottom: 20px; }
.footer-info p { font-size: 12px; line-height: 1.8; color: rgba(255,255,255,0.35); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color var(--duration) var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
}


/* =============================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pricing-card-recommended { transform: none; }
  .pricing-card-recommended:hover { transform: translateY(-4px); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid .feature-card:last-child:nth-child(3n+1) { grid-column: auto; }
}


/* =============================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
  :root { --section-py: 80px; }

  .pc-only { display: none; }
  .sp-only { display: inline; }

  .container { padding: 0 20px; }

  /* Header */
  .header-inner { padding: 0 20px; }
  .header-nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 100px 0 80px; }
  .hero-content { padding: 0 20px; }
  .hero-title { font-size: 24px; line-height: 1.7; margin-bottom: 16px; }
  .hero-subtitle { font-size: 14px; margin-bottom: 20px; }
  .hero-tags { gap: 8px; }
  .hero-tag { font-size: 11px; padding: 5px 12px; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-instagram { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  /* Strengths */
  .strengths-bar { padding: 28px 0; }
  .strengths-row { flex-direction: column; gap: 20px; }
  .strength-divider { width: 60px; height: 1px; }

  /* Problems */
  .problems-grid { grid-template-columns: 1fr; gap: 12px; }
  .problem-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 20px;
  }
  .problem-icon { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 16px; }
  .problems-message { padding: 28px 20px; text-align: left; }

  /* Mid CTA */
  .mid-cta-inner { flex-direction: column; gap: 16px; text-align: center; }
  .mid-cta-buttons { flex-direction: column; align-items: center; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefits-grid .benefit-card:nth-child(4),
  .benefits-grid .benefit-card:nth-child(5) { grid-column: auto; }

  /* Program */
  .program-grid { grid-template-columns: 1fr; gap: 20px; }
  .program-card-img { height: 140px; }
  .program-card-body { padding: 24px 20px 28px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 24px 20px;
  }
  .feature-icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 18px; }

  /* Schedule */
  .schedule-row { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .schedule-date { flex-direction: row; gap: 8px; align-items: baseline; min-width: auto; }
  .schedule-day { font-size: 32px; }
  .schedule-meta { flex-direction: column; gap: 4px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card-recommended { order: -1; }

  /* Flow */
  .flow-steps { flex-direction: column; gap: 8px; }
  .flow-step { flex-direction: row; gap: 12px; width: 100%; justify-content: center; padding: 14px 20px; }
  .flow-arrow { transform: rotate(90deg); }

  /* Instructor */
  .instructor-card { flex-direction: column; text-align: center; gap: 28px; }
  .instructor-img { width: 160px; height: 200px; margin: 0 auto; }
  .instructor-location { justify-content: center; }

  /* Apply */
  .apply-buttons { flex-direction: column; align-items: center; }
  .apply-buttons .btn-primary,
  .apply-buttons .btn-instagram { width: 100%; max-width: 320px; justify-content: center; }
  .apply-title { font-size: 24px; }

  /* Final CTA */
  .section-final-cta { padding: 72px 0; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-cta-buttons .btn-primary,
  .final-cta-buttons .btn-instagram { width: 100%; max-width: 320px; justify-content: center; }

  /* Notice */
  .notice-box { padding: 28px 20px; }

  /* FAQ */
  .faq-q { font-size: 14px; padding: 20px 0; }
  .faq-a p { font-size: 13px; }

  /* Section label */
  .label-ja { font-size: 24px; }
  .section-label { margin-bottom: 40px; }

  /* Footer */
  .footer-links { flex-direction: column; gap: 12px; align-items: center; }
}


/* =============================================
   RESPONSIVE — Small Mobile (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 21px; }
  .hero-content { padding: 0 16px; }
  .num { font-size: 30px; }
  .label-ja { font-size: 22px; }
  .section-lead { font-size: 14px; }
  .schedule-info h3 { font-size: 15px; }
  .program-card-body h3 { font-size: 17px; }
}