:root {
  --navy-900: #0c1929;
  --navy-800: #132238;
  --navy-700: #1a2f4a;
  --navy-600: #243d5e;
  --navy-500: #2e4f78;
  --slate-400: #8a9bb5;
  --slate-300: #a8b8ce;
  --slate-200: #c5d1e2;
  --slate-100: #e2e8f0;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --warm-white: #fafbfd;
  --accent-gold: #c9a84c;
  --accent-gold-light: #e0cc8a;
  --accent-blue: #4a90d9;
  --success: #3a9d6a;
  --text-primary: #1a2744;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(12,25,41,0.06);
  --shadow-md: 0 4px 16px rgba(12,25,41,0.08);
  --shadow-lg: 0 8px 32px rgba(12,25,41,0.12);
  --shadow-xl: 0 16px 48px rgba(12,25,41,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy-800);
}
.header-logo span {
  color: var(--accent-gold);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--navy-800);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.header-cta:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===========================
   FIRST VIEW (HERO)
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: var(--navy-900);
  overflow: hidden;
  padding-top: 72px;
}

/* Background gradient */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 35%, var(--navy-700) 60%, var(--navy-600) 100%);
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(12,25,41,0.2) 0%,
      transparent 15%,
      transparent 85%,
      rgba(12,25,41,0.3) 100%
    );
}

/* Subtle grid texture on top of overlay */
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}

/* Hero character images (left & right) — absolute positioned */
.hero-character {
  position: absolute;
  bottom: 80px;
  z-index: 3;
  pointer-events: none;
}
.hero-character img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
}
.hero-character-left {
  right: -500px;
  animation: slideInRight 1s ease-out 0.3s both;
}
.hero-character-right {
  right: auto;
  left: 550px;
  bottom: 0;
  animation: slideInLeft 1s ease-out 0.5s both;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-character-left img {
  max-height: none;
  max-width: none;
  height: 80vh;
  animation: floatY 4s ease-in-out 1.3s infinite;
}
.hero-character-right img {
  max-height: 900px;
  animation: floatY 3.5s ease-in-out 1.8s infinite;
}

.hero-text {
  max-width: 600px;
  text-align: left;
  position: relative;
  z-index: 4;
  flex-shrink: 0;
}

/* Mobile-only hero image (hidden on PC) */
.hero-mobile-img {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  color: var(--accent-gold-light);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  display: none;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--slate-300);
  font-weight: 400;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title {
  font-size: clamp(3rem, 7.5vw, 5.4rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 2px 20px rgba(12,25,41,0.5);
  letter-spacing: 0.04em;
}
.hero-title .highlight {
  color: var(--accent-gold-light);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold);
  opacity: 0.5;
  border-radius: 2px;
}

.hero-lead {
  font-size: 1.3rem;
  line-height: 2;
  color: var(--slate-200);
  max-width: 620px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  text-shadow: 0 1px 8px rgba(12,25,41,0.4);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 52px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b8963f 100%);
  color: var(--navy-900);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 42px;
  background: transparent;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}

/* ===========================
   SECTION COMMON
   =========================== */
.section {
  padding: 140px 0;
  overflow: hidden;
}
#curriculum {
  background: #f8f5f0;
}
.section-dark {
  background: var(--navy-900);
  color: var(--white);
}
.section-light {
  background: var(--off-white);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent-gold);
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 28px;
}
.section-desc {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 800px;
}
.section-dark .section-desc {
  color: var(--slate-300);
}

/* Nowrap utility — block span that prevents mid-line breaks (PC only) */
.nowrap-line {
  display: block;
  white-space: nowrap;
}

/* ===========================
   PAIN POINTS — IMAGE CAROUSEL
   =========================== */
.pain-carousel-wrapper {
  position: relative;
  margin-top: 60px;
  width: 88vw;
  margin-left: calc(-44vw + 50%);
  padding-left: 20px;
  padding-right: 0;
  overflow: hidden;
}
.pain-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--slate-300) transparent;
}
.pain-carousel::-webkit-scrollbar {
  height: 6px;
}
.pain-carousel::-webkit-scrollbar-track {
  background: transparent;
}
.pain-carousel::-webkit-scrollbar-thumb {
  background: var(--slate-300);
  border-radius: 3px;
}
.pain-slide {
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.pain-slide:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pain-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder styling — remove when images are set */
.pain-slide-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--slate-100) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.pain-slide-placeholder .slide-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-300);
  line-height: 1;
}

/* Scroll hint arrows */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy-700);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}
.carousel-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-right: 4px;
}

/* ===========================
   SOLUTION / VALUE
   =========================== */
.value-statement {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
  overflow: visible;
  padding-left: 120px;
}
.solution-bg-img {
  position: absolute;
  left: -200px;
  bottom: -20px;
  width: 360px;
  height: auto;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
.value-statement .section-label,
.value-statement .section-title,
.value-statement .value-emphasis {
  position: relative;
  z-index: 1;
}
.value-emphasis {
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.6;
  color: var(--white);
  margin-top: 32px;
}
.value-emphasis .gold {
  color: var(--accent-gold-light);
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  padding: 48px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-3px);
}
.value-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 20px;
}
.value-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}
.value-card-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--slate-300);
}

/* ===========================
   CURRICULUM / SCHEDULE
   =========================== */
.schedule-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 52px;
  margin-top: 60px;
}
.schedule-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 28px;
  border-radius: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.schedule-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--slate-300);
  border-radius: 0 4px 4px 0;
  transition: var(--transition);
}
.schedule-tab-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
  letter-spacing: 0.02em;
}
.schedule-tab-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.schedule-tab-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.schedule-tab-date::before {
  content: '📅';
  font-size: 0.85rem;
}
.schedule-tab.active {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
  box-shadow: 0 8px 24px rgba(12,25,41,0.18);
  transform: translateY(-2px);
}
.schedule-tab.active::before {
  background: var(--accent-gold);
  width: 5px;
}
.schedule-tab.active .schedule-tab-day {
  color: var(--accent-gold-light);
}
.schedule-tab.active .schedule-tab-title {
  color: var(--white);
}
.schedule-tab.active .schedule-tab-date {
  color: var(--slate-300);
}
.schedule-tab:hover:not(.active) {
  border-color: var(--navy-500);
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.schedule-tab:hover:not(.active)::before {
  background: var(--navy-500);
}

.schedule-panel {
  display: none;
}
.schedule-panel.active {
  display: block;
  background: #f3ede4;
  border: 1px solid #e5ddd0;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
}

.schedule-day-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--navy-800);
}
.schedule-day-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
}
.schedule-day-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-800);
}
.schedule-day-info p {
  font-size: 0.98rem;
  color: var(--text-muted);
}

.schedule-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 24px 28px;
  margin-bottom: 12px;
  background: #fdfbf8;
  border: 1px solid #e5ddd0;
  border-radius: var(--radius);
  align-items: start;
  transition: var(--transition);
}
.schedule-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--slate-200);
}
.schedule-time {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-700);
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}
.schedule-item-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.schedule-item-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-secondary);
}
.schedule-tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 4px;
  margin-right: 10px;
  letter-spacing: 0.04em;
}
.tag-lecture { background: #e8f0fe; color: #1a56db; }
.tag-workshop { background: #e6f6ed; color: #1a7f4b; }
.tag-break { background: #f5f5f5; color: #888; }
.tag-support { background: #fef3e2; color: #b45309; }

/* Hide mobile-only elements on desktop */
.schedule-dots { display: none; }

/* ===========================
   INSTRUCTORS
   =========================== */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.instructor-card {
  padding: 52px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.instructor-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.instructor-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  overflow: hidden;
}
.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instructor-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy-800);
}
.instructor-role {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.6;
}
.instructor-bio {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-secondary);
  text-align: left;
}
.instructor-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 20px;
  background: var(--off-white);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-700);
}

/* ===========================
   BENEFITS
   =========================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.benefit-item {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.benefit-item:hover {
  background: rgba(255,255,255,0.07);
}
.benefit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.benefit-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--slate-400);
}

.benefit-item.highlight {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.12);
  position: relative;
}
.benefit-item.highlight:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.6);
  transform: translateY(-2px);
}
.benefit-item.highlight::before {
  content: 'Special';
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b8963f 100%);
  color: var(--navy-900);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}
.benefit-item.highlight .benefit-num {
  color: var(--accent-gold-light);
}
.benefit-item.highlight .benefit-content h4 {
  color: var(--accent-gold-light);
}

/* ===========================
   PRICING
   =========================== */
.pricing-card {
  max-width: 720px;
  margin: 60px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.pricing-header {
  padding: 48px 52px 36px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  text-align: center;
  color: var(--white);
}
.pricing-badge {
  display: inline-block;
  padding: 8px 22px;
  background: var(--accent-gold);
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.pricing-original {
  font-size: 1.1rem;
  color: var(--slate-400);
  text-decoration: line-through;
  margin-bottom: 10px;
}
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
}
.pricing-price .yen {
  font-size: 1.6rem;
  font-weight: 500;
  vertical-align: top;
  margin-right: 4px;
}
.pricing-price .tax {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--slate-300);
  margin-left: 4px;
}
.pricing-body {
  padding: 40px 52px 52px;
}
.pricing-includes {
  list-style: none;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  font-size: 1.02rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--slate-100);
}
.pricing-includes li:last-child {
  border-bottom: none;
}
.pricing-check {
  color: var(--success);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-note {
  margin-top: 24px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 22px;
  margin-top: 28px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b8963f 100%);
  color: var(--navy-900);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

/* ===========================
   FAQ
   =========================== */
.faq-list {
  max-width: 880px;
  margin: 60px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  line-height: 1.6;
  font-family: 'Noto Sans JP', sans-serif;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--navy-600);
}
.faq-toggle {
  font-size: 1.6rem;
  color: var(--slate-400);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 1.02rem;
  line-height: 2;
  color: var(--text-secondary);
}

/* ===========================
   FINAL CTA
   =========================== */
.final-cta {
  padding: 140px 0;
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 400px 300px at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-content {
  position: relative;
  z-index: 2;
}
.final-cta-title {
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.5;
}
.final-cta-sub {
  font-size: 1.15rem;
  color: var(--slate-300);
  margin-bottom: 48px;
  line-height: 1.9;
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form {
  max-width: 680px;
  margin: 48px auto 0;
}
.contact-form-group {
  margin-bottom: 24px;
  text-align: left;
}
.contact-form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.contact-form-group .required {
  color: #e53e3e;
  font-size: 0.85rem;
}
.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-primary);
  transition: var(--transition);
  box-sizing: border-box;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(12,25,41,0.08);
}
.contact-form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-submit {
  display: block;
  width: 100%;
  padding: 18px;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b8963f 100%);
  color: var(--navy-900);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  padding: 56px 0;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-text {
  font-size: 0.88rem;
  color: var(--slate-400);
  line-height: 1.8;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  /* 430px基準のビューポートスケーリング: 画面幅に比例して全体がスケール */
  html {
    font-size: calc(16px * (100vw / 430));
  }

  /* === Global overrides === */
  .container {
    padding: 0 16px;
    max-width: 100%;
  }
  .header-inner {
    padding: 0 16px;
    height: 56px;
  }
  .header-cta {
    padding: 8px 12px;
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .section {
    padding: 60px 0;
  }
  .header-logo { font-size: 0.7rem; }

  /* === Hero === */
  .hero-content {
    padding: 20px 16px 60px;
    flex-direction: column;
  }
  .hero-text { max-width: 100%; text-align: center; }
  .hero-character { display: none; }
  .hero-badge { font-size: 0.85rem; padding: 8px 16px; }
  .hero-sub { font-size: 1.15rem; letter-spacing: 0.08em; margin-bottom: 0; margin-top: -8px; }
  .hero-text {
    max-width: 100%;
    position: relative;
    text-align: center;
  }
  .hero-mobile-img {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 120%;
    max-width: none;
    margin: 16px auto 0;
    margin-left: -18%;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
  }
  .hero-mobile-img-left {
    width: 100%;
    height: auto;
    display: block;
    margin-left: -5%;
  }
  .hero-mobile-img-right {
    position: absolute;
    right: -22%;
    bottom: -15%;
    width: 75%;
    height: auto;
    z-index: 1;
  }
  .hero-badge,
  .hero-sub,
  .hero-title,
  .hero-lead,
  .hero-cta-group {
    position: relative;
    z-index: 1;
  }
  .hero-title {
    font-size: clamp(2.2rem, 9.5vw, 3.2rem);
    margin-top: 10px;
  }
  .hero-title .highlight {
    display: inline-block;
  }
  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .hero-cta-group { flex-direction: column; }
  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1.05rem;
  }
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* === Pain carousel === */
  .pain-carousel-wrapper {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding-left: 16px;
    padding-right: 0;
  }
  .pain-slide { flex: 0 0 260px; }
  .carousel-hint { display: none; }
  .carousel-nav { display: none; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.1rem; }

  /* === Solution section === */
  #solution {
    overflow: visible;
  }
  .value-statement {
    padding-left: 0;
    overflow: visible;
    text-align: right;
    position: relative;
    margin-bottom: 40px;
    padding-top: 40px;
  }
  .solution-bg-img {
    position: absolute;
    left: -5px; /* 右に移動 (-20px -> -5px) */
    top: -70px;
    width: 170px;
    opacity: 1;
    z-index: 0;
  }

  .value-statement .section-title {
    text-align: left;
    width: 63%;
    margin-left: auto;
    padding-left: 20px; /* 右に移動 (5px -> 20px) */
    position: relative;
    z-index: 1;
    font-size: 1.45rem; /* さらにサイズアップ */
    line-height: 1.7;
  }
  .value-statement .section-title .nowrap-line {
    display: block;
    margin-bottom: 8px;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word;
  }
  /* Force specific line breaks for all internal spans on mobile */
  .value-statement .section-title .nowrap-line span {
    display: block;
  }
  .value-emphasis {
    font-size: clamp(1.1rem, 4.5vw, 1.3rem);
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 80px;
  }
  .value-cards { grid-template-columns: 1fr; gap: 16px; }
  .value-card { padding: 28px 20px; }

  /* === Text wrapping === */
  .nowrap-line {
    white-space: normal;
  }
  .section-title {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: center;
  }
  .section-desc {
    font-size: 0.95rem;
  }
  #pain .section-title {
    white-space: nowrap;
    font-size: clamp(1rem, 4.8vw, 1.6rem);
  }

  /* === Curriculum / Schedule === */
  .schedule-tabs {
    display: none;
  }
  .schedule-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: 24px;
  }
  .schedule-slider::-webkit-scrollbar {
    display: none;
  }
  .schedule-panel {
    display: block !important;
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 100%;
    box-sizing: border-box;
  }
  .schedule-panel.active {
    padding: 16px 12px;
  }
  .schedule-panel:not(.active) {
    display: block !important;
    background: #f3ede4;
    border: 1px solid #e5ddd0;
    border-radius: var(--radius-lg);
    padding: 16px 12px;
    box-shadow: var(--shadow-md);
  }
  .schedule-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  .schedule-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-300);
    cursor: pointer;
    transition: var(--transition);
  }
  .schedule-dot.active {
    background: var(--accent-gold);
    transform: scale(1.3);
  }
  .schedule-day-header {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
  }
  .schedule-day-num { font-size: 2rem; }
  .schedule-day-info h3 { font-size: 1.05rem; }
  .schedule-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 14px;
    margin-bottom: 8px;
  }
  .schedule-time { font-size: 0.9rem; }
  .schedule-item-content h4 { font-size: 1rem; }
  .schedule-item-content p { font-size: 0.9rem; }
  .schedule-tag { padding: 3px 10px; font-size: 0.75rem; }

  /* === Instructors === */
  .instructors-grid { grid-template-columns: 1fr; gap: 20px; }
  .instructor-card { padding: 32px 20px; }
  .instructor-photo { width: 110px; height: 110px; }
  .instructor-name { font-size: 1.3rem; }
  .instructor-bio { font-size: 0.92rem; }

  /* === Benefits === */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item { padding: 20px 16px; gap: 14px; }
  .benefit-content h4 { font-size: 1rem; }
  .benefit-content p { font-size: 0.88rem; }

  /* === Pricing === */
  .pricing-card { margin-top: 40px; }
  .pricing-header { padding: 32px 20px 28px; }
  .pricing-body { padding: 28px 20px 36px; }
  .pricing-price { font-size: 2.6rem; }
  .pricing-includes li { font-size: 0.92rem; gap: 10px; padding: 12px 0; }
  .pricing-note { font-size: 0.85rem; padding: 16px; }
  .pricing-cta { padding: 18px; font-size: 1.05rem; }

  /* === FAQ === */
  .faq-question { font-size: 0.98rem; padding: 20px 0; }
  .faq-answer-inner { font-size: 0.92rem; }

  /* === Final CTA === */
  .final-cta { padding: 80px 0; }
  .final-cta-title { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .final-cta-sub { font-size: 1rem; margin-bottom: 32px; }
  .final-cta .btn-primary { padding: 16px 24px; font-size: 1.05rem; }

  /* === Footer === */
  .site-footer { padding: 36px 0; }
  .footer-text { font-size: 0.8rem; }

  /* === Section label centered === */
  .section-label {
    justify-content: center;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--accent-gold);
    max-width: 60px;
  }
  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--accent-gold);
    max-width: 60px;
  }
  .value-statement .section-label {
    position: absolute;
    top: -30px;
    left: 0;
  }

  /* === Mobile fixed bottom CTA === */
  .mobile-bottom-cta {
    display: block;
    transform: translateY(100%);
  }
  .mobile-bottom-cta.visible {
    transform: translateY(0);
  }
  .site-footer {
    padding-bottom: 80px;
  }
}

/* === Mobile bottom CTA (hidden on desktop) === */
.mobile-bottom-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 10px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}
.mobile-bottom-cta-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b8963f 100%);
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}
