:root {
  --bg: #fbfaf7;
  --surface: #fff;
  --surface-soft: #f6f5f1;
  --line: #d8d5ce;
  --line-strong: #a8aaa5;
  --heading: #17332e;
  --body: #303634;
  --note: #626966;
  --clinic: #28564c;
  --clinic-soft: #f1f5f3;
  --foot: #8a6570;
  --foot-bright: #8a6570;
  --foot-soft: #f7f2f3;
  --cta: #a64027;
  --cta-hover: #84331f;
  --max: 1180px;
  --narrow: 820px;
  --serif: "Shippori Mincho", "Yu Mincho", YuMincho, serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --latin: "Cormorant Garamond", Georgia, serif;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 128px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--body);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.82;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}
body.is-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
ul, ol { padding-left: 1.4em; }
p, ul, ol { margin-top: 0; }
p, li, summary { word-break: auto-phrase; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  margin: 0;
  color: var(--heading);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .015em;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: balance;
  word-break: auto-phrase;
}
h3, h4 { font-family: var(--sans); font-weight: 700; }
h1 { font-size: clamp(2.3rem, 4.6vw, 4.7rem); }
h2 { font-size: clamp(1.9rem, 3.25vw, 3.35rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.9rem); }
h4 { font-size: 1.15rem; }
::selection { color: #fff; background: var(--clinic); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: var(--heading);
  transform: translateY(-160%);
}
.visually-hidden {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(100%) !important;
  white-space: normal !important;
  border: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: var(--heading) !important;
  background-color: #fff !important;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 48px), var(--narrow)); margin-inline: auto; }
.section { padding-block: 96px; border-top: 1px solid #e8e6e0; }
.section--first { border-top: 0; }
.section--white { background: var(--surface); }
.section--soft { background: var(--surface-soft); }
.section--compact { padding-block: var(--space-5); }
.anchor-target { scroll-margin-top: 110px; }
.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--note);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { width: 40px; height: 1px; background: currentColor; content: ""; }
.eyebrow--foot { color: var(--foot); }
.eyebrow--clinic { color: var(--clinic); }
.section-heading { max-width: 850px; }
.section-heading h2 { position: relative; padding-bottom: 20px; }
.section-heading h2::after { position: absolute; bottom: 0; left: 0; width: 72px; height: 2px; background: var(--cta); content: ""; }
.section-heading:has(.eyebrow--clinic) h2::after { background: var(--clinic); }
.section-heading:has(.eyebrow--foot) h2::after { background: var(--foot-bright); }
.section-heading p { max-width: 720px; margin: 24px 0 0; font-size: 1.05rem; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p { margin-inline: auto; }
.lede { font-size: clamp(1.04rem, 1.5vw, 1.24rem); line-height: 2; }
.note { color: var(--note); font-size: .875rem; line-height: 1.75; }
.text-link { color: var(--heading); font-weight: 700; }
.text-link::after { margin-left: .55em; content: "\2192"; }
.parallel-lines { display: grid; gap: 5px; width: 100%; }
.parallel-lines::before, .parallel-lines::after { display: block; height: 1px; content: ""; }
.parallel-lines::before { background: var(--foot); }
.parallel-lines::after { background: var(--clinic); }

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 3px solid var(--clinic);
  background: rgba(255,255,255,.96);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(250px, auto) 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 92px;
}
.brand-lockup { display: inline-grid; gap: 4px; text-decoration: none; }
.brand-row { display: flex; gap: 10px; align-items: baseline; color: var(--heading); }
.brand-row + .brand-row { padding-top: 4px; border-top: 1px solid var(--line); }
.brand-row strong { white-space: nowrap; font-family: var(--serif); font-size: 1.04rem; font-weight: 600; letter-spacing: .06em; }
.brand-row strong > span { white-space: nowrap; }
.brand-row small { color: var(--note); font-size: .65rem; letter-spacing: .08em; }
.brand-row--foot { color: var(--foot); }
.brand-row--clinic { color: var(--clinic); }
.global-nav { justify-self: end; }
.global-nav ul { display: flex; gap: clamp(14px, 2.2vw, 30px); align-items: center; margin: 0; padding: 0; list-style: none; }
.global-nav a { font-size: .82rem; font-weight: 700; text-decoration: none; }
.global-nav a:hover, .global-nav a:focus-visible { text-decoration: underline; }
.header-contact {
  padding: 12px 18px;
  border: 2px solid var(--cta);
  border-radius: 6px;
  color: #fff;
  background: var(--cta);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
}
.header-contact:hover { border-color: var(--cta-hover); color: #fff; background: var(--cta-hover); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); background: #fff; }
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 5px auto; background: var(--heading); transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }

.hero-home { overflow: hidden; border-bottom: 2px solid var(--clinic); background: var(--surface); }
.hero-home__inner {
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
  padding-top: 28px;
}
.hero-home__art {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid #ebe7df;
  border-radius: 24px;
  background: #fff;
}
.hero-home__art img { width: 100%; height: auto; background: #fff; }
.hero-home__after {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding-block: 34px 48px;
}
.keep-together { display: inline-block; white-space: nowrap; }
.hero-home__sub { max-width: 820px; margin: 0 auto; font-size: 1.05rem; line-height: 1.9; text-align: center; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 12px 24px;
  border: 2px solid var(--cta);
  border-radius: 7px;
  color: #fff;
  background: var(--cta);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.button:hover { border-color: var(--cta-hover); background: var(--cta-hover); transform: translateY(-2px); }
.button--outline { border-color: var(--heading); color: var(--heading); background: #fff; box-shadow: none; }
.button--outline:hover { color: #fff; background: var(--heading); }
.button--foot { border-color: var(--foot); background: var(--foot); }
.button--foot:hover { border-color: #704e58; background: #704e58; }
.button--clinic { border-color: var(--clinic); background: var(--clinic); }
.button--clinic:hover { border-color: #173b33; background: #173b33; }
.hero-route-mini { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; max-width: 900px; margin: 28px auto 0; }
.hero-route-mini a { display: flex; flex-direction: column; justify-content: center; min-height: 104px; padding: 20px 24px; border: 1px solid var(--line); border-top: 5px solid var(--clinic); border-radius: 8px; background: #fff; text-decoration: none; }
.hero-route-mini a:last-child { border-top-color: var(--foot); }
.hero-route-mini strong, .hero-route-mini span { display: block; }
.hero-route-mini strong { color: var(--heading); font-size: 1.05rem; line-height: 1.45; }
.hero-route-mini a > span { margin-top: 7px; color: var(--note); font-size: .82rem; line-height: 1.55; }
.hero-home__after .hero-actions { justify-content: center; margin-top: 24px; }

.page-hero { position: relative; padding-block: 76px 82px; border-bottom: 1px solid var(--line); background: var(--surface); }
.page-hero::before { position: absolute; top: 0; right: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--clinic) 0 50%, var(--foot) 50% 100%); content: ""; }
.page-hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 400px); gap: 64px; align-items: end; }
.page-hero__inner--plain { display: block; max-width: 940px; }
.page-hero h1 { font-size: clamp(2.35rem, 4.2vw, 4.25rem); font-weight: 800; }
.page-hero__lede { max-width: 760px; margin: 30px 0 0; font-size: clamp(1.04rem, 1.5vw, 1.2rem); line-height: 2; }
.page-hero__aside { padding: 28px; border: 1px solid var(--line); border-left: 3px solid var(--clinic); background: var(--surface); }
.page-hero__aside strong { display: block; margin-bottom: 8px; color: var(--heading); font-family: var(--sans); font-size: 1.35rem; font-weight: 700; }

.media-page-hero { position: relative; overflow: hidden; border-bottom: 2px solid var(--foot); background: #fff; }
.media-page-hero::before { position: absolute; top: 0; right: 0; left: 0; height: 2px; background: var(--foot); content: ""; }
.media-page-hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 54px; align-items: center; min-height: 610px; padding-block: 70px; }
.media-page-hero__copy { position: relative; z-index: 1; }
.media-page-hero h1 { max-width: 760px; font-size: clamp(2.4rem, 4vw, 4.2rem); font-weight: 800; }
.media-page-hero__lede { max-width: 720px; margin: 28px 0 0; font-size: clamp(1rem, 1.35vw, 1.16rem); line-height: 1.95; text-wrap: pretty; }
.media-page-hero__proof { display: grid; gap: 5px; max-width: 650px; margin-top: 30px; padding: 20px 22px; border: 1px solid var(--line); border-left: 3px solid var(--foot); background: #fff; }
.media-page-hero__proof strong { color: var(--heading); font-size: 1.1rem; font-weight: 700; }
.media-page-hero__proof span { color: var(--body); font-size: .92rem; line-height: 1.75; }
.media-page-hero__figure { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--foot-soft); }
.media-page-hero__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-page-hero__figure figcaption { padding: 12px 16px; color: #67452b; background: #fff; font-size: .75rem; line-height: 1.6; }
.media-page-hero--detail .media-page-hero__figure { padding: clamp(26px, 4vw, 56px); background: var(--foot-soft); }
.media-page-hero--detail .media-page-hero__figure img { aspect-ratio: 4 / 3; border-radius: 8px; image-rendering: auto; }

.responsive-art-hero {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--clinic);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.responsive-art-hero--foot { border-top-color: var(--foot); }
.responsive-art-hero--mixed {
  border-top: 0;
}
.responsive-art-hero--mixed::before,
.responsive-art-hero--mixed::after {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 50%;
  height: 2px;
  content: "";
}
.responsive-art-hero--mixed::before {
  left: 0;
  background: var(--clinic);
}
.responsive-art-hero--mixed::after {
  right: 0;
  background: var(--foot);
}
.responsive-art-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, .58fr);
  gap: 48px;
  align-items: center;
  min-height: 650px;
  padding-block: 48px;
}
.responsive-art-hero__art picture,
.responsive-art-hero__art img { display: block; width: 100%; }
.responsive-art-hero__art img { border: 1px solid var(--line); background: #fff; }
.responsive-art-hero__support { min-width: 0; }
.responsive-art-hero__proof-photo { margin: 0 0 26px; border-bottom: 1px solid var(--line); }
.responsive-art-hero__proof-photo picture,
.responsive-art-hero__proof-photo img { display: block; width: 100%; }
.responsive-art-hero__proof-photo img { aspect-ratio: 4 / 3; object-fit: cover; }
.responsive-art-hero__proof-photo--portrait img { object-position: center top; }
.responsive-art-hero__proof-photo figcaption { padding: 10px 0 14px; color: var(--note); font-size: .72rem; line-height: 1.6; }
.responsive-art-hero__lede { margin: 0; font-size: 1rem; line-height: 1.9; }
.responsive-art-hero__proof { display: grid; gap: 5px; margin-top: 24px; padding: 18px 0 18px 18px; border-left: 2px solid var(--clinic); }
.responsive-art-hero--foot .responsive-art-hero__proof { border-left-color: var(--foot); }
.responsive-art-hero--mixed .responsive-art-hero__proof { border-left-color: var(--cta); }
.responsive-art-hero__proof strong { color: var(--heading); font-size: 1.02rem; }
.responsive-art-hero__proof span { color: var(--note); font-size: .86rem; line-height: 1.7; }
.responsive-art-hero .hero-actions { margin-top: 24px; }

/* Portrait manga is reading content, not a full-bleed photograph. */
.manga-gallery {
  display: grid;
  grid-template-columns: minmax(0, min(100%, 420px));
  gap: 32px;
  justify-content: center;
  justify-items: center;
  margin-top: 44px;
}
.manga-page,
.manga-page__link {
  width: 100%;
  max-width: 420px;
  margin: 0;
}
.manga-page__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.manga-page img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: #fff;
}
.manga-page figcaption {
  padding: 12px 4px 0;
  color: var(--note);
  font-size: .78rem;
  line-height: 1.65;
  text-align: center;
}
.manga-page__link:hover figcaption,
.manga-page__link:focus-visible figcaption { color: var(--heading); text-decoration: underline; }
.manga-notice {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--note);
  font-size: .76rem;
  line-height: 1.75;
  text-align: center;
}

@media (min-width: 760px) {
  .manga-page img {
    max-height: min(720px, calc(100svh - 180px));
    object-fit: contain;
  }
}

@media (min-width: 960px) {
  .manga-gallery--home,
  .manga-gallery--story {
    grid-template-columns: repeat(2, minmax(0, 420px));
  }
}

.route-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 52px; }
.route-card {
  position: relative;
  min-height: 390px;
  padding: 52px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-decoration: none;
  box-shadow: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.route-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(23,51,46,.08); }
.route-card::before { position: absolute; top: 0; right: 0; left: 0; height: 3px; content: ""; }
.route-card--foot { background: #fff; }
.route-card--clinic { background: #fff; }
.route-card--foot::before { background: var(--foot-bright); }
.route-card--clinic::before { background: var(--clinic); }
.route-card__label { color: var(--note); font-family: var(--latin); font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.route-card h3 { margin-top: 18px; font-size: clamp(1.7rem, 3vw, 2.65rem); font-weight: 800; }
.route-card p { margin: 22px 0 0; }
.route-card ul { margin: 24px 0 0; color: var(--note); }
.route-card__arrow { position: absolute; right: 42px; bottom: 34px; font-size: 1.5rem; }

.home-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 52px; }
.home-service-card { display: grid; grid-template-columns: minmax(190px, .92fr) minmax(0, 1.08fr); min-height: 300px; overflow: hidden; border: 1px solid var(--line); border-top: 3px solid var(--clinic); background: #fff; text-decoration: none; box-shadow: none; transition: transform .2s, box-shadow .2s; }
.home-service-card--foot { border-top-color: var(--foot-bright); }
.home-service-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(23,51,46,.08); }
.home-service-card__image, .home-service-card__image picture, .home-service-card__image img { display: block; width: 100%; height: 100%; }
.home-service-card__image { min-height: 290px; overflow: hidden; background: #f1f0eb; }
.home-service-card__image img { object-fit: cover; }
.home-service-card--foot .home-service-card__image img { object-position: center; }
.home-service-card__copy { display: flex; flex-direction: column; justify-content: center; padding: 30px; }
.home-service-card__copy small { color: var(--note); font-size: .75rem; font-weight: 700; letter-spacing: .08em; }
.home-service-card__copy strong { margin-top: 10px; color: var(--heading); font-family: var(--sans); font-size: clamp(1.25rem, 1.75vw, 1.75rem); line-height: 1.45; text-wrap: balance; }
.home-service-card__copy > span { margin-top: 14px; color: var(--note); font-size: .9rem; line-height: 1.8; }
.home-service-card__copy b { margin-top: 22px; color: var(--cta); font-size: .82rem; }

.scene-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.scene-list > * { min-height: 250px; padding: 34px; border: 1px solid var(--line); border-top: 3px solid var(--clinic); background: var(--surface); }
.section:has(.eyebrow--foot) .scene-list > * { border-top-color: var(--foot-bright); }
.scene-list strong { display: block; margin-bottom: 16px; color: var(--heading); font-family: var(--sans); font-size: 1.3rem; font-weight: 700; }
.scene-list span { color: var(--note); }

.visual-slot {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 40px;
  align-items: center;
  min-height: 260px;
  margin: 52px 0 0;
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: none;
}
.visual-slot__flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.visual-slot__flow li { position: relative; display: grid; align-content: center; min-height: 170px; padding: 22px 13px; border-radius: 9px; background: var(--clinic-soft); }
.visual-slot__flow li:not(:last-child)::after { position: absolute; top: 50%; right: -14px; z-index: 2; width: 24px; height: 24px; border-radius: 50%; color: #fff; background: var(--clinic); content: "→"; font-weight: 700; line-height: 23px; transform: translateY(-50%); }
.visual-slot--foot .visual-slot__flow li { background: var(--foot-soft); }
.visual-slot--foot .visual-slot__flow li:not(:last-child)::after { background: var(--foot); }
.visual-slot__flow b { color: var(--clinic); font-size: .76rem; letter-spacing: .12em; }
.visual-slot--foot .visual-slot__flow b { color: var(--foot); }
.visual-slot__flow strong { margin-top: 8px; color: var(--heading); font-size: 1rem; line-height: 1.45; }
.visual-slot__flow span { margin-top: 7px; color: var(--note); font-size: .74rem; }
.visual-slot__text h3 { margin-bottom: 18px; }
.visual-slot__text p:last-child { margin-bottom: 0; }
.visual-slot--foot { border-top: 9px solid var(--foot-bright); }
.visual-slot--clinic { border-top: 9px solid var(--clinic); }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 52px; }
.service-cluster + .service-cluster { margin-top: 42px; }
.service-cluster__label { margin: 0; color: var(--clinic); font-size: .78rem; font-weight: 700; letter-spacing: .16em; }
.service-cluster .service-grid { margin-top: 16px; }
.service-cluster--support .service-link { min-height: 230px; border-top-color: #91a596; background: #f7f9f7; }
.service-link { position: relative; min-height: 270px; padding: 38px 72px 38px 38px; border: 1px solid var(--line); border-top: 7px solid var(--clinic); border-radius: 10px; background: var(--surface); text-decoration: none; box-shadow: 0 8px 24px rgba(23,56,32,.06); }
.section:has(.eyebrow--foot) .service-link { border-top-color: var(--foot-bright); }
.service-link:hover { background: var(--clinic-soft); }
.section:has(.eyebrow--foot) .service-link:hover { background: var(--foot-soft); }
.service-link__no { display: block; color: var(--note); font-family: var(--latin); font-size: .9rem; letter-spacing: .14em; }
.service-link h3 { margin-top: 18px; }
.service-link p { margin: 16px 0 0; color: var(--note); }
.service-link::after { position: absolute; right: 32px; bottom: 28px; content: "\2192"; font-size: 1.4rem; }

.photo-strip { display: grid; grid-template-columns: 1.2fr .75fr 1.05fr; gap: 14px; margin-top: 52px; }
.photo-strip figure { position: relative; min-height: 360px; margin: 0; overflow: hidden; border-radius: 10px; background: #eee; box-shadow: 0 10px 28px rgba(23,56,32,.1); }
.photo-strip picture, .photo-strip img { width: 100%; height: 100%; }
.photo-strip img { object-fit: cover; }
.photo-strip figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 18px; color: #fff; background: rgba(23,51,46,.82); font-size: .85rem; }

.voice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 52px; }
.voice-item { margin: 0; padding: 16px; border: 2px solid var(--line); border-top: 7px solid var(--cta); border-radius: 10px; background: var(--surface); box-shadow: 0 8px 24px rgba(23,56,32,.07); }
.voice-item a { display: block; text-decoration: none; }
.voice-item__image { overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid #eceae5; background: #f7f6f2; }
.voice-item__image img { width: 100%; height: 100%; object-fit: contain; }
.voice-item figcaption { padding: 20px 4px 4px; }
.voice-item strong { display: block; color: var(--heading); font-family: var(--sans); font-size: 1.17rem; font-weight: 700; }
.voice-item blockquote { margin: 15px 0 0; padding: 15px 16px; border-left: 5px solid var(--cta); color: var(--heading); background: #fff7ef; font-size: .92rem; font-weight: 700; line-height: 1.8; }
.voice-item small { display: block; margin-top: 10px; color: var(--note); font-size: .72rem; line-height: 1.65; }
.voice-item span { display: block; margin-top: 8px; color: var(--note); font-size: .82rem; }
.voice-archive-section { background: var(--surface-soft); }
.voice-volume { display: grid; grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr); gap: 54px; align-items: center; margin-top: 48px; padding: 42px; border: 2px solid var(--line); border-top: 9px solid var(--cta); border-radius: 12px; background: #fff; box-shadow: 0 10px 30px rgba(23,56,32,.06); }
.voice-volume__papers { position: relative; min-height: 220px; }
.voice-volume__papers span { position: absolute; inset: 16px 22px 16px 18px; border: 1px solid #c9c6be; background: #fff; }
.voice-volume__papers span:nth-child(1) { transform: rotate(-6deg); }
.voice-volume__papers span:nth-child(2) { transform: rotate(5deg); }
.voice-volume__papers span:nth-child(3) { transform: translate(-5px, 5px) rotate(-2deg); }
.voice-volume__papers span:nth-child(4) { transform: translate(6px, 8px) rotate(2deg); }
.voice-volume__papers span:nth-child(5) { display: grid; place-items: center; box-shadow: 0 12px 28px rgba(23,51,46,.08); transform: none; }
.voice-volume__papers span:nth-child(5)::before { width: 52%; height: 1px; background: var(--line); box-shadow: 0 18px var(--line), 0 36px var(--line), 0 54px var(--line), 0 72px var(--line); content: ""; }
.voice-volume__copy strong { display: block; color: var(--heading); font-family: var(--sans); font-size: clamp(1.8rem, 3.2vw, 3rem); font-weight: 800; line-height: 1.4; text-wrap: balance; }
.voice-volume__copy p { max-width: 680px; margin: 18px 0 0; color: var(--note); }
.voice-volume__copy .text-link { display: inline-block; margin-top: 20px; }

.step-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin: 52px 0 0; padding: 0; list-style: none; }
.step-list li { min-height: 250px; padding: 28px 22px; border: 1px solid var(--line); border-top: 7px solid var(--clinic); border-radius: 9px; background: var(--surface); }
.section:has(.eyebrow--foot) .step-list li { border-top-color: var(--foot-bright); }
.step-list__no { display: block; margin-bottom: 22px; color: var(--cta); font-family: var(--latin); font-size: 1rem; letter-spacing: .12em; }
.step-list strong { display: block; color: var(--heading); font-family: var(--sans); font-size: 1.18rem; font-weight: 700; line-height: 1.5; }
.step-list p { margin: 14px 0 0; color: var(--note); font-size: .9rem; line-height: 1.75; }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; }
.split--wide-image { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); }
.split__image { margin: 0; }
.split__image img { width: 100%; max-height: 660px; object-fit: cover; }
.split__image figcaption { margin-top: 10px; color: var(--note); font-size: .8rem; }
.evidence-photo { width: min(100%, 360px); margin: 34px auto 0; }
.evidence-photo img { display: block; width: 100%; height: auto; border: 1px solid var(--line); }
.evidence-photo figcaption { margin-top: 9px; color: var(--note); font-size: .76rem; line-height: 1.7; }
.check-list { margin: 28px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.check-list li { position: relative; padding: 16px 12px 16px 34px; border-bottom: 1px solid var(--line); }
.check-list li::before { position: absolute; top: 18px; left: 5px; color: var(--clinic); content: "\2014"; }

.statement { padding-block: var(--space-6); color: #fff; background: var(--heading); }
.statement h2 { max-width: 930px; color: #fff; }
.statement p { max-width: 720px; margin: 28px 0 0; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.statement .button--outline { border-color: #fff; color: #fff; }
.statement .button--outline:hover { color: var(--heading); background: #fff; }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.fact { min-height: 250px; padding: 34px; border: 1px solid var(--line); border-top: 7px solid var(--clinic); border-radius: 10px; background: var(--surface); }
.section:has(.eyebrow--foot) .fact { border-top-color: var(--foot-bright); }
.fact__no { display: block; margin-bottom: 20px; color: var(--note); font-family: var(--latin); letter-spacing: .12em; }
.fact h3 { margin-bottom: 16px; }
.brand-proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 52px; }
.brand-proof { padding: 38px; border: 2px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 10px 30px rgba(23,56,32,.07); }
.brand-proof--clinic { border-top: 9px solid var(--clinic); background: var(--clinic-soft); }
.brand-proof--foot { border-top: 9px solid var(--foot-bright); background: var(--foot-soft); }
.brand-proof__label { margin: 0 0 14px; color: var(--note); font-size: .78rem; font-weight: 700; letter-spacing: .12em; }
.brand-proof h3 { font-size: clamp(1.45rem, 2.3vw, 2.15rem); }
.brand-proof ol { margin: 30px 0 0; padding: 0; list-style: none; }
.brand-proof li { position: relative; padding: 22px 0 22px 46px; border-top: 1px solid var(--line); }
.brand-proof__no { position: absolute; top: 22px; left: 0; margin: 0; color: var(--note); font-family: var(--latin); }
.brand-proof li > strong, .brand-proof li > span:not(.brand-proof__no) { display: block; }
.brand-proof li strong { color: var(--heading); font-family: var(--sans); font-size: 1.05rem; font-weight: 700; }
.brand-proof li > span:not(.brand-proof__no) { margin-top: 7px; color: var(--note); font-size: .9rem; line-height: 1.75; }

.early-proof { background: #fff; }
.proof-five { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin: 48px 0 0; padding: 0; list-style: none; }
.proof-five li { min-height: 270px; padding: 26px 20px; border: 1px solid var(--line); border-top: 8px solid var(--clinic); border-radius: 10px; background: #fff; box-shadow: 0 8px 22px rgba(23,56,32,.06); }
.proof-five--foot li { border-top-color: var(--foot-bright); background: var(--foot-soft); }
.proof-five--clinic li { background: var(--clinic-soft); }
.proof-five__no { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 18px; border-radius: 50%; color: #fff; background: var(--clinic); font-size: .8rem; font-weight: 700; }
.proof-five--foot .proof-five__no { background: var(--foot); }
.proof-five strong { display: block; color: var(--heading); font-size: 1rem; font-weight: 700; line-height: 1.55; }
.proof-five p { margin: 12px 0 0; color: var(--note); font-size: .82rem; line-height: 1.75; }
.proof-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.faq { max-width: 900px; margin-top: 44px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 24px 48px 24px 0; color: var(--heading); font-family: var(--sans); font-size: 1.15rem; font-weight: 700; cursor: pointer; list-style: none; text-wrap: pretty; word-break: auto-phrase; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 23px; right: 10px; content: "+"; font-family: var(--sans); font-weight: 400; }
.faq details[open] summary::after { content: "\2212"; }
.faq__answer { padding: 0 48px 26px 0; }
.faq__answer p:last-child { margin-bottom: 0; }

.price-chapter { margin-top: 52px; padding-top: 42px; border-top: 4px solid var(--line); }
.price-chapter--foot { border-color: var(--foot); }
.price-chapter--clinic { border-color: var(--clinic); }
.price-chapter__head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.price-status { padding: 24px; border: 2px solid var(--line); border-left: 8px solid var(--cta); border-radius: 8px; background: var(--surface); }
.price-status strong { display: block; margin-bottom: 10px; color: var(--heading); }
.fee-stack { display: grid; gap: 22px; }
.fee-table-wrap { overflow: hidden; border: 2px solid var(--line); border-radius: 10px; background: #fff; }
.fee-table-wrap + .fee-table-wrap { margin-top: 20px; }
.fee-table-wrap h3 { padding: 18px 22px; color: #fff; background: var(--clinic); font-size: 1.15rem; }
.section:has(.eyebrow--foot) .fee-table-wrap h3, .price-chapter--foot .fee-table-wrap h3 { background: var(--foot); }
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table th, .fee-table td { padding: 17px 20px; border-top: 1px solid var(--line); text-align: left; vertical-align: middle; }
.fee-table th { width: 44%; color: var(--heading); background: #f7faf6; font-weight: 700; }
.fee-table td strong { display: block; color: var(--heading); font-size: 1.22rem; }
.fee-table td span { display: block; margin-top: 3px; color: var(--note); font-size: .78rem; }
.fee-table__note { margin: 0; padding: 16px 20px; border-top: 1px solid var(--line); color: var(--note); background: #fafcf9; font-size: .76rem; line-height: 1.7; }
.payment-note { margin-top: 38px; padding: 26px; border: 2px solid var(--line); border-left: 8px solid var(--cta); border-radius: 9px; background: #fff8f1; }
.payment-note strong { color: var(--heading); font-size: 1.2rem; }
.payment-note p { margin: 5px 0 0; }
.payment-note small { display: block; margin-top: 12px; color: var(--note); }
.info-table { width: 100%; margin-top: 30px; border-collapse: collapse; background: var(--surface); }
.info-table th, .info-table td { padding: 18px 20px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.info-table th { width: 28%; color: var(--heading); font-weight: 700; }

.article-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(220px, 1fr); gap: 72px; align-items: start; }
.article-body h2 { margin: 64px 0 22px; font-size: clamp(1.75rem, 3vw, 2.55rem); }
.article-body h3 { margin: 42px 0 16px; }
.article-body p, .article-body li { line-height: 2; }
.article-body .summary-box { margin: 34px 0; padding: 28px; border: 2px solid var(--line); border-left: 8px solid var(--foot); border-radius: 8px; background: var(--foot-soft); }
.article-body .source-note { margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--note); font-size: .82rem; }
.article-side { position: sticky; top: 24px; padding: 28px; border: 1px solid var(--line); background: var(--surface); }
.article-side strong { display: block; margin-bottom: 16px; color: var(--heading); font-family: var(--sans); font-size: 1.15rem; font-weight: 700; }
.article-side a { display: block; padding: 11px 0; border-top: 1px solid var(--line); font-size: .86rem; font-weight: 700; text-decoration: none; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 52px; }
.blog-grid--guides { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.blog-card { min-height: 310px; padding: 34px; border: 1px solid var(--line); border-top: 7px solid var(--clinic); border-radius: 10px; background: var(--surface); text-decoration: none; box-shadow: 0 8px 24px rgba(23,56,32,.06); }
.blog-card:hover { background: var(--clinic-soft); }
.blog-card__category { color: var(--foot); font-size: .76rem; font-weight: 700; letter-spacing: .12em; }
.blog-card__category--clinic { color: var(--clinic); }
.blog-card__category--support { color: var(--note); }
.blog-card h3 { margin-top: 30px; }
.blog-card p { margin-top: 18px; color: var(--note); }

.contact-choice { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.contact-choice button { min-height: 230px; padding: 34px; border: 2px solid var(--line); border-top: 8px solid var(--clinic); border-radius: 10px; background: var(--clinic-soft); text-align: left; text-wrap: pretty; word-break: auto-phrase; cursor: pointer; }
.contact-choice button:nth-child(2) { border-top-color: var(--foot-bright); background: var(--foot-soft); }
.contact-choice button:hover, .contact-choice button[aria-pressed="true"] { border-color: var(--cta); background: #fff; }
.contact-choice button[aria-pressed="true"] { box-shadow: inset 0 0 0 2px var(--cta); }
.contact-choice strong { display: block; margin-bottom: 16px; color: var(--heading); font-family: var(--sans); font-size: 1.45rem; font-weight: 700; }
.contact-panel { display: none; margin-top: 18px; padding: 38px; border: 2px solid var(--line); border-left: 8px solid var(--cta); border-radius: 10px; background: var(--surface); }
.contact-panel.is-active { display: block; }
.phone-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.phone-number { color: var(--heading); font-family: var(--latin); font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 600; letter-spacing: .03em; text-decoration: none; }
.preview-form { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line); }
.preview-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field label { color: var(--heading); font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; padding: 14px; border: 1px solid var(--line-strong); border-radius: 0; background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.preview-notice { margin-top: 22px; padding: 18px; border-left: 3px solid var(--cta); background: var(--surface-soft); color: var(--note); font-size: .86rem; }
.preview-submit { margin-top: 22px; opacity: .7; cursor: not-allowed; }

.location-grid { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; margin-top: 52px; }
.location-photo { margin: 0; }
.location-photo img { width: 100%; }
.address-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.address-list li { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.address-list strong { color: var(--heading); }

.final-cta { padding-block: var(--space-6); color: #fff; background: var(--clinic); }
.final-cta__inner { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 64px; align-items: center; }
.final-cta h2 { color: #fff; }
.final-cta p { max-width: 700px; margin: 24px 0 0; color: rgba(255,255,255,.8); }
.final-cta .button { width: 100%; }

.site-footer { color: #d9e0dd; background: #102722; }
.footer-lines { padding-top: 1px; }
.footer-inner { display: grid; grid-template-columns: 1.15fr .85fr 1fr; gap: 60px; padding-block: 72px 42px; }
.footer-brand .brand-row { color: #fff; }
.footer-brand .brand-row small { color: #bdc8c4; }
.footer-brand .brand-row + .brand-row { border-color: rgba(255,255,255,.2); }
.footer-address { margin-top: 24px; font-size: .85rem; line-height: 1.9; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 22px; align-content: start; }
.footer-nav a { color: #eef2f0; white-space: nowrap; font-size: .82rem; text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }
.footer-contact strong { display: block; color: #fff; font-family: var(--sans); font-size: 1.15rem; font-weight: 700; }
.footer-contact a { display: block; margin-top: 6px; color: #fff; font-family: var(--latin); font-size: 1.75rem; text-decoration: none; }
.footer-contact small { display: block; color: #bdc8c4; }
.copyright { padding-block: 18px; border-top: 1px solid rgba(255,255,255,.16); color: #9fb0aa; font-size: .72rem; text-align: center; }

.reveal { opacity: 1; transform: none; }
.js .reveal, .js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .global-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }
  .global-nav.is-open {
    position: absolute;
    top: 92px;
    right: 0;
    left: 0;
    display: block;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }
  .global-nav.is-open ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
  .global-nav.is-open a { display: block; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .step-list { grid-template-columns: repeat(3, 1fr); }
  .proof-five { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: 1fr; }
  .article-side { position: static; }
}

@media (max-width: 900px) {
  .page-hero__inner { display: block; }
  .page-hero__aside { margin-top: 34px; padding: 24px; }
  .page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); }
  .media-page-hero__inner { grid-template-columns: 1fr; gap: 36px; min-height: 0; }
  .media-page-hero__figure { max-width: 720px; }
  .responsive-art-hero__inner { grid-template-columns: 1fr; gap: 34px; min-height: 0; }
  .responsive-art-hero__support { display: grid; grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr); gap: 28px; align-items: start; }
  .responsive-art-hero__proof-photo { grid-row: 1 / span 3; margin: 0; }
  .responsive-art-hero__proof { margin-top: 0; }
  .responsive-art-hero .hero-actions { margin-top: 0; }
  .facts, .scene-list, .proof-five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr; gap: 42px; padding-block: 58px 34px; }
}

@media (max-width: 760px) {
  body { font-size: 15px; line-height: 1.85; }
  .container, .container--narrow { width: min(calc(100% - 36px), var(--max)); }
  .section { padding-block: 72px; }
  .section--compact { padding-block: 56px; }
  .header-inner { grid-template-columns: 1fr auto; gap: 10px; min-height: 78px; }
  .brand-row { gap: 6px; }
  .brand-row strong { font-size: .86rem; }
  .brand-row small { display: inline; white-space: nowrap; font-size: .56rem; letter-spacing: .04em; }
  .header-contact { display: none; }
  .global-nav.is-open { top: 78px; }
  .global-nav.is-open ul { grid-template-columns: 1fr; }
  .hero-home__inner { display: block; width: min(calc(100% - 24px), var(--max)); padding-top: 12px; }
  .hero-home__art { width: 100%; border-radius: 16px; }
  .hero-home__after { width: min(calc(100% - 36px), var(--max)); padding-block: 24px 34px; }
  .hero-home__sub { margin: 0; font-size: .94rem; line-height: 1.8; text-align: left; }
  .hero-actions { margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .hero-route-mini { grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
  .hero-route-mini a { min-height: 0; padding: 16px 18px; }
  .hero-route-mini strong { font-size: .98rem; }
  .hero-route-mini a > span { font-size: .78rem; }
  .hero-home__after .hero-actions { margin-top: 20px; }
  .page-hero { padding-block: 60px 64px; }
  .page-hero__inner { display: block; }
  .page-hero__aside { margin-top: 34px; padding: 22px 20px; }
  .page-hero h1 { font-size: clamp(1.95rem, 8vw, 3rem); }
  .media-page-hero__inner { gap: 30px; padding-block: 58px 48px; }
  .media-page-hero h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .media-page-hero__lede { margin-top: 22px; }
  .media-page-hero__proof { margin-top: 24px; padding: 17px 16px; }
  .media-page-hero__figure { border-width: 5px; border-radius: 10px; }
  .media-page-hero--detail .media-page-hero__figure { padding: 24px; }
  .responsive-art-hero__inner { display: flex; gap: 26px; flex-direction: column; width: min(calc(100% - 28px), var(--max)); padding-block: 20px 42px; }
  .responsive-art-hero__art,
  .responsive-art-hero__art picture,
  .responsive-art-hero__art img { width: 100%; }
  .responsive-art-hero__support { display: block; }
  .responsive-art-hero__proof-photo { margin-bottom: 22px; }
  .responsive-art-hero__proof-photo img { aspect-ratio: 16 / 10; }
  .responsive-art-hero__lede { font-size: .98rem; }
  .responsive-art-hero__proof { margin-top: 20px; padding: 15px 0 15px 15px; }
  .responsive-art-hero .hero-actions { margin-top: 22px; }
  .manga-gallery,
  .manga-gallery--home,
  .manga-gallery--story,
  .manga-gallery--single { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .manga-page,
  .manga-page__link { margin: 0; }
  .manga-page figcaption { padding-top: 10px; font-size: .74rem; }
  .manga-notice { margin-top: 18px; text-align: left; }
  .route-grid, .service-grid, .contact-choice { grid-template-columns: 1fr; }
  .home-service-grid { grid-template-columns: 1fr; }
  .home-service-card { grid-template-columns: 1fr; min-height: 0; }
  .home-service-card__image { min-height: 0; aspect-ratio: 16 / 10; }
  .home-service-card__copy { padding: 24px 20px; }
  .route-card { min-height: 360px; padding: 38px 28px 70px; }
  .route-card__arrow { right: 28px; }
  .scene-list, .facts, .blog-grid, .voice-grid, .brand-proof-grid, .proof-five { grid-template-columns: 1fr; }
  .proof-five li { min-height: 0; }
  .proof-links .button { width: 100%; }
  .brand-proof { padding: 30px 24px; }
  .voice-volume { grid-template-columns: 1fr; gap: 26px; padding: 26px 20px; }
  .voice-volume__papers { min-height: 170px; }
  .scene-list > *, .fact { min-height: 0; padding: 28px; }
  .visual-slot { display: block; padding: 22px; }
  .visual-slot__flow { grid-template-columns: 1fr; }
  .visual-slot__flow li { min-height: 104px; }
  .visual-slot__flow li:not(:last-child)::after { top: auto; right: 50%; bottom: -18px; line-height: 22px; transform: translateX(50%) rotate(90deg); }
  .visual-slot__text { margin-top: 28px; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip figure { min-height: 0; aspect-ratio: 4 / 3; }
  .photo-strip figure:nth-child(2) { aspect-ratio: 3 / 4; }
  .step-list { grid-template-columns: 1fr; }
  .step-list li { min-height: 0; padding: 24px; }
  .split, .split--wide-image, .price-chapter__head, .location-grid, .final-cta__inner { grid-template-columns: 1fr; gap: 42px; }
  .split__image { order: -1; }
  .price-chapter__head { gap: 24px; }
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; }
  .info-table th { width: auto; padding-bottom: 6px; border-bottom: 0; }
  .info-table td { padding-top: 6px; }
  .article-layout { gap: 44px; }
  .article-body h2 { margin-top: 52px; }
  .contact-choice button { min-height: 180px; }
  .faq summary { padding-right: 42px; font-size: 1.04rem; }
  .contact-panel { padding: 28px 20px; }
  .preview-form__grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .address-list li { grid-template-columns: 1fr; gap: 4px; }
  .footer-inner { grid-template-columns: 1fr; gap: 42px; padding-block: 58px 34px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   2026-09-05 full renewal — calm green editorial system
   White space, real photography and hairline rules are used to create the
   quiet reassurance of a consultation room without weakening the message.
   -------------------------------------------------------------------------- */

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #eef5f0;
  --surface-warm: #fbf5ed;
  --paper: #fcfefc;
  --line: rgba(23, 51, 46, .14);
  --line-strong: rgba(23, 51, 46, .28);
  --heading: #17332e;
  --body: #36413d;
  --note: #5f6d66;
  --clinic: #2f6656;
  --clinic-soft: #eef5f0;
  --foot: #4e806a;
  --foot-bright: #4e806a;
  --foot-soft: #f2f7f3;
  --cta: #2f6d59;
  --cta-hover: #245444;
  --phone-action: #c44925;
  --phone-action-hover: #a43b20;
  --warm: #c98b58;
  --warm-deep: #8b5b32;
  --max: 1160px;
  --narrow: 820px;
  --section-space: clamp(72px, 8vw, 108px);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

html { scroll-padding-top: 96px; }
body {
  color: var(--body);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.86;
  letter-spacing: .012em;
}
h1, h2, h3, h4, .lead, .lede, .hero-home__lead, .page-hero__lede,
.responsive-art-hero__lede, .button, summary {
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}
@supports (word-break: auto-phrase) {
  h1, h2, h3, h4, .lead, .lede, .hero-home__lead, .page-hero__lede,
  .responsive-art-hero__lede, .button, summary { word-break: auto-phrase; }
}
h1 { font-size: clamp(2.7rem, 4.6vw, 4.15rem); line-height: 1.42; }
h2 { font-size: clamp(2.1rem, 3.45vw, 3.15rem); line-height: 1.48; }
h3 { line-height: 1.55; }
.pc-br { display: initial; }
.sp-br { display: none; }
.jp-phrase { display: inline-block; white-space: nowrap; }

.container { width: min(calc(100% - 56px), var(--max)); }
.section {
  padding-block: var(--section-space);
  border-top: 0;
  background: #fff;
}
.section--white { background: #fff; }
.section--soft { background: var(--surface-soft); }
.section--routes { background: var(--surface-warm); }
.section-heading { max-width: 880px; }
.section-heading h2 { padding-bottom: 0; }
.section-heading h2::after { display: none; }
.section-heading > p {
  max-width: 700px;
  margin-top: 26px;
  color: var(--note);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 2;
}
.eyebrow {
  gap: 14px;
  margin-bottom: 22px;
  color: var(--clinic);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
}
.eyebrow::before { width: 30px; background: var(--warm); }
.eyebrow--foot, .eyebrow--clinic { color: var(--clinic); }
.lede { color: var(--body); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 28px rgba(23, 51, 46, .045);
  backdrop-filter: none;
}
.header-inner {
  width: min(calc(100% - 52px), 1340px);
  grid-template-columns: minmax(280px, auto) 1fr auto;
  gap: clamp(18px, 2.4vw, 38px);
  min-height: 92px;
}
.brand-lockup { gap: 5px; }
.brand-row { gap: 12px; color: var(--heading); }
.brand-row + .brand-row { padding-top: 5px; border-color: var(--line); }
.brand-row strong {
  font-family: var(--serif);
  font-size: 1.06rem;
  letter-spacing: .045em;
}
.brand-row small { color: var(--note); font-size: .64rem; }
.brand-row--clinic, .brand-row--foot { color: var(--heading); }
.brand-row--clinic strong { color: var(--clinic); }
.brand-row--foot strong { color: var(--foot); }
.global-nav ul { gap: clamp(15px, 1.8vw, 26px); }
.global-nav a { color: var(--heading); font-size: .78rem; letter-spacing: .02em; }
.header-contact {
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid var(--clinic);
  border-radius: var(--radius-pill);
  background: var(--clinic);
  font-size: .78rem;
}
.mobile-phone-link {
  display: none;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--phone-action);
  box-shadow: 0 0 0 3px rgba(196, 73, 37, .2), 0 8px 18px rgba(196, 73, 37, .3);
  text-decoration: none;
}
.mobile-phone-link svg { width: 26px; height: 26px; fill: currentColor; }
.mobile-phone-link:visited { color: #fff; background: var(--phone-action); }
.mobile-phone-link:hover,
.mobile-phone-link:focus-visible,
.mobile-phone-link:active { color: #fff; background: var(--phone-action-hover); }

.phone-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
  scroll-margin-top: 0;
}
.phone-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 38px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--clinic);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.phone-card--foot { border-top-color: var(--foot); background: var(--foot-soft); }
.phone-card .eyebrow { margin-bottom: 14px; }
.phone-card h3 { margin: 0; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.phone-card > p:not(.eyebrow) { margin: 22px 0 0; }
.phone-call-button {
  display: grid;
  gap: 4px;
  place-items: center;
  min-height: 96px;
  margin-top: 22px;
  padding: 13px 18px 15px;
  border: 1px solid var(--clinic);
  border-radius: var(--radius-pill);
  color: #fff;
  background: var(--clinic);
  text-decoration: none;
}
.phone-card--foot .phone-call-button { border-color: var(--foot); background: var(--foot); }
.phone-call-button span { font-size: .8rem; font-weight: 700; letter-spacing: .05em; }
.phone-call-button strong {
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 2.55rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  letter-spacing: .025em;
  white-space: nowrap;
}
.phone-call-button:hover,
.phone-call-button:focus-visible,
.phone-call-button:active,
.phone-call-button:visited { color: #fff; }

.map-embed {
  position: relative;
  width: 100%;
  min-height: 520px;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.google-review-note {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 34px;
  align-items: center;
  margin-top: 52px;
  padding: 38px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--warm);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}
.google-review-note h3 { margin: 0; font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
.google-review-note p:not(.eyebrow) { margin-top: 16px; }
.google-review-note small { display: block; margin-top: 10px; color: var(--note); line-height: 1.7; }
.google-review-note__actions { display: grid; gap: 16px; }
.google-review-note__actions .button { width: 100%; }
.google-review-note__actions .text-link { justify-self: start; min-height: 44px; padding-block: 10px; }
.google-review-note__actions small { margin-top: 0; }

.button {
  min-height: 56px;
  padding: 13px 27px;
  border: 1px solid var(--cta);
  border-radius: var(--radius-pill);
  background: var(--cta);
  box-shadow: 0 9px 22px rgba(47, 109, 89, .14);
}
.button:hover { box-shadow: 0 12px 28px rgba(47, 109, 89, .2); }
.button--outline {
  border-color: var(--line-strong);
  color: var(--heading);
  background: rgba(255,255,255,.88);
  box-shadow: none;
}
.button--outline:hover { border-color: var(--heading); }
.button--foot, .button--clinic { border-color: var(--cta); background: var(--cta); }

/* Top first view */
.hero-home {
  position: relative;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(111, 166, 141, .17) 0 110px, transparent 112px),
    radial-gradient(circle at 88% 80%, rgba(201, 139, 88, .12) 0 150px, transparent 152px),
    linear-gradient(105deg, #f3f8f4 0%, #fbf8f1 100%);
}
.hero-home::after {
  position: absolute;
  right: -10vw;
  bottom: -150px;
  width: 48vw;
  height: 300px;
  border: 1px solid rgba(47, 102, 86, .12);
  border-radius: 50%;
  content: "";
  transform: rotate(-8deg);
}
.hero-home__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
  gap: clamp(42px, 5vw, 84px);
  align-items: center;
  width: min(calc(100% - 72px), 1360px);
  min-height: 680px;
  padding: 54px 0 0;
}
.hero-home__copy { max-width: 630px; padding: 46px 0 68px; }
.hero-home__copy h1 {
  max-width: 660px;
  color: var(--heading);
  font-size: clamp(2.5rem, 3.6vw, 3.4rem);
}
.hero-home__copy h1 .jp-phrase { display: inline-block; white-space: nowrap; }
.hero-home__lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--clinic);
  font-family: var(--serif);
  font-size: clamp(1.22rem, 1.8vw, 1.62rem);
  font-weight: 600;
  line-height: 1.75;
}
.hero-home__sub {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--body);
  font-size: 1rem;
  line-height: 1.95;
  text-align: left;
}
.hero-home__facts { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.hero-home__facts span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--heading);
  background: rgba(255,255,255,.78);
  font-size: .76rem;
  font-weight: 700;
}
.hero-home__copy .hero-actions { margin-top: 30px; }
.hero-home__art {
  position: relative;
  align-self: end;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 52% 52% 0 0 / 18% 18% 0 0;
  background: rgba(255,255,255,.48);
}
.hero-home__art picture, .hero-home__art img { width: 100%; height: 100%; }
.hero-home__art img { min-height: 610px; object-fit: contain; object-position: center bottom; }
.hero-home__art figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  min-width: 190px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: #17332e;
  backdrop-filter: none;
}
.hero-home__art figcaption strong { font-size: .92rem; }
.hero-home__art figcaption span { margin-top: 2px; font-size: .7rem; }

.home-trust { border-bottom: 1px solid var(--line); background: #fff; }
.home-trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.home-trust a {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 12px;
  min-height: 138px;
  padding: 28px 38px;
  border-left: 1px solid var(--line);
  text-decoration: none;
}
.home-trust a:last-child { border-right: 1px solid var(--line); }
.home-trust strong {
  color: var(--clinic);
  font-family: var(--latin);
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.home-trust strong span { margin-left: 3px; font-family: var(--sans); font-size: .72rem; letter-spacing: 0; white-space: nowrap; }
.home-trust small { color: var(--body); font-size: .79rem; font-weight: 700; line-height: 1.65; }

/* Editorial routes and concern menu */
.route-grid { gap: 0; margin-top: 58px; border-top: 1px solid var(--line); }
.route-card {
  min-height: 390px;
  padding: clamp(38px, 5vw, 62px);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.route-card + .route-card { border-left: 1px solid var(--line); }
.route-card::before { width: 42px; height: 2px; right: auto; background: var(--warm); }
.route-card--foot::before, .route-card--clinic::before { background: var(--warm); }
.route-card:hover { background: rgba(255,255,255,.72); box-shadow: none; transform: none; }
.route-card h3 { max-width: 500px; margin-top: 20px; font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem); }
.route-card p { max-width: 500px; color: var(--body); line-height: 1.9; }
.route-card ul { padding-left: 1.15em; color: var(--note); }
.route-card__arrow { right: 44px; color: var(--clinic); }

.home-service-grid { grid-template-columns: 1fr; gap: 0; margin-top: 62px; border-top: 1px solid var(--line); }
.home-service-card {
  grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr);
  min-height: 390px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.home-service-card:nth-child(even) .home-service-card__image { order: 2; }
.home-service-card:hover { box-shadow: none; transform: none; }
.home-service-card__image { min-height: 390px; }
.home-service-card__image img { filter: saturate(.78) contrast(.96); transition: filter .35s, transform .6s cubic-bezier(.22,1,.36,1); }
.home-service-card:hover img { filter: saturate(.95) contrast(1); transform: scale(1.025); }
.home-service-card__copy { padding: clamp(40px, 6vw, 78px); background: #fff; }
.home-service-card__copy small { color: var(--warm-deep); letter-spacing: .14em; }
.home-service-card__copy strong { margin-top: 14px; font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.7rem); }
.home-service-card__copy > span { max-width: 510px; color: var(--body); font-size: .96rem; }
.home-service-card__copy b { color: var(--clinic); }

/* Shared heroes */
.responsive-art-hero {
  border: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(78,128,106,.12) 0 90px, transparent 92px),
    linear-gradient(108deg, var(--surface-soft), var(--surface-warm));
}
.responsive-art-hero__inner {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 5vw, 78px);
  min-height: 650px;
  padding-block: 60px;
}
.responsive-art-hero__copy { order: 1; }
.responsive-art-hero__copy h1 { max-width: 670px; font-size: clamp(2.5rem, 3.6vw, 3.4rem); }
.hero-title-line { display: block; }
.responsive-art-hero__lede { max-width: 620px; margin-top: 28px; color: var(--body); font-size: 1.02rem; line-height: 1.95; }
.responsive-art-hero__proof {
  max-width: 560px;
  margin-top: 26px;
  padding: 18px 0 18px 20px;
  border: 0;
  border-left: 2px solid var(--warm);
}
.responsive-art-hero--foot .responsive-art-hero__proof,
.responsive-art-hero--mixed .responsive-art-hero__proof { border-left-color: var(--warm); }
.responsive-art-hero__proof strong { font-size: 1.05rem; }
.responsive-art-hero__proof span { color: var(--body); }
.responsive-art-hero__art {
  position: relative;
  order: 2;
  height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 80px var(--radius-lg);
  background: #fff;
  box-shadow: 0 22px 60px rgba(23, 51, 46, .09);
}
.responsive-art-hero__art::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 42%, rgba(255,255,255,0) 100%);
  content: "";
  pointer-events: none;
}
.responsive-art-hero__art picture { position: absolute; inset: 0; display: block; overflow: hidden; }
.responsive-art-hero__art img {
  position: absolute;
  top: 50%;
  right: 0;
  width: auto;
  max-width: none;
  height: 175%;
  border: 0;
  object-fit: contain;
  transform: translateY(-50%);
}
.responsive-art-hero--plain-photo .responsive-art-hero__art img {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}
.responsive-art-hero--plain-photo .responsive-art-hero__art::before {
  display: none;
}
.responsive-art-hero--plain-photo.responsive-art-hero--mixed .responsive-art-hero__art img {
  object-position: center top;
}
.responsive-art-hero--campaign-art .responsive-art-hero__art {
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
}
.responsive-art-hero--campaign-art .responsive-art-hero__art::before { display: none; }
.responsive-art-hero--campaign-art .responsive-art-hero__art picture {
  position: static;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.responsive-art-hero.responsive-art-hero--campaign-art .responsive-art-hero__art img {
  position: static;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}
.responsive-art-hero__art figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  padding: 11px 15px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.9);
  background: #17332e;
  font-size: .68rem;
  line-height: 1.55;
  backdrop-filter: none;
  z-index: 2;
}
.responsive-art-hero__proof-photo {
  max-width: 220px;
  margin: 26px 0 0;
  border: 0;
}
.responsive-art-hero__proof-photo img { border: 1px solid var(--line); border-radius: var(--radius-sm); }

.page-hero {
  padding-block: 100px 92px;
  border: 0;
  background:
    radial-gradient(circle at 90% 25%, rgba(201,139,88,.11) 0 120px, transparent 122px),
    var(--surface-soft);
}
.page-hero::before { width: 46px; height: 2px; right: auto; left: max(28px, calc((100vw - var(--max)) / 2)); background: var(--warm); }
.page-hero__inner { gap: 82px; }
.page-hero__aside { border: 0; border-left: 2px solid var(--warm); background: transparent; }
.media-page-hero { border: 0; background: var(--surface-warm); }
.media-page-hero::before { width: 46px; right: auto; left: max(28px, calc((100vw - var(--max)) / 2)); background: var(--warm); }
.media-page-hero__inner { gap: 72px; min-height: 640px; }
.media-page-hero__figure { border: 0; border-radius: var(--radius-lg); box-shadow: 0 20px 50px rgba(23,51,46,.08); }
.media-page-hero__proof { border: 0; border-left: 2px solid var(--warm); }

/* Proof, voices and process */
.brand-proof-grid { gap: 0; margin-top: 60px; border-top: 1px solid var(--line); }
.brand-proof {
  min-width: 0;
  padding: clamp(38px, 4.5vw, 60px);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.brand-proof + .brand-proof { border-left: 1px solid var(--line); }
.brand-proof--clinic, .brand-proof--foot { border-top: 0; background: #fff; }
.brand-proof h3 { font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.55rem); }
.brand-proof li { padding: 23px 0 23px 50px; }
.brand-proof__no { color: var(--warm-deep); }

.proof-five {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 46px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}
.proof-five li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 22px;
  align-items: start;
  min-height: 0;
  padding: 30px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.proof-five li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.proof-five--foot li, .proof-five--clinic li { border-top: 0; background: transparent; }
.proof-five__no, .proof-five--foot .proof-five__no {
  grid-row: 1 / span 2;
  width: auto;
  height: auto;
  margin: 2px 0 0;
  border-radius: 0;
  color: var(--warm-deep);
  background: transparent;
  font-family: var(--latin);
  font-size: 1rem;
}
.proof-five strong { font-size: 1.08rem; }
.proof-five p { margin-top: 9px; color: var(--body); font-size: .9rem; }

.voice-volume {
  margin-top: 52px;
  padding: 48px;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--surface-warm);
  box-shadow: none;
}
.voice-volume__copy strong { font-family: var(--serif); font-weight: 600; }
.voice-volume__copy p { color: var(--body); }
.voice-grid { gap: 34px; margin-top: 58px; }
.voice-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.voice-item__image { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.voice-item figcaption { padding: 24px 0 0; }
.voice-item strong { font-family: var(--serif); font-size: 1.3rem; }
.voice-item blockquote {
  margin-top: 16px;
  padding: 0 0 0 16px;
  border-left: 2px solid var(--warm);
  color: var(--heading);
  background: transparent;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.voice-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 22px;
  margin-top: 64px;
}
.voice-archive-card { min-width: 0; margin: 0; }
.voice-archive-card a { display: block; text-decoration: none; }
.voice-archive-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
.voice-archive-card__image img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s cubic-bezier(.22,1,.36,1); }
.voice-archive-card a:hover img { transform: scale(1.025); }
.voice-archive-card figcaption { display: grid; gap: 3px; padding-top: 13px; }
.voice-archive-card figcaption span { color: var(--warm-deep); font-size: .68rem; font-weight: 700; }
.voice-archive-card figcaption strong { color: var(--heading); font-size: .85rem; }
.voice-archive-card figcaption small { color: var(--note); font-size: .68rem; }

.step-list {
  position: relative;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 900px;
  margin-top: 56px;
}
.step-list::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 39px;
  width: 1px;
  background: var(--line-strong);
  content: "";
}
.step-list li {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(180px, .55fr) 1fr;
  gap: 28px;
  align-items: start;
  min-height: 0;
  padding: 30px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.step-list__no {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin: 0;
  border: 1px solid var(--clinic);
  border-radius: 50%;
  color: var(--clinic);
  background: #fff;
  font-size: .72rem;
}
.step-list strong { padding-top: 19px; font-family: var(--serif); font-size: 1.35rem; }
.step-list p { margin: 0; padding-top: 18px; color: var(--body); }

.service-grid { gap: 0; margin-top: 54px; border-top: 1px solid var(--line); }
.service-link {
  min-height: 260px;
  padding: 42px 68px 42px 36px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.service-link:nth-child(odd) { border-right: 1px solid var(--line); }
.service-link:hover { background: var(--surface-soft); }
.service-link__no { color: var(--warm-deep); }

.photo-strip { gap: 18px; margin-top: 60px; }
.photo-strip figure { border-radius: var(--radius-sm); box-shadow: none; }
.photo-strip img { filter: saturate(.8) contrast(.96); }
.photo-strip figcaption { padding: 16px; background: #17332e; }

.scene-list { gap: 0; margin-top: 56px; border-top: 1px solid var(--line); }
.scene-list > * {
  min-height: 235px;
  padding: 38px 30px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.scene-list > *:last-child { border-right: 0; }
.scene-list strong { font-family: var(--serif); font-size: 1.35rem; }

.facts { gap: 0; margin-top: 54px; border-top: 1px solid var(--line); }
.fact {
  min-height: 230px;
  padding: 36px 30px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.fact:last-child { border-right: 0; }
.fact__no { color: var(--warm-deep); }

.split { gap: clamp(50px, 7vw, 90px); }
.split--wide-image { grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr); align-items: start; }
.split--wide-image .split__image { position: sticky; top: 126px; }
.split__image img { border-radius: var(--radius-lg); filter: saturate(.82) contrast(.97); }
.split__image figcaption { padding-left: 4px; }

.faq { margin-top: 52px; }
.faq details { border-color: var(--line); }
.faq summary { padding-block: 27px; color: var(--heading); font-family: var(--sans); font-size: 1.08rem; }
.faq summary::after { color: var(--clinic); }

.fee-table-wrap, .price-status, .payment-note, .contact-choice button, .contact-panel,
.article-body .summary-box, .blog-card, .article-side {
  border-color: var(--line);
  border-radius: var(--radius-md);
  box-shadow: none;
}
.fee-table-wrap h3, .section:has(.eyebrow--foot) .fee-table-wrap h3,
.price-chapter--foot .fee-table-wrap h3 { background: var(--clinic); }
.fee-table th { background: var(--surface-soft); }
.blog-grid { gap: 24px; }
.blog-card { border-top: 2px solid var(--warm); background: #fff; }
.blog-card:hover { background: var(--surface-soft); }
.contact-choice button { border-top: 2px solid var(--clinic); background: var(--surface-soft); }
.contact-choice button:nth-child(2) { border-top-color: var(--foot); background: var(--foot-soft); }

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 9vw, 126px);
  background: #28584a;
}
.final-cta::before {
  position: absolute;
  top: -180px;
  right: -80px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  content: "";
}
.final-cta__inner { position: relative; z-index: 1; }
.final-cta .button { border-color: #fff; color: var(--heading); background: #fff; box-shadow: none; }
.final-cta .button:hover { color: #fff; background: transparent; }

.site-footer { background: #122c25; }
.footer-lines { display: none; }
.footer-inner { padding-top: 80px; }
.footer-brand .brand-row strong,
.footer-brand .brand-row strong > span { color: #fff; }
.copyright { color: rgba(255,255,255,.56); }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .home-trust__inner { grid-template-columns: repeat(2, 1fr); }
  .home-trust a { grid-template-columns: auto 1fr; }
  .home-trust a:nth-child(even) { border-right: 1px solid var(--line); }
  .home-trust a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hero-home__inner { grid-template-columns: minmax(0, 1fr) minmax(370px, 1fr); }
  .hero-home__copy h1 { font-size: clamp(2.35rem, 3.7vw, 3rem); }
  .hero-home__art, .hero-home__art img { min-height: 560px; }
  .responsive-art-hero__inner { grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr); }
}

@media (max-width: 960px) and (min-width: 761px) {
  .hero-home__inner {
    grid-template-columns: 1fr;
    width: min(calc(100% - 64px), 760px);
    min-height: 0;
    padding-top: 20px;
  }
  .hero-home__copy { max-width: 720px; padding-bottom: 34px; }
  .hero-home__copy h1 { font-size: clamp(2.65rem, 6.2vw, 3.25rem); }
  .hero-home__art { min-height: 520px; }
  .hero-home__art img { min-height: 520px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 40px), var(--max)); }
  .hero-home__inner { grid-template-columns: 1fr; width: min(calc(100% - 40px), 760px); min-height: 0; gap: 0; }
  .hero-home__copy { padding-block: 50px 34px; }
  .hero-home__art, .hero-home__art img { min-height: 520px; }
  .home-trust a { grid-template-columns: 1fr; gap: 11px; padding: 24px; }
  .responsive-art-hero__inner { grid-template-columns: 1fr; width: min(calc(100% - 40px), 760px); gap: 32px; }
  .responsive-art-hero__support { display: block; }
  .responsive-art-hero__art { height: 500px; }
  .responsive-art-hero--campaign-art .responsive-art-hero__art {
    height: auto;
    aspect-ratio: 3 / 2;
  }
  .brand-proof-grid { grid-template-columns: 1fr; }
  .brand-proof + .brand-proof { border-left: 0; }
  .voice-archive-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .container, .container--narrow { width: min(calc(100% - 32px), var(--max)); }
  .section { padding-block: clamp(62px, 16vw, 76px); }
  h1 { font-size: clamp(2.1rem, 9.4vw, 2.7rem); line-height: 1.43; }
  h2 { font-size: clamp(1.78rem, 7.6vw, 2.25rem); line-height: 1.5; }
  .pc-br { display: none; }
  .sp-br { display: initial; }
  .eyebrow { margin-bottom: 18px; font-size: .66rem; }
  .section-heading > p { margin-top: 20px; font-size: .98rem; line-height: 1.9; }

  .header-inner { width: min(calc(100% - 24px), var(--max)); grid-template-columns: minmax(0, 1fr) auto auto; gap: 7px; min-height: 86px; }
  .brand-row { display: grid; gap: 0; align-items: start; }
  .brand-row strong { font-size: .88rem; }
  .brand-row small { display: block; font-size: .53rem; line-height: 1.25; }
  .mobile-phone-link { display: grid; }
  .menu-toggle { border-radius: 50%; }
  .global-nav.is-open { top: 86px; padding: 16px; box-shadow: 0 20px 38px rgba(23,51,46,.12); }

  .phone-directory { grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  .phone-card { padding: 30px 22px; }
  .phone-card > p:not(.eyebrow) { margin: 18px 0 0; }
  .phone-call-button { min-height: 94px; margin-top: 18px; }
  .map-embed { min-height: 390px; margin-top: 38px; }
  .google-review-note { grid-template-columns: 1fr; gap: 24px; margin-top: 38px; padding: 28px 22px; }

  .hero-home__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: min(calc(100% - 32px), var(--max));
    min-height: 0;
    padding-top: 0;
  }
  .hero-home__copy { order: 1; min-width: 0; max-width: none; padding: 46px 0 30px; }
  .hero-home__copy h1 { font-size: clamp(2rem, 8.4vw, 2.15rem); }
  .hero-home__copy h1 .jp-phrase { display: block; white-space: nowrap; }
  .hero-home__lead { margin-top: 22px; font-size: 1.18rem; line-height: 1.72; }
  .hero-home__sub { margin-top: 16px; font-size: .94rem; line-height: 1.85; }
  .hero-home__facts { gap: 7px; margin-top: 20px; }
  .hero-home__facts span { padding: 7px 10px; font-size: .68rem; }
  .hero-home__copy .hero-actions { gap: 10px; margin-top: 24px; }
  .hero-home__copy .hero-actions .button { width: 100%; }
  .hero-home__art {
    order: 2;
    min-height: 0;
    height: 360px;
    border-radius: 42% 42% 0 0 / 16% 16% 0 0;
  }
  .hero-home__art img { min-height: 0; height: 360px; object-position: center bottom; }
  .hero-home__art figcaption { right: 12px; bottom: 14px; min-width: 168px; padding: 11px 13px; }

  .home-trust__inner { grid-template-columns: 1fr; }
  .home-trust a {
    grid-template-columns: 140px 1fr;
    gap: 12px;
    min-height: 0;
    padding: 20px 8px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .home-trust a:last-child { border-right: 0; border-bottom: 0; }
  .home-trust strong { font-size: 2.2rem; }

  .route-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .route-card { min-height: 0; padding: 38px 22px 64px; }
  .route-card + .route-card { border-left: 0; }
  .route-card h3 { font-size: 1.85rem; }
  .route-card__arrow { right: 24px; bottom: 22px; }

  .home-service-grid { margin-top: 42px; }
  .home-service-card { grid-template-columns: 1fr; min-height: 0; }
  .home-service-card:nth-child(even) .home-service-card__image { order: 0; }
  .home-service-card__image { min-height: 0; aspect-ratio: 4 / 3; }
  .home-service-card__copy { padding: 30px 22px 34px; }
  .home-service-card__copy strong { font-size: 1.62rem; }

  .responsive-art-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding-block: 48px 38px;
  }
  .responsive-art-hero__copy { order: 1; }
  .responsive-art-hero__copy h1 { font-size: clamp(2rem, 8.8vw, 2.65rem); }
  .responsive-art-hero__lede { margin-top: 20px; font-size: .95rem; line-height: 1.85; }
  .responsive-art-hero__proof { margin-top: 20px; padding: 14px 0 14px 15px; }
  .responsive-art-hero__proof-photo { max-width: 180px; margin-top: 22px; }
  .responsive-art-hero__art {
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 18px 18px 54px 18px;
  }
  .responsive-art-hero:not(.responsive-art-hero--plain-photo) .responsive-art-hero__art img {
    top: auto;
    right: 50%;
    bottom: 0;
    height: 180%;
    transform: translateX(50%);
  }
  .responsive-art-hero:not(.responsive-art-hero--plain-photo) .responsive-art-hero__art::before { display: none; }
  .responsive-art-hero--plain-photo .responsive-art-hero__art img { height: 100%; transform: none; }
  .responsive-art-hero--campaign-art .responsive-art-hero__art {
    height: auto;
    aspect-ratio: 2 / 3;
    border-radius: 18px 18px 54px 18px;
  }
  .responsive-art-hero.responsive-art-hero--campaign-art .responsive-art-hero__art img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
  }
  .responsive-art-hero__art figcaption { right: 10px; bottom: 10px; left: 10px; font-size: .62rem; }

  .page-hero { padding-block: 68px 64px; }
  .page-hero::before, .media-page-hero::before { left: 16px; }
  .media-page-hero__inner { gap: 28px; padding-block: 54px 46px; }

  .brand-proof-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .brand-proof { padding: 34px 4px; }
  .brand-proof + .brand-proof { border-left: 0; }
  .proof-five { grid-template-columns: 1fr; gap: 0; margin-top: 42px; }
  .proof-five li:last-child:nth-child(odd) { grid-column: auto; }
  .proof-five li { grid-template-columns: 42px 1fr; gap: 0 14px; padding: 24px 0; }

  .voice-volume { grid-template-columns: 1fr; gap: 28px; margin-top: 42px; padding: 28px 20px; }
  .voice-volume__copy strong { font-size: 1.8rem; }
  .voice-grid { grid-template-columns: 1fr; gap: 42px; margin-top: 44px; }
  .voice-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 12px; margin-top: 46px; }
  .voice-archive-card figcaption strong { font-size: .75rem; }

  .step-list { margin-top: 42px; }
  .step-list::before { left: 29px; }
  .step-list li { grid-template-columns: 60px 1fr; gap: 0 18px; padding: 24px 0; }
  .step-list__no { grid-row: 1 / span 2; width: 60px; height: 60px; font-size: .62rem; }
  .step-list strong { padding-top: 5px; font-size: 1.18rem; }
  .step-list p { grid-column: 2; padding-top: 7px; }

  .service-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .service-link { min-height: 0; padding: 34px 50px 34px 12px; }
  .service-link:nth-child(odd) { border-right: 0; }
  .scene-list, .facts { grid-template-columns: 1fr; margin-top: 42px; }
  .scene-list > *, .fact { min-height: 0; padding: 28px 14px; border-right: 0; }

  .photo-strip { grid-template-columns: 1fr; margin-top: 44px; }
  .photo-strip figure { border-radius: var(--radius-sm); }
  .split, .split--wide-image { grid-template-columns: 1fr; gap: 36px; }
  .split--wide-image .split__image { position: static; order: 2; }
  .split__image img { max-height: 520px; }

  .final-cta__inner { grid-template-columns: 1fr; gap: 34px; }
  .final-cta .button { width: 100%; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 390px) {
  .brand-row small { display: block; font-size: .48rem; letter-spacing: .02em; }
  .voice-archive-grid { grid-template-columns: 1fr 1fr; }
  .hero-home__art, .hero-home__art img { height: 330px; }
}

@media (max-width: 340px) {
  .header-inner { width: min(calc(100% - 16px), var(--max)); }
  .brand-row strong { font-size: .82rem; letter-spacing: .02em; }
  .mobile-phone-link, .menu-toggle { width: 44px; height: 44px; }
  .mobile-phone-link svg { width: 24px; height: 24px; }
  .phone-call-button strong { font-size: 1.82rem; letter-spacing: .015em; }
  h2 { font-size: 1.65rem; }
  .hero-home__copy h1 { font-size: 1.7rem; }
  .responsive-art-hero__copy h1 { font-size: 1.78rem; }
}
