/* ============================
   CSS Variables
============================ */
:root {
  --primary:      #1a3a6b;
  --primary-dark: #0e2449;
  --primary-mid:  #2a5fa5;
  --accent:       #1e90c8;
  --accent-light: #4bb3e8;
  --white:        #ffffff;
  --bg-light:     #f4f7fb;
  --bg-section:   #eef2f8;
  --text-dark:    #1a1a2e;
  --text-main:    #2c3e60;
  --text-muted:   #6b7a99;
  --border:       #ccd7ea;
  --success:      #27ae60;
  --gold:         #d4a017;
  --shadow-sm: 0 2px 8px rgba(26,58,107,0.10);
  --shadow-md: 0 6px 24px rgba(26,58,107,0.14);
  --shadow-lg: 0 12px 40px rgba(26,58,107,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

/* ============================
   Reset & Base
============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================
   Typography
============================ */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(30,144,200,0.10);
  border: 1px solid rgba(30,144,200,0.25);
  border-radius: 100px;
  padding: 4px 16px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.45;
  margin-bottom: 16px;
}
.section-title span { color: var(--accent); }
.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.9;
}
.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

/* ============================
   Layout
============================ */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ============================
   Sticky Header CTA
============================ */
.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14,36,73,0.96);
  backdrop-filter: blur(8px);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s;
}
.sticky-header .header-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.sticky-header .header-logo span {
  color: var(--accent-light);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1e90c8 0%, #0e6fa8 100%);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,144,200,0.45);
}
.btn-cta-lg {
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 100px;
}
.btn-cta-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}

/* ============================
   Hero / First View
============================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--primary-dark) 0%, #0f2d5a 45%, #1a3f7a 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(30,144,200,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 70%, rgba(42,95,165,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,144,200,0.20);
  border: 1px solid rgba(30,144,200,0.50);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 16px;
  white-space: nowrap;
}
.hero-left {
  text-align: center;
}
.hero-cta-group {
  justify-content: center;
}
.hero-title .highlight {
  color: var(--accent-light);
  display: inline-block;
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1.5;
}
.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.9;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* hero-left centring is handled via .hero-grid override */
.hero-right {
  position: relative;
}
.hero-photo-wrap {
  position: relative;
}
.hero-photo-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,255,255,0.15);
}
.hero-photo-main img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.hero-photo-thumb {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 40%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}
.hero-photo-thumb img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.hero-card-badge {
  position: absolute;
  top: 20px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.hero-card-badge .badge-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
}
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  z-index: 2;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================
   School Info Bar
============================ */
.school-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.school-bar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.school-bar-photos {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.school-bar-photo {
  width: 240px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: block;
}
.school-bar-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: 50% 20%;
}
.school-bar-photo--plain img {
  object-position: center center;
}
.school-bar-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.school-name-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.school-name-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.school-name-link .fa-external-link-alt {
  font-size: 0.7rem;
  opacity: 0.7;
}
.school-bar-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.school-bar-info .interviewee {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

/* ============================
   Empathy / Pain Section
============================ */
.pain-section {
  background: linear-gradient(135deg, #f8f9fd 0%, var(--bg-section) 100%);
}
.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pain-card .pain-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.pain-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.pain-quote {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-top: 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.pain-quote::before {
  content: '\201C';
  position: absolute;
  top: -30px; left: 30px;
  font-size: 12rem;
  font-family: Georgia, serif;
  opacity: 0.08;
  line-height: 1;
}
.pain-quote p {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.9;
  position: relative;
  z-index: 1;
}
.pain-quote .quote-source {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* ============================
   Solution Section
============================ */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.solution-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.solution-card .sol-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(30,144,200,0.12) 0%, rgba(26,58,107,0.10) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.8rem;
  margin: 0 auto 20px;
  border: 1px solid rgba(30,144,200,0.20);
}
.solution-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.solution-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================
   Reasons / Strengths
============================ */
.reasons-section {
  background: linear-gradient(160deg, var(--primary-dark) 0%, #0f2d5a 100%);
}
.reasons-section .section-title { color: var(--white); }
.reasons-section .section-lead { color: rgba(255,255,255,0.70); }
.reasons-section .section-label {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: var(--accent-light);
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.reason-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}
.reason-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}
.reason-card .reason-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.35;
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  margin-bottom: 12px;
}
.reason-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.reason-card p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
}
.reason-card .reason-icon {
  font-size: 1.6rem;
  color: var(--accent-light);
  margin-bottom: 16px;
}

/* ============================
   Features / Functions
============================ */
.features-section { background: var(--bg-light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-mid), var(--accent));
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card .fc-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.feature-card .fc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(30,144,200,0.10);
  color: var(--accent);
  border-radius: 100px;
  padding: 2px 10px;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.85;
}
/* New badge */
.new-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e84393, #d4286e);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-left: 6px;
  vertical-align: middle;
}

/* ============================
   Benefits Section
============================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 48px;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.benefit-item:hover { transform: translateX(4px); }
.benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-mid) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}
.benefit-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}
.benefit-text p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.benefits-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  color: var(--white);
  text-align: center;
}
.stat-card .stat-num {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Noto Serif JP', serif;
  color: var(--accent-light);
  line-height: 1.1;
}
.stat-card .stat-unit { font-size: 1.2rem; }
.stat-card .stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 6px;
}

/* ============================
   Interview / Testimonials
============================ */
.interview-section { background: var(--bg-section); }
.interview-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}
.interview-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.interview-photos .photo-slot {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border);
}
.interview-photos .photo-slot img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.interview-photos--single {
  grid-template-columns: 1fr;
}
.interview-photos--single .photo-slot img {
  aspect-ratio: 4/3;
  object-position: center top;
}

.interview-profile {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.interview-profile .profile-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.interview-profile .profile-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.interview-profile p {
  font-size: 0.875rem;
  color: var(--text-main);
  line-height: 1.85;
}
.quote-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
.quote-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  border-left: 5px solid var(--primary-mid);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.quote-block .qb-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  flex-shrink: 0;
}
.quote-block .qb-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.quote-block .qb-content {}
.quote-block .qb-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 12px;
}
.quote-block .qb-text::before { content: '\201C'; color: var(--accent); font-size: 1.4rem; font-weight: 900; margin-right: 3px; }
.quote-block .qb-text::after  { content: '\201D'; color: var(--accent); font-size: 1.4rem; font-weight: 900; margin-left: 3px; }
.quote-block .qb-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}
.quote-block .qb-tag {
  display: inline-block;
  background: rgba(26,58,107,0.08);
  color: var(--primary-mid);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 2px 12px;
  margin-right: 8px;
}
.all-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.all-photo-grid .photo-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.all-photo-grid .photo-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.all-photo-grid .photo-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ============================
   Flow Section
============================ */
.flow-section { background: var(--white); }
.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-mid), var(--accent));
  z-index: 0;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(26,58,107,0.30);
  border: 4px solid var(--white);
}
.step-circle .step-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.step-circle .step-icon { font-size: 1.4rem; }
.flow-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.flow-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================
   FAQ Section
============================ */
.faq-section { background: var(--bg-light); }
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-section); }
.faq-q-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-q-text .q-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-mid) 100%);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
}
.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer-inner {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.a-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(26,58,107,0.08);
  color: var(--primary-mid);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
}
.faq-answer-inner p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ============================
   Final CTA
============================ */
.final-cta {
  background: linear-gradient(160deg, var(--primary-dark) 0%, #0f2d5a 45%, #1a3f7a 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(30,144,200,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-cta .section-title { color: var(--white); }
.final-cta .section-label {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.25);
  color: var(--accent-light);
}
.cta-lead {
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}
.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.cta-note i { margin-right: 4px; }
.btn-cta-white {
  background: var(--white);
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.25);
}

/* ============================
   Footer
============================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
}
.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ============================
   Responsive
============================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .interview-intro { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .flow-steps::before { display: none; }
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .all-photo-grid { grid-template-columns: 1fr 1fr; }
  .school-bar-photos { flex-direction: column; }
  .school-bar-photo { width: 100%; }
}
@media (max-width: 640px) {
  .sticky-header .header-logo { font-size: 0.8rem; }
  .btn-cta { font-size: 0.78rem; padding: 8px 14px; }
  .pain-quote { padding: 28px 24px; }
  .flow-steps { grid-template-columns: 1fr; }
  .all-photo-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .cta-group { flex-direction: column; align-items: center; }
  .hero-title { white-space: normal; font-size: clamp(1.4rem, 5vw, 1.9rem); }
}

/* ============================
   Utility
============================ */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary-mid));
  border-radius: 2px;
  margin: 16px auto 0;
}
.divider-left { margin-left: 0; }
/* Fade in animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   Form Modal
============================ */
.form-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.form-modal.is-open {
  display: flex;
}
.form-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 50, 0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.form-modal__box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(680px, 96vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  overflow: hidden;
}
.form-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(26,58,107,0.10);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  transition: background 0.2s;
  z-index: 2;
}
.form-modal__close:hover {
  background: rgba(26,58,107,0.20);
}
.form-modal__header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2d5a 100%);
}
.form-modal__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.form-modal__lead {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
}
.form-modal__body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.form-modal__body iframe {
  width: 100%;
  height: 640px;
  border: none;
  display: block;
}
@media (max-width: 640px) {
  .form-modal__body iframe {
    height: 72vh;
  }
}
