@import "tailwindcss";

:root {
  --navy: #071d39;
  --navy-2: #0b2c50;
  --blue: #177fae;
  --bronze: #b96521;
  --cream: #f5f0e8;
  --ink: #172131;
  --muted: #5f6873;
  --line: #d9dee2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP",
    sans-serif;
  line-height: 1.75;
  letter-spacing: 0.035em;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.demoBar {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #172131;
  color: #d8e1e8;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.demoBar span {
  padding: 2px 9px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: white;
  font-weight: 700;
}

.siteHeader {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 82px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto 245px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 29, 57, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  padding-left: clamp(24px, 4vw, 64px);
}

.brand img {
  width: 175px;
  height: auto;
}

.siteHeader nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
  padding: 0 30px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.siteHeader nav a {
  position: relative;
  padding: 6px 0;
}

.siteHeader nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--bronze);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.siteHeader nav a:hover::after {
  transform: scaleX(1);
}

.headerCta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), #24699a);
  color: white;
  font-size: 15px;
  font-weight: 700;
}

.headerCta span {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.8;
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-columns: 54% 46%;
  overflow: hidden;
  background:
    linear-gradient(
      120deg,
      rgba(7, 29, 57, 0.985) 0 59%,
      rgba(7, 29, 57, 0.94) 59% 64%,
      transparent 64%
    ),
    var(--navy);
  color: white;
}

.hero::before {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 10px;
  content: "";
  background: var(--bronze);
  clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
}

.heroVisual {
  position: relative;
  grid-column: 2;
  min-height: 700px;
}

.heroVisual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      var(--navy) 0%,
      rgba(7, 29, 57, 0.38) 22%,
      rgba(7, 29, 57, 0.05) 60%
    ),
    linear-gradient(0deg, rgba(7, 29, 57, 0.4), transparent 45%);
}

.heroVisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.03);
}

.heroPhotoLabel {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 34px;
  padding: 14px 18px;
  border-left: 3px solid var(--bronze);
  background: rgba(7, 29, 57, 0.82);
  color: white;
  font-size: 12px;
}

.heroPhotoLabel span {
  display: block;
  color: #e2b887;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.heroContent {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px clamp(30px, 6vw, 90px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.eyebrow.light {
  color: #e2b887;
}

.heroIssue {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 20px;
  padding: 6px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: #f7f3ed;
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.hero h1 em {
  color: #f1c28f;
  font-style: normal;
}

.heroLead {
  max-width: 650px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 2;
}

.heroLead strong {
  display: block;
  color: white;
  font-size: 18px;
}

.heroActions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.primaryButton {
  min-width: 315px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 14px 18px 14px 22px;
  background: linear-gradient(135deg, #1784b6, #1b6e9c);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  color: white;
  font-size: 16px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.primaryButton small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.73);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.primaryButton span {
  grid-column: 2;
  grid-row: 2;
  font-size: 24px;
}

.primaryButton:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.textLink {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.heroNote {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.trustBand {
  position: relative;
  z-index: 4;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -52px auto 0;
  background: white;
  box-shadow: 0 18px 50px rgba(7, 29, 57, 0.14);
}

.trustBand > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 104px;
  padding: 20px 32px;
  border-right: 1px solid var(--line);
}

.trustBand > div:last-child {
  border-right: 0;
}

.trustBand p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.trustBand strong {
  color: var(--navy);
  font-size: 17px;
}

.trustNumber {
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.persona {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(46px, 8vw, 110px);
  background:
    linear-gradient(145deg, #f8fafb 0 58%, #eef2f3 58% 100%);
}

.personaIntro > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.personaCards {
  display: grid;
  gap: 12px;
}

.personaCards article {
  position: relative;
  min-height: 128px;
  display: grid;
  grid-template-columns: 64px 100px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.personaCards article > span {
  color: var(--bronze);
  font-family: Georgia, serif;
  font-size: 26px;
}

.personaCards article > p {
  margin: 0;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.personaCards h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.section {
  padding: 130px clamp(24px, 7vw, 110px);
}

.sectionHeading {
  max-width: 700px;
}

.sectionHeading.centered {
  margin: 0 auto 60px;
  text-align: center;
}

.section h2,
.finalCta h2 {
  margin: 0 0 26px;
  color: var(--navy);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.sectionHeading > p:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.concerns {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(50px, 8vw, 120px);
  padding-top: 150px;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(23, 127, 174, 0.08),
      transparent 30%
    ),
    white;
}

.concernList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 12px;
}

.concernItem {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #fbfcfc;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.concernItem span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  flex: 0 0 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 12px;
}

.approach {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      125deg,
      transparent 0 76%,
      rgba(255, 255, 255, 0.04) 76%
    ),
    var(--navy);
  color: white;
}

.approach::after {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 460px;
  height: 460px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.approachIntro {
  max-width: 800px;
  margin-bottom: 62px;
}

.approach h2,
.priceIntro h2 {
  color: white;
}

.approachIntro > p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 2;
}

.roleGrid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.medicalCard {
  grid-column: 1;
  grid-row: 2;
}

.acupunctureCard {
  grid-column: 2;
  grid-row: 2;
}

.roleCard {
  padding: 36px 38px;
  background: white;
  color: var(--ink);
}

.roleCard h3 {
  margin: 10px 0 22px;
  color: var(--navy);
  font-family: "Yu Mincho", serif;
  font-size: 25px;
}

.roleCard ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.roleCard li {
  position: relative;
  padding-left: 24px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.roleCard li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--bronze);
}

.roleCard p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.roleLabel {
  color: var(--bronze);
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.acupunctureCard {
  background: #f4efe7;
}

.roleConnector {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.evidenceNote {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  margin-top: 22px;
  padding: 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.evidenceNote span {
  color: #efc79f;
  font-size: 13px;
  font-weight: 700;
}

.evidenceNote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.evidenceNote p strong {
  display: block;
  margin-bottom: 5px;
  color: white;
  font-size: 13px;
}

.treatment {
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(185, 101, 33, 0.08),
      transparent 26%
    ),
    white;
}

.treatmentGrid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto 28px;
}

.treatmentGrid article {
  min-height: 255px;
  padding: 30px 28px;
  border-top: 3px solid var(--bronze);
  background: #f7f8f8;
}

.treatmentGrid article > span {
  color: var(--bronze);
  font-family: Georgia, serif;
  font-size: 13px;
}

.treatmentGrid h3 {
  margin: 28px 0 15px;
  color: var(--navy);
  font-family: "Yu Mincho", serif;
  font-size: 21px;
}

.treatmentGrid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.stimulationNote {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 24px;
  margin: 0 auto 28px;
  padding: 22px 28px;
  border: 1px solid rgba(23, 127, 174, 0.24);
  background: #f3f8fa;
}

.stimulationNote > span {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.stimulationNote strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.stimulationNote p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.treatmentPhotos {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 14px;
  margin: 0 auto 10px;
}

.treatmentPhotoCopy {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
  border: 1px solid rgba(197, 145, 91, 0.3);
  background:
    linear-gradient(145deg, rgba(7, 29, 57, 0.98), rgba(15, 55, 93, 0.96)),
    var(--navy);
  color: white;
}

.treatmentPhotoCopy > p:first-child {
  margin: 0 0 18px;
  color: #e2b887;
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.treatmentPhotoCopy h3 {
  margin: 0 0 22px;
  font-family: "Yu Mincho", serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.6;
}

.treatmentPhotoCopy > p:last-child {
  max-width: 42em;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.treatmentPhotos figure {
  position: relative;
  height: 390px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

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

.treatmentPhotos .acupuncturePhoto img {
  object-position: center;
}

.treatmentPhotos figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 29, 57, 0.74), transparent 48%);
  pointer-events: none;
}

.treatmentPhotos figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: white;
  font-family: "Yu Mincho", serif;
  font-size: 17px;
}

.treatmentPhotos figcaption span {
  display: block;
  margin-bottom: 4px;
  color: #e2b887;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.photoNote {
  max-width: 1180px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 10px;
}

.treatmentSafety {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  border: 1px solid var(--line);
}

.treatmentSafety > div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.treatmentSafety > div:last-child {
  border-right: 0;
}

.treatmentSafety span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.treatmentSafety p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.treatmentCaution {
  max-width: 1180px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 10px;
}

.flow {
  background: #f7f8f8;
}

.flowGrid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 80px;
}

.flowCard {
  position: relative;
  min-height: 240px;
  padding: 28px 28px 32px;
  border-top: 1px solid var(--navy);
  border-right: 1px solid var(--line);
  background: white;
}

.flowCard:last-child {
  border-right: 0;
}

.flowCard > span {
  color: var(--bronze);
  font-family: Georgia, serif;
  font-size: 15px;
}

.flowCard h3 {
  margin: 24px 0 15px;
  color: var(--navy);
  font-family: "Yu Mincho", serif;
  font-size: 22px;
}

.flowCard p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.clinicPhotos {
  max-width: 1160px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin: 0 auto;
}

.clinicPhotos figure {
  position: relative;
  height: 390px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

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

.clinicPhotos .largePhoto img {
  object-position: center;
}

.clinicPhotoStack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.clinicPhotoStack figure {
  height: 186px;
}

.clinicPhotos figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 29, 57, 0.66), transparent 45%);
  pointer-events: none;
}

.clinicPhotos figcaption {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 28px;
  padding: 14px 20px;
  border-left: 3px solid var(--bronze);
  background: rgba(7, 29, 57, 0.88);
  color: white;
  font-size: 12px;
}

.clinicPhotos figcaption span {
  display: block;
  color: #e2b887;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.clinicPhotoStack figcaption {
  right: 18px;
  bottom: 16px;
  left: 18px;
  padding: 10px 14px;
  font-size: 11px;
}

.clinicPrivacyNote {
  max-width: 1160px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 11px;
}

.pricing {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 75px;
  background:
    linear-gradient(
      125deg,
      rgba(7, 29, 57, 0.98) 0 41%,
      rgba(11, 44, 80, 0.98) 41% 100%
    ),
    var(--navy);
  color: white;
}

.priceIntro > p:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

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

.priceCards article {
  padding: 34px 30px;
  background: white;
  color: var(--ink);
}

.priceCards article > p:first-child {
  margin: 0;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
}

.priceCards h3 {
  margin: 10px 0 28px;
  color: var(--navy);
  font-family: "Yu Mincho", serif;
  font-size: 21px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--navy);
}

.price strong {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.price span {
  font-size: 11px;
}

.priceCards .duration {
  width: fit-content;
  margin: 16px 0 12px;
  padding: 4px 10px;
  background: var(--cream);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.priceCards small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.priceCards .firstVisitPrice {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 11px;
}

.priceCards .firstVisitPrice strong {
  font-size: 14px;
}

.priceDetails {
  grid-column: 2;
  margin: -48px 0 0;
}

.paymentMethods {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: 0 0 10px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
}

.paymentMethods strong {
  color: white;
  font-size: 10px;
}

.priceNotice {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.faq {
  background: white;
}

.faqList {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faqList details {
  border-bottom: 1px solid var(--line);
}

.faqList summary {
  position: relative;
  padding: 26px 58px 26px 14px;
  color: var(--navy);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

.faqList summary::-webkit-details-marker {
  display: none;
}

.faqList summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  color: var(--bronze);
  font-family: Georgia, serif;
  transform: translateY(-50%);
}

.faqList details[open] summary::after {
  content: "−";
}

.faqList details p {
  margin: 0;
  padding: 0 58px 26px 14px;
  color: var(--muted);
  font-size: 13px;
}

.finalCta {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
  padding: 90px clamp(24px, 8vw, 120px);
  background:
    linear-gradient(
      110deg,
      rgba(7, 29, 57, 0.98) 0 62%,
      rgba(7, 29, 57, 0.78) 62%
    ),
    url("images/clinic/gotanda-exterior.jpg")
      center / cover;
  color: white;
}

.finalCta h2 {
  color: white;
}

.finalCta > div:first-child > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.finalActions {
  display: grid;
  gap: 10px;
}

.lineButton {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 700;
}

.lineButton {
  background: #1385b8;
}

.finalActions a span {
  font-size: 22px;
}

.finalActions small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

footer {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 40px clamp(24px, 6vw, 90px);
  border-top: 4px solid var(--bronze);
  background: white;
  color: var(--navy);
  font-size: 12px;
}

footer img {
  width: 175px;
}

footer p {
  margin: 0;
}

.footerLocation p + p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.footerNote {
  color: var(--muted);
  font-size: 10px;
}

.mobileSticky {
  display: none;
}

@media (max-width: 1100px) {
  .siteHeader {
    grid-template-columns: 1fr 220px;
  }

  .siteHeader nav {
    display: none;
  }

  .heroContent {
    width: 70%;
  }

  .heroActions {
    align-items: flex-start;
    flex-direction: column;
  }

  .concerns {
    grid-template-columns: 1fr;
  }

  .persona {
    grid-template-columns: 1fr;
  }

  .treatmentGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing {
    grid-template-columns: 1fr;
  }

  .priceDetails {
    grid-column: 1;
    margin: 0;
  }

  .finalCta {
    grid-template-columns: 1fr 360px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  .demoBar {
    height: 26px;
    font-size: 8px;
  }

  .siteHeader {
    position: relative;
    height: 70px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    padding-left: 18px;
  }

  .brand img {
    width: 145px;
  }

  .headerCta {
    width: 120px;
    font-size: 12px;
  }

  .headerCta span {
    display: none;
  }

  .hero {
    min-height: 780px;
    display: block;
    background: var(--navy);
  }

  .heroVisual {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .heroVisual::after {
    background:
      linear-gradient(
        180deg,
        rgba(7, 29, 57, 0.35) 0%,
        rgba(7, 29, 57, 0.94) 48%,
        var(--navy) 78%
      ),
      linear-gradient(90deg, rgba(7, 29, 57, 0.4), transparent);
  }

  .heroVisual img {
    height: 360px;
    object-position: 60% center;
  }

  .heroPhotoLabel {
    display: none;
  }

  .heroContent {
    position: relative;
    width: 100%;
    min-height: 780px;
    justify-content: flex-end;
    padding: 230px 22px 58px;
  }

  .heroIssue {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .heroLead {
    margin: 20px 0;
    font-size: 13px;
  }

  .heroLead strong {
    font-size: 15px;
  }

  .heroActions {
    gap: 13px;
  }

  .primaryButton {
    width: 100%;
    min-width: 0;
  }

  .trustBand {
    grid-template-columns: 1fr;
    margin: 0;
    box-shadow: none;
  }

  .trustBand > div {
    min-height: 78px;
    grid-template-columns: 52px 1fr;
    padding: 14px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 86px 22px;
  }

  .section h2,
  .finalCta h2 {
    font-size: 32px;
  }

  .concerns {
    gap: 40px;
  }

  .concernList {
    grid-template-columns: 1fr;
  }

  .personaCards article {
    grid-template-columns: 46px 1fr;
  }

  .personaCards article > p {
    display: none;
  }

  .roleGrid {
    grid-template-columns: 1fr;
  }

  .roleConnector {
    min-height: 30px;
  }

  .roleCard {
    padding: 30px 24px;
  }

  .evidenceNote {
    grid-template-columns: 1fr;
  }

  .stimulationNote {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .treatmentGrid,
  .treatmentSafety {
    grid-template-columns: 1fr;
  }

  .treatmentPhotos {
    grid-template-columns: 1fr;
  }

  .treatmentPhotos figure {
    height: 280px;
  }

  .treatmentPhotoCopy {
    min-height: auto;
    padding: 34px 26px;
  }

  .treatmentPhotoCopy h3 {
    font-size: 24px;
  }

  .treatmentGrid article {
    min-height: auto;
  }

  .treatmentSafety > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .treatmentSafety > div:last-child {
    border-bottom: 0;
  }

  .flowGrid {
    grid-template-columns: 1fr;
  }

  .flowCard {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .clinicPhotos {
    grid-template-columns: 1fr;
  }

  .clinicPhotos figure {
    height: 260px;
  }

  .clinicPhotoStack {
    grid-template-rows: none;
  }

  .clinicPhotoStack figure {
    height: 230px;
  }

  .clinicPhotos .largePhoto figcaption {
    right: 14px;
    bottom: 14px;
  }

  .priceCards {
    grid-template-columns: 1fr;
  }

  .price strong {
    font-size: 42px;
  }

  .finalCta {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 74px 22px;
    background:
      linear-gradient(rgba(7, 29, 57, 0.94), rgba(7, 29, 57, 0.94)),
      url("images/clinic/gotanda-exterior.jpg")
        center / cover;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 35px 22px;
  }

  .mobileSticky {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    height: 74px;
    display: grid;
    grid-template-columns: 1fr 104px;
    align-items: center;
    padding: 9px 10px 9px 18px;
    background: rgba(7, 29, 57, 0.97);
    box-shadow: 0 -8px 24px rgba(7, 29, 57, 0.18);
    color: white;
    font-size: 12px;
    font-weight: 700;
  }

  .mobileSticky small {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 8px;
    font-weight: 400;
  }

  .mobileSticky a {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .primaryButton,
  .siteHeader nav a::after {
    transition: none;
  }
}

/* 2026 editorial refinement
   静かな信頼感を保ちながら、カード主体のテンプレート感を抑える。 */
:root {
  --navy: #102a3d;
  --navy-2: #173b50;
  --blue: #376f8b;
  --bronze: #a36b48;
  --cream: #f1ede6;
  --paper: #f7f6f2;
  --ink: #172733;
  --muted: #647078;
  --line: #d9ddd9;
}

body {
  background: var(--paper);
  letter-spacing: 0.02em;
}

.demoBar {
  height: 26px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
}

.demoBar span {
  padding: 0 8px;
  border-color: rgba(255, 255, 255, 0.28);
  font-size: 8px;
}

.siteHeader {
  height: 76px;
  grid-template-columns: minmax(220px, 1fr) auto 210px;
  background: rgba(247, 246, 242, 0.94);
  border-color: rgba(16, 42, 61, 0.1);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 158px;
}

.siteHeader nav {
  gap: clamp(18px, 2vw, 32px);
  font-size: 11px;
  font-weight: 600;
}

.headerCta {
  margin: 10px 14px 10px 0;
  background: var(--navy);
  font-size: 13px;
  transition: background 0.25s ease;
}

.headerCta:hover {
  background: var(--blue);
}

.hero {
  min-height: 660px;
  grid-template-columns: minmax(500px, 0.92fr) minmax(520px, 1.08fr);
  padding: 26px 26px 26px max(26px, calc((100vw - 1380px) / 2));
  background: var(--paper);
  color: var(--ink);
}

.hero::before {
  display: none;
}

.heroVisual {
  grid-column: 2;
  min-height: 608px;
  overflow: hidden;
  border-radius: 2px 2px 42px 2px;
}

.heroVisual::after {
  background:
    linear-gradient(90deg, rgba(16, 42, 61, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(16, 42, 61, 0.34), transparent 40%);
}

.heroVisual img {
  filter: saturate(0.72) contrast(1.02) brightness(0.94);
}

.heroPhotoLabel {
  right: 28px;
  bottom: 28px;
  padding: 12px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(16, 42, 61, 0.7);
  backdrop-filter: blur(8px);
}

.heroContent {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: auto;
  padding: 62px clamp(42px, 5.4vw, 84px) 62px 36px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--bronze);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.heroIssue {
  margin-bottom: 22px;
  padding: 0 0 0 14px;
  border: 0;
  border-left: 1px solid var(--bronze);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.hero h1 {
  color: var(--navy);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.hero h1 em {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(163, 107, 72, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
}

.heroLead {
  max-width: 540px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.heroLead strong {
  color: var(--ink);
  font-size: 15px;
}

.primaryButton {
  min-width: 290px;
  padding: 15px 18px 15px 20px;
  background: var(--navy);
  box-shadow: none;
}

.primaryButton:hover {
  background: var(--blue);
  box-shadow: none;
}

.textLink {
  border-color: rgba(16, 42, 61, 0.28);
  color: var(--navy);
}

.heroNote {
  color: #7d878c;
}

.trustBand {
  max-width: none;
  margin: 0;
  padding: 0 max(26px, calc((100vw - 1260px) / 2));
  background: var(--paper);
  box-shadow: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trustBand > div {
  min-height: 116px;
  padding: 24px clamp(22px, 3vw, 44px);
  border-color: var(--line);
}

.trustBand p {
  font-size: 12px;
}

.trustBand strong {
  font-size: 15px;
  font-weight: 600;
}

.trustNumber {
  color: rgba(163, 107, 72, 0.8);
  font-size: 20px;
}

.section {
  padding: 120px max(26px, calc((100vw - 1220px) / 2));
}

.section h2,
.finalCta h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 3.7vw, 50px);
  font-weight: 500;
  line-height: 1.42;
}

.sectionHeading.centered {
  max-width: 760px;
  margin: 0 0 64px;
  text-align: left;
}

.persona {
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(60px, 9vw, 132px);
  background: #ece9e2;
}

.personaIntro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.personaCards {
  gap: 0;
  border-top: 1px solid rgba(16, 42, 61, 0.2);
}

.personaCards article {
  min-height: 142px;
  grid-template-columns: 52px 94px 1fr;
  padding: 27px 4px;
  border: 0;
  border-bottom: 1px solid rgba(16, 42, 61, 0.2);
  background: transparent;
}

.personaCards article > span {
  font-size: 18px;
}

.personaCards h3 {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
}

.concerns {
  gap: clamp(70px, 10vw, 150px);
  padding-top: 128px;
  background: var(--paper);
}

.concernList {
  gap: 0 30px;
  border-top: 1px solid var(--line);
}

.concernItem {
  min-height: 86px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
}

.concernItem span {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  border: 1px solid rgba(55, 111, 139, 0.5);
  background: transparent;
  color: var(--blue);
  font-size: 10px;
}

.approach {
  margin: 30px;
  padding-inline: max(40px, calc((100vw - 1160px) / 2));
  border-radius: 32px;
  background: var(--navy);
}

.approach::after {
  width: 640px;
  height: 640px;
  border-color: rgba(255, 255, 255, 0.06);
}

.approachIntro {
  margin-bottom: 56px;
}

.roleGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.roleCard {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: white;
}

.roleCard h3,
.roleCard li {
  color: white;
}

.roleCard p {
  color: rgba(255, 255, 255, 0.6);
}

.acupunctureCard {
  background: rgba(255, 255, 255, 0.09);
}

.evidenceNote {
  margin-top: 10px;
  border-color: rgba(255, 255, 255, 0.12);
}

.treatment {
  background: var(--paper);
}

.treatmentGrid {
  gap: 0;
  border-top: 1px solid var(--navy);
}

.treatmentGrid article {
  min-height: 238px;
  padding: 30px 30px 30px 0;
  border-top: 0;
  border-right: 1px solid var(--line);
  background: transparent;
}

.treatmentGrid article + article {
  padding-left: 30px;
}

.treatmentGrid article:last-child {
  border-right: 0;
}

.treatmentGrid h3 {
  margin-top: 34px;
  font-family: inherit;
  font-size: 18px;
}

.stimulationNote {
  margin-top: 12px;
  border: 0;
  border-left: 2px solid var(--blue);
  background: #e8eff1;
}

.treatmentPhotos {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  margin-top: 62px;
}

.treatmentPhotoCopy {
  z-index: 1;
  min-height: 440px;
  margin: 36px -34px 36px 0;
  padding: 52px;
  border: 0;
  background: var(--navy);
}

.treatmentPhotos figure {
  height: 512px;
  border-radius: 0 28px 0 0;
}

.treatmentSafety {
  margin-top: 50px;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.treatmentSafety > div {
  padding: 28px 30px;
}

.flow {
  background: #e9ecea;
}

.flowGrid {
  gap: 38px;
  margin-bottom: 86px;
}

.flowCard {
  min-height: 210px;
  padding: 28px 0 0;
  border: 0;
  border-top: 1px solid rgba(16, 42, 61, 0.5);
  background: transparent;
}

.flowCard::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy);
  content: "";
}

.flowCard h3 {
  margin-top: 30px;
  font-family: inherit;
  font-size: 18px;
}

.clinicPhotos {
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10px;
}

.clinicPhotos figure {
  height: 500px;
}

.clinicPhotoStack {
  gap: 10px;
}

.clinicPhotoStack figure {
  height: 245px;
}

.clinicPhotos figcaption {
  right: auto;
  bottom: 22px;
  left: 22px;
  padding: 10px 14px;
  border-left-width: 1px;
  background: rgba(16, 42, 61, 0.72);
  backdrop-filter: blur(8px);
}

.pricing {
  grid-template-columns: 0.72fr 1.28fr;
  gap: 86px;
  background: #dfe5e4;
  color: var(--ink);
}

.priceIntro h2 {
  color: var(--navy);
}

.priceIntro > p:last-child {
  color: var(--muted);
}

.priceCards {
  gap: 10px;
}

.priceCards article {
  padding: 38px 32px;
  border: 1px solid rgba(16, 42, 61, 0.13);
  background: rgba(247, 246, 242, 0.78);
}

.price strong {
  font-size: 44px;
}

.priceDetails {
  margin-top: -42px;
  color: var(--ink);
}

.paymentMethods {
  border-color: rgba(16, 42, 61, 0.14);
  background: rgba(255, 255, 255, 0.4);
  color: var(--muted);
}

.paymentMethods strong {
  color: var(--navy);
}

.priceNotice {
  color: var(--muted);
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  align-items: start;
  background: var(--paper);
}

.faq .sectionHeading.centered {
  position: sticky;
  top: 128px;
  margin: 0;
}

.faqList {
  width: 100%;
  margin: 0;
}

.faqList summary {
  padding-block: 30px;
  font-size: 14px;
  font-weight: 600;
}

.faqList summary::after {
  border-radius: 0;
}

.finalCta {
  grid-template-columns: 1fr 400px;
  gap: 100px;
  margin: 0 30px 30px;
  padding: 88px max(40px, calc((100vw - 1160px) / 2));
  border-radius: 0 0 30px 30px;
  background:
    linear-gradient(90deg, rgba(16, 42, 61, 0.97) 0 62%, rgba(16, 42, 61, 0.78)),
    url("images/clinic/gotanda-exterior.jpg") center / cover;
}

.lineButton {
  background: #f2eee7;
  color: var(--navy);
}

footer {
  border-top: 0;
  background: var(--paper);
}

@media (max-width: 1100px) {
  .siteHeader {
    grid-template-columns: 1fr 200px;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .heroContent {
    width: auto;
    padding-left: 20px;
  }

  .persona {
    grid-template-columns: 1fr;
  }

  .personaIntro,
  .faq .sectionHeading.centered {
    position: static;
  }

  .pricing,
  .faq {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .priceDetails {
    grid-column: 1;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 68px;
  }

  .siteHeader {
    height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand img {
    width: clamp(108px, 35vw, 132px);
  }

  .headerCta {
    width: clamp(108px, 31vw, 116px);
    margin: 8px 0 8px 8px;
    font-size: 10px;
    line-height: 1.3;
    white-space: nowrap;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--paper);
  }

  .heroVisual {
    position: relative;
    inset: auto;
    order: 0;
    width: 100%;
    height: 310px;
    min-height: 310px;
    border-radius: 0 0 24px 0;
  }

  .heroVisual::after {
    z-index: 1;
    background: linear-gradient(0deg, rgba(16, 42, 61, 0.82), rgba(16, 42, 61, 0.12) 72%);
  }

  .heroVisual img {
    height: 310px;
  }

  .heroContent {
    position: relative;
    order: 1;
    min-height: 0;
    padding: 38px 22px 52px;
  }

  .heroTitleBlock {
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: calc(100% + 28px);
    left: 22px;
    color: white;
  }

  .heroTitleBlock .eyebrow {
    margin: 0 0 10px;
    color: #e7c5a5;
    font-size: 9px;
  }

  .heroTitleBlock .heroIssue {
    margin: 0 0 14px;
    border-left-color: rgba(231, 197, 165, 0.9);
    color: rgba(255, 255, 255, 0.82);
  }

  .heroTitleBlock h1,
  .heroTitleBlock h1 em {
    color: white;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  }

  .heroTitleBlock h1 em {
    text-decoration-color: rgba(231, 197, 165, 0.75);
  }

  .heroIssue {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.4vw, 39px);
    line-height: 1.16;
  }

  .heroLead {
    font-size: 12px;
    line-height: 1.85;
  }

  .heroActions {
    width: 100%;
  }

  .primaryButton {
    width: 100%;
    min-width: 0;
  }

  .textLink {
    color: var(--navy);
  }

  .trustBand {
    padding: 0 22px;
  }

  .trustBand > div {
    min-height: 74px;
    padding: 13px 0;
  }

  .section {
    padding: 82px 22px;
  }

  .section h2,
  .finalCta h2 {
    font-size: 30px;
    line-height: 1.45;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .sectionHeading.centered {
    margin-bottom: 46px;
  }

  .persona {
    gap: 46px;
  }

  .personaCards article {
    min-height: 118px;
    grid-template-columns: 38px 1fr;
    padding: 22px 0;
  }

  .approach {
    margin: 12px;
    padding: 76px 22px;
    border-radius: 22px;
  }

  .roleGrid {
    grid-template-columns: 1fr;
  }

  .medicalCard,
  .acupunctureCard,
  .roleConnector {
    grid-column: 1;
    grid-row: auto;
  }

  .roleConnector {
    justify-self: start;
    white-space: normal;
  }

  .roleCard {
    padding: 28px 24px;
  }

  .treatmentGrid article,
  .treatmentGrid article + article {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .treatmentGrid h3 {
    margin: 16px 0 10px;
  }

  .treatmentPhotos {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .treatmentPhotoCopy {
    margin: 0;
    padding: 32px 24px;
  }

  .treatmentPhotos figure {
    height: 290px;
    border-radius: 0 0 20px 0;
  }

  .treatmentSafety > div {
    padding-inline: 0;
  }

  .flowGrid {
    gap: 0;
    margin-bottom: 58px;
  }

  .flowCard {
    padding: 26px 0;
  }

  .clinicPhotos figure,
  .clinicPhotoStack figure {
    height: 250px;
  }

  .clinicPhotos {
    grid-template-columns: 1fr;
  }

  .clinicPhotoStack {
    grid-template-rows: none;
  }

  .pricing,
  .faq {
    gap: 40px;
  }

  .priceCards article {
    padding: 30px 24px;
  }

  .paymentMethods {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .finalCta {
    grid-template-columns: 1fr;
    gap: 34px;
    margin: 0 12px 12px;
    padding: 70px 24px;
    border-radius: 0 0 22px 22px;
  }

  .finalActions {
    width: 100%;
  }

  .mobileSticky {
    height: 68px;
    grid-template-columns: minmax(0, 1fr) 100px;
  }

  .mobileSticky a {
    height: 48px;
  }
}

/* 担当者紹介：カードの羅列ではなく、実写真を主役にした編集的な構成 */
.practitioners {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: start;
  padding-top: 112px;
  padding-bottom: 120px;
  border-top: 1px solid rgba(16, 42, 61, 0.12);
  background: #f3f1eb;
}

.practitionerIntro {
  position: sticky;
  top: 122px;
  padding-top: 18px;
}

.practitionerIntro h2 {
  margin-bottom: 28px;
}

.practitionerIntro > p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.practitionerPortraits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.practitionerCard {
  min-width: 0;
}

.practitionerCard:nth-child(2) {
  margin-top: 86px;
}

.practitionerCard figure {
  height: 510px;
  margin: 0;
  overflow: hidden;
  border-radius: 0 30px 0 0;
  background: #dfe2de;
}

.practitionerCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.78) contrast(1.02);
}

.practitionerMeta {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 42, 61, 0.42);
}

.practitionerMeta > span {
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.practitionerMeta p,
.practitionerMeta h3,
.practitionerMeta small {
  margin: 0;
}

.practitionerMeta p {
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.practitionerMeta h3 {
  margin-top: 3px;
  color: var(--navy);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 25px;
  font-weight: 600;
}

.practitionerMeta small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .practitioners {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .practitionerIntro {
    position: static;
  }

  .practitionerIntro > p:last-child {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .practitioners {
    gap: 46px;
    padding-top: 78px;
    padding-bottom: 86px;
  }

  .practitionerPortraits {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .practitionerCard:nth-child(2) {
    margin-top: 0;
  }

  .practitionerCard figure {
    height: 430px;
    border-radius: 0 22px 0 0;
  }

  .practitionerMeta {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .practitionerMeta h3 {
    font-size: 23px;
  }
}

/* LANSOのセクション設計を参考にした最終調整：余白・罫線・写真を主役にする */
@media (min-width: 761px) {
  .siteHeader {
    top: 12px;
    width: calc(100% - 48px);
    max-width: 1400px;
    height: 72px;
    margin: 14px auto 10px;
    overflow: hidden;
    border: 1px solid rgba(16, 42, 61, 0.12);
    border-radius: 999px;
    box-shadow: 0 12px 36px rgba(16, 42, 61, 0.06);
  }

  .brand {
    padding-left: 26px;
  }

  .brand img {
    width: 146px;
  }

  .headerCta {
    min-width: 194px;
    margin: 8px;
    border-radius: 999px;
  }

  .hero {
    width: calc(100% - 48px);
    max-width: 1400px;
    min-height: 650px;
    grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
    margin: 0 auto 24px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 42, 61, 0.12);
    border-radius: 28px;
    background: #f7f6f2;
  }

  .heroVisual {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-height: 650px;
    border-radius: 0;
  }

  .heroVisual::after {
    background:
      linear-gradient(90deg, rgba(16, 42, 61, 0.12), transparent 28%),
      linear-gradient(0deg, rgba(16, 42, 61, 0.3), transparent 38%);
  }

  .heroContent {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
    width: auto;
    min-width: 0;
    padding: 70px clamp(38px, 4vw, 70px);
  }

  .heroTitleBlock {
    position: static;
  }

  .hero h1 {
    font-size: clamp(48px, 4.7vw, 68px);
  }

  .heroLead {
    margin: 28px 0 26px;
    font-size: 13px;
    line-height: 1.95;
  }

  .heroActions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .primaryButton {
    width: min(100%, 390px);
    border-radius: 999px;
  }

  .trustBand {
    width: calc(100% - 48px);
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 18px;
  }
}

.approach {
  border-radius: 20px;
}

.priceCards article {
  border-radius: 18px;
}

.priceCards article:first-child {
  background: #f8f6f0;
}

.priceCards article:last-child {
  background: #eef1ef;
}

.faqList details {
  border-bottom-color: rgba(16, 42, 61, 0.18);
}

.faqList summary::after {
  border: 1px solid rgba(16, 42, 61, 0.38);
  border-radius: 999px;
}

.finalCta {
  overflow: hidden;
  border: 1px solid rgba(16, 42, 61, 0.14);
  border-radius: 28px;
  background: #e9edeb;
  color: var(--ink);
}

.finalCta::before {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(16, 42, 61, 0.09);
  border-radius: 50%;
  content: "";
}

.finalCta .eyebrow.light {
  color: var(--bronze);
}

.finalCta h2 {
  color: var(--navy);
}

.finalCta > div > p:last-child,
.finalActions small {
  color: var(--muted);
}

.lineButton {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  background: var(--navy);
  color: white;
}

@media (max-width: 760px) {
  .siteHeader {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .headerCta {
    margin: 8px 0 8px 8px;
    border-radius: 999px 0 0 999px;
  }

  .hero {
    width: calc(100% - 20px);
    margin: 10px auto 0;
    overflow: hidden;
    border: 1px solid rgba(16, 42, 61, 0.12);
    border-radius: 20px;
  }

  .heroVisual {
    border-radius: 0;
  }

  .primaryButton,
  .lineButton {
    border-radius: 999px;
  }

  .trustBand {
    width: calc(100% - 20px);
    margin: 10px auto 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .approach {
    border-radius: 18px;
  }

  .priceCards article {
    border-radius: 16px;
  }

  .finalCta {
    border-radius: 20px;
  }
}


/*
 * Digital Agency Design System inspired UI layer
 * The original TRIGGER palette and content are retained while spacing,
 * typography, component states and responsive behavior follow DADS principles.
 */

:root {
  --dads-action: #102a3d;
  --dads-action-hover: #1c465e;
  --dads-action-active: #081a27;
  --dads-action-tint: #edf2f4;
  --dads-text: #1a1a1a;
  --dads-description: #626264;
  --dads-border: #949494;
  --dads-divider: #d8d8db;
  --dads-surface: #f8f8fb;
  --dads-surface-alt: #f1f1f4;
  --dads-focus: #ffd43b;
  --trigger-navy: #102a3d;
  --trigger-copper: #8a5638;
  --trigger-ivory: #f5f0e8;
  --trigger-ivory-hover: #e5ddd2;
  --trigger-ivory-active: #d8cdc0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --content-width: 1200px;
}

html {
  scroll-padding-top: 96px;
}

body {
  background: #fff;
  color: var(--dads-text);
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo,
    -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

:where(a, summary):focus-visible {
  outline: 4px solid var(--dads-focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--dads-text);
}

:where(section[id], #top, #contact) {
  scroll-margin-top: 96px;
}

.demoBar {
  min-height: 32px;
  height: auto;
  padding: 4px 16px;
  background: var(--trigger-navy);
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.demoBar span {
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: var(--trigger-navy);
  font-size: 11px;
}

.siteHeader {
  height: 80px;
  grid-template-columns: minmax(210px, 1fr) auto 224px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--dads-divider);
  backdrop-filter: blur(12px);
}

.brand {
  padding-left: max(24px, calc((100vw - var(--content-width)) / 2));
}

.brand img {
  width: 160px;
}

.siteHeader nav {
  gap: 28px;
  padding: 0 32px;
  color: var(--dads-text);
  font-size: 14px;
  font-weight: 700;
}

.siteHeader nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 2px;
}

.siteHeader nav a::after {
  height: 2px;
  background: var(--dads-action);
}

.headerCta {
  min-height: 56px;
  margin: 12px 16px 12px 0;
  border-radius: var(--radius-sm);
  background: var(--dads-action);
  font-size: 15px;
  line-height: 1.35;
  transition: background-color 0.18s ease;
}

.headerCta:hover {
  background: var(--dads-action-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.headerCta:active {
  background: var(--dads-action-active);
}

.headerCta span {
  font-size: 12px;
  opacity: 0.9;
}

.hero {
  min-height: 680px;
  grid-template-columns: minmax(480px, 0.94fr) minmax(520px, 1.06fr);
  padding: 40px max(24px, calc((100vw - 1320px) / 2));
  gap: 48px;
  background: #fff;
  color: var(--dads-text);
}

.heroVisual {
  min-height: 600px;
  border-radius: var(--radius-md);
}

.heroVisual::after {
  background:
    linear-gradient(0deg, rgba(16, 42, 61, 0.42), transparent 42%),
    linear-gradient(90deg, rgba(16, 42, 61, 0.12), transparent 32%);
}

.heroVisual img {
  filter: saturate(0.82) contrast(1.02);
}

.heroPhotoLabel {
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border-left: 4px solid #fff;
  border-radius: 4px;
  background: rgba(16, 42, 61, 0.9);
  font-size: 14px;
}

.heroPhotoLabel span {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.heroContent {
  align-self: center;
  padding: 48px 0;
}

.eyebrow,
.eyebrow.light {
  margin-bottom: 16px;
  color: var(--trigger-copper);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.eyebrow.light {
  color: #f2c8ae;
}

.heroIssue {
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 0;
  border-radius: 4px;
  background: var(--dads-action-tint);
  color: var(--dads-action-hover);
  font-size: 14px;
  font-weight: 700;
}

.hero h1,
.section h2,
.finalCta h2,
.personaCards h3,
.roleCard h3,
.treatmentGrid h3,
.treatmentPhotoCopy h3,
.flowCard h3,
.priceCards h3 {
  font-family: inherit;
}

.hero h1 {
  color: var(--dads-text);
  font-size: clamp(44px, 4.7vw, 64px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero h1 em {
  color: var(--trigger-navy);
  font-style: normal;
  text-decoration: none;
}

.heroLead {
  max-width: 36em;
  margin: 28px 0;
  color: var(--dads-description);
  font-size: 16px;
  line-height: 1.8;
}

.heroLead strong {
  color: var(--dads-text);
  font-size: 17px;
}

.heroActions {
  align-items: flex-start;
  gap: 20px;
}

.primaryButton,
.lineButton {
  min-height: 56px;
  border: 2px solid var(--dads-action);
  border-radius: var(--radius-sm);
  background: var(--dads-action);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: none;
}

.primaryButton {
  min-width: 340px;
  padding: 12px 18px 12px 20px;
}

.primaryButton small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.5;
}

.primaryButton:hover,
.lineButton:hover {
  border-color: var(--dads-action-hover);
  background: var(--dads-action-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: none;
}

.primaryButton:active,
.lineButton:active {
  border-color: var(--dads-action-active);
  background: var(--dads-action-active);
}

.textLink {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 0;
  color: var(--dads-action-hover);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.textLink:hover {
  background: var(--dads-action-tint);
}

.heroNote,
.photoNote,
.treatmentCaution,
.footerNote {
  color: var(--dads-description);
  font-size: 14px;
  line-height: 1.6;
}

.trustBand {
  max-width: var(--content-width);
  margin: 0 auto 24px;
  padding: 0;
  border: 1px solid var(--dads-divider);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.trustBand > div {
  min-height: 112px;
  padding: 24px 28px;
  border-color: var(--dads-divider);
}

.trustBand p {
  color: var(--dads-description);
  font-size: 14px;
}

.trustBand strong {
  color: var(--dads-text);
  font-size: 16px;
  font-weight: 700;
}

.trustNumber {
  color: var(--dads-action);
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
}

.section {
  padding: 104px max(24px, calc((100vw - var(--content-width)) / 2));
}

.section h2,
.finalCta h2 {
  margin-bottom: 24px;
  color: var(--dads-text);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.sectionHeading,
.sectionHeading.centered {
  max-width: 760px;
}

.sectionHeading.centered {
  margin: 0 auto 56px;
  text-align: center;
}

.sectionHeading > p:last-child,
.personaIntro > p:last-child,
.approachIntro > p:last-child,
.priceIntro > p:last-child,
.finalCta > div:first-child > p:last-child {
  color: var(--dads-description);
  font-size: 16px;
  line-height: 1.8;
}

.persona {
  grid-template-columns: minmax(320px, 0.84fr) minmax(520px, 1.16fr);
  gap: clamp(56px, 8vw, 112px);
  background: var(--dads-action-tint);
}

.personaIntro {
  position: static;
}

.personaCards {
  gap: 12px;
  border: 0;
}

.personaCards article {
  min-height: 128px;
  grid-template-columns: 48px 104px 1fr;
  padding: 24px;
  border: 1px solid var(--dads-divider);
  border-radius: var(--radius-sm);
  background: #fff;
}

.personaCards article > span {
  color: var(--dads-action);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
}

.personaCards article > p {
  color: var(--dads-action-hover);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.personaCards h3 {
  color: var(--dads-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.concerns {
  gap: clamp(56px, 8vw, 104px);
  padding-top: 104px;
  background: #fff;
}

.concernList {
  gap: 12px;
  border: 0;
}

.concernItem {
  min-height: 80px;
  padding: 16px 18px;
  border: 1px solid var(--dads-divider);
  border-radius: var(--radius-sm);
  background: var(--dads-surface);
  color: var(--dads-text);
  font-size: 15px;
  font-weight: 700;
}

.concernItem span {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  border: 2px solid var(--dads-action);
  background: #fff;
  color: var(--dads-action);
}

.approach {
  margin: 0;
  padding-inline: max(24px, calc((100vw - var(--content-width)) / 2));
  border-radius: 0;
  background: var(--trigger-navy);
}

.approach h2,
.priceIntro h2,
.finalCta h2 {
  color: #fff;
}

.approachIntro > p:last-child,
.finalCta > div:first-child > p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.roleGrid {
  gap: 16px;
}

.roleConnector {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 14px;
}

.roleCard,
.acupunctureCard {
  padding: 36px;
  border: 0;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--dads-text);
}

.roleCard h3,
.roleCard li {
  color: var(--dads-text);
}

.roleCard h3 {
  font-size: 24px;
  font-weight: 700;
}

.roleCard li {
  font-size: 16px;
}

.roleCard p {
  color: var(--dads-description);
  font-size: 14px;
}

.roleLabel {
  color: var(--dads-action-hover);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.roleCard li::before {
  top: 0.75em;
  width: 12px;
  height: 2px;
  background: var(--dads-action);
}

.evidenceNote {
  grid-template-columns: 140px 1fr;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.evidenceNote span,
.evidenceNote p strong,
.evidenceNote p {
  font-size: 14px;
}

.evidenceNote p {
  color: rgba(255, 255, 255, 0.82);
}

.treatment {
  background: var(--dads-surface);
}

.treatmentGrid {
  gap: 12px;
  border: 0;
}

.treatmentGrid article,
.treatmentGrid article + article {
  min-height: 270px;
  padding: 28px 24px;
  border: 1px solid var(--dads-divider);
  border-radius: var(--radius-sm);
  background: #fff;
}

.treatmentGrid article > span {
  color: var(--dads-action);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
}

.treatmentGrid h3 {
  margin: 24px 0 14px;
  color: var(--dads-text);
  font-size: 20px;
  font-weight: 700;
}

.treatmentGrid p {
  color: var(--dads-description);
  font-size: 14px;
}

.stimulationNote {
  grid-template-columns: 140px 1fr;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid #9eb9e6;
  border-left: 6px solid var(--dads-action);
  border-radius: var(--radius-sm);
  background: var(--dads-action-tint);
}

.stimulationNote > span {
  color: var(--dads-action-hover);
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.stimulationNote strong {
  color: var(--dads-text);
  font-size: 16px;
}

.stimulationNote p {
  color: var(--dads-description);
  font-size: 14px;
}

.treatmentPhotos {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  margin-top: 56px;
}

.treatmentPhotoCopy {
  min-height: 440px;
  margin: 0;
  padding: 40px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--trigger-navy);
}

.treatmentPhotoCopy > p:first-child,
.treatmentPhotos figcaption span {
  color: #f2c8ae;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.treatmentPhotoCopy h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
}

.treatmentPhotoCopy > p:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.treatmentPhotos figure {
  height: 440px;
  border-radius: var(--radius-md);
}

.treatmentPhotos figcaption {
  font-family: inherit;
  font-size: 16px;
}

.treatmentSafety {
  gap: 12px;
  margin-top: 40px;
  border: 0;
}

.treatmentSafety > div {
  padding: 24px;
  border: 1px solid var(--dads-divider);
  border-radius: var(--radius-sm);
  background: #fff;
}

.treatmentSafety span {
  font-size: 16px;
}

.treatmentSafety p {
  color: var(--dads-description);
  font-size: 14px;
}

.flow {
  background: #fff;
}

.flowGrid {
  gap: 12px;
  margin-bottom: 72px;
}

.flowCard {
  min-height: 240px;
  padding: 28px 24px;
  border: 1px solid var(--dads-divider);
  border-radius: var(--radius-sm);
  background: var(--dads-surface);
}

.flowCard::before {
  display: none;
}

.flowCard > span {
  color: var(--dads-action);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
}

.flowCard h3 {
  margin: 24px 0 14px;
  color: var(--dads-text);
  font-size: 20px;
  font-weight: 700;
}

.flowCard p,
.clinicPrivacyNote {
  color: var(--dads-description);
  font-size: 14px;
}

.clinicPhotos,
.clinicPhotoStack {
  gap: 12px;
}

.clinicPhotos figure,
.clinicPhotoStack figure {
  border-radius: var(--radius-sm);
}

.clinicPhotos figcaption,
.clinicPhotoStack figcaption {
  padding: 10px 14px;
  border-left: 4px solid #fff;
  border-radius: 4px;
  background: rgba(16, 42, 61, 0.9);
  font-size: 14px;
}

.clinicPhotos figcaption span {
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.pricing {
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  background: var(--trigger-navy);
  color: #fff;
}

.priceIntro > p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.priceCards {
  gap: 16px;
}

.priceCards article {
  padding: 32px;
  border: 0;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--dads-text);
}

.priceCards article > p:first-child {
  color: var(--trigger-copper);
  font-size: 14px;
}

.priceCards h3 {
  color: var(--dads-text);
  font-size: 20px;
  font-weight: 700;
}

.price,
.priceCards .firstVisitPrice {
  color: var(--dads-text);
}

.price strong {
  font-family: inherit;
  font-size: 42px;
  font-weight: 700;
}

.price span,
.priceCards .duration,
.priceCards .firstVisitPrice,
.priceCards small {
  font-size: 14px;
}

.priceCards .duration {
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--dads-action-tint);
  color: var(--dads-action-hover);
}

.priceDetails {
  margin-top: -40px;
}

.paymentMethods {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
}

.paymentMethods strong {
  color: #fff;
  font-size: 14px;
}

.priceNotice {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.faq {
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  background: var(--dads-surface);
}

.faqList {
  display: grid;
  gap: 12px;
  border: 0;
}

.faqList details {
  border: 1px solid var(--dads-divider);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}

.faqList summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 18px 64px 18px 20px;
  color: var(--dads-text);
  font-size: 16px;
  font-weight: 700;
}

.faqList summary:hover {
  background: var(--dads-action-tint);
}

.faqList summary::after {
  right: 18px;
  width: 32px;
  height: 32px;
  border: 2px solid var(--trigger-copper);
  border-radius: 50%;
  color: var(--trigger-copper);
}

.faqList details p {
  padding: 0 64px 22px 20px;
  color: var(--dads-description);
  font-size: 15px;
}

.finalCta {
  grid-template-columns: 1fr 400px;
  gap: 72px;
  margin: 0;
  padding: 88px max(24px, calc((100vw - var(--content-width)) / 2));
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(16, 42, 61, 0.98) 0 64%, rgba(16, 42, 61, 0.84)),
    url("images/clinic/gotanda-exterior.jpg") center / cover;
}

.lineButton {
  padding: 0 20px;
  border-color: var(--trigger-ivory);
  background: var(--trigger-ivory);
  color: var(--trigger-navy);
}

.lineButton:hover {
  border-color: var(--trigger-ivory-hover);
  background: var(--trigger-ivory-hover);
  color: var(--trigger-navy);
}

.lineButton:active {
  border-color: var(--trigger-ivory-active);
  background: var(--trigger-ivory-active);
  color: var(--trigger-navy);
}

.finalActions small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

footer {
  grid-template-columns: 220px 1fr auto;
  padding: 40px max(24px, calc((100vw - var(--content-width)) / 2));
  border-top: 1px solid var(--dads-divider);
  background: #fff;
  color: var(--dads-text);
  font-size: 14px;
}

.footerLocation p + p {
  color: var(--dads-description);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .siteHeader {
    grid-template-columns: 1fr 208px;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .heroContent {
    padding: 32px 0;
  }

  .persona,
  .pricing,
  .faq {
    grid-template-columns: 1fr;
  }

  .pricing,
  .faq {
    gap: 48px;
  }

  .priceDetails {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  html {
    scroll-padding-top: 16px;
  }

  .demoBar {
    min-height: 28px;
    font-size: 11px;
  }

  .siteHeader {
    height: 68px;
  }

  .brand {
    padding-left: 16px;
  }

  .brand img {
    width: clamp(116px, 34vw, 142px);
  }

  .headerCta {
    width: 124px;
    min-height: 48px;
    margin: 10px 8px 10px 4px;
    font-size: 12px;
  }

  .headerCta span {
    display: none;
  }

  .hero {
    display: flex;
    min-height: 0;
    padding: 0;
    gap: 0;
  }

  .heroVisual {
    height: 330px;
    min-height: 330px;
    border-radius: 0;
  }

  .heroVisual img {
    height: 330px;
  }

  .heroContent {
    padding: 40px 20px 56px;
  }

  .heroTitleBlock {
    right: 20px;
    bottom: calc(100% + 24px);
    left: 20px;
  }

  .heroTitleBlock .heroIssue {
    width: fit-content;
    margin-bottom: 12px;
    padding: 5px 8px;
    background: rgba(232, 241, 254, 0.94);
    color: var(--dads-action-hover);
  }

  .heroTitleBlock h1,
  .heroTitleBlock h1 em {
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.25;
  }

  .heroLead {
    font-size: 16px;
  }

  .heroLead strong {
    font-size: 16px;
  }

  .heroActions {
    width: 100%;
  }

  .primaryButton {
    width: 100%;
    min-width: 0;
  }

  .trustBand {
    grid-template-columns: 1fr;
    margin: 0 16px 16px;
    border-radius: var(--radius-sm);
  }

  .trustBand > div {
    min-height: 88px;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--dads-divider);
  }

  .trustBand > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 20px;
  }

  .section h2,
  .finalCta h2 {
    font-size: 30px;
  }

  .sectionHeading.centered {
    margin-bottom: 40px;
    text-align: left;
  }

  .persona {
    gap: 40px;
  }

  .personaCards article {
    min-height: 112px;
    grid-template-columns: 36px 1fr;
    padding: 20px;
  }

  .personaCards article > p {
    display: none;
  }

  .concerns {
    gap: 40px;
  }

  .approach {
    margin: 0;
    padding: 72px 20px;
    border-radius: 0;
  }

  .roleGrid {
    grid-template-columns: 1fr;
  }

  .roleCard {
    padding: 24px;
  }

  .roleConnector {
    justify-self: start;
    white-space: normal;
  }

  .evidenceNote,
  .stimulationNote {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .treatmentGrid,
  .treatmentSafety,
  .treatmentPhotos,
  .flowGrid,
  .clinicPhotos,
  .priceCards {
    grid-template-columns: 1fr;
  }

  .treatmentGrid article,
  .treatmentGrid article + article {
    min-height: 0;
    padding: 24px;
  }

  .treatmentPhotoCopy {
    min-height: 0;
    padding: 28px 24px;
  }

  .treatmentPhotos figure {
    height: 300px;
  }

  .treatmentSafety > div {
    padding: 20px;
  }

  .flowGrid {
    gap: 12px;
    margin-bottom: 56px;
  }

  .flowCard {
    min-height: 0;
    padding: 24px;
  }

  .clinicPhotos figure,
  .clinicPhotoStack figure {
    height: 250px;
  }

  .priceCards article {
    padding: 28px 22px;
  }

  .price strong {
    font-size: 38px;
  }

  .paymentMethods {
    width: 100%;
    font-size: 14px;
  }

  .faq {
    gap: 32px;
  }

  .faqList summary {
    padding-left: 16px;
  }

  .faqList details p {
    padding-left: 16px;
  }

  .finalCta {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 0;
    padding: 72px 20px;
    border-radius: 0;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 36px 20px;
  }

  .mobileSticky {
    height: 72px;
    grid-template-columns: minmax(0, 1fr) 112px;
    padding: 10px 10px 10px 16px;
    background: var(--trigger-navy);
    font-size: 13px;
  }

  .mobileSticky small {
    font-size: 11px;
  }

  .mobileSticky a {
    min-height: 48px;
    border-radius: 6px;
    background: var(--trigger-ivory);
    color: var(--trigger-navy);
    font-size: 14px;
    font-weight: 700;
  }

  .mobileSticky a:hover {
    background: var(--trigger-ivory-hover);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .mobileSticky a:active {
    background: var(--trigger-ivory-active);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/*
 * Editorial refinement layer
 *
 * Keeps the accessible sizing and states from dads.css while replacing the
 * repeated card/template rhythm with a quieter, clinic-specific composition.
 */

:root {
  --editorial-paper: #f4f1eb;
  --editorial-paper-deep: #ebe5dc;
  --editorial-line: rgba(16, 42, 61, 0.22);
  --editorial-line-dark: rgba(255, 255, 255, 0.26);
  --editorial-copper: #9a6242;
  --editorial-display:
    "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro",
    "Noto Serif JP", serif;
}

body {
  background: var(--editorial-paper);
}

.demoBar {
  background: #0a2133;
  letter-spacing: 0.12em;
}

.siteHeader {
  height: 88px;
  grid-template-columns: minmax(220px, 1fr) auto 224px;
  border-bottom-color: var(--editorial-line);
  background: rgba(250, 249, 246, 0.96);
}

.siteHeader nav {
  gap: clamp(18px, 2vw, 34px);
  padding-inline: 32px;
  font-size: 13px;
}

.headerCta {
  min-height: 64px;
  margin-block: 12px;
  border: 1px solid var(--trigger-navy);
  border-radius: 2px;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  padding: 64px max(24px, calc((100vw - 1320px) / 2)) 80px;
  background: #faf9f6;
  overflow: visible;
}

.hero::before {
  display: none;
}

.heroVisual {
  z-index: 1;
  grid-column: 1 / 8;
  grid-row: 1;
  min-height: 630px;
  border-radius: 0;
}

.heroVisual::before {
  position: absolute;
  z-index: 2;
  top: -18px;
  left: 28px;
  width: 96px;
  height: 3px;
  content: "";
  background: var(--editorial-copper);
}

.heroVisual::after {
  background:
    linear-gradient(0deg, rgba(10, 33, 51, 0.46), transparent 38%),
    linear-gradient(90deg, rgba(10, 33, 51, 0.08), transparent 42%);
}

.heroVisual img {
  filter: saturate(0.72) contrast(1.04);
}

.heroPhotoLabel {
  right: auto;
  bottom: 26px;
  left: 28px;
  padding: 0 0 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 0;
  background: transparent;
  letter-spacing: 0.04em;
}

.heroContent {
  z-index: 2;
  grid-column: 7 / 13;
  grid-row: 1;
  align-self: center;
  margin-left: -24px;
  padding: 62px 0 56px 68px;
  background: #faf9f6;
}

.eyebrow,
.eyebrow.light {
  margin-bottom: 18px;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.heroIssue {
  display: inline-block;
  margin-bottom: 18px;
  padding: 0 0 7px;
  border-bottom: 1px solid var(--editorial-copper);
  border-radius: 0;
  background: transparent;
  color: var(--trigger-navy);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.hero h1,
.section h2,
.finalCta h2 {
  font-family: var(--editorial-display);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.26;
  letter-spacing: 0.035em;
}

.heroLead {
  margin: 34px 0 30px;
  line-height: 2;
}

.primaryButton,
.lineButton {
  border-radius: 2px;
}

.primaryButton {
  min-width: min(380px, 100%);
  box-shadow: 8px 8px 0 var(--editorial-paper-deep);
}

.trustBand {
  max-width: var(--content-width);
  margin: 0 auto;
  border-width: 1px 0;
  border-color: var(--editorial-line);
  border-radius: 0;
  background: transparent;
}

.trustBand > div {
  min-height: 126px;
  padding: 28px 38px;
  border-color: var(--editorial-line);
}

.trustNumber {
  align-self: start;
  color: var(--editorial-copper);
  font-family: var(--editorial-display);
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding-block: 128px;
}

.section h2,
.finalCta h2 {
  font-size: clamp(36px, 3.7vw, 54px);
  line-height: 1.42;
  letter-spacing: 0.035em;
}

.sectionHeading.centered {
  max-width: 840px;
  margin-bottom: 72px;
  text-align: left;
}

.persona {
  grid-template-columns: minmax(320px, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(72px, 9vw, 132px);
  background: var(--editorial-paper);
}

.personaIntro {
  padding-top: 8px;
}

.personaIntro::before {
  display: block;
  width: 74px;
  height: 1px;
  margin-bottom: 34px;
  content: "";
  background: var(--editorial-copper);
}

.personaCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 34px;
  border-top: 1px solid var(--editorial-line);
}

.personaCards article {
  min-height: 190px;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto 1fr;
  gap: 14px 12px;
  padding: 30px 0 32px;
  border: 0;
  border-bottom: 1px solid var(--editorial-line);
  border-radius: 0;
  background: transparent;
}

.personaCards article > span {
  grid-row: 1 / 3;
  color: var(--editorial-copper);
  font-family: var(--editorial-display);
  font-size: 13px;
}

.personaCards article > p {
  color: var(--dads-description);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.personaCards h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.concerns {
  grid-template-columns: minmax(340px, 0.8fr) minmax(540px, 1.2fr);
  gap: clamp(70px, 10vw, 150px);
  background: #faf9f6;
}

.concernList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  border-top: 1px solid var(--editorial-line);
}

.concernItem {
  min-height: 110px;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--editorial-line);
  border-radius: 0;
  background: transparent;
  font-size: 15px;
  line-height: 1.8;
}

.concernItem span {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  margin-top: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--editorial-copper);
  font-size: 14px;
}

.approach {
  padding-block: 136px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 42%),
    #0b2638;
}

.approachIntro {
  max-width: 780px;
  margin-bottom: 76px;
}

.roleGrid {
  grid-template-columns: 1fr 104px 1fr;
  gap: 30px;
  align-items: stretch;
}

.medicalCard {
  grid-column: 1;
  grid-row: 1;
}

.acupunctureCard {
  grid-column: 3;
  grid-row: 1;
}

.roleCard,
.acupunctureCard {
  padding: 36px 10px 18px 0;
  border: 0;
  border-top: 1px solid var(--editorial-line-dark);
  border-radius: 0;
  background: transparent;
}

.roleCard h3,
.roleCard li,
.roleCard p {
  color: #fff;
}

.roleCard h3 {
  margin-bottom: 30px;
  font-family: var(--editorial-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.roleCard p {
  color: rgba(255, 255, 255, 0.7);
}

.roleLabel {
  color: #e4b594;
  letter-spacing: 0.18em;
}

.roleCard li::before {
  background: #d38b5f;
}

.roleConnector {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  padding: 34px 14px;
  border-width: 0 1px;
  border-color: var(--editorial-line-dark);
  border-radius: 0;
  font-size: 12px;
  line-height: 1.9;
  text-align: center;
}

.evidenceNote {
  grid-template-columns: 150px 1fr;
  margin-top: 70px;
  padding: 28px 0;
  border-width: 1px 0;
  border-color: var(--editorial-line-dark);
  border-radius: 0;
  background: transparent;
}

.treatment {
  background: #faf9f6;
}

.treatmentGrid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--editorial-line);
  border-bottom: 1px solid var(--editorial-line);
}

.treatmentGrid article,
.treatmentGrid article + article {
  min-height: 300px;
  padding: 38px 28px 38px 0;
  border: 0;
  border-right: 1px solid var(--editorial-line);
  border-radius: 0;
  background: transparent;
}

.treatmentGrid article + article {
  padding-left: 28px;
}

.treatmentGrid article:last-child {
  border-right: 0;
}

.treatmentGrid article > span {
  color: var(--editorial-copper);
  font-family: var(--editorial-display);
  font-size: 12px;
}

.treatmentGrid h3 {
  margin-block: 32px 18px;
  font-family: var(--editorial-display);
  font-size: 22px;
  font-weight: 600;
}

.stimulationNote {
  grid-template-columns: 170px 1fr;
  margin-top: 40px;
  padding: 26px 0;
  border-width: 1px 0;
  border-color: var(--editorial-line);
  border-radius: 0;
  background: transparent;
}

.stimulationNote > span {
  color: var(--editorial-copper);
}

.treatmentPhotos {
  grid-template-columns: 0.72fr 1.28fr;
  gap: 0;
  margin-top: 92px;
}

.treatmentPhotoCopy {
  min-height: 500px;
  justify-content: flex-end;
  padding: 54px;
  border-radius: 0;
  background: #0b2638;
}

.treatmentPhotos figure {
  height: 500px;
  border-radius: 0;
}

.treatmentSafety {
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--editorial-line);
}

.treatmentSafety > div {
  padding: 28px 26px 28px 0;
  border: 0;
  border-right: 1px solid var(--editorial-line);
  border-bottom: 1px solid var(--editorial-line);
  border-radius: 0;
  background: transparent;
}

.treatmentSafety > div + div {
  padding-left: 26px;
}

.treatmentSafety > div:last-child {
  border-right: 0;
}

.flow {
  background: var(--editorial-paper);
}

.flowGrid {
  gap: 0;
  margin-bottom: 96px;
  border-top: 1px solid var(--editorial-line);
}

.flowCard {
  min-height: 250px;
  padding: 34px 28px 34px 0;
  border: 0;
  border-right: 1px solid var(--editorial-line);
  border-bottom: 1px solid var(--editorial-line);
  border-radius: 0;
  background: transparent;
}

.flowCard + .flowCard {
  padding-left: 28px;
}

.flowCard:last-child {
  border-right: 0;
}

.flowCard > span {
  color: var(--editorial-copper);
  font-family: var(--editorial-display);
}

.flowCard h3 {
  font-family: var(--editorial-display);
  font-size: 22px;
  font-weight: 600;
}

.clinicPhotos,
.clinicPhotoStack {
  gap: 10px;
}

.clinicPhotos figure,
.clinicPhotoStack figure {
  border-radius: 0;
}

.clinicPhotos figcaption,
.clinicPhotoStack figcaption {
  border-left-width: 1px;
  border-radius: 0;
  background: rgba(10, 33, 51, 0.84);
}

.pricing {
  grid-template-columns: 0.68fr 1.32fr;
  gap: 84px;
  padding-block: 136px;
  background: #0b2638;
}

.priceIntro::before {
  display: block;
  width: 74px;
  height: 1px;
  margin-bottom: 34px;
  content: "";
  background: #c88358;
}

.priceCards {
  gap: 0;
  border-top: 1px solid var(--editorial-line-dark);
  border-bottom: 1px solid var(--editorial-line-dark);
}

.priceCards article {
  padding: 38px 36px;
  border: 0;
  border-right: 1px solid var(--editorial-line-dark);
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.priceCards article:last-child {
  border-right: 0;
}

.priceCards h3,
.price,
.priceCards .firstVisitPrice {
  color: #fff;
}

.priceCards h3 {
  font-family: var(--editorial-display);
  font-size: 22px;
  font-weight: 600;
}

.priceCards .duration {
  display: inline-block;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
}

.priceCards small,
.priceCards .firstVisitPrice span,
.priceCards article > p:first-child {
  color: #dfad8b;
}

.priceDetails {
  margin-top: -34px;
}

.paymentMethods {
  padding: 12px 0;
  border-width: 1px 0;
  border-radius: 0;
  background: transparent;
}

.faq {
  grid-template-columns: 0.62fr 1.38fr;
  gap: 104px;
  background: #faf9f6;
}

.faqList {
  gap: 0;
  border-top: 1px solid var(--editorial-line);
}

.faqList details {
  border: 0;
  border-bottom: 1px solid var(--editorial-line);
  border-radius: 0;
  background: transparent;
}

.faqList summary {
  min-height: 88px;
  padding-block: 24px;
}

.faqList summary:hover {
  background: rgba(16, 42, 61, 0.035);
}

.faqList summary::after {
  border-width: 1px;
}

.finalCta {
  grid-template-columns: 1fr 420px;
  gap: 86px;
  padding-block: 112px;
  background:
    linear-gradient(90deg, rgba(10, 33, 51, 0.98) 0 56%, rgba(10, 33, 51, 0.72)),
    url("images/clinic/gotanda-exterior.jpg") center / cover;
}

.lineButton {
  box-shadow: 8px 8px 0 rgba(245, 240, 232, 0.18);
}

footer {
  background: #faf9f6;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .heroVisual {
    grid-column: 1 / 8;
  }

  .heroContent {
    grid-column: 7 / 13;
    padding-left: 48px;
  }

  .persona,
  .concerns,
  .pricing,
  .faq {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .treatmentGrid {
    grid-template-columns: 1fr 1fr;
  }

  .treatmentGrid article:nth-child(2) {
    border-right: 0;
  }

  .treatmentGrid article:nth-child(3),
  .treatmentGrid article:nth-child(4) {
    border-top: 1px solid var(--editorial-line);
  }

  .priceDetails {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .siteHeader {
    height: 68px;
    grid-template-columns: minmax(0, 1fr) 124px;
  }

  .headerCta {
    min-height: 48px;
    margin: 10px 8px 10px 2px;
  }

  .hero {
    display: flex;
    min-height: 0;
    padding: 0;
    background: #faf9f6;
  }

  .heroVisual {
    min-height: 360px;
  }

  .heroVisual img {
    height: 360px;
  }

  .heroVisual::before {
    top: 18px;
    left: 20px;
    width: 62px;
  }

  .heroPhotoLabel {
    right: 20px;
    bottom: 18px;
    left: auto;
  }

  .heroContent {
    margin-left: 0;
    padding: 42px 20px 62px;
  }

  .heroTitleBlock {
    right: 20px;
    bottom: calc(100% + 24px);
    left: 20px;
  }

  .heroTitleBlock .eyebrow {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  }

  .heroTitleBlock .heroIssue {
    padding: 5px 8px;
    border-bottom: 0;
    background: rgba(10, 33, 51, 0.86);
    color: #fff;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.26;
  }

  .primaryButton {
    min-width: 0;
    box-shadow: 6px 6px 0 var(--editorial-paper-deep);
  }

  .trustBand {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 20px;
  }

  .trustBand > div {
    min-height: 0;
    padding: 22px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--editorial-line);
  }

  .trustBand > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 88px;
  }

  .section h2,
  .finalCta h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .sectionHeading.centered {
    margin-bottom: 48px;
    text-align: left;
  }

  .persona,
  .concerns,
  .pricing,
  .faq {
    gap: 48px;
  }

  .personaCards,
  .concernList {
    grid-template-columns: 1fr;
  }

  .personaCards article {
    min-height: 0;
  }

  .concernItem {
    min-height: 0;
  }

  .approach {
    padding-block: 92px;
  }

  .approachIntro {
    margin-bottom: 54px;
  }

  .roleGrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .medicalCard,
  .acupunctureCard,
  .roleConnector {
    grid-column: 1;
    grid-row: auto;
  }

  .roleConnector {
    padding: 16px 0;
    border-width: 1px 0;
  }

  .evidenceNote,
  .stimulationNote {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .evidenceNote {
    margin-top: 46px;
  }

  .treatmentGrid {
    grid-template-columns: 1fr;
  }

  .treatmentGrid article,
  .treatmentGrid article + article {
    min-height: 0;
    padding: 32px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--editorial-line);
  }

  .treatmentGrid article:last-child {
    border-bottom: 0;
  }

  .treatmentPhotos {
    grid-template-columns: 1fr;
    margin-top: 68px;
  }

  .treatmentPhotoCopy {
    min-height: 360px;
    padding: 36px 24px;
  }

  .treatmentPhotos figure {
    height: 360px;
  }

  .treatmentSafety {
    grid-template-columns: 1fr;
  }

  .treatmentSafety > div,
  .treatmentSafety > div + div {
    padding: 24px 0;
    border-right: 0;
  }

  .flowGrid {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

  .flowCard,
  .flowCard + .flowCard {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
  }

  .pricing {
    padding-block: 92px;
  }

  .priceCards {
    grid-template-columns: 1fr;
  }

  .priceCards article {
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid var(--editorial-line-dark);
  }

  .priceCards article:last-child {
    border-bottom: 0;
  }

  .faqList summary {
    min-height: 78px;
    padding-left: 0;
  }

  .faqList details p {
    padding-left: 0;
  }

  .finalCta {
    gap: 48px;
    padding-block: 88px;
  }
}


/*
 * TRIGGER art-direction layer
 * Adds a stronger brand narrative and an intentionally varied page rhythm.
 */

:root {
  --art-navy: #0a2234;
  --art-navy-deep: #071a28;
  --art-copper: #b1734e;
  --art-paper: #f4f0e9;
  --art-white: #fbfaf7;
  --art-rule: rgba(10, 34, 52, 0.2);
}

main {
  overflow: clip;
}

/* Brand-led, photographic first view */
.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(820px, auto);
  padding: 0;
  isolation: isolate;
  overflow: hidden;
  background: var(--art-navy-deep);
  color: #fff;
}

.heroVisual {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  min-height: 820px;
}

.heroVisual::before {
  z-index: 2;
  top: 82px;
  right: max(32px, calc((100vw - 1320px) / 2));
  left: auto;
  width: 1px;
  height: calc(100% - 164px);
  background: rgba(255, 255, 255, 0.36);
}

.heroVisual::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 22, 34, 0.97) 0%, rgba(5, 22, 34, 0.9) 37%, rgba(5, 22, 34, 0.38) 68%, rgba(5, 22, 34, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 22, 34, 0.58), transparent 48%);
}

.heroVisual img {
  width: 100%;
  height: 820px;
  object-position: center 56%;
  filter: saturate(0.67) contrast(1.08) brightness(0.84);
  transform: scale(1.015);
}

.heroPhotoLabel {
  right: max(54px, calc((100vw - 1240px) / 2));
  bottom: 48px;
  left: auto;
  padding-left: 18px;
  color: #fff;
  text-align: left;
}

.heroContent {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 1320px);
  min-height: 820px;
  align-self: stretch;
  justify-content: center;
  margin: 0 auto;
  padding: 92px 50% 96px 40px;
  background: transparent;
}

.heroContent::before {
  position: absolute;
  top: 94px;
  right: 34px;
  content: "TRIGGER / GOTANDA";
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
}

.heroTitleBlock {
  max-width: 650px;
}

.heroTitleBlock .eyebrow {
  color: #e4b697;
}

.heroIssue {
  margin-bottom: 24px;
  border-bottom-color: rgba(228, 182, 151, 0.8);
  color: rgba(255, 255, 255, 0.88);
}

.hero h1,
.hero h1 em {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

.hero h1 {
  font-size: clamp(56px, 5.8vw, 84px);
  line-height: 1.2;
}

.hero h1 em {
  position: relative;
}

.hero h1 em::after {
  position: absolute;
  right: -46px;
  bottom: 0.24em;
  width: 30px;
  height: 1px;
  content: "";
  background: var(--art-copper);
}

.heroLead {
  max-width: 600px;
  margin-block: 36px 32px;
  color: rgba(255, 255, 255, 0.8);
}

.heroLead strong {
  color: #fff;
}

.heroActions {
  gap: 26px;
}

.hero .primaryButton {
  border-color: var(--trigger-ivory);
  background: var(--trigger-ivory);
  box-shadow: 9px 9px 0 rgba(177, 115, 78, 0.44);
  color: var(--art-navy);
}

.hero .primaryButton small {
  color: rgba(10, 34, 52, 0.72);
}

.hero .primaryButton:hover {
  border-color: #fff;
  background: #fff;
  color: var(--art-navy);
}

.hero .textLink {
  color: #fff;
}

.hero .textLink:hover {
  background: rgba(255, 255, 255, 0.08);
}

.heroNote {
  color: rgba(255, 255, 255, 0.64);
}

.trustBand {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: -54px auto 0;
  border: 0;
  border-top: 3px solid var(--art-copper);
  background: var(--art-white);
  box-shadow: 0 22px 48px rgba(7, 26, 40, 0.13);
}

.trustBand > div {
  min-height: 130px;
  padding-inline: 42px;
}

/* Chapter system: editorial cues that join the page into one story */
.persona,
.concerns,
.approach,
.treatment,
.flow,
.pricing,
.faq {
  position: relative;
  isolation: isolate;
}

.persona::before,
.concerns::before,
.approach::before,
.treatment::before,
.flow::before,
.pricing::before,
.faq::before {
  position: absolute;
  z-index: -1;
  top: 50px;
  right: max(20px, calc((100vw - 1360px) / 2));
  color: rgba(10, 34, 52, 0.055);
  font-family: var(--editorial-display);
  font-size: clamp(120px, 14vw, 210px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.persona::before {
  content: "01";
}

.concerns::before {
  content: "02";
}

.approach::before {
  z-index: 0;
  content: "03";
  color: rgba(255, 255, 255, 0.035);
}

.treatment::before {
  content: "04";
}

.flow::before {
  content: "05";
}

.pricing::before {
  z-index: 0;
  content: "06";
  color: rgba(255, 255, 255, 0.035);
}

.faq::before {
  content: "07";
}

.personaIntro,
.personaCards,
.sectionHeading,
.concernList,
.approachIntro,
.roleGrid,
.evidenceNote,
.priceIntro,
.priceCards,
.priceDetails,
.faqList {
  position: relative;
  z-index: 1;
}

.sectionHeading .eyebrow,
.personaIntro .eyebrow,
.priceIntro .eyebrow,
.approachIntro .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sectionHeading .eyebrow::before,
.personaIntro .eyebrow::before,
.priceIntro .eyebrow::before,
.approachIntro .eyebrow::before {
  width: 36px;
  height: 1px;
  flex: 0 0 36px;
  content: "";
  background: currentColor;
}

.personaIntro::before,
.priceIntro::before {
  display: none;
}

/* A less predictable, more authored information rhythm */
.persona {
  padding-top: 164px;
  padding-bottom: 148px;
  background:
    linear-gradient(90deg, transparent 0 74%, rgba(10, 34, 52, 0.025) 74% 100%),
    var(--art-paper);
}

.persona::after {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  width: 31%;
  height: 100%;
  content: "";
  background:
    linear-gradient(90deg, var(--art-paper), rgba(244, 240, 233, 0.74)),
    url("images/clinic/gotanda-reception.jpg") center / cover;
  opacity: 0.34;
  filter: grayscale(0.4);
}

.personaCards article {
  transition:
    padding-left 0.24s ease,
    border-color 0.24s ease;
}

.personaCards article:hover {
  padding-left: 10px;
  border-bottom-color: var(--art-copper);
}

.concerns {
  min-height: 720px;
  align-items: center;
  padding-block: 146px;
}

.concernItem {
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.concernItem:hover {
  border-bottom-color: var(--art-copper);
  color: var(--art-navy);
}

.approach {
  padding-block: 164px 142px;
}

.approach::after {
  width: min(58vw, 760px);
  height: min(58vw, 760px);
  border-color: rgba(255, 255, 255, 0.05);
}

.approachIntro {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 72px;
  align-items: end;
  max-width: none;
}

.approachIntro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -30px;
}

.approachIntro h2,
.approachIntro > p:last-child {
  margin: 0;
}

.roleGrid {
  margin-top: 92px;
}

.roleCard {
  transition: border-color 0.2s ease;
}

.roleCard:hover {
  border-top-color: #d79a72;
}

.treatment {
  padding-block: 154px;
}

.treatment .sectionHeading.centered {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 84px;
  align-items: end;
}

.treatment .sectionHeading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -46px;
}

.treatment .sectionHeading h2,
.treatment .sectionHeading > p:last-child {
  margin: 0;
}

.treatmentGrid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-bottom: 0;
}

.treatmentGrid article,
.treatmentGrid article + article {
  min-height: 270px;
  padding: 38px 32px;
  border: 0;
  border-bottom: 1px solid var(--art-rule);
  border-left: 1px solid var(--art-rule);
}

.treatmentGrid article:nth-child(1) {
  grid-column: 1 / 8;
  padding-left: 0;
  border-left: 0;
}

.treatmentGrid article:nth-child(2) {
  grid-column: 8 / 13;
}

.treatmentGrid article:nth-child(3) {
  grid-column: 1 / 6;
  padding-left: 0;
  border-left: 0;
}

.treatmentGrid article:nth-child(4) {
  grid-column: 6 / 13;
}

.treatmentGrid h3 {
  max-width: 15em;
  font-size: clamp(22px, 2vw, 28px);
}

.treatmentGrid p {
  max-width: 34em;
}

.treatmentPhotos {
  position: relative;
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 112px;
  padding-block: 44px;
}

.treatmentPhotos::before {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 13%;
  content: "";
  background: #e8e0d6;
}

.treatmentPhotoCopy {
  z-index: 2;
  min-height: 430px;
  align-self: center;
  margin-right: -62px;
  padding: 52px;
  background: rgba(10, 34, 52, 0.98);
}

.treatmentPhotos figure {
  z-index: 1;
  height: 560px;
}

.flow {
  padding-block: 154px;
}

.flowGrid {
  margin-top: 12px;
}

.flowCard {
  position: relative;
  overflow: hidden;
}

.flowCard::after {
  position: absolute;
  right: 18px;
  bottom: -40px;
  content: "";
  color: rgba(10, 34, 52, 0.035);
  font-family: var(--editorial-display);
  font-size: 128px;
}

.flowCard:nth-child(1)::after {
  content: "01";
}

.flowCard:nth-child(2)::after {
  content: "02";
}

.flowCard:nth-child(3)::after {
  content: "03";
}

.flowCard:nth-child(4)::after {
  content: "04";
}

.clinicPhotos {
  position: relative;
  padding: 32px 0 0 32px;
}

.clinicPhotos::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 32px;
  left: 0;
  width: 44%;
  content: "";
  background: #ded4c7;
}

.clinicPhotos figure,
.clinicPhotoStack {
  position: relative;
  z-index: 1;
}

.pricing {
  padding-block: 158px;
}

.priceIntro {
  position: sticky;
  top: 132px;
  align-self: start;
}

.price strong {
  letter-spacing: -0.035em;
}

.priceCards article {
  transition: background-color 0.22s ease;
}

.priceCards article:hover {
  background: rgba(255, 255, 255, 0.045);
}

.faq {
  padding-block: 148px;
}

.faq > .sectionHeading {
  position: sticky;
  top: 132px;
  align-self: start;
}

.faqList summary {
  font-family: var(--editorial-display);
  font-size: 18px;
  font-weight: 600;
}

.finalCta {
  min-height: 520px;
  align-items: center;
  padding-block: 124px;
  background:
    linear-gradient(90deg, rgba(7, 26, 40, 0.98) 0 48%, rgba(7, 26, 40, 0.62) 72%, rgba(7, 26, 40, 0.48)),
    url("images/clinic/gotanda-exterior.jpg") center / cover;
}

.finalCta::before {
  position: absolute;
  top: 44px;
  right: max(28px, calc((100vw - 1240px) / 2));
  width: 84px;
  height: 1px;
  content: "";
  background: var(--art-copper);
}

@media (max-width: 1100px) {
  .heroContent {
    padding-right: 42%;
  }

  .approachIntro,
  .treatment .sectionHeading.centered {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .approachIntro .eyebrow,
  .treatment .sectionHeading .eyebrow {
    margin-bottom: 0;
  }

  .treatmentGrid article:nth-child(1),
  .treatmentGrid article:nth-child(2),
  .treatmentGrid article:nth-child(3),
  .treatmentGrid article:nth-child(4) {
    grid-column: span 6;
  }

  .treatmentGrid article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .priceIntro,
  .faq > .sectionHeading {
    position: static;
  }
}

@media (max-width: 760px) {
  .siteHeader {
    grid-template-columns: minmax(0, 1fr) 132px;
  }

  .headerCta {
    width: 132px;
    height: 68px;
    min-height: 68px;
    justify-self: end;
    margin: 0;
    border: 0;
    border-left: 1px solid rgba(10, 34, 52, 0.18);
    border-radius: 0;
  }

  .hero {
    min-height: 710px;
    grid-template-rows: minmax(710px, auto);
  }

  .heroVisual {
    min-height: 710px;
  }

  .heroVisual img {
    height: 710px;
    object-position: 60% center;
  }

  .heroVisual::after {
    background:
      linear-gradient(0deg, rgba(5, 22, 34, 0.97) 0%, rgba(5, 22, 34, 0.86) 47%, rgba(5, 22, 34, 0.36) 78%, rgba(5, 22, 34, 0.18) 100%),
      linear-gradient(90deg, rgba(5, 22, 34, 0.42), transparent);
  }

  .heroVisual::before {
    top: 26px;
    right: 20px;
    left: auto;
    width: 1px;
    height: 72px;
  }

  .heroPhotoLabel {
    right: 20px;
    bottom: 22px;
  }

  .heroContent {
    min-height: 710px;
    justify-content: flex-end;
    padding: 90px 20px 68px;
  }

  .heroContent::before {
    top: 28px;
    right: 15px;
    font-size: 8px;
  }

  .heroTitleBlock {
    position: static;
  }

  .heroTitleBlock .eyebrow {
    color: #e4b697;
  }

  .heroTitleBlock .heroIssue {
    padding: 0 0 7px;
    border-bottom: 1px solid rgba(228, 182, 151, 0.8);
    background: transparent;
    color: #fff;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 56px);
  }

  .hero h1 em::after {
    right: -30px;
    width: 20px;
  }

  .heroLead {
    margin-block: 26px 24px;
    font-size: 14px;
    line-height: 1.85;
  }

  .heroLead strong {
    font-size: 15px;
  }

  .hero .primaryButton {
    box-shadow: 6px 6px 0 rgba(177, 115, 78, 0.44);
  }

  .hero .textLink,
  .heroNote {
    display: none;
  }

  .trustBand {
    margin: -28px 16px 0;
  }

  .trustBand > div {
    padding-inline: 14px;
  }

  .persona::before,
  .concerns::before,
  .approach::before,
  .treatment::before,
  .flow::before,
  .pricing::before,
  .faq::before {
    top: 24px;
    right: 18px;
    font-size: 92px;
  }

  .persona {
    padding-block: 108px 92px;
    background: var(--art-paper);
  }

  .persona::after {
    display: none;
  }

  .personaCards article:hover {
    padding-left: 0;
  }

  .concerns,
  .treatment,
  .flow,
  .faq {
    padding-block: 102px;
  }

  .approach,
  .pricing {
    padding-block: 110px;
  }

  .approachIntro,
  .treatment .sectionHeading.centered {
    display: block;
  }

  .approachIntro .eyebrow,
  .treatment .sectionHeading .eyebrow {
    margin-bottom: 18px;
  }

  .roleGrid {
    margin-top: 54px;
  }

  .treatmentGrid {
    grid-template-columns: 1fr;
  }

  .treatmentGrid article:nth-child(1),
  .treatmentGrid article:nth-child(2),
  .treatmentGrid article:nth-child(3),
  .treatmentGrid article:nth-child(4) {
    grid-column: 1;
    min-height: 0;
    padding: 32px 0;
    border-left: 0;
  }

  .treatmentPhotos {
    grid-template-columns: 1fr;
    margin-top: 64px;
    padding: 0;
  }

  .treatmentPhotos::before {
    display: none;
  }

  .treatmentPhotoCopy {
    min-height: 360px;
    margin: 0;
    padding: 38px 24px;
  }

  .treatmentPhotos figure {
    height: 360px;
  }

  .clinicPhotos {
    padding: 16px 0 0 16px;
  }

  .clinicPhotos::before {
    bottom: 16px;
  }

  .finalCta {
    min-height: 0;
    padding-block: 96px;
  }
}

/* LANSO reference pass: generous spacing, quiet rules and image-led hierarchy */
html,
body {
  overflow-x: clip;
}

.noWrap {
  white-space: nowrap;
}

@media (min-width: 761px) {
  .siteHeader {
    top: 12px;
    width: calc(100% - 48px);
    max-width: 1400px;
    height: 72px;
    margin: 12px auto;
    overflow: hidden;
    border: 1px solid rgba(16, 42, 61, 0.12);
    border-radius: 999px;
    box-shadow: 0 12px 36px rgba(16, 42, 61, 0.06);
  }

  .siteHeader .brand {
    padding-left: 26px;
  }

  .siteHeader .brand img {
    width: 146px;
  }

  .siteHeader .headerCta {
    height: auto;
    min-height: 0;
    align-self: stretch;
    min-width: 194px;
    margin: 8px;
    border-radius: 999px;
  }

  .hero {
    width: calc(100% - 48px);
    max-width: 1400px;
    min-height: 650px;
    grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
    grid-template-rows: minmax(650px, auto);
    margin: 0 auto 24px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 42, 61, 0.12);
    border-radius: 28px;
    background: var(--art-white);
    color: var(--ink);
  }

  .heroVisual {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-height: 650px;
  }

  .heroVisual::before {
    display: none;
  }

  .heroVisual::after {
    background:
      linear-gradient(90deg, rgba(10, 34, 52, 0.12), transparent 28%),
      linear-gradient(0deg, rgba(10, 34, 52, 0.3), transparent 38%);
  }

  .heroVisual img {
    height: 650px;
    object-position: center 56%;
    filter: saturate(0.72) contrast(1.04) brightness(0.94);
    transform: none;
  }

  .heroContent {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
    width: auto;
    min-width: 0;
    min-height: 650px;
    margin: 0;
    padding: 64px clamp(38px, 4vw, 66px);
  }

  .heroContent::before {
    display: none;
  }

  .heroTitleBlock {
    position: static;
  }

  .heroTitleBlock .eyebrow {
    color: var(--art-copper);
  }

  .heroIssue {
    margin-bottom: 22px;
    padding: 0 0 0 14px;
    border: 0;
    border-left: 1px solid var(--art-copper);
    background: transparent;
    color: var(--muted);
  }

  .hero h1,
  .hero h1 em {
    color: var(--art-navy);
    text-shadow: none;
  }

  .hero h1 {
    font-size: clamp(48px, 4.7vw, 68px);
  }

  .hero h1 em::after {
    display: none;
  }

  .heroLead {
    max-width: 540px;
    margin: 28px 0 26px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.95;
  }

  .heroLead strong {
    color: var(--ink);
  }

  .heroActions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero .primaryButton {
    width: min(100%, 390px);
    border-color: var(--art-navy);
    border-radius: 999px;
    background: var(--art-navy);
    box-shadow: none;
    color: #fff;
  }

  .hero .primaryButton small {
    color: rgba(255, 255, 255, 0.72);
  }

  .hero .primaryButton:hover {
    border-color: #153e54;
    background: #153e54;
    color: #fff;
  }

  .hero .textLink {
    color: var(--art-navy);
  }

  .heroNote {
    color: #7d878c;
  }

  .trustBand {
    width: calc(100% - 48px);
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: none;
  }
}

.approach {
  border-radius: 20px;
}

.priceCards article {
  border-radius: 18px;
}

.priceCards article:first-child {
  background: rgba(255, 255, 255, 0.06);
}

.priceCards article:last-child {
  background: rgba(255, 255, 255, 0.11);
}

.faqList summary::after {
  border: 1px solid rgba(16, 42, 61, 0.38);
  border-radius: 999px;
}

.finalCta {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 61, 0.14);
  border-radius: 28px;
  background: #e9edeb;
  color: var(--ink);
}

.finalCta::before {
  top: auto;
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(16, 42, 61, 0.09);
  border-radius: 50%;
  background: transparent;
}

.finalCta .eyebrow.light {
  color: var(--art-copper);
}

.finalCta h2 {
  color: var(--art-navy);
}

.finalCta > div:first-child > p:last-child,
.finalActions small {
  color: var(--muted);
}

.lineButton {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  background: var(--art-navy);
  color: #fff;
}

@media (max-width: 760px) {
  .siteHeader {
    width: 100%;
    height: 68px;
    margin: 0;
    border-radius: 0;
  }

  .siteHeader .brand {
    height: 68px;
    min-height: 0;
  }

  .siteHeader .headerCta {
    height: auto;
    min-height: 0;
    align-self: stretch;
    margin: 7px 0 7px 8px;
    border-radius: 999px 0 0 999px;
  }

  .hero {
    width: calc(100% - 20px);
    margin: 10px auto 0;
    overflow: hidden;
    border: 1px solid rgba(16, 42, 61, 0.12);
    border-radius: 20px;
  }

  .hero .primaryButton,
  .lineButton {
    border-radius: 999px;
  }

  .trustBand {
    width: calc(100% - 20px);
    margin: 10px auto 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: none;
  }

  .approach,
  .priceCards article {
    border-radius: 16px;
  }

  .finalCta {
    width: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    margin: 0 10px 10px;
    padding: 72px 20px;
    border-radius: 20px;
  }

  .finalCta > div,
  .finalActions {
    width: 100%;
    min-width: 0;
  }

  .finalCta h2 {
    font-size: 34px;
    line-height: 1.4;
  }

  .finalCta > div:first-child > p:last-child {
    max-width: 25em;
    color: var(--muted);
    font-size: 13px;
  }

  .finalCta .lineButton {
    width: 100%;
    min-width: 0;
    padding-inline: 22px;
  }

  .finalActions small {
    color: var(--muted);
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .siteHeader {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .siteHeader .brand {
    grid-column: 1;
  }

  .siteHeader .headerCta {
    grid-column: 2;
    justify-self: stretch;
  }

  .hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  }

  .heroContent {
    padding-inline: clamp(34px, 4vw, 44px);
  }
}

/* 「役割」から施術写真までを同じ設計幅でつなぐ */
@media (min-width: 761px) {
  .approach {
    width: calc(100% - 48px);
    max-width: 1500px;
    margin: 30px auto;
    padding: 112px clamp(52px, 6vw, 96px) 104px;
  }

  .approachIntro {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.68fr);
    gap: clamp(52px, 6vw, 82px);
  }

  .approachIntro h2 {
    max-width: 11em;
  }

  .roleGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
    margin-top: 56px;
  }

  .roleCard {
    padding: 36px;
  }

  .medicalCard {
    grid-column: 1;
    grid-row: 2;
  }

  .acupunctureCard {
    grid-column: 2;
    grid-row: 2;
  }

  .roleConnector {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    align-self: auto;
    width: auto;
    max-width: min(100%, 520px);
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
  }

  .evidenceNote {
    margin-top: 34px;
  }

  .treatment {
    width: calc(100% - 48px);
    max-width: 1500px;
    margin: 0 auto;
    padding: 112px clamp(42px, 5vw, 72px) 120px;
  }

  .treatment .sectionHeading.centered {
    gap: clamp(48px, 6vw, 78px);
    margin-bottom: 56px;
  }

  .treatmentGrid article,
  .treatmentGrid article + article {
    min-height: 230px;
  }

  .stimulationNote {
    margin-top: 28px;
  }

  .treatmentPhotos {
    max-width: 1240px;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 0;
    align-items: stretch;
    margin: 72px auto 12px;
    padding: 32px;
    background: #e8e0d6;
  }

  .treatmentPhotos::before {
    display: none;
  }

  .treatmentPhotoCopy {
    min-height: 500px;
    margin: 0;
    padding: 44px;
  }

  .treatmentPhotoCopy h3 {
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.55;
  }

  .treatmentPhotos figure {
    height: 500px;
    border-radius: 0;
  }

  .photoNote,
  .treatmentSafety,
  .treatmentCaution {
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
  }

  .treatmentSafety {
    margin-top: 40px;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .approach {
    padding-inline: 42px;
  }

  .approachIntro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .treatment {
    padding-inline: 36px;
  }

  .treatmentPhotos {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    padding: 22px;
  }

  .treatmentPhotoCopy,
  .treatmentPhotos figure {
    min-height: 460px;
    height: 460px;
  }

  .treatmentPhotoCopy {
    padding: 34px;
  }
}

/* LANSO section study / 2026-08: editorial sequence, quiet comparison and numbered FAQ */
.flowGrid {
  position: relative;
  gap: 0;
  overflow: visible;
  border-top: 1px solid var(--art-rule);
  border-bottom: 1px solid var(--art-rule);
  background: transparent;
}

.flowCard,
.flowCard + .flowCard {
  min-height: 270px;
  padding: 38px 30px 34px;
  overflow: visible;
  border: 0;
  border-right: 1px solid var(--art-rule);
  background: transparent;
}

.flowCard:last-child {
  border-right: 0;
}

.flowCard::after {
  display: none;
}

.flowCard > span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(10, 34, 52, 0.22);
  border-radius: 50%;
  background: var(--art-white);
  color: var(--art-navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.flowCard h3 {
  margin-bottom: 15px;
  font-size: clamp(18px, 1.45vw, 23px);
}

.flowCard p {
  max-width: 27em;
  font-size: 13px;
  line-height: 1.9;
}

.priceCards {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.025);
}

.priceCards article,
.priceCards article:first-child,
.priceCards article:last-child {
  position: relative;
  min-width: 0;
  padding: 42px clamp(28px, 3vw, 44px) 38px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
}

.priceCards article:last-child {
  border-right: 0;
}

.priceCards article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--art-copper);
}

.priceCards article:last-child::before {
  background: rgba(255, 255, 255, 0.42);
}

.pricePlanHeader {
  min-height: 58px;
  margin-bottom: 24px;
}

.pricePlanIndex {
  display: block;
  margin-bottom: 10px;
  color: #e2ad8a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.pricePlanHeader p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.65;
}

.priceCards h3 {
  min-height: 3.25em;
  margin-bottom: 25px;
  font-size: clamp(20px, 1.65vw, 25px);
  line-height: 1.55;
}

.priceCards .price {
  margin-bottom: 20px;
}

.priceCards .firstVisitPrice {
  margin-top: 28px;
  padding: 18px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.priceDetails {
  margin-top: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.paymentMethods {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.paymentMethods strong {
  color: #e2ad8a;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.paymentMethods span {
  color: rgba(255, 255, 255, 0.9);
}

.priceNotice {
  padding: 22px 0 26px;
}

.faq > .sectionHeading.centered {
  align-items: flex-start;
  text-align: left;
}

.faqTitleBreak {
  display: inline;
}

.faqList {
  counter-reset: faq;
  border-top: 1px solid var(--art-rule);
}

.faqList details {
  border-bottom: 1px solid var(--art-rule);
}

.faqList summary {
  display: grid;
  min-height: 94px;
  grid-template-columns: 58px minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 650;
  line-height: 1.6;
}

.faqList summary::after {
  position: static;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  justify-self: end;
  border-color: rgba(10, 34, 52, 0.22);
  color: var(--art-navy);
  font-size: 19px;
}

.faqNumber {
  color: var(--art-copper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.faqQuestion {
  min-width: 0;
}

.faqList details p {
  max-width: 48em;
  margin: 0;
  padding: 0 62px 34px 76px;
  color: var(--muted);
  line-height: 2;
}

.finalCta {
  width: calc(100% - 48px);
  max-width: 1400px;
  min-height: 410px;
  grid-template-columns: 92px minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(42px, 5vw, 78px);
  margin: 48px auto;
  padding: 74px clamp(42px, 5.2vw, 76px);
  border: 1px solid rgba(10, 34, 52, 0.14);
  border-radius: 22px;
  background: #e9edeb;
  color: var(--ink);
}

.finalCta::before {
  top: 28px;
  right: 28px;
  bottom: auto;
  width: 72px;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: var(--art-copper);
}

.finalCtaMeta {
  align-self: stretch;
  padding-right: 24px;
  border-right: 1px solid rgba(10, 34, 52, 0.14);
  color: var(--art-navy);
}

.finalCtaMeta span {
  display: block;
  margin-bottom: 78px;
  color: var(--art-copper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.finalCtaMeta strong {
  font-family: var(--editorial-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.finalCtaCopy {
  align-self: center;
}

.finalCta .finalCtaCopy .eyebrow.light {
  color: var(--art-copper);
}

.finalCta .finalCtaCopy h2 {
  margin-bottom: 22px;
  color: var(--art-navy);
  font-size: clamp(40px, 4.1vw, 62px);
  line-height: 1.22;
}

.finalCta .finalCtaCopy > p:last-child {
  max-width: 31em;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.finalActions {
  align-self: center;
}

.finalActions .lineButton {
  border: 1px solid var(--art-navy);
  background: var(--art-navy);
  box-shadow: none;
}

.finalActions .lineButton:hover {
  border-color: #173d52;
  background: #173d52;
}

@media (min-width: 761px) and (max-width: 1100px) {
  .pricing {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .priceIntro {
    max-width: 680px;
  }

  .faq {
    grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
    gap: 56px;
  }

  .finalCta {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .finalActions {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .faqTitleBreak {
    display: none;
  }

  .flowGrid {
    border-top: 1px solid var(--art-rule);
  }

  .flowCard,
  .flowCard + .flowCard {
    display: grid;
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 8px 18px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--art-rule);
  }

  .flowCard:last-child {
    border-bottom: 0;
  }

  .flowCard > span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .flowCard h3,
  .flowCard p {
    grid-column: 2;
    margin: 0;
  }

  .flowCard p {
    margin-top: 4px;
  }

  .priceCards {
    grid-template-columns: 1fr;
  }

  .priceCards article,
  .priceCards article:first-child,
  .priceCards article:last-child {
    padding: 34px 22px 32px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .priceCards article:last-child {
    border-bottom: 0;
  }

  .pricePlanHeader,
  .priceCards h3 {
    min-height: 0;
  }

  .priceCards h3 {
    margin-bottom: 22px;
  }

  .paymentMethods {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .faqList summary {
    min-height: 82px;
    grid-template-columns: 34px minmax(0, 1fr) 38px;
    gap: 10px;
    padding: 20px 0;
    font-size: 15px;
  }

  .faqList summary::after {
    width: 34px;
    height: 34px;
  }

  .faqList details p {
    padding: 0 0 28px 44px;
    font-size: 13px;
  }

  .finalCta {
    width: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    margin: 10px;
    padding: 48px 22px 52px;
    border-radius: 18px;
  }

  .finalCtaMeta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 34, 52, 0.14);
  }

  .finalCtaMeta span {
    margin: 0;
    writing-mode: horizontal-tb;
  }

  .finalCtaMeta strong {
    font-size: 30px;
  }

  .finalCta .finalCtaCopy h2 {
    font-size: 34px;
  }

  .finalCta .finalCtaCopy > p:last-child {
    font-size: 13px;
  }

  .finalActions {
    grid-column: 1;
  }
}

/* Mobile first-view cleanup: keep one message and rely on the fixed LINE action */
.heroEyebrowMobile,
.heroLeadMobile {
  display: none;
}

@media (max-width: 760px) {
  .personaIntro {
    position: static;
    top: auto;
    align-self: auto;
  }

  .hero {
    min-height: 590px;
    grid-template-rows: minmax(590px, auto);
  }

  .heroVisual {
    min-height: 590px;
  }

  .heroVisual img {
    height: 590px;
    object-position: 60% center;
  }

  .heroContent {
    min-height: 590px;
    padding: 70px 20px 42px;
  }

  .heroContent::before,
  .heroIssue,
  .heroPhotoLabel,
  .heroActions,
  .heroEyebrowDesktop,
  .heroLeadDesktop {
    display: none;
  }

  .heroEyebrowMobile,
  .heroLeadMobile {
    display: inline;
  }

  .heroTitleBlock .eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 50px);
    line-height: 1.24;
  }

  .heroLead {
    max-width: 30em;
    margin: 22px 0 0;
    font-size: 13px;
    line-height: 1.8;
  }

  .heroLead strong {
    font-size: inherit;
  }
}

/* Keep the private-room photo edge-to-edge without a redundant caption band. */
.heroPhotoLabel {
  display: none;
}

@media (min-width: 761px) {
  .heroVisual img {
    height: 100%;
    min-height: 650px;
  }
}

/* Medication and acupuncture: concise, evidence-aware comparison */
.pathwaySection {
  position: relative;
  z-index: 2;
  margin-top: 96px;
  padding-top: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pathwayHeading {
  max-width: 820px;
  margin-bottom: 42px;
}

.pathwayHeading > p:first-child {
  margin-bottom: 16px;
  color: var(--art-copper-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.pathwayHeading h3 {
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--editorial-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.5;
}

.pathwayHeading > p:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.9;
}

.pathwayGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pathwayCard {
  min-width: 0;
  padding: 36px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.medicationPathway {
  background: #f6f2eb;
  color: var(--art-navy-deep);
}

.acupuncturePathway {
  border-color: rgba(228, 182, 151, 0.78);
  background: #23465a;
  color: #fff;
  box-shadow: inset 0 4px 0 var(--art-copper);
}

.pathwayCard > span {
  display: block;
  margin-bottom: 22px;
  color: var(--art-copper-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.medicationPathway > span {
  color: var(--art-copper);
}

.acupuncturePathway > span {
  color: var(--art-copper-light);
}

.pathwayCard h4 {
  margin-bottom: 18px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.65;
}

.pathwayCard > p {
  min-height: 8.5em;
  margin: 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.78;
}

.pathwayFlow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 22px;
  padding: 0;
  list-style: none;
}

.pathwayFlow.compact {
  grid-template-columns: 0.86fr 1.34fr 1fr;
}

.pathwayFlow li {
  position: relative;
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 10px 18px 10px 10px;
  border: 1px solid currentColor;
  border-right: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.pathwayFlow li:last-child {
  padding-right: 10px;
  border-right: 1px solid currentColor;
}

.pathwayFlow li:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  right: -7px;
  width: 13px;
  height: 13px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  background: inherit;
  transform: rotate(45deg);
}

.medicationPathway .pathwayFlow li {
  background: #f6f2eb;
}

.acupuncturePathway .pathwayFlow li {
  background: #23465a;
}

.pathwayCard > small {
  display: block;
  color: inherit;
  font-size: 11px;
  line-height: 1.8;
  opacity: 0.66;
}

.combinationNote {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  margin-top: 20px;
  padding: 26px 30px;
  border: 1px solid rgba(228, 182, 151, 0.55);
  background: transparent;
}

.combinationNote > span {
  color: var(--art-copper-light);
  font-size: 13px;
  font-weight: 700;
}

.combinationNote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.9;
}

.combinationNote strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
}

.evidenceNote a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: var(--art-copper-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.evidenceNote {
  grid-template-columns: 170px minmax(0, 1fr);
}

.evidenceNote > span {
  white-space: nowrap;
}

.evidenceNote small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.7;
}

.evidenceContent {
  min-width: 0;
}

.evidenceContentCompact {
  max-width: 940px;
}

.evidenceKicker {
  margin: 0 0 10px;
  color: var(--art-copper-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.evidenceContentCompact > h3 {
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(27px, 2.7vw, 42px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.evidenceLead {
  max-width: 880px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 2;
}

.evidenceIntro > p:first-child {
  margin: 0 0 8px;
  color: var(--art-copper-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.evidenceIntro h3 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.025em;
}

.evidenceIntro > p:last-child {
  max-width: 850px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.9;
}

.evidenceSummaryGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.evidenceSummaryGrid article {
  min-width: 0;
  padding: 24px 24px 26px;
}

.evidenceSummaryGrid article:first-child {
  padding-left: 0;
}

.evidenceSummaryGrid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.evidenceSummaryGrid article > span {
  display: block;
  margin-bottom: 12px;
  color: var(--art-copper-light);
  font-family: var(--font-serif);
  font-size: 13px;
}

.evidenceSummaryGrid h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 15px;
  line-height: 1.65;
}

.evidenceSummaryGrid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.9;
}

.evidenceTakeaway {
  margin-top: 24px;
  padding: 4px 0 4px 18px;
  border-left: 2px solid var(--art-copper-light);
}

.evidenceTakeaway strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
}

.evidenceTakeaway p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.9;
}

.evidenceNote a.evidenceReference {
  margin-top: 20px;
  font-size: 11px;
  line-height: 1.8;
}

/* One clear sequence: horizontal on wide screens, vertical otherwise. */
@media (min-width: 1101px) {
  .treatmentGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .treatmentGrid article:nth-child(1),
  .treatmentGrid article:nth-child(2),
  .treatmentGrid article:nth-child(3),
  .treatmentGrid article:nth-child(4) {
    grid-column: auto;
    min-height: 270px;
    padding: 36px 26px;
    border-top: 1px solid var(--art-rule);
    border-right: 1px solid var(--art-rule);
    border-bottom: 1px solid var(--art-rule);
    border-left: 0;
  }

  .treatmentGrid article:nth-child(1) {
    border-left: 1px solid var(--art-rule);
  }
}

@media (max-width: 1100px) {
  .pathwayGrid {
    grid-template-columns: 1fr;
  }

  .pathwayCard > p {
    min-height: 0;
  }

  .treatmentGrid {
    grid-template-columns: 1fr;
  }

  .treatmentGrid article:nth-child(1),
  .treatmentGrid article:nth-child(2),
  .treatmentGrid article:nth-child(3),
  .treatmentGrid article:nth-child(4) {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .pathwaySection {
    margin-top: 66px;
    padding-top: 54px;
  }

  .pathwayHeading {
    margin-bottom: 30px;
  }

  .pathwayHeading h3 {
    font-size: 27px;
  }

  .pathwayCard {
    padding: 30px 22px 26px;
  }

  .pathwayCard h4 {
    font-size: 21px;
  }

  .pathwayFlow,
  .pathwayFlow.compact {
    grid-template-columns: 1fr;
  }

  .pathwayFlow li,
  .pathwayFlow li:last-child {
    min-height: 46px;
    padding: 9px 12px;
    border-right: 1px solid currentColor;
    border-bottom: 0;
  }

  .pathwayFlow li:last-child {
    border-bottom: 1px solid currentColor;
  }

  .pathwayFlow li:not(:last-child)::after {
    right: auto;
    bottom: -7px;
    transform: rotate(135deg);
  }

  .combinationNote {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 22px;
  }

  .evidenceNote a {
    line-height: 1.65;
  }

  .evidenceNote {
    grid-template-columns: 1fr;
  }

  .evidenceNote > span {
    white-space: normal;
  }

  .evidenceIntro h3 {
    font-size: 24px;
    line-height: 1.55;
  }

  .evidenceContentCompact > h3 {
    font-size: 25px;
    line-height: 1.55;
  }

  .evidenceLead {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.9;
  }

  .evidenceIntro > p:last-child {
    font-size: 12px;
  }

  .evidenceSummaryGrid {
    grid-template-columns: 1fr;
  }

  .evidenceSummaryGrid article,
  .evidenceSummaryGrid article:first-child {
    padding: 22px 0;
  }

  .evidenceSummaryGrid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .evidenceSummaryGrid p,
  .evidenceTakeaway p {
    font-size: 12px;
    line-height: 1.85;
  }

  .evidenceTakeaway {
    padding-left: 14px;
  }
}
