/* ===== SEASON COLOR VARIABLES ===== */
:root,
[data-season="spring"] {
  --primary: #D94F6B;
  --primary-dark: #C2185B;
  --primary-light: #E8829A;
  --primary-mid: #F48FB1;
  --border: #FFCDD2;
  --bg-light: #FFE4EC;
  --bg-lighter: #FFF0F3;
  --bg-section: #FFF5F7;
  --bg-hero: #FCE4EC;
  --bg-body: #FFF9F9;
  --footer-brand: #FFB6C1;
  --highlight-bg: #FFCDD2;
  --text-main: #4A3333;
  --text-sub: #5C3A3A;
  --text-body: #6B4F4F;
  --text-muted: #7B5555;
  --text-light: #8B5E5E;
  --text-lighter: #8B6B6B;
  --text-faint: #B08888;
  --footer-bg: #4A3333;
  --footer-text: #C4A8A8;
  --hero-overlay: rgba(255,240,243,0.5), rgba(255,228,236,0.4), rgba(255,245,247,0.3), rgba(252,228,236,0.4);
  --icon-0: '\1F338';
  --icon-1: '\1F337';
  --icon-2: '\1F4AE';
  --shadow-rgb: 217, 79, 107;
  --glow-rgb: 255, 182, 193;
  --glow2-rgb: 248, 187, 208;
}

[data-season="summer"] {
  --primary: #2E7D32;
  --primary-dark: #1B5E20;
  --primary-light: #66BB6A;
  --primary-mid: #81C784;
  --border: #C8E6C9;
  --bg-light: #E8F5E9;
  --bg-lighter: #F1F8E9;
  --bg-section: #F5F9F5;
  --bg-hero: #DCEDC8;
  --bg-body: #F9FFF9;
  --footer-brand: #A5D6A7;
  --highlight-bg: #C8E6C9;
  --text-main: #1B3A1B;
  --text-sub: #2E4A2E;
  --text-body: #3E5A3E;
  --text-muted: #4A6B4A;
  --text-light: #5A7B5A;
  --text-lighter: #6B8B6B;
  --text-faint: #88B088;
  --footer-bg: #2E3B2E;
  --footer-text: #A8C4A8;
  --hero-overlay: rgba(241,248,233,0.5), rgba(232,245,233,0.4), rgba(245,249,245,0.3), rgba(220,237,200,0.4);
  --icon-0: '\1F343';
  --icon-1: '\1F33F';
  --icon-2: '\1F340';
  --shadow-rgb: 46, 125, 50;
  --glow-rgb: 165, 214, 167;
  --glow2-rgb: 200, 230, 201;
}

[data-season="autumn"] {
  --primary: #E65100;
  --primary-dark: #BF360C;
  --primary-light: #FF8A65;
  --primary-mid: #FFAB91;
  --border: #FFE0B2;
  --bg-light: #FFF3E0;
  --bg-lighter: #FFF8E1;
  --bg-section: #FFFAF5;
  --bg-hero: #FFE0B2;
  --bg-body: #FFFCF9;
  --footer-brand: #FFCC80;
  --highlight-bg: #FFE0B2;
  --text-main: #3E2723;
  --text-sub: #4E342E;
  --text-body: #5D4037;
  --text-muted: #6D4C41;
  --text-light: #795548;
  --text-lighter: #8D6E63;
  --text-faint: #B09080;
  --footer-bg: #3E2723;
  --footer-text: #C4A898;
  --hero-overlay: rgba(255,248,225,0.5), rgba(255,243,224,0.4), rgba(255,250,245,0.3), rgba(255,224,178,0.4);
  --icon-0: '\1F341';
  --icon-1: '\1F342';
  --icon-2: '\1F33E';
  --shadow-rgb: 230, 81, 0;
  --glow-rgb: 255, 204, 128;
  --glow2-rgb: 255, 224, 178;
}

[data-season="winter"] {
  --primary: #1565C0;
  --primary-dark: #0D47A1;
  --primary-light: #42A5F5;
  --primary-mid: #90CAF9;
  --border: #BBDEFB;
  --bg-light: #E3F2FD;
  --bg-lighter: #E8F4FD;
  --bg-section: #F5F9FF;
  --bg-hero: #BBDEFB;
  --bg-body: #F9FCFF;
  --footer-brand: #90CAF9;
  --highlight-bg: #BBDEFB;
  --text-main: #1A2A3A;
  --text-sub: #2A3A4A;
  --text-body: #3A4A5A;
  --text-muted: #4A5A6A;
  --text-light: #5A6A7A;
  --text-lighter: #6B7B8B;
  --text-faint: #8899AA;
  --footer-bg: #1A2A3A;
  --footer-text: #A8B8C8;
  --hero-overlay: rgba(232,244,253,0.5), rgba(227,242,253,0.4), rgba(245,249,255,0.3), rgba(187,222,251,0.4);
  --icon-0: '\2744\FE0F';
  --icon-1: '\1F4A0';
  --icon-2: '\2728';
  --shadow-rgb: 21, 101, 192;
  --glow-rgb: 144, 202, 249;
  --glow2-rgb: 187, 222, 251;
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 200;
  display: flex;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(var(--shadow-rgb), 0.15);
}
.lang-btn {
  border: none;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', 'Noto Sans SC', sans-serif;
  transition: all 0.3s;
}
.lang-btn.active {
  background: var(--primary);
  color: #fff;
}
.lang-btn:hover:not(.active) {
  background: var(--bg-light);
}

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

/* ===== UTILITY ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-lighter);
  margin-bottom: 3rem;
}
.accent { color: var(--primary); }
.accent-pink { color: var(--primary); }
.highlight {
  background: linear-gradient(transparent 60%, var(--highlight-bg) 60%);
  font-weight: 700;
}
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--primary);
}
.jp-accent {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}

/* ===== SAKURA DECORATIONS ===== */
.sakura {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -20px;
  opacity: 0.6;
  animation: fall linear infinite;
}
@keyframes fall {
  0% { transform: translateY(-10vh) rotate(0deg) translateX(0); opacity: 0.7; }
  50% { opacity: 0.5; }
  100% { transform: translateY(105vh) rotate(720deg) translateX(80px); opacity: 0; }
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 249, 249, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(var(--shadow-rgb), 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-top: 2px solid var(--border);
}
.floating-cta p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}
.floating-cta .cta-btn {
  font-size: 0.9rem;
  padding: 10px 28px;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(var(--shadow-rgb), 0.35);
  transition: all 0.3s ease;
  position: relative;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(var(--shadow-rgb), 0.45);
}
.cta-btn::after {
  content: var(--icon-0, ' \1F338');
  margin-left: 4px;
  transition: margin-left 0.3s;
}
.cta-btn:hover::after {
  margin-left: 8px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 30%, var(--bg-section) 60%, var(--bg-hero) 100%);
  padding: 80px 0 60px;
  overflow: hidden;
  min-height: 640px;
}
.hero-deco-1 {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}
.hero-deco-2 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 2.5rem;
  opacity: 0.12;
  animation: float 8s ease-in-out infinite reverse;
}
.hero-deco-3 {
  position: absolute;
  top: 50%;
  right: 10%;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 7s ease-in-out infinite 1s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--glow-rgb), 0.4) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(var(--glow2-rgb), 0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.hero-text {
  flex: 1;
  max-width: 100%;
  position: relative;
  z-index: 3;
}
.hero-visual {
  position: absolute;
  top: -40px;
  right: -40px;
  bottom: -40px;
  width: 70%;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.hero-title-sub {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 20px;
  line-height: 1.6;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 2;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 2px solid var(--border);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}
.hero-bg-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image:
    linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
  mask-image:
    linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}
.hero-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--hero-overlay));
  pointer-events: none;
}
/* ===== TARGET CHECK (ヒーロー内) ===== */
.target-check-box {
  background: #fff;
  border: 2px solid var(--primary-mid);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 28px;
}
.target-check-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.target-check-list {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px 20px;
}
.target-check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}
.hero-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.hero-card-list {
  list-style: none;
  text-align: left;
}
.hero-card-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-list li:last-child { border: none; }
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--bg-hero);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ===== JP DECORATION BAR ===== */
.jp-bar {
  background: linear-gradient(90deg, var(--bg-hero), var(--bg-lighter), var(--bg-hero));
  padding: 20px 0;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: 0.5em;
  position: relative;
  overflow: hidden;
}
.jp-bar span {
  position: relative;
  z-index: 1;
}
.jp-bar-inline-flower {
  font-size: 1.2rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
  margin: 0 16px;
}

/* ===== PAIN / 不安セクション ===== */
.pain {
  background: #fff;
  padding: 80px 0;
  position: relative;
}
.pain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--border), var(--primary-mid), var(--border));
}
.pain-photo {
  text-align: center;
  margin-bottom: 40px;
}
.pain-photo img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  box-shadow: 0 4px 24px rgba(var(--shadow-rgb), 0.12);
  margin: 0 auto;
}
.pain-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pain-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(var(--shadow-rgb), 0.06);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary-mid);
  transition: transform 0.3s;
  position: relative;
}
.pain-card:hover {
  transform: translateY(-4px);
}
.pain-card::after {
  content: var(--icon-0, '\1F338');
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.8rem;
  opacity: 0.3;
}
.pain-icon { font-size: 2.5rem; margin-bottom: 16px; }
.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-dark);
}
.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.pain-cta {
  text-align: center;
  margin-top: 16px;
}
.pain-cta p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

/* ===== ORIGIN きっかけ ===== */
.origin {
  padding: 80px 0;
  background: #fff;
  position: relative;
}
.origin-flower-deco {
  position: absolute;
  font-size: 5rem;
  opacity: 0.06;
}
.origin-flower-deco.tl { top: 20px; left: 20px; }
.origin-flower-deco.br { bottom: 20px; right: 20px; }
.origin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.origin-card {
  background: var(--bg-body);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  border-left: 4px solid var(--primary);
}
.origin-card.orange {
  border-left-color: var(--primary-light);
}
.origin-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.origin-card.orange .origin-label {
  background: var(--primary-light);
}
.origin-quote {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--text-main);
  position: relative;
  padding-left: 16px;
}
.origin-quote::before {
  content: '\201C';
  position: absolute;
  left: -4px;
  top: -8px;
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.3;
  font-family: Georgia, serif;
}
.origin-source {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: 12px;
}
.origin-message {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-sub);
  padding: 24px;
  background: linear-gradient(135deg, var(--bg-lighter), var(--bg-light));
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

/* ===== HEARING 保護者ヒアリング ===== */
.hearing {
  padding: 80px 0;
  background: var(--bg-section);
}
.hearing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hearing-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(var(--shadow-rgb), 0.06);
  position: relative;
  overflow: hidden;
}
.hearing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.hearing-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.hearing-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.5;
}
.hearing-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.hearing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* ===== SERVICE サービス内容 ===== */
.service {
  padding: 80px 0;
  background: #fff;
  position: relative;
}
.service::before {
  content: '\685C \0020 \65E5\672C\8A9E \0020 \82B1 \0020 \3053\3068\3070 \0020 \5B66\3076 \0020 \8AAD\3080 \0020 \66F8\304F \0020 \8A71\3059';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.03;
  white-space: nowrap;
  letter-spacing: 0.3em;
  pointer-events: none;
}
.service-highlight {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-lighter), var(--bg-light));
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border);
}
.service-highlight::before {
  content: var(--icon-0, '\1F338');
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 1.5rem;
  opacity: 0.4;
}
.service-highlight::after {
  content: var(--icon-1, '\1F33A');
  position: absolute;
  bottom: 12px;
  left: 20px;
  font-size: 1.3rem;
  opacity: 0.3;
}
.service-highlight h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  position: relative;
}
.service-highlight p {
  font-size: 1rem;
  color: var(--text-light);
  position: relative;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.service-card {
  background: var(--bg-body);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--bg-light);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(var(--shadow-rgb), 0.12);
}
.service-photo {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== JP WORDS DECORATION ===== */
.jp-words {
  padding: 32px 0;
  background: var(--bg-section);
  overflow: hidden;
  position: relative;
}
.jp-words-track {
  display: flex;
  gap: 48px;
  animation: scroll-text 30s linear infinite;
  white-space: nowrap;
}
.jp-words-track span {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.08;
  font-weight: 700;
}
@keyframes scroll-text {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== COMPARISON TABLE ===== */
.comparison {
  padding: 80px 0;
  background: var(--bg-section);
}
.comparison-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(var(--shadow-rgb), 0.08);
}
.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 0.9rem;
}
.comparison-table thead th {
  background: var(--primary-light);
  color: #fff;
  font-weight: 700;
}
.comparison-table thead th:first-child {
  background: var(--text-lighter);
}
.comparison-table thead th.highlight-col {
  background: var(--primary);
  font-size: 1rem;
}
.comparison-table tbody tr { background: #fff; }
.comparison-table tbody tr:nth-child(even) { background: var(--bg-body); }
.comparison-table tbody td {
  border-bottom: 1px solid var(--bg-light);
}
.comparison-table tbody td:last-child {
  font-weight: 600;
  color: var(--primary);
}
.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-body);
}

/* ===== RESULT 成果 ===== */
.result {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-lighter), var(--bg-light));
  position: relative;
}
.result-deco {
  position: absolute;
  font-size: 4rem;
  opacity: 0.08;
}
.result-deco.r1 { top: 30px; right: 60px; }
.result-deco.r2 { bottom: 40px; left: 40px; }
.result-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.result-item {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 2px 16px rgba(var(--shadow-rgb), 0.06);
  border: 1px solid var(--bg-light);
}
.result-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.result-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.result-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== TEACHER 講師 ===== */
.teacher {
  padding: 80px 0;
  background: #fff;
}
.teacher-main {
  background: linear-gradient(135deg, var(--bg-lighter), var(--bg-light));
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border);
}
.teacher-main::before {
  content: var(--icon-0, '\1F338');
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 1.5rem;
  opacity: 0.4;
}
.teacher-main::after {
  content: var(--icon-2, '\1F4AE');
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-size: 1.3rem;
  opacity: 0.3;
}
.teacher-photo {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  margin: 0 auto 24px;
  display: block;
}
.teacher-main h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  position: relative;
}
.teacher-main p {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
  position: relative;
}
.teacher-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.teacher-feature {
  text-align: center;
  padding: 24px;
}
.teacher-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--bg-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 2px solid var(--border);
}
.teacher-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}
.teacher-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FLOW ===== */
.flow {
  padding: 80px 0;
  background: var(--bg-body);
}
.flow-steps {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.flow-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 12px rgba(var(--shadow-rgb), 0.06);
  border: 1px solid var(--bg-light);
}
.flow-step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 14px;
}
.flow-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}
.flow-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ===== PRICING ===== */
.pricing {
  padding: 80px 0;
  background: #fff;
}
.pricing-card {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border);
}
.pricing-card::before {
  content: var(--icon-0, '\1F338');
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.5rem;
  opacity: 0.3;
}
.pricing-card::after {
  content: var(--icon-1, '\1F33A');
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-size: 1.3rem;
  opacity: 0.25;
}
.pricing-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
}
.pricing-amount {
  position: relative;
}
.pricing-amount .yen {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.pricing-amount .number {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
}
.pricing-amount .unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}
.pricing-detail {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  position: relative;
}
.pricing-includes {
  list-style: none;
  margin-top: 24px;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-includes li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px dashed rgba(var(--shadow-rgb), 0.2);
}
.pricing-includes li:last-child { border: none; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 50%, var(--bg-section) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--glow-rgb), 0.3) 0%, transparent 60%);
  border-radius: 50%;
}
.final-cta-flowers {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.final-cta-flowers span {
  position: absolute;
  opacity: 0.1;
  font-size: 3rem;
}
.final-cta-flowers .f1 { top: 10%; left: 5%; }
.final-cta-flowers .f2 { top: 20%; right: 8%; font-size: 2rem; }
.final-cta-flowers .f3 { bottom: 15%; left: 12%; font-size: 2.5rem; }
.final-cta-flowers .f4 { bottom: 10%; right: 15%; }
.final-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  position: relative;
}
.final-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  position: relative;
}
.final-cta .cta-btn {
  font-size: 1.2rem;
  padding: 18px 48px;
  position: relative;
}

/* ===== FOOTER ===== */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 32px 0;
  font-size: 0.85rem;
  margin-bottom: 60px;
}
footer .brand-name {
  color: var(--footer-brand);
  font-size: 1.1rem;
}
footer .footer-sub {
  margin-top: 8px;
}
footer .footer-copy {
  margin-top: 12px;
}

/* ===== FINAL CTA BUTTON OVERRIDE ===== */
.final-cta .cta-btn {
  font-size: 1.2rem;
  padding: 18px 48px;
  position: relative;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 60px 0 40px; }
  .hero-inner { flex-direction: column; gap: 32px; }
  .hero-visual {
    position: relative;
    width: 100%;
    height: 300px;
  }
  .hero-text { max-width: 100%; }
  .hero-bg-photo {
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  }
  .target-check-list {
    flex-direction: column;
    align-items: center;
  }
  .hero-title { font-size: 2.8rem; }
  .hero-title-sub { font-size: 1.1rem; }
  .pain-list { grid-template-columns: 1fr; }
  .origin-grid { grid-template-columns: 1fr; }
  .hearing-cards { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .result-items { grid-template-columns: 1fr; }
  .teacher-features { grid-template-columns: 1fr; }
  .teacher-main { padding: 32px 20px; }
  .flow-steps { flex-direction: column; align-items: center; }
  .flow-arrow { transform: rotate(90deg); }
  .section-title { font-size: 1.4rem; }
  .pricing-card { padding: 32px 20px; }
  .pricing-amount .number { font-size: 2.5rem; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
  .floating-cta { flex-direction: column; gap: 8px; padding: 10px 16px; }
  .floating-cta p { font-size: 0.75rem; }
  .jp-bar { letter-spacing: 0.2em; font-size: 1.1rem; }
}

/* ===== ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
