/* =====================================================
   BBIT LP スタイルシート
   デザイン方針：医療的信頼感 × 親しみやすさ
   カラー：ネイビー（信頼）× テール（科学）× ホワイト
===================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d2b4e;
  --navy-light: #1a4070;
  --teal: #1a7a7a;
  --teal-light: #2aa5a5;
  --teal-pale: #e8f5f5;
  --accent: #e67e22;
  --accent-light: #f39c12;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-light: #e9ecef;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --text: #2c3e50;
  --text-light: #5d6d7e;
  --line-green: #06c755;

  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.4; }

.section-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(230,126,34,0.3);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,126,34,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--line-green);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(6,199,85,0.3);
}
.btn-line:hover {
  background: #05b44d;
  transform: translateY(-2px);
}

.btn-large { padding: 18px 40px; font-size: 17px; }

.btn-arrow { font-size: 18px; }

.line-icon {
  background: var(--white);
  color: var(--line-green);
  font-size: 10px;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 4px;
  line-height: 1;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.header-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  transition: var(--transition);
}
.header-nav a:hover { color: var(--white); }

.header-cta {
  flex-shrink: 0;
  font-size: 13px;
  padding: 10px 18px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(13,43,78,0.50) 0%, rgba(10,48,96,0.45) 40%, rgba(13,74,90,0.40) 100%),
    url('hero.png') center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(26,122,122,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26,64,112,0.4) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(26,122,122,0.3);
  border: 1px solid rgba(42,165,165,0.5);
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: #7ed8d8;
  display: block;
}

.hero-lead {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  line-height: 2;
  margin-bottom: 40px;
}

.hero-lead strong { color: var(--white); }

.hero-target {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.hero-target-label {
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-right: 4px;
}

.hero-target-dot {
  color: var(--teal-light);
  font-weight: 700;
}

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

.hero-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.hero-note a { color: rgba(255,255,255,0.7); text-decoration: underline; }

/* ---------- CONCERN ---------- */
.concern {
  background: var(--off-white);
}

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

.concern-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.concern-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.concern-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.concern-message {
  background: var(--white);
  border-left: 4px solid var(--teal);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.concern-message p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 12px;
}
.concern-message p:last-child { margin-bottom: 0; }
.concern-message strong { color: var(--navy); }

/* ---------- ABOUT ---------- */
.about { background: var(--white); }

.about-lead-box {
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 56px;
  border: 1px solid rgba(26,122,122,0.15);
}

.about-lead-box p {
  font-size: 16px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 16px;
}
.about-lead-box p:last-child { margin-bottom: 0; }
.about-lead-box strong { color: var(--navy); font-size: 17px; }

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-point {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
  border-top: 3px solid var(--teal);
}

.point-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--teal);
  font-family: var(--font-serif);
  margin-bottom: 8px;
  opacity: 0.7;
}

.about-point h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
}

.about-point p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---------- WHY WORKS ---------- */
.why-works {
  background: #eaf5f0;
}
.why-works .section-label { color: var(--teal); }
.why-works .section-title { color: var(--navy); }

.why-works-body {
  max-width: 680px;
  border-left: 4px solid var(--teal);
  padding: 24px 32px;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.why-works-body p {
  font-size: 16px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 16px;
}
.why-works-body p:last-child { margin-bottom: 0; }
.why-works-body strong { color: var(--teal); }

/* ---------- TARGET ---------- */
.target { background: var(--navy); }
.target .section-label { color: rgba(42,165,165,0.8); }
.target .section-title { color: var(--white); }
.target .section-subtitle { color: rgba(255,255,255,0.6); }

.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.target-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
}

.target-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.target-card ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 16px;
  position: relative;
}
.target-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--teal-light);
}

.target-note-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(42,165,165,0.3);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
}

.target-note-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
}
.target-note-box strong { color: var(--white); }

.target .btn-primary { background: var(--accent); }

/* 基本対象ボックス */
.target-main-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(42,165,165,0.12);
  border: 1px solid rgba(42,165,165,0.35);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.target-main-icon {
  font-size: 22px;
  color: var(--teal-light);
  flex-shrink: 0;
  line-height: 1.6;
}

.target-main-text {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
}
.target-main-text strong { color: var(--white); }

/* 理想条件 */
.target-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.target-ideal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.target-ideal-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px;
}

.ideal-icon { font-size: 22px; flex-shrink: 0; line-height: 1.4; }

.target-ideal-item strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 3px;
}

.target-ideal-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* 年齢補足 */
.target-age-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  border-left: 3px solid rgba(42,165,165,0.5);
}

.age-note-item {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.age-label {
  flex-shrink: 0;
  background: rgba(42,165,165,0.2);
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* 除外条件 */
.target-exclude-box {
  background: rgba(180,60,60,0.1);
  border: 1px solid rgba(200,80,80,0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 8px;
}

.target-exclude-title {
  font-size: 14px;
  font-weight: 700;
  color: #f08080;
  margin-bottom: 8px;
}

.target-exclude-lead {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  line-height: 1.7;
}

.target-exclude-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.target-exclude-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.target-exclude-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #f08080;
  font-weight: 700;
}

.target-exclude-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ---------- ASSESSMENT ---------- */
.assessment { background: var(--off-white); }

.assessment-flow {
  max-width: 680px;
  margin: 0 auto 40px;
}

.flow-step {
  display: flex;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.flow-arrow {
  text-align: center;
  font-size: 24px;
  color: var(--teal);
  padding: 8px 0;
  font-weight: 700;
}

.flow-num {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 12px;
  border-radius: var(--radius);
  height: fit-content;
}

.flow-content h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}

.flow-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.flow-content p:last-child { margin-bottom: 0; }

.assessment-list {
  list-style: none;
}
.assessment-list li {
  font-size: 13px;
  color: var(--text);
  padding: 4px 0 4px 16px;
  position: relative;
}
.assessment-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ---------- Facility Photos ---------- */
.facility-photos {
  margin: 32px 0;
}
.facility-photos-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  text-align: center;
  letter-spacing: 0.05em;
}
.facility-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.facility-photo-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-light);
}
.facility-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.facility-photo-caption {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  padding: 8px 0;
}

/* ---------- Program Photos ---------- */
.program-photos {
  margin: 32px 0;
}
.program-photos-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  text-align: center;
  letter-spacing: 0.05em;
}
.program-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.program-photo-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}
.program-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.program-photo-caption {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.photo-record {
  color: var(--accent);
  font-weight: 600;
}

.assessment-emphasis {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  gap: 40px;
  justify-content: center;
}
.assessment-emphasis p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.assessment-emphasis strong { color: var(--teal-light); }

/* ---------- PROGRAM ---------- */
.program { background: var(--white); }

.program-overview {
  display: flex;
  gap: 0;
  background: var(--teal-pale);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid rgba(26,122,122,0.2);
}

.program-spec {
  flex: 1;
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(26,122,122,0.15);
}
.program-spec:last-child { border-right: none; }

.spec-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.spec-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

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

.component-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-light);
}

.component-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.component-card h3 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 10px;
}

.component-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.program-cycle h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 20px;
}

.cycle-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cycle-phase {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
}

.phase-period {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.phase-content {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.phase-content strong { color: var(--white); display: block; margin-bottom: 6px; }

/* ---------- SCIENCE ---------- */
.science { background: var(--off-white); }

.science-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.science-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow);
  position: relative;
}

.science-card-num {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius) 0 var(--radius) 0;
}

.science-card h3 {
  font-size: 15px;
  color: var(--navy);
  margin: 16px 0 10px;
}

.science-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

.science-disclaimer {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.science-disclaimer p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.7;
}

/* ---------- CASE STUDY ---------- */
.casestudy { background: var(--off-white); }

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

/* 概要 */
.case-overview {
  background: var(--navy);
  padding: 32px 36px;
}

.case-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.case-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.case-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.case-meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  text-transform: uppercase;
}

.case-meta-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.case-situation {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

.case-situation p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
}

/* データ */
.case-data {
  padding: 32px 36px;
  border-bottom: 1px solid var(--gray-light);
}

.case-data-title {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.case-data-lead {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.case-table-wrap {
  overflow-x: auto;
  margin-bottom: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.case-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 480px;
}

.case-table thead tr:first-child {
  background: var(--navy);
  color: var(--white);
}

.case-table thead tr:first-child th {
  padding: 10px 14px;
  text-align: center;
  font-size: 12px;
}

.case-table-sub {
  background: var(--navy-light) !important;
}

.case-table-sub th {
  padding: 8px 14px !important;
  font-size: 11px !important;
  color: rgba(255,255,255,0.7) !important;
  font-weight: 400 !important;
  text-align: center;
}

.case-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-light);
  text-align: center;
  color: var(--text);
}

.case-table td:first-child { text-align: left; font-weight: 500; }

.case-table tbody tr:last-child td { border-bottom: none; }

.val-high {
  color: #c0392b;
  font-weight: 700;
}

.val-improved {
  color: var(--teal);
  font-weight: 700;
}

.case-table-total {
  background: var(--off-white);
  border-top: 2px solid var(--gray-light);
}

.case-table-note {
  font-size: 13px;
  color: var(--text-light);
  text-align: right;
  margin-bottom: 28px;
}
.case-table-note strong { color: var(--teal); }

/* Stroopグラフ */
.case-stroop {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
}

.case-stroop h4 {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 16px;
}

.stroop-bar-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.stroop-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stroop-date {
  flex-shrink: 0;
  width: 64px;
  font-size: 11px;
  color: var(--text-light);
  text-align: right;
}

.stroop-bar-wrap {
  flex: 1;
  background: var(--gray-light);
  border-radius: 4px;
  height: 28px;
  overflow: hidden;
}

.stroop-bar {
  height: 100%;
  background: var(--teal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  transition: width 1s ease;
}

.stroop-bar--final {
  background: var(--accent);
}

.stroop-bar span {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.stroop-note {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}
.stroop-note strong { color: var(--accent); font-size: 15px; }

/* タイムライン */
.case-timeline {
  padding: 32px 36px;
  border-bottom: 1px solid var(--gray-light);
}

.timeline-list {
  position: relative;
  padding-left: 20px;
  margin: 20px 0 28px;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-light);
}

.timeline-item {
  position: relative;
  padding: 0 0 20px 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 2px solid var(--white);
}

.timeline-item--positive::before {
  background: var(--teal);
}

.tl-date {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.tl-content {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* 保護者コメント */
.case-parent-voice {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 32px;
  position: relative;
}

.voice-quote-mark {
  font-size: 60px;
  font-family: Georgia, serif;
  color: rgba(42,165,165,0.3);
  line-height: 0.8;
  margin-bottom: 8px;
}

.case-parent-voice p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 2;
  margin-bottom: 12px;
}
.case-parent-voice p strong { color: var(--teal-light); }

.voice-from {
  font-size: 12px !important;
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 0 !important;
}

/* まとめ */
.case-summary {
  padding: 32px 36px;
}

.case-summary h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.case-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-result {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.result-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  margin-top: 2px;
}

.case-result strong {
  display: block;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 3px;
}

.case-result p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

.case-disclaimer {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  line-height: 1.8;
}

/* ---------- VOICES ---------- */
.voices { background: var(--white); }

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

.voice-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-light);
}

.voice-header {
  margin-bottom: 16px;
}

.voice-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.voice-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 12px;
}

.voice-meta {
  font-size: 12px;
  color: var(--gray);
}

.voices-note {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}

/* ---------- Q&A ---------- */
.qa { background: var(--off-white); }

.qa-list {
  max-width: 800px;
  margin: 0 auto;
}

.qa-item {
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.qa-q {
  background: var(--navy);
  color: var(--white);
  padding: 20px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.qa-a {
  background: var(--white);
  padding: 20px 28px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  border: 1px solid var(--gray-light);
  border-top: none;
}

/* ---------- FEE ---------- */
.fee { background: var(--white); }

/* Payment notice */
.fee-payment-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff8e6;
  border: 1px solid #f0c040;
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 36px;
}

.fee-payment-icon { font-size: 22px; flex-shrink: 0; }

.fee-payment-notice p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}
.fee-payment-notice strong { color: #b07800; }

/* Plans */
.fee-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
  align-items: start;
}

.fee-plan {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.fee-plan--recommended {
  border-color: var(--accent);
  box-shadow: 0 4px 28px rgba(230,126,34,0.18);
}

.fee-plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.fee-plan-header {
  background: var(--navy);
  padding: 24px 28px;
  color: var(--white);
}

.fee-plan--recommended .fee-plan-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a70 100%);
}

.fee-plan-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-serif);
}

.fee-plan-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.fee-plan-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.fee-plan-tax {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.fee-plan-body {
  padding: 24px 28px;
  background: var(--white);
}

.fee-session-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.fee-session-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}
.fee-session-list li:last-child { border-bottom: none; }

.session-num {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  height: fit-content;
  white-space: nowrap;
}

.session-detail { flex: 1; }

.session-detail strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 3px;
}

.session-time {
  display: inline-block;
  font-size: 11px;
  color: var(--teal);
  font-weight: 500;
  background: var(--teal-pale);
  padding: 2px 8px;
  border-radius: 50px;
  margin-bottom: 6px;
}

.session-detail p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}
.session-detail p strong { display: inline; font-size: 13px; color: var(--navy); }
.session-detail em {
  font-style: normal;
  font-size: 12px;
  color: var(--teal);
}

/* Hero title update */
.hero-title-keywords {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}

/* STEP sheet label */
.step-sheet-label {
  display: inline-block;
  background: rgba(42,165,165,0.15);
  border: 1px solid rgba(42,165,165,0.4);
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

/* STEP flow */
.step-flow {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.step-flow-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.step-flow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  counter-reset: flow-counter;
}

.step-flow-list li {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
  counter-increment: flow-counter;
}

.step-flow-list li::before {
  content: counter(flow-counter);
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 2px;
}

/* STEP no solicitation */
.step-no-solicitation {
  background: rgba(6,199,85,0.12);
  border: 1px solid rgba(6,199,85,0.3);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  text-align: center;
  margin-top: auto;
}

/* Fee breakdown */
.fee-breakdown {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}

.fee-breakdown-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fee-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed var(--gray-light);
  font-size: 13px;
  color: var(--text-light);
}

.fee-breakdown-price {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  margin-left: 8px;
}

.fee-breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

/* Q&A comparison */
.qa-comparison {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.qa-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gray-light);
}

.qa-compare-item--bbit {
  border-left-color: var(--teal);
  background: var(--teal-pale);
}

.qa-compare-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  width: 60px;
}

.qa-compare-body {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
}

.fee-plan-note {
  font-size: 13px;
  color: var(--text-light);
  background: var(--off-white);
  padding: 12px 16px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gray-light);
}

/* Plan 2 includes */
.fee-plan-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(230,126,34,0.05);
  border: 1px solid rgba(230,126,34,0.2);
  border-radius: var(--radius);
  padding: 16px;
}

.fee-include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.include-icon { font-size: 18px; flex-shrink: 0; }

.fee-note {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 48px;
}

/* Reserve section */
.reserve-section {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}

.reserve-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.reserve-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 36px;
}

.reserve-methods {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.reserve-method {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 32px;
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.reserve-method-main {
  border-color: rgba(6,199,85,0.3);
}

.method-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.reserve-method p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.tel-number {
  font-size: 28px !important;
  font-weight: 900;
  color: var(--white) !important;
  letter-spacing: 0.05em;
}
.tel-number a { color: var(--white); }

.method-note {
  font-size: 12px !important;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 10px;
  margin-bottom: 0 !important;
}

.line-icon-large {
  background: var(--white);
  color: var(--line-green);
  font-size: 12px;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 4px;
}

.reserve-flow h4 {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.mini-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mini-step {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 16px;
  border-radius: var(--radius);
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
}

.mini-arrow {
  color: var(--teal-light);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- PROFILE ---------- */
.profile { background: var(--off-white); }

.profile-card {
  display: flex;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.profile-photo { flex-shrink: 0; }

.profile-img {
  width: 200px;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}

.profile-name {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: var(--font-serif);
}

.profile-title {
  font-size: 14px;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 12px;
}

.profile-place {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.profile-cred {
  margin-bottom: 24px;
}

.profile-cred h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gray-light);
}

.profile-cred ul li {
  font-size: 14px;
  color: var(--text);
  padding: 4px 0 4px 16px;
  position: relative;
}
.profile-cred ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--teal);
}

.profile-message p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 12px;
}

/* ---------- ACCESS ---------- */
.access { background: var(--white); }

.access-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}

.access-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.4;
}

.access-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.access-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}
.access-value strong { color: var(--navy); }

.access-note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
  display: block;
}

.access-tel {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.access-tel:hover { color: var(--teal); }

.access-map {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.access-map iframe {
  box-shadow: var(--shadow-md);
}

.access-map-link {
  font-size: 13px;
  color: var(--teal);
  text-align: right;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.access-map-link:hover { color: var(--teal-light); }

@media (max-width: 768px) {
  .access-info-grid { grid-template-columns: 1fr; }
}

/* ---------- DISCLAIMER ---------- */
.disclaimer {
  background: var(--gray-light);
}
.disclaimer .section-inner { padding: 40px 24px; }

.disclaimer-box {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-box h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray);
}

.disclaimer-box ul li {
  font-size: 12px;
  color: var(--gray);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.7;
}
.disclaimer-box ul li::before {
  content: '・';
  position: absolute;
  left: 0;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-info {
  margin-bottom: 24px;
}

.footer-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.footer-info a { color: rgba(255,255,255,0.7); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ---------- FIXED CTA (Mobile) ---------- */
.fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  height: 56px;
}

.fixed-cta-check {
  flex: 1;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.fixed-cta-reserve {
  flex: 1;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* ---------- STEPS （3ステップ導線） ---------- */
.steps { background: var(--navy); }
.steps .section-label { color: rgba(42,165,165,0.8); }
.steps .section-title { color: var(--white); }
.steps .section-subtitle { color: rgba(255,255,255,0.65); }

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

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-card--active {
  border-color: var(--accent);
  background: rgba(230,126,34,0.08);
}

.step-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.step-free {
  background: var(--teal);
  color: var(--white);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 50px;
}

.step-paid {
  background: var(--gray);
  color: var(--white);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 50px;
}

.step-icon { font-size: 32px; }

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.step-time {
  font-size: 12px;
  color: var(--teal-light);
  font-weight: 500;
}

.step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.step-desc strong { color: var(--white); }

.step-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.step-checklist li {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  padding-left: 16px;
  position: relative;
}
.step-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-weight: 700;
}

.step-btn {
  display: block;
  text-align: center;
  margin-top: auto;
}

.step-btn-disabled {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  border-radius: 50px;
  font-size: 13px;
  border: 1px dashed rgba(255,255,255,0.2);
  margin-top: auto;
}

.step-note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.steps-arrow-block {
  text-align: center;
  padding: 20px 0;
}

.steps-arrow-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.steps-big-arrow {
  font-size: 32px;
  color: var(--teal-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.steps-final {
  display: inline-block;
  background: rgba(26,122,122,0.2);
  border: 1px solid rgba(42,165,165,0.3);
  border-radius: var(--radius);
  padding: 20px 40px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.8;
}
.steps-final strong { color: var(--teal-light); font-size: 17px; display: block; margin-bottom: 6px; }

/* ---------- Reserve Steps Mini ---------- */
.reserve-steps-mini {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto 32px;
}

.reserve-step-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.reserve-step-btn--1 {
  background: var(--teal);
  color: var(--white);
}
.reserve-step-btn--1:hover { background: var(--teal-light); transform: translateX(4px); }

.reserve-step-btn--2 {
  background: var(--accent);
  color: var(--white);
}
.reserve-step-btn--2:hover { background: var(--accent-light); transform: translateX(4px); }

.reserve-step-btn--3.reserve-step-btn--disabled {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
  border: 1px dashed rgba(255,255,255,0.2);
  cursor: default;
}

.reserve-step-connector {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  padding: 8px 0;
}

.rsb-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}

.rsb-body { flex: 1; text-align: left; }

.rsb-label {
  font-size: 11px;
  opacity: 0.8;
  margin-bottom: 2px;
}

.rsb-title {
  font-size: 15px;
  font-weight: 700;
}

.rsb-arrow {
  font-size: 18px;
  font-weight: 700;
  opacity: 0.7;
}

.reserve-method-tel {
  text-align: center;
  margin: 24px 0;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
}

.reserve-method-tel p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.tel-number-large {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

/* =====================================================
   TARGET & STEPS: 薄緑背景オーバーライド
===================================================== */
.target { background: #eaf5f0; }
.target .section-label { color: var(--teal); }
.target .section-title { color: var(--navy); }
.target .section-subtitle { color: var(--text-light); }
.target-main-box { background: rgba(26,122,122,0.08); border-color: rgba(26,122,122,0.25); }
.target-main-icon { color: var(--teal); }
.target-main-text { color: var(--text); }
.target-main-text strong { color: var(--navy); }
.target-section-label { color: var(--teal); }
.target-ideal-item { background: var(--white); border: 1px solid var(--gray-light); }
.target-ideal-item strong { color: var(--navy); }
.target-ideal-item p { color: var(--text-light); }
.target-age-note { background: var(--white); border-left: 3px solid var(--teal); }
.age-note-item { color: var(--text); }
.age-label { background: rgba(26,122,122,0.12); color: var(--teal); }
.target-exclude-box { background: rgba(180,60,60,0.06); border-color: rgba(200,80,80,0.2); }
.target-exclude-title { color: #c0392b; }
.target-exclude-lead { color: var(--text-light); }
.target-exclude-list li { color: var(--text); }
.target-exclude-note { color: var(--gray); }

.steps { background: #eaf5f0; }
.steps .section-label { color: var(--teal); }
.steps .section-title { color: var(--navy); }
.steps .section-subtitle { color: var(--text-light); }
.step-card { background: var(--white); border: 1px solid var(--gray-light); }
.step-badge { color: var(--text-light); }
.step-title { color: var(--navy); }
.step-time { color: var(--teal); }
.step-desc { color: var(--text); }
.step-desc strong { color: var(--navy); }
.step-checklist li { color: var(--text); }
.step-checklist li::before { color: var(--teal); }
.step-sheet-label { color: var(--teal); }
.step-flow { background: var(--off-white); border: 1px solid var(--gray-light); }
.step-flow-title { color: var(--teal); }
.step-flow-list li { color: var(--text); }
.step-no-solicitation { background: rgba(6,199,85,0.08); border: 1px solid rgba(6,199,85,0.3); color: var(--text); }
.step-no-solicitation strong { color: #1a8c3a; }
.step-note { color: var(--gray); }
.step-btn-disabled { background: var(--gray-light); color: var(--gray); border: 1px dashed var(--gray); }
.steps-arrow-text { color: var(--text-light); }
.steps-big-arrow { color: var(--teal); }
.steps-final { background: rgba(26,122,122,0.1); border: 1px solid rgba(26,122,122,0.25); color: var(--text); }
.steps-final strong { color: var(--teal); }

/* =====================================================
   ハンバーガーメニュー
===================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 16px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--navy);
  z-index: 300;
  padding: 72px 32px 40px;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.2);
}
.mobile-menu.open { right: 0; }

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}
.mobile-menu-close:hover { color: var(--white); }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu-link {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.mobile-menu-link:hover { color: var(--teal-light); padding-left: 8px; }

.mobile-menu-cta {
  display: block;
  text-align: center;
  margin-top: auto;
  font-size: 14px;
  padding: 14px 20px;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 250;
}
.mobile-menu-overlay.open { display: block; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .header-nav { display: none; }
  .header-cta { font-size: 12px; padding: 9px 14px; }
  .logo-sub { display: none; }

  .section-inner { padding: 56px 20px; }

  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .about-points { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: 1fr; }
  .program-components { grid-template-columns: 1fr; }
  .program-overview { flex-wrap: wrap; }
  .program-spec { min-width: 50%; }
  .cycle-timeline { grid-template-columns: 1fr; }
  .facility-photo-grid { grid-template-columns: 1fr; }
  .facility-photo { height: 200px; }
  .program-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .program-photo { height: 140px; }
  .science-cards { grid-template-columns: 1fr; }
  .voice-cards { grid-template-columns: 1fr; }
  .assessment-emphasis { flex-direction: column; gap: 12px; }

  .hero-cta-group { flex-direction: column; }
  .btn-large { padding: 16px 28px; font-size: 16px; text-align: center; }

  .profile-card { flex-direction: column; }
  .profile-img { width: 100%; height: 240px; }

  .reserve-methods { flex-direction: column; }
  .reserve-method { max-width: 100%; }

  .mini-flow { flex-direction: column; }
  .mini-arrow { transform: rotate(90deg); }
  .mini-step { max-width: 100%; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-final { padding: 16px 20px; }
  .fee-plans { grid-template-columns: 1fr; }
  .target-ideal-grid { grid-template-columns: 1fr; }
  .age-note-item { flex-direction: column; gap: 4px; }
  .case-meta-grid { grid-template-columns: 1fr; }
  .case-results-grid { grid-template-columns: 1fr; }
  .case-overview, .case-data, .case-timeline, .case-summary { padding: 24px 20px; }

  body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .concern-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
}

/* =====================================================
   モバイル文字サイズ調整
===================================================== */
@media (max-width: 768px) {
  body { font-size: 20px; }

  .section-title { font-size: 30px; }
  .section-subtitle { font-size: 20px; }

  /* 本文・説明文 */
  .about-lead-box p,
  .concern-message p,
  .why-works-body p,
  .flow-content p,
  .step-desc,
  .component-card p,
  .science-card p,
  .qa-a,
  .profile-message p,
  .case-situation p { font-size: 20px; }

  /* リスト */
  .step-checklist li,
  .step-flow-list li,
  .assessment-list li,
  .target-card ul li,
  .target-exclude-list li,
  .fee-session-list li,
  .profile-cred ul li,
  .disclaimer-box ul li { font-size: 19px; }

  /* カード見出し */
  .about-point h3,
  .component-card h3,
  .science-card h3,
  .step-title,
  .flow-content h3 { font-size: 22px; }

  /* Q&A */
  .qa-q { font-size: 20px; }
  .qa-a { font-size: 20px; }

  /* 料金 */
  .fee-plan-name { font-size: 24px; }
  .session-detail strong { font-size: 20px; }
  .session-detail p { font-size: 19px; }

  /* アクセス */
  .access-value { font-size: 20px; }

  /* ヒーロー */
  .hero-lead { font-size: 20px; }
  .hero-target { font-size: 19px; }

  /* ステップ */
  .step-sheet-label { font-size: 18px; }
  .step-flow-title { font-size: 17px; }

  /* タイムライン */
  .tl-content { font-size: 20px; }
  .case-parent-voice p { font-size: 20px; }

  /* プロフィール */
  .profile-name { font-size: 26px; }
  .profile-title { font-size: 18px; }
  .profile-place { font-size: 17px; }

  /* 注意事項 */
  .concern-item p { font-size: 19px; }
  .target-main-text { font-size: 19px; }
  .target-ideal-item strong { font-size: 18px; }
  .target-ideal-item p { font-size: 17px; }
}
