@charset "UTF-8";

/* ================================
   Design System — Fresh & Friendly
   ================================ */
:root {
  --primary: #4AADCA;
  --primary-light: #c2e6f2;
  --primary-pale: #e8f4f9;
  --primary-dark: #2e8aab;
  --mint: #6CC8A0;
  --mint-light: #d4f0e3;
  --mint-pale: #eaf7ed;
  --mint-dark: #4aa87e;
  --coral: #FF7F6B;
  --coral-dark: #e8644f;
  --ink: #2c3e50;
  --text: #4a5568;
  --text-light: #8896a6;
  --border: #dce8ee;
  --bg: #ffffff;
  --bg-light: #f7fbfc;
  --bg-blue: #f0f7fa;
  --bg-mint: #eaf7ed;

  --font-heading: 'Zen Maru Gothic', 'Rounded Mplus 1c', sans-serif;
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-accent: 'Sora', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 12px rgba(44, 62, 80, 0.06);
  --shadow-md: 0 8px 30px rgba(44, 62, 80, 0.08);
  --shadow-lg: 0 16px 48px rgba(44, 62, 80, 0.10);
  --shadow-card: 0 4px 20px rgba(74, 173, 202, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(74, 173, 202, 0.15);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; }
strong { font-weight: 700; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================
   Scroll Reveal
   ================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================
   Wave Section Dividers
   ================================ */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.wave--bottom {
  bottom: -1px;
}

.wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ================================
   Decorative Elements
   ================================ */
.section-deco {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.section-deco--right {
  top: -100px;
  right: -150px;
}

.section-deco--left {
  top: 200px;
  left: -200px;
}

.section-deco--mint {
  background: radial-gradient(circle, var(--mint-light) 0%, transparent 70%);
}

/* ================================
   Layout
   ================================ */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section--white {
  background: var(--bg);
  padding-top: 0;
}

.section--mint {
  background: var(--bg-mint);
  padding-top: 0;
}

.section--final {
  background: none;
  padding: 0;
  overflow: hidden;
}

.sub-section {
  margin-top: 72px;
}

.cost-section-full {
  width: 100%;
  background: var(--bg-blue);
  padding: 64px 0;
}

.sub-section:first-of-type {
  margin-top: 0;
}

.inner--pt-lg { padding-top: 100px; }
/* ブロック画像（ネットワーク型…）直後の「掲載するメリット」を下げる */
.sub-section + .inner--pt-lg { padding-top: 140px; }
.sub-section--lg { margin-top: 100px; }
/* 横スクロール一覧と緑CTAの間隔を広げる */
.section--mint .sub-section--cta-gap { margin-top: 96px; }
.voice-message--spaced { margin-top: 36px; }
.cost-chart { margin-top: 24px; }
.cta-wrapper { margin-top: 32px; margin-bottom: 80px; }

.sub-section--no-divider::before {
  display: none !important;
}

.section--white .inner > .sub-section + .sub-section::before,
.section--mint .sub-section + .sub-section::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: var(--border);
  margin: 0 0 72px;
  margin-left: calc(-50vw + 50%);
}

.section-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 72px 0 0;
}

/* ================================
   仮画像
   ================================ */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(135deg, var(--bg-blue), var(--primary-pale));
  color: var(--text-light);
  font-size: 11px;
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.img-placeholder::before,
.img-placeholder::after {
  content: "";
  position: absolute;
  background: rgba(74, 173, 202, 0.08);
}

.img-placeholder::before {
  width: 150%;
  height: 1px;
  transform: rotate(25deg);
}

.img-placeholder::after {
  width: 150%;
  height: 1px;
  transform: rotate(-25deg);
}

.img-placeholder--sm { font-size: 10px; padding: 8px; }

.img-placeholder--teal {
  background: linear-gradient(135deg, var(--mint-pale), var(--mint-light));
  color: var(--mint-dark);
}

.img-placeholder--teal::before,
.img-placeholder--teal::after {
  background: rgba(108, 200, 160, 0.1);
}

/* ================================
   Typography — Section
   ================================ */
.section-en {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
}

.section-en::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 1px;
}

.section-en--mint {
  color: var(--mint-dark);
}

.section-en--mint::after {
  background: linear-gradient(90deg, var(--mint), transparent);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--mint));
  margin-top: 16px;
  border-radius: 2px;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center::after {
  margin-left: auto;
  margin-right: auto;
}

.section-heading--no-line::after {
  display: none;
}

.section-heading--no-line {
  font-size: 32px;
  margin-bottom: 56px;
}

.section-hero--full {
  width: 100%;
  min-height: 360px;
  max-height: 440px;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}

.section-hero--full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  max-height: 440px;
}

/* ================================
   ブリードブロック（画像が端まで広がる2カラム）
   ================================ */
.block-bleed {
  display: grid;
  grid-template-columns: 5fr 5fr;
  min-height: 420px;
  max-height: 500px;
  align-items: center;
}

.block-bleed-img {
  height: 100%;
  min-height: 400px;
  max-height: 500px;
  overflow: hidden;
}

.block-bleed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  max-height: 500px;
  transition: transform 0.8s var(--ease-out-expo);
}

.block-bleed-img:hover img {
  transform: scale(1.03);
}

.block-bleed-body {
  padding: 48px 56px 48px 64px;
  max-width: 600px;
}

/* 反転：画像が右端 */
.block-bleed--reverse {
  direction: rtl;
}

.block-bleed--reverse > * {
  direction: ltr;
}

.block-bleed--reverse .block-bleed-body {
  margin-left: 0;
  padding: 48px 64px 48px 56px;
}

/* ================================
   マーカー
   ================================ */
.marker {
  background: none;
  padding: 0;
  position: relative;
  display: inline-block;
}

.marker::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 2px;
  height: 10px;
  background: linear-gradient(90deg, var(--primary-light), var(--mint-light));
  opacity: 0.6;
  z-index: -1;
  border-radius: 4px;
}

.marker--white::after {
  background: rgba(255, 255, 255, 0.35);
}

/* ================================
   見出し
   ================================ */
.sub-heading {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 28px;
  letter-spacing: 0;
  color: var(--ink);
}

.sub-heading--center {
  text-align: center;
}

.sub-heading--center::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--mint));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ================================
   テキスト
   ================================ */
.text {
  font-size: 16px;
  line-height: 2.1;
  color: var(--text);
  margin-bottom: 20px;
}

.text:last-child { margin-bottom: 0; }
.text--center { text-align: center; }
.text--strong { font-size: 19px; font-weight: 700; color: var(--ink); }

/* 語りかけメッセージ */
.voice-message {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--mint-dark);
  text-align: center;
  line-height: 1.8;
  position: relative;
  padding: 24px 32px;
  background: #d4f0e3;
  border-radius: var(--radius-md);
}

.voice-message::before,
.voice-message::after {
  display: none;
}

.voice-message strong {
  color: var(--mint-dark);
}

.voice-message--blue {
  background: #e0f0f6;
  color: var(--primary-dark);
}

.voice-message--blue strong {
  color: var(--primary-dark);
}

/* アクセントカラー付きテキスト */
.text-accent {
  color: var(--primary-dark);
  font-weight: 700;
}

.text-accent--coral {
  color: var(--coral);
  font-weight: 700;
}

.text-accent--mint {
  color: var(--mint-dark);
  font-weight: 700;
}

/* ================================
   FV — Clean Split
   ================================ */
.fv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  height: 100svh;
  position: relative;
  background: var(--bg);
}

.fv::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 50%;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.fv-panel {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  max-height: 100vh;
  max-height: 100svh;
}

.fv-panel--clinic {
  background: linear-gradient(175deg, var(--primary-pale) 0%, var(--bg) 60%);
}

.fv-panel--dh {
  background: linear-gradient(175deg, var(--mint-pale) 0%, var(--bg) 60%);
}

.fv-img {
  height: 55%;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.fv-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: 1;
}

.fv-panel--clinic .fv-img::after {
  background: linear-gradient(to top, var(--bg) 5%, rgba(255,255,255,0.3) 40%, transparent 100%);
}

.fv-panel--dh .fv-img::after {
  background: linear-gradient(to top, var(--bg) 5%, rgba(255,255,255,0.3) 40%, transparent 100%);
}

.fv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 48px 40px;
  min-height: 0;
  position: relative;
  z-index: 2;
}

.fv-label {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.fv-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}

.fv-label--mint {
  color: var(--mint-dark);
}

.fv-label--mint::before {
  background: var(--mint-dark);
}

.fv-heading {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.fv-sub {
  font-size: 14px;
  color: var(--text-light);
  line-height: 2.1;
  margin-bottom: 32px;
}

/* ================================
   ボタン
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  gap: 8px;
  border-radius: 50px;
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(74, 173, 202, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 173, 202, 0.4);
}

.btn--mint {
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(108, 200, 160, 0.3);
}

.btn--mint:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108, 200, 160, 0.4);
}

.btn--mint-outline {
  background: transparent;
  color: var(--mint-dark);
  border-color: var(--mint);
}

.btn--mint-outline:hover {
  background: var(--mint);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--white-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn--white-ghost:hover {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
}

/* ================================
   コンセプト
   ================================ */
.concept {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.concept::before {
  display: none;
}

.concept .inner {
  position: relative;
  z-index: 1;
}

.concept-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}

.concept-split-text {
  text-align: left;
}

.concept-split-text .section-heading {
  text-align: left;
}

.concept-split-text .section-heading::after {
  margin-left: 0;
}

.concept-split-img {
  border-radius: var(--radius-xl);
  overflow: visible;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-split-img::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary), var(--mint));
  z-index: -1;
}

.concept-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  border-radius: var(--radius-xl);
  transition: transform 0.8s var(--ease-out-expo);
}

.concept-split-img:hover img {
  transform: scale(1.03);
}

.concept-text {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.concept-split-text p {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 28px;
}

.concept-split-text p:last-child { margin-bottom: 0; }

.concept-text p {
  font-size: 17px;
  line-height: 2.3;
  color: var(--text);
  margin-bottom: 28px;
}

.concept-text p:last-child { margin-bottom: 0; }

.concept-text-last {
  font-family: var(--font-heading) !important;
  font-size: 23px !important;
  color: var(--ink) !important;
  font-weight: 700;
  line-height: 2 !important;
  margin-top: 48px;
  margin-bottom: 64px;
}

.concept-compare {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: center;
  max-width: 840px;
  margin: 0 auto;
}

.concept-compare-card {
  background: #fff;
  padding: 36px 28px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
}

.concept-compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.concept-compare-card--after {
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
  background: linear-gradient(180deg, #fff 80%, var(--primary-pale) 100%);
}

.concept-compare-card--after::before {
  display: none;
}

.concept-compare-label {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--border);
  margin-bottom: 8px;
  line-height: 1;
}

.concept-compare-card--after .concept-compare-label {
  color: var(--primary-light);
}

.concept-compare-img {
  min-height: 160px;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
}

.concept-compare-caption {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.02em;
}

.concept-compare-card--after .concept-compare-caption {
  color: var(--primary-dark);
}

/* フロー図解 */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 8px 24px;
}

.flow-diagram-node {
  text-align: center;
  flex-shrink: 0;
}

.flow-diagram-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.flow-diagram-circle--gray {
  background: #f2f4f6;
  border: 1.5px solid #dce1e6;
}

.flow-diagram-circle--blue {
  background: var(--primary-pale);
  border: 1.5px solid var(--primary-light);
}

.flow-diagram-circle--mint {
  background: var(--mint-pale);
  border: 1.5px solid var(--mint-light);
}

.flow-diagram-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.flow-diagram-arrow-rich {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 0 12px;
  margin-bottom: 20px;
}

.flow-diagram-amount {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  max-width: 6em;
}

.flow-diagram-amount--red { color: var(--coral-dark); }
.flow-diagram-amount--mint {
  color: var(--mint-dark);
  max-width: none;
  white-space: nowrap;
  font-size: 15px;
}

.flow-diagram-line {
  display: flex;
  align-items: center;
  gap: 0;
  width: 64px;
}

.flow-diagram-line-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.flow-diagram-line-bar {
  flex: 1;
  height: 2px;
}

.flow-diagram-line-head {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  flex-shrink: 0;
}

.flow-diagram-line--red .flow-diagram-line-dot { background: var(--coral-dark); }
.flow-diagram-line--red .flow-diagram-line-bar { background: var(--coral-dark); }
.flow-diagram-line--red .flow-diagram-line-head { border-left: 8px solid var(--coral-dark); }

.flow-diagram-line--mint .flow-diagram-line-dot { background: var(--mint-dark); }
.flow-diagram-line--mint .flow-diagram-line-bar { background: var(--mint-dark); }
.flow-diagram-line--mint .flow-diagram-line-head { border-left: 8px solid var(--mint-dark); }

.flow-diagram-bottom {
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
}

.flow-diagram-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  padding: 10px 0;
}

.flow-diagram-result--gray {
  color: var(--text-light);
}

.flow-diagram-result--mint {
  color: var(--mint-dark);
}

.concept-compare-card--after .flow-diagram-bottom {
  border-top-color: var(--mint-light);
}

.concept-compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-compare-arrow span {
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  position: relative;
  border-radius: 2px;
}

.concept-compare-arrow span::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--primary);
}

/* ================================
   コストボックス
   ================================ */
.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin: 36px 0;
}

/* コストグラフ */
.cost-chart-title {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.cost-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  height: 120px;
  padding: 0 8px;
}

.cost-chart-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}

.cost-chart-value {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  color: var(--coral-dark);
  margin-bottom: 6px;
  white-space: nowrap;
}

.cost-chart-bar {
  width: 100%;
  max-width: 40px;
  background: linear-gradient(180deg, var(--coral), var(--coral-dark));
  border-radius: 4px 4px 0 0;
  min-height: 8px;
  opacity: 0.8;
}

.cost-chart-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-light);
  margin-top: 8px;
  font-weight: 500;
}

.cost-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 36px;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.cost-box--accent {
  border-color: var(--border);
  background: #fff;
}

.cost-box-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.cost-row:last-of-type { border-bottom: none; }
.cost-row dt { color: var(--text-light); }
.cost-row dd { font-weight: 700; font-size: 16px; }

.cost-value--lg span {
  font-size: 24px;
  font-weight: 700;
  color: var(--coral);
  font-family: var(--font-accent);
}

.cost-summary-wrap {
  position: relative;
  max-width: 680px;
  margin: 28px auto 0;
}

.cost-summary-chara {
  position: absolute;
  left: -110px;
  bottom: 0;
  width: 110px;
}

.cost-summary-chara img {
  width: 100%;
  height: auto;
  display: block;
}

.cost-summary {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  line-height: 1.9;
  padding: 24px 32px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .cost-summary-chara { left: -10px; width: 60px; }
  .cost-summary-wrap { max-width: 100%; }
}

@media (max-width: 480px) {
  .cost-summary-chara { display: none; }
}

.dh-message-with-chara {
  position: relative;
}

.dh-message-chara {
  position: absolute;
  right: 0;
  bottom: -32px;
  width: 110px;
  pointer-events: none;
}

.dh-message-chara img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-fade img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  opacity: 0;
  animation: photoFade 12s infinite;
}

.photo-fade img:first-child {
  position: relative;
}

.photo-fade img:nth-child(1) { animation-delay: 0s; }
.photo-fade img:nth-child(2) { animation-delay: 4s; }
.photo-fade img:nth-child(3) { animation-delay: 8s; }

/* 2枚を交互にクロスフェードさせる場合 */
.photo-fade--2 img {
  animation-name: photoFade2;
  animation-duration: 8s;
}
.photo-fade--2 img:nth-child(1) { animation-delay: 0s; }
.photo-fade--2 img:nth-child(2) { animation-delay: 4s; }

@keyframes photoFade {
  0%    { opacity: 0; }
  3%    { opacity: 1; }
  33%   { opacity: 1; }
  36%   { opacity: 0; }
  100%  { opacity: 0; }
}

@keyframes photoFade2 {
  0%    { opacity: 0; }
  6%    { opacity: 1; }
  50%   { opacity: 1; }
  56%   { opacity: 0; }
  100%  { opacity: 0; }
}

@media (max-width: 480px) {
  .dh-message-chara { display: none; }
}

.cost-highlight {
  font-size: 16px;
  font-weight: 700;
  color: var(--coral-dark);
  text-align: center;
  padding: 24px 0 0;
  border-top: 2px solid var(--primary-light);
  margin-top: 16px;
}

.chart-area {
  min-height: 240px;
  overflow: hidden;
  margin: 36px 0;
  border-radius: var(--radius-md);
}

.chart-area--dh {
  min-height: 200px;
  overflow: hidden;
  margin-top: 36px;
}

/* ================================
   ブロック（2カラム）
   ================================ */
.block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.block--reverse { direction: rtl; }
.block--reverse > * { direction: ltr; }

.block-img {
  min-height: 320px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.block-img--lg { min-height: 380px; }

.block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  border-radius: var(--radius-xl);
  transition: transform 0.8s var(--ease-out-expo);
}

.block-img:hover img {
  transform: scale(1.03);
}

.block-img--lg img { min-height: 380px; }

/* ================================
   リスト
   ================================ */
.dot-list { margin: 24px 0; }
.dot-list li {
  font-size: 16px;
  color: var(--text);
  padding: 10px 0 10px 28px;
  position: relative;
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--primary), var(--mint));
  border-radius: 50%;
}

.check-list {
  margin: 24px auto;
  max-width: 480px;
}
.check-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--mint), var(--primary));
  clip-path: polygon(20% 45%, 8% 58%, 38% 85%, 92% 20%, 78% 10%, 36% 65%);
}

/* ================================
   フロー — Steps
   ================================ */
.flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 36px 0;
}

.flow-step {
  flex: 1;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px 16px 36px;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.flow-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}

.flow-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--mint));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(74, 173, 202, 0.25);
}

.flow-num span {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.flow-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink);
}

.flow-arrow {
  width: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--primary-light);
}

/* ================================
   メリット — Cards
   ================================ */
.merit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 36px 0;
}

.merit-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 44px 20px 36px;
  min-width: 0;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.merit-card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--mint));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.merit-card:hover::after {
  opacity: 1;
}

.merit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}

.merit-icon {
  margin-bottom: 20px;
}

.merit-icon svg,
.merit-icon img {
  display: block;
  margin: 0 auto;
}

.merit-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  color: var(--primary-dark);
}

/* ================================
   比較テーブル
   ================================ */
/* ================================
   経営比較カード
   ================================ */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin: 36px 0;
}

.compare-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.compare-card--recommend {
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
}

.compare-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--mint));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.compare-card-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.compare-card--recommend .compare-card-label {
  border-bottom-color: var(--primary-light);
  color: var(--primary-dark);
}

.compare-card-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.compare-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.compare-card-row:last-child {
  border-bottom: none;
}

.compare-card-row dt {
  color: var(--text-light);
  font-size: 14px;
}

.compare-card-row dd {
  font-weight: 600;
  color: var(--text);
}

.compare-card-good {
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
}

.compare-gap {
  width: 20px;
}

/* ================================
   料金 — Price Box
   ================================ */
.price-box {
  background: #fff;
  border: 2px solid var(--primary-light);
  padding: 64px 48px 56px;
  text-align: center;
  margin: 36px 0;
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.price-box::before {
  content: "PRICE";
  position: absolute;
  top: -12px;
  left: 48px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--primary-dark);
  background: #fff;
  padding: 0 16px;
}

.price-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}

.price-item {
  flex: 1;
  text-align: center;
  padding: 0 28px;
}

.price-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.price-label {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-weight: 700;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.price-value {
  font-family: var(--font-accent);
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
}

.price-value span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}

.price-desc {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
}

.price-note {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}

/* ================================
   掲載対象
   ================================ */
.target-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 48px 56px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.target-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--mint));
}

/* ================================
   CTA
   ================================ */
.cta-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #2a7e9e 100%);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(74, 173, 202, 0.3);
}

.cta-block::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -30%;
  width: 70%;
  height: 250%;
  background: radial-gradient(ellipse, rgba(108, 200, 160, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-block::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-block--white {
  background: #fff;
  padding: 64px 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.cta-block--white::before,
.cta-block--white::after {
  display: none;
}

.cta-block--mint {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 50%, #3d9672 100%);
  box-shadow: 0 12px 40px rgba(108, 200, 160, 0.3);
}

/* ================================
   Clinic ヒーローオーバーレイ
   ================================ */
.hero-stripe {
  display: flex;
  flex-direction: column;
}

.hero-stripe-bar {
  height: 16px;
}

.hero-stripe-bar:nth-child(1) { opacity: 0.08; }
.hero-stripe-bar:nth-child(2) { opacity: 0.15; }
.hero-stripe-bar:nth-child(3) { opacity: 0.25; }
.hero-stripe-bar:nth-child(4) { opacity: 0.4; }
.hero-stripe-bar:nth-child(5) { opacity: 0.6; }

.hero-stripe--blue .hero-stripe-bar {
  background: var(--primary);
}

.hero-stripe--mint .hero-stripe-bar {
  background: var(--mint);
}

.hero-stripe--mint .hero-stripe-bar:nth-child(1) {
  background: #f5fbf7;
  opacity: 1;
}

.hero-stripe--mint .hero-stripe-bar:nth-child(2) { opacity: 0.12; }
.hero-stripe--mint .hero-stripe-bar:nth-child(3) { opacity: 0.22; }
.hero-stripe--mint .hero-stripe-bar:nth-child(4) { opacity: 0.35; }
.hero-stripe--mint .hero-stripe-bar:nth-child(5) { opacity: 0.55; }

.clinic-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  max-height: 480px;
  overflow: hidden;
}

.clinic-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  position: absolute;
  top: 0;
  left: 0;
}

.clinic-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(74, 173, 202, 0.85) 0%, rgba(46, 138, 171, 0.8) 100%);
}

.clinic-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px;
}

.clinic-hero .section-en--white {
  color: rgba(255, 255, 255, 0.8);
}

.clinic-hero .section-en--white::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
}

.clinic-hero-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.clinic-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
}

/* ================================
   DH ヒーローオーバーレイ
   ================================ */
.dh-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  max-height: 480px;
  overflow: hidden;
}

.dh-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  position: absolute;
  top: 0;
  left: 0;
}

.dh-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(108, 200, 160, 0.85) 0%, rgba(74, 173, 202, 0.8) 100%);
}

.dh-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px;
}

.dh-hero .section-en--white {
  color: rgba(255, 255, 255, 0.8);
}

.dh-hero .section-en--white::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
}

.dh-hero-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.dh-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
}

/* ================================
   DH メッセージ横幅100%帯
   ================================ */
.dh-message-full {
  width: 100%;
  padding: 76px 48px;
  background: #fff;
  margin: 0;
}

.dh-message-full-inner {
  max-width: 680px;
  margin: 0 auto;
}

.dh-message-full-inner .text {
  font-family: var(--font-heading);
  margin-bottom: 24px;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 36px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.cta-heading--dark { color: var(--ink); }

.cta-text {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: -16px auto 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.9;
}

.cta-text + .cta-btns { margin-top: 32px; }

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ================================
   DH セクション固有
   ================================ */
.dh-message-box {
  background: #fff;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.dh-message-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--mint-light) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.dh-explain { text-align: center; }

.dh-example {
  background: #fff;
  padding: 36px 40px;
  display: inline-block;
  margin: 28px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.dh-example-inline {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 28px 0;
}

.dh-example-inline-label {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-right: 12px;
  vertical-align: middle;
}

.dh-example-inline-num {
  font-family: var(--font-accent);
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: baseline;
  line-height: 1;
}

.dh-example-label {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.dh-example-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.dh-example-value span {
  font-family: var(--font-accent);
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 毎月支援モデル図解 */
.support-model {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}

.support-model-header {
  text-align: center;
  margin-bottom: 28px;
}

.support-model-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.support-model-calc {
  font-size: 14px;
  color: var(--text-light);
}

.support-model-calc strong {
  font-size: 18px;
  color: var(--mint-dark);
}

.support-model-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.support-model-year {
  display: grid;
  grid-template-columns: 60px 1fr 80px;
  align-items: center;
  gap: 16px;
}

.support-model-year-label {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.support-model-months {
  display: flex;
  gap: 4px;
}

.support-model-months span {
  flex: 1;
  height: 28px;
  background: linear-gradient(180deg, var(--mint), var(--mint-dark));
  border-radius: 3px;
}

.support-model-year:nth-child(1) .support-model-months span { opacity: 0.9; }
.support-model-year:nth-child(2) .support-model-months span { opacity: 0.7; }
.support-model-year:nth-child(3) .support-model-months span { opacity: 0.5; }

.support-model-year-amount {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: var(--mint-dark);
  text-align: right;
}

.support-model-total {
  text-align: center;
  padding: 16px 0;
  border-top: 2px solid var(--mint-light);
}

.support-model-total p {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--ink);
}

.support-model-total strong {
  font-size: 22px;
  color: var(--mint-dark);
}

.support-model-note {
  text-align: center;
  margin-top: 12px;
}

.support-model-note p {
  font-size: 12px;
  color: var(--text-light);
}

.dh-safe-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 48px auto 36px;
  max-width: 800px;
}

.dh-safe-card {
  flex: 1;
  max-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px 16px 24px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.dh-safe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--mint-light);
}

.dh-safe-icon { margin-bottom: 20px; }

.dh-safe-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.dh-safe-value {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--mint), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dh-safe-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-top: 12px;
}

.dh-merit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 36px 0;
}

.dh-merit-card {
  background: #fff;
  padding: 32px 16px 28px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.dh-merit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--mint-light);
}

.dh-merit-icon {
  margin-bottom: 16px;
}

.dh-merit-icon svg,
.dh-merit-icon img {
  display: block;
  margin: 0 auto;
}

.dh-merit-num {
  font-family: var(--font-accent);
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light), var(--mint-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.dh-merit-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink);
}

/* 医院カード */
.clinic-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 0;
}

.clinic-card {
  display: block;
  background: #fff;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.clinic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}

.clinic-card-img {
  height: 180px;
  overflow: hidden;
}

.clinic-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out-expo);
}

.clinic-card:hover .clinic-card-img img {
  transform: scale(1.06);
}

.clinic-card-body { padding: 24px; }

.clinic-card-area {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.clinic-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.clinic-card-support {
  font-size: 14px;
  color: var(--text-light);
}

/* 丸い矢印アイコン（リンク文言の代わり） */
.clinic-card-go {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--primary-light, var(--primary));
  color: var(--primary);
  font-size: 15px;
  line-height: 1;
  background: #fff;
  transition: background 0.3s var(--ease-out-expo),
              color 0.3s var(--ease-out-expo),
              border-color 0.3s var(--ease-out-expo),
              transform 0.3s var(--ease-out-expo);
}

.clinic-card:hover .clinic-card-go {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateX(4px);
}

/* ================================
   フッターCTA
   ================================ */
.final-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  padding: 0;
}

.final-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
  position: absolute;
  top: 0;
  left: 0;
}

.final-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 173, 202, 0.82) 0%, rgba(108, 200, 160, 0.78) 100%);
}

.final-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px;
  text-align: center;
}

.footer-cta-en {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.footer-cta-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  color: #fff;
}

.footer-cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2.1;
  margin-bottom: 36px;
}

.footer-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================================
   ガイドキャラクター
   ================================ */
.guide-chara {
  position: relative;
}

.guide-chara-img {
  position: absolute;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}

.guide-chara-img--left {
  left: -60px;
}

.guide-chara-img--right {
  right: -60px;
}

.guide-chara-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト横に並べるインライン型 */
.guide-inline {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
}

.guide-inline-img {
  width: 100px;
  flex-shrink: 0;
}

.guide-inline-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA左右配置 */
.guide-cta-pair {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}

.guide-cta-img {
  width: 100px;
  flex-shrink: 0;
}

.guide-cta-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .guide-chara-img {
    width: 80px;
  }
  .guide-chara-img--left { left: -10px; }
  .guide-chara-img--right { right: -10px; }
  .guide-inline-img,
  .guide-cta-img { width: 72px; }
}

@media (max-width: 480px) {
  .guide-chara-img { display: none; }
  .guide-cta-img { width: 60px; }
  .guide-inline-img { width: 60px; }
}

/* ================================
   ヘッダー
   ================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out-expo);
  background: transparent;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(44, 62, 80, 0.06);
  padding: 10px 0;
}

.header.is-hidden {
  transform: translateY(-100%);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo-mark {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

img.header-logo-mark {
  width: 150px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  background: none;
}

.header.is-scrolled .header-logo-mark {
  color: #fff;
}

.header-logo-mark--scrolled { display: none; }
.header.is-scrolled .header-logo-mark--default { display: none; }
.header.is-scrolled .header-logo-mark--scrolled { display: inline-block; }

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.header.is-scrolled .header-logo-text {
  color: var(--ink);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.header.is-scrolled .header-nav-link {
  color: var(--text);
}

.header-nav-link:hover {
  color: var(--ink);
}

.header.is-scrolled .header-nav-link:hover {
  color: var(--primary);
}

.header-nav-cta.btn--sm {
  padding: 8px 24px;
  font-size: 13px;
}

/* ================================
   FV スクロールインジケーター
   ================================ */
.fv-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.fv-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
  position: relative;
  overflow: hidden;
}

.fv-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

.fv-scroll-text {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--primary-light);
}

/* ================================
   ドットパターン装飾
   ================================ */
.dot-pattern {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--primary-light) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.dot-pattern--right {
  top: 120px;
  right: 40px;
}

.dot-pattern--left {
  top: 300px;
  left: 40px;
}

/* ================================
   ブレイクアウト（横幅100%）
   ================================ */
.breakout {
  width: 100%;
  margin: 56px 0;
  padding: 56px 0;
  position: relative;
}

.breakout--blue {
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--bg-light) 50%, var(--mint-pale) 100%);
}

.breakout--light {
  background: transparent;
}

.breakout-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ================================
   フローワイド（横幅100%）
   ================================ */
.flow-wide {
  overflow-x: auto;
  padding: 32px 0;
  -webkit-overflow-scrolling: touch;
}

.flow-wide-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: max-content;
  padding: 0 max(48px, calc((100vw - 1100px) / 2 + 48px));
}

/* ================================
   医院一覧 地方別グループ
   ================================ */
.clinic-group + .clinic-group {
  margin-top: 48px;
}

.clinic-group:first-child {
  margin-top: 40px;
}

.clinic-group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

/* 地方名バッジ（東北地方／関東地方／中部地方） */
.clinic-group-region {
  flex-shrink: 0;
  padding: 7px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.clinic-group-count {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* 件数の右側に伸びる罫線 */
.clinic-group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ================================
   医院カード 4列グリッド
   ================================ */
.clinic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.clinic-grid .clinic-card {
  display: flex;
  flex-direction: column;
}

.clinic-grid .clinic-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  height: 100%;
  min-height: 132px;
  padding: 18px 20px;
}

/* 都道府県＋市区町村 */
.clinic-grid .clinic-card-area {
  margin-bottom: 2px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* 医院名の行数が違っても矢印を右下で揃える */
.clinic-grid .clinic-card-name {
  margin-bottom: 0;
}

.clinic-grid .clinic-card-go {
  margin-top: auto;
  align-self: flex-end;
}

/* ================================
   フローコネクター
   ================================ */
.flow-connector {
  width: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.flow-connector::before {
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--mint-light));
  border-radius: 1px;
}

.flow-connector::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
}

/* ================================
   メリット説明文
   ================================ */
.merit-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 12px;
}

/* ================================
   CTA ミント
   ================================ */
/* ================================
   フルワイドCTA（横幅100%）
   ================================ */
.cta-full {
  width: 100%;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.cta-full-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-full--blue {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #2a7e9e 100%);
}

.cta-full--mint {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 50%, #3d9672 100%);
}

.cta-full::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -30%;
  width: 70%;
  height: 250%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-full::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05), transparent 70%);
  pointer-events: none;
}

/* ================================
   フッター
   ================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.site-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-footer-logo .header-logo-mark {
  color: #fff;
}

.site-footer-logo img.header-logo-mark {
  background: none;
}

.site-footer-logo .header-logo-text {
  color: #fff;
  font-size: 14px;
}

.site-footer-desc {
  margin-top: 16px;
  line-height: 1.8;
  max-width: 320px;
}

.site-footer-nav {
  display: flex;
  gap: 56px;
}

.site-footer-nav-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.site-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.site-footer-nav a:hover {
  color: #fff;
}

.site-footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.site-footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

/* ================================
   Responsive — Tablet (1024px)
   ================================ */
@media screen and (max-width: 1024px) {
  .inner { padding: 0 32px; }

  /* FV */
  .fv-heading { font-size: 26px; }

  /* ブリードブロック */
  .block-bleed { grid-template-columns: 4fr 6fr; }

  /* メリット */
  .merit-grid { grid-template-columns: repeat(2, 1fr); }

  /* 医院一覧 */
  .clinic-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  /* 料金 */
  .price-items { flex-wrap: wrap; }

  /* 比較カード */
  .compare-cards { grid-template-columns: 1fr; gap: 16px; }
  .compare-gap { display: none; }

  /* DH */
  .dh-safe-grid { flex-wrap: wrap; max-width: 640px; }
  /* 白帯「奨学金を、キャリアの力に。」直後の緑セクション見出しを下げる */
  .dh-message-full + .inner--pt-lg { padding-top: 140px; }
}

/* ================================
   Responsive — Mobile (768px)
   ================================ */
@media screen and (max-width: 768px) {
  :root { font-size: 15px; }

  .inner { padding: 0 24px; }
  .section { padding: 48px 0; }
  .sub-section { margin-top: 48px; }
  .final-hero { min-height: 420px; }
  .final-hero img { min-height: 420px; }
  .final-hero-overlay { min-height: 420px; }
  .final-hero-content { padding: 48px 24px; }
  .voice-message {
    font-size: 15.5px;
    line-height: 1.85;
    padding: 22px 20px;
    text-align: left;
  }
  .section-deco { width: 250px; height: 250px; }
  .wave svg { height: 40px; }

  .text { font-size: 15px; line-height: 1.85; margin-bottom: 16px; }
  .text--strong { font-size: 16px; line-height: 1.8; }
  .concept-text-last { font-size: 17px !important; line-height: 1.8 !important; }
  .check-list li { font-size: 15px; }
  .footer-cta-sub { font-size: 15px; line-height: 1.9; }
  .dh-hero-sub,
  .clinic-hero-sub { font-size: 15px; line-height: 1.8; }
  .price-note { font-size: 14px; }
  .fv-sub { font-size: 13.5px; line-height: 1.9; }

  /* FV */
  .fv {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }
  .fv::after { display: none; }
  .fv-panel { max-height: none; }
  .fv-img { height: 200px; min-height: 200px; }
  .fv-content { padding: 28px 24px 44px; }
  .fv-label { font-size: 11px; margin-bottom: 14px; }
  .fv-sub { margin-bottom: 28px; }
  .fv-scroll { display: none; }

  /* ヘッダー */
  .header { padding: 10px 0; }
  .header-inner { padding: 0 16px; }
  .header-nav-link { display: none; }
  img.header-logo-mark { width: 100px; }
  .header-logo { gap: 8px; }
  .header-logo-text { font-size: 15px; white-space: nowrap; }
  .header-nav-cta.btn,
  .header-nav-cta.btn--sm {
    width: auto;
    max-width: none;
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* ブレイクアウト */
  .breakout { margin: 36px 0; padding: 36px 0; }
  .breakout-inner { padding: 0 24px; }
  .flow-wide { overflow-x: visible; }
  .flow-wide-track {
    padding: 0 24px;
    flex-wrap: wrap;
    gap: 12px;
    min-width: auto;
  }
  .flow-step { flex: 1 1 calc(50% - 12px); min-width: calc(50% - 12px); }
  .clinic-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
  .clinic-grid .clinic-card-body {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2px 14px;
    min-height: 0;
    padding: 13px 14px 13px 16px;
  }
  .clinic-grid .clinic-card-area {
    grid-column: 1;
    grid-row: 1;
    font-size: 12px;
    margin-bottom: 0;
  }
  .clinic-grid .clinic-card-name {
    grid-column: 1;
    grid-row: 2;
    font-size: 16px;
  }
  .clinic-grid .clinic-card-go {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    margin-top: 0;
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .clinic-group + .clinic-group { margin-top: 28px; }
  .clinic-group:first-child { margin-top: 24px; }
  .clinic-group-title { gap: 8px; margin-bottom: 12px; }
  .clinic-group-region { padding: 6px 16px; font-size: 14px; }
  .section--mint .sub-section--cta-gap { margin-top: 64px; }

  /* ドットパターン */
  .dot-pattern { display: none; }

  /* フローコネクター */
  .flow-connector { display: none; }

  /* 見出し */
  .section-heading { font-size: 20px; margin-bottom: 24px; }
  .concept .section-heading { margin-top: 16px; }
  .section-heading::after { margin-top: 16px; }
  .sub-heading { font-size: 21px; }
  /* 24pxだと2行目「未来の歯科衛生士への投資に。」が右端いっぱいになる */
  .fv-heading { font-size: 21px; line-height: 1.6; }
  .footer-cta-heading { font-size: 28px; }

  /* ブロック */
  .block { grid-template-columns: 1fr; gap: 24px; }
  .block--reverse { direction: ltr; }
  .block-img { min-height: 220px; }
  .block-img--lg { min-height: 260px; }

  /* ブリードブロック */
  .block-bleed { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .block-bleed--reverse { direction: ltr; }
  .block-bleed-img { min-height: 240px; }
  .block-bleed-img img { min-height: 240px; }
  .block-bleed-body,
  .block-bleed--reverse .block-bleed-body {
    margin-left: 0;
    padding: 32px 24px;
    max-width: none;
  }

  /* フルワイドヒーロー */
  .section-hero--full { min-height: 220px; max-height: 280px; }
  .section-hero--full img { min-height: 220px; max-height: 280px; }

  /* セクションヒーロー */
  .section-hero {
    min-height: 220px;
    margin-bottom: 48px;
  }

  /* コンセプト */
  .flow-diagram { padding: 24px 12px 16px; }
  .flow-diagram-circle { width: 72px; height: 72px; }
  .flow-diagram-circle svg { width: 30px; height: 30px; }
  .flow-diagram-label { font-size: 13px; }
  .flow-diagram-amount { font-size: 15px; }
  .flow-diagram-amount--mint { font-size: 12.5px; }
  .flow-diagram-arrow-rich { padding: 0 6px; }
  .flow-diagram-line { width: 40px; }
  .flow-diagram-result { font-size: 14px; }
  .concept-split { grid-template-columns: 1fr; gap: 32px; }
  .concept-split-img img { min-height: 240px; }
  .concept::before { font-size: 50px; }
  .concept-text p { font-size: 15px; }
  .concept-split-text p { font-size: 15px; line-height: 1.85; margin-bottom: 20px; }
  .concept-text-last { font-size: 17px !important; line-height: 1.8 !important; }
  .concept-compare {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .concept-compare-label { font-size: 22px; }
  .concept-compare-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

  /* フロー */
  .flow { flex-wrap: wrap; gap: 12px; }
  .flow-step { flex: 1 1 calc(50% - 12px); min-width: calc(50% - 12px); }
  .flow-arrow { display: none; }

  /* メリット：2列でカード内幅が127pxしかないため余白を詰めて文字を収める */
  .merit-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .merit-card { padding: 30px 10px 26px; }
  .merit-title { font-size: 14px; letter-spacing: 0; }
  .merit-text { font-size: 13px; }

  /* コスト */
  .cost-grid { grid-template-columns: 1fr; }
  .cost-box { padding: 28px 20px; min-width: 0; }
  .cost-chart-bars { overflow-x: auto; }
  .cost-chart-value { font-size: 12px; }
  .cost-chart-label { font-size: 12px; }

  /* 料金 */
  .price-items { flex-direction: column; gap: 28px; }
  .price-divider { width: 80%; max-width: 200px; height: 1px; margin: 0 auto; }
  .price-box { padding: 40px 24px; }
  .price-value { font-size: 26px; }
  .price-box::before { left: 24px; }

  /* 比較カード */
  .compare-cards { grid-template-columns: 1fr; gap: 16px; }
  .compare-gap { display: none; }
  .compare-vs { padding: 4px 0; }
  .compare-card { padding: 28px 20px; }

  /* CTA */
  .cta-block { padding: 44px 20px; }
  .cta-block--white { padding: 36px 20px; }
  .cta-heading { font-size: 20px; }

  .section-heading,
  .sub-heading,
  .cta-heading,
  .footer-cta-heading,
  .clinic-hero-heading,
  .dh-hero-heading,
  .fv-heading,
  .merit-title,
  .dh-merit-title { text-wrap: balance; }

  .concept-text-last,
  .cta-text,
  .dh-safe-desc,
  .merit-text,
  .support-model-note p,
  .fv-sub { text-wrap: pretty; }

  .support-model-note p { font-size: 11.5px; letter-spacing: 0; }
  .dh-safe-desc { font-size: 14px; }

  .footer-cta-en { font-size: 11px; letter-spacing: 0.18em; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-full { padding: 48px 24px; margin-top: 36px; }
  .cta-full-inner { max-width: none; }

  /* 余白 */
  .inner--pt-lg { padding-top: 64px; }
  .sub-section + .inner--pt-lg { padding-top: 96px; }
  .dh-message-full + .inner--pt-lg { padding-top: 96px; }
  .section--white, .section--mint { padding-top: 0; }

  /* ストライプ */
  .hero-stripe-bar { height: 8px; }

  /* ヒーロー */
  .clinic-hero { min-height: 320px; }
  .clinic-hero img { min-height: 320px; }
  .clinic-hero-overlay { min-height: 320px; }
  .clinic-hero-content { padding: 48px 24px; }
  .clinic-hero-heading { font-size: 28px; }

  /* DH */
  .dh-hero { min-height: 320px; }
  .dh-hero img { min-height: 320px; }
  .dh-hero-overlay { min-height: 320px; }
  .dh-hero-content { padding: 48px 24px; }
  .dh-hero-heading { font-size: 28px; }
  .dh-message-full { padding: 40px 24px; }
  .dh-message-full-inner .text br { display: none; }
  .dh-message-full-inner .text { text-wrap: balance; }
  .dh-message-box { padding: 32px 24px; }
  .dh-safe-grid { flex-wrap: wrap; max-width: 100%; }
  .dh-safe-card { max-width: 100%; flex-basis: 100%; }
  .dh-merit-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dh-merit-card { padding: 28px 10px 24px; }
  .dh-merit-title { font-size: 14px; letter-spacing: 0; }
  .clinic-cards { grid-template-columns: 1fr; }
  .dh-example { padding: 28px 20px; }
  .dh-example-inline-num { font-size: 32px; }
  .dh-example-value span { font-size: 30px; }
  .support-model { padding: 24px 14px; }
  .support-model-year { grid-template-columns: 42px 1fr 74px; gap: 10px; }
  .support-model-year-amount { font-size: 12px; white-space: nowrap; }
  .support-model-year-label { font-size: 12px; }

  /* フッター */
  .footer-cta-heading { font-size: 24px; }
  .footer-cta-btns { flex-direction: column; align-items: center; }
  .site-footer-top { flex-direction: column; gap: 32px; }
  .site-footer-nav { flex-direction: column; gap: 32px; }
  .site-footer-desc { max-width: 100%; }
  .site-footer-inner { padding: 0 24px; }

  /* ボタン */
  .btn { width: 100%; max-width: 320px; padding: 14px 28px; }

  /* 掲載対象 */
  .target-box { padding: 32px 24px; }
}

/* ================================
   Responsive — Small Mobile (375px)
   ================================ */
@media screen and (max-width: 375px) {
  .merit-grid { grid-template-columns: 1fr; }
  .section-heading { font-size: 23px; }

  /* ヘッダー */
  img.header-logo-mark { width: 88px; }
  .header-logo-text { font-size: 14px; }
  .header-nav-cta.btn--sm { padding: 7px 12px; font-size: 11px; }

  .cost-box { padding: 24px 16px; }
  .cost-row { font-size: 14px; gap: 12px; }
  .cost-row dt { flex-shrink: 0; }
  .cost-row dd { font-size: 14px; text-align: right; }
}

/* ================================
   医院一覧の注記
   ================================ */
.clinic-list-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-light);
}

@media screen and (max-width: 768px) {
  .clinic-list-note {
    margin-top: 28px;
    padding-top: 20px;
    font-size: 12px;
  }
}
