@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Shippori+Mincho:wght@500;600&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

:root {
  --teal-900: #204b48;
  --teal-800: #2b5b57;
  --teal-700: #356b66;
  --teal-100: #dfeae6;
  --sage: #bfcfc5;
  --sage-light: #e8eeea;
  --ivory: #f7f4ed;
  --ivory-deep: #eee9dd;
  --mustard: #d9b65b;
  --mustard-dark: #a98221;
  --ink: #22312f;
  --muted: #5c6b68;
  --white: #fff;
  --danger: #a4483b;
  --shadow: 0 22px 60px rgba(32, 75, 72, 0.12);
  --container: min(1160px, calc(100vw - 80px));
  --narrow: min(780px, calc(100vw - 80px));
  --header-h: 92px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .035em;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, summary, a { touch-action: manipulation; }
button { color: inherit; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
table { border-collapse: collapse; width: 100%; }
svg { display: block; }
[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 4px;
  border-radius: 4px;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  padding: 12px 18px; background: var(--white); color: var(--teal-900);
  border: 2px solid var(--teal-700); transition: top .2s;
}
.skip-link:focus { top: 12px; }
.container { width: var(--container); margin-inline: auto; }
.narrow { width: var(--narrow); margin-inline: auto; }
.section { position: relative; padding: clamp(88px, 10vw, 150px) 0; }
.section--compact { padding-block: clamp(64px, 7vw, 100px); }
.section--teal { background: var(--teal-700); color: var(--white); }
.section--sage { background: var(--sage-light); }
.section--white { background: var(--white); }
.section--ivory-deep { background: var(--ivory-deep); }

.section-head { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; margin-bottom: clamp(40px, 6vw, 78px); }
.section-head--center { align-items: center; text-align: center; }
.section-head__label, .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--teal-700); font: 600 11px/1 "Montserrat", sans-serif;
  letter-spacing: .22em; text-transform: uppercase; white-space: nowrap;
}
.section-head__label::before, .eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.section--teal .section-head__label, .section--teal .eyebrow { color: var(--mustard); }
.section-title, .page-title, .display-copy {
  margin: 0; font-family: "Shippori Mincho", "Yu Mincho", serif; font-weight: 600;
  line-height: 1.5; letter-spacing: .07em; line-break: strict; word-break: normal;
  text-wrap: balance;
}
.section-title { font-size: clamp(30px, 4vw, 54px); }
.section-description { max-width: 640px; color: var(--muted); line-height: 2; }
.section--teal .section-description { color: rgba(255,255,255,.82); }
.pc-br { display: block; }
.sp-br { display: none; }
.nowrap { white-space: nowrap; }
.text-link {
  display: inline-flex; align-items: center; gap: 18px; min-height: 48px;
  color: var(--teal-800); font-weight: 700; white-space: nowrap;
}
.text-link::after { content: "→"; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; transition: transform .25s var(--ease), background .25s; }
.text-link:hover::after { transform: translateX(5px); background: var(--sage-light); }
.section--teal .text-link { color: var(--white); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 26px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 700; letter-spacing: .06em; white-space: nowrap; cursor: pointer;
  transition: transform .22s var(--ease), background-color .22s, color .22s, box-shadow .22s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--teal-700); color: var(--white); box-shadow: 0 10px 26px rgba(53,107,102,.2); }
.btn--primary:hover { background: var(--teal-900); }
.btn--accent { background: var(--mustard); color: var(--teal-900); }
.btn--accent:hover { background: #e3c875; }
.btn--outline { border-color: var(--teal-700); color: var(--teal-800); background: transparent; }
.btn--white { background: var(--white); color: var(--teal-800); }
.icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h); background: rgba(247,244,237,.95);
  border-bottom: 1px solid rgba(53,107,102,.12); backdrop-filter: blur(14px);
}
.header-inner { width: min(1400px, calc(100vw - 48px)); height: 100%; margin: auto; display: flex; align-items: center; gap: 32px; }
.logo { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.logo__mark { width: 46px; height: 46px; }
.logo__text { display: flex; flex-direction: column; color: var(--teal-900); line-height: 1.25; }
.logo__text strong { font-family: "Shippori Mincho", serif; font-size: 18px; letter-spacing: .08em; }
.logo__text small { font: 600 8px/1.4 "Montserrat", sans-serif; letter-spacing: .18em; }
.global-nav { margin-left: auto; }
.global-nav ul { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); }
.global-nav a { position: relative; display: block; padding: 12px 0; font-size: 14px; font-weight: 500; white-space: nowrap; }
.global-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px; background: var(--mustard); transition: right .25s; }
.global-nav a:hover::after, .global-nav a[aria-current="page"]::after { right: 0; }
.nav-mobile-actions { display: none; }
.header-reserve { min-height: 48px; padding-inline: 20px; }
.menu-button { display: none; width: 48px; height: 48px; margin-left: auto; border: 1px solid rgba(53,107,102,.25); background: transparent; border-radius: 50%; cursor: pointer; }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--teal-900); transition: transform .25s, opacity .25s; }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: calc(100svh - var(--header-h)); display: grid; align-items: stretch; background: var(--ivory); overflow: hidden; }
.hero__image { position: absolute; inset: 0 0 0 38%; overflow: hidden; border-radius: 0 0 0 44% / 0 0 0 30%; }
.hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,244,237,.08), transparent 30%); }
.hero__image img { height: 100%; object-fit: cover; object-position: 62% center; }
.hero__inner { position: relative; z-index: 2; width: min(1400px, calc(100vw - 80px)); margin: auto; display: grid; grid-template-columns: minmax(420px, 47%) 1fr; align-items: center; padding: clamp(54px, 8vh, 90px) 0 156px; }
.hero__copy { max-width: 680px; }
.hero__sub { margin-bottom: 24px; color: var(--teal-700); font: 600 12px/1 "Montserrat", sans-serif; letter-spacing: .24em; }
.hero h1 { margin: 0; color: var(--teal-900); font: 600 clamp(46px, 5.2vw, 70px)/1.42 "Shippori Mincho", serif; letter-spacing: .075em; text-wrap: balance; line-break: strict; }
.hero__lead { max-width: 560px; margin-top: 28px; color: var(--muted); font-size: 17px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-quick {
  position: absolute; z-index: 3; right: max(40px, calc((100vw - 1400px)/2)); bottom: 28px;
  display: flex; align-items: center; min-height: 105px; padding: 20px 28px; background: var(--white);
  box-shadow: var(--shadow); border-radius: 28px 4px 28px 28px;
}
.hero-quick__status { min-width: 225px; padding-right: 26px; border-right: 1px solid var(--sage); }
.hero-quick__status small { display: block; color: var(--muted); font-size: 12px; }
.hero-quick__status strong { display: block; margin-top: 4px; color: var(--teal-900); font-size: 20px; }
.hero-quick__status strong::before { content: ""; display: inline-block; width: 9px; height: 9px; margin-right: 9px; background: var(--teal-700); border-radius: 50%; }
.hero-quick__status.is-closed strong::before { background: var(--danger); }
.hero-quick__links { display: flex; gap: 8px; padding-left: 20px; }
.quick-link { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 96px; min-height: 66px; border-radius: 18px; color: var(--teal-900); font-weight: 700; font-size: 13px; transition: background .2s; }
.quick-link:hover { background: var(--sage-light); }
.quick-link .icon { margin-bottom: 3px; }

/* Schedule and news */
.schedule-strip { position: relative; z-index: 5; margin-top: -1px; padding: 30px 0; background: var(--teal-900); color: var(--white); }
.schedule-strip__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.schedule-strip__title strong { display: block; font-family: "Shippori Mincho", serif; font-size: 21px; }
.schedule-strip__title small { color: var(--mustard); font: 600 10px/1 "Montserrat", sans-serif; letter-spacing: .2em; }
.schedule-mini { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.schedule-mini li { text-align: center; font-size: 12px; }
.schedule-mini b { display: grid; place-items: center; width: 28px; height: 28px; margin: 5px auto 0; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--mustard); }
.schedule-mini li.is-today b { background: var(--mustard); color: var(--teal-900); }
.schedule-note { font-size: 13px; color: rgba(255,255,255,.75); white-space: nowrap; }
.news-layout { display: grid; grid-template-columns: minmax(0, 1fr) 180px; gap: 64px; align-items: end; }
.news-list { border-top: 1px solid rgba(53,107,102,.22); }
.news-list a { display: grid; grid-template-columns: 120px 100px 1fr auto; gap: 22px; align-items: center; min-height: 86px; border-bottom: 1px solid rgba(53,107,102,.22); transition: padding .22s, color .22s; }
.news-list a:hover { padding-left: 10px; color: var(--teal-700); }
.news-list time { font: 600 12px/1 "Montserrat", sans-serif; color: var(--muted); }
.tag { display: inline-flex; align-items: center; justify-content: center; min-height: 28px; padding: 4px 12px; border-radius: 999px; background: var(--sage-light); color: var(--teal-800); font-size: 12px; white-space: nowrap; }
.news-list .arrow { font-size: 24px; }

/* Home about / features */
.about-home { overflow: hidden; }
.about-home::before { content: ""; position: absolute; width: 56vw; height: 56vw; left: -19vw; top: 80px; border: 1px solid rgba(53,107,102,.13); border-radius: 50%; }
.about-collage { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(44px, 8vw, 110px); align-items: center; }
.about-collage__visual { position: relative; }
.about-collage__visual .main-photo { width: 100%; height: 520px; object-fit: cover; border-radius: 46% 54% 18% 82% / 32% 34% 66% 68%; }
.about-collage__copy .display-copy { font-size: clamp(34px, 4.6vw, 62px); color: var(--teal-900); }
.about-collage__copy p { max-width: 590px; margin-top: 28px; }
.about-collage__copy .text-link { margin-top: 34px; }
.features { overflow: hidden; }
.features::before, .features::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.features::before { width: 600px; height: 600px; top: -260px; right: -180px; }
.features::after { width: 420px; height: 420px; bottom: -260px; left: -100px; }
.feature-list { position: relative; z-index: 1; }
.feature-item { display: grid; grid-template-columns: 120px minmax(260px, .8fr) minmax(320px, 1.2fr); gap: 42px; align-items: center; min-height: 240px; padding: 38px 0; border-top: 1px solid rgba(255,255,255,.28); }
.feature-item:last-child { border-bottom: 1px solid rgba(255,255,255,.28); }
.feature-item__number { color: var(--mustard); font: 500 clamp(62px, 8vw, 108px)/1 "Shippori Mincho", serif; }
.feature-item h3 { margin: 0; font: 600 clamp(25px, 3vw, 38px)/1.55 "Shippori Mincho", serif; letter-spacing: .07em; }
.feature-item p { color: rgba(255,255,255,.78); }

/* Medical and symptoms */
.medical-ribbon { background: var(--sage-light); overflow: hidden; }
.medical-ribbon::after { content: "MEDICAL CARE"; position: absolute; right: -20px; top: 28px; color: rgba(53,107,102,.07); font: 700 clamp(80px, 14vw, 190px)/1 "Montserrat", sans-serif; letter-spacing: -.05em; white-space: nowrap; }
.medical-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(53,107,102,.25); border-bottom: 1px solid rgba(53,107,102,.25); }
.medical-item { min-height: 320px; padding: 44px 28px; border-right: 1px solid rgba(53,107,102,.25); transition: background .25s, transform .25s; }
.medical-item:last-child { border-right: 0; }
.medical-item:hover { background: rgba(255,255,255,.5); transform: translateY(-7px); }
.medical-item .icon { width: 46px; height: 46px; color: var(--teal-700); }
.medical-item h3 { margin: 55px 0 15px; font-family: "Shippori Mincho", serif; font-size: 23px; }
.medical-item p { color: var(--muted); font-size: 14px; }
.medical-item span { display: inline-block; margin-top: 28px; color: var(--teal-700); font-weight: 700; }
.symptoms { position: relative; background: var(--ivory); overflow: hidden; }
.symptoms__orb { position: absolute; width: 500px; height: 500px; right: -160px; top: 20px; background: var(--sage); border-radius: 44% 56% 63% 37% / 44% 38% 62% 56%; opacity: .45; }
.symptom-cloud { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 950px; margin: 0 auto; }
.symptom-cloud a { display: inline-flex; align-items: center; gap: 12px; min-height: 58px; padding: 12px 24px; border: 1px solid rgba(53,107,102,.27); border-radius: 999px; background: rgba(255,255,255,.72); font-weight: 500; transition: background .2s, transform .2s; }
.symptom-cloud a::before { content: "+"; color: var(--mustard-dark); font-size: 20px; }
.symptom-cloud a:hover { background: var(--white); transform: translateY(-3px); }

/* Doctor / facility / first visit */
.doctor-home { background: linear-gradient(135deg, var(--ivory-deep), var(--ivory) 55%); overflow: hidden; }
.doctor-layout { display: grid; grid-template-columns: minmax(330px, .9fr) minmax(420px, 1.1fr); gap: clamp(52px, 9vw, 130px); align-items: center; }
.doctor-photo { position: relative; }
.doctor-photo::before { content: ""; position: absolute; inset: -22px 18% 12% -22px; border: 2px solid var(--mustard); border-radius: 48% 52% 42% 58% / 28% 34% 66% 72%; }
.doctor-photo img { position: relative; aspect-ratio: 4/5; object-fit: cover; object-position: center top; border-radius: 48% 52% 42% 58% / 28% 34% 66% 72%; }
.doctor-copy .display-copy { margin: 18px 0 30px; font-size: clamp(32px, 4.4vw, 56px); color: var(--teal-900); }
.doctor-name { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(53,107,102,.25); }
.doctor-name small { display: block; color: var(--muted); }
.doctor-name strong { font-family: "Shippori Mincho", serif; font-size: 22px; }
.doctor-copy .text-link { margin-top: 28px; }
.facility-home { background: var(--white); overflow: hidden; }
.facility-flow { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 290px 250px; gap: 20px; }
.facility-shot { position: relative; overflow: hidden; }
.facility-shot:first-child { grid-row: 1 / 3; border-radius: 12px 90px 12px 90px; }
.facility-shot:nth-child(2) { border-radius: 90px 12px 12px 12px; }
.facility-shot:nth-child(3) { border-radius: 12px 12px 90px 12px; }
.facility-shot img { height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.facility-shot:hover img { transform: scale(1.035); }
.facility-shot figcaption { position: absolute; left: 20px; bottom: 18px; padding: 7px 14px; background: rgba(255,255,255,.92); border-radius: 999px; color: var(--teal-900); font-size: 13px; font-weight: 700; }
.facility-home .text-link { margin-top: 34px; }
.first-visit { background: var(--sage-light); overflow: hidden; }
.first-visit::before { content: ""; position: absolute; left: -5%; right: -5%; top: -115px; height: 190px; background: var(--white); border-radius: 0 0 50% 50%; }
.visit-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 40px; }
.visit-step { position: relative; min-height: 250px; padding: 0 30px 30px; border-left: 1px solid rgba(53,107,102,.25); }
.visit-step:last-child { border-right: 1px solid rgba(53,107,102,.25); }
.visit-step__num { color: var(--mustard-dark); font: 500 50px/1 "Shippori Mincho", serif; }
.visit-step h3 { margin: 28px 0 12px; font-family: "Shippori Mincho", serif; font-size: 21px; }
.visit-step p { color: var(--muted); font-size: 14px; }
.faq-preview { max-width: 850px; margin: 64px auto 0; }
.faq-item { border-top: 1px solid rgba(53,107,102,.26); }
.faq-item:last-child { border-bottom: 1px solid rgba(53,107,102,.26); }
.faq-item summary { position: relative; padding: 25px 58px 25px 48px; cursor: pointer; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q"; position: absolute; left: 5px; color: var(--mustard-dark); font: 600 18px/1 "Montserrat", sans-serif; }
.faq-item summary::after { content: "+"; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--teal-700); font-size: 25px; transition: transform .2s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { position: relative; padding: 0 50px 28px 48px; color: var(--muted); }
.faq-answer::before { content: "A"; position: absolute; left: 5px; color: var(--teal-700); font: 600 18px/1 "Montserrat", sans-serif; }

/* Access / footer */
.access-home { background: var(--teal-900); color: var(--white); overflow: hidden; }
.access-home::after { content: ""; position: absolute; width: 720px; height: 720px; right: -280px; bottom: -380px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.access-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: stretch; }
.map-placeholder { position: relative; min-height: 470px; border-radius: 12px 110px 12px 12px; background-color: #dfe7df; background-image: linear-gradient(31deg, transparent 46%, rgba(255,255,255,.9) 47% 53%, transparent 54%), linear-gradient(122deg, transparent 45%, rgba(255,255,255,.7) 46% 51%, transparent 52%); overflow: hidden; color: var(--teal-900); }
.map-placeholder::after { content: ""; position: absolute; left: 52%; top: 43%; width: 28px; height: 28px; background: var(--mustard); border: 6px solid var(--white); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.map-label { position: absolute; left: 24px; bottom: 22px; padding: 9px 16px; background: var(--white); border-radius: 999px; font-weight: 700; }
.access-info h2 { margin: 14px 0 26px; font: 600 clamp(32px, 4vw, 50px)/1.5 "Shippori Mincho", serif; }
.access-info__address { font-size: 18px; }
.access-meta { margin: 28px 0; border-top: 1px solid rgba(255,255,255,.22); }
.access-meta li { display: grid; grid-template-columns: 90px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.access-meta b { color: var(--mustard); }
.access-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.site-footer { padding: 70px 0 30px; background: #173d3a; color: var(--white); }
.footer-main { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; padding-bottom: 55px; }
.site-footer .logo__text { color: var(--white); }
.footer-address { margin-top: 24px; color: rgba(255,255,255,.72); }
.footer-tel { display: inline-flex; margin-top: 18px; font: 600 25px/1.2 "Montserrat", sans-serif; letter-spacing: .05em; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 35px; }
.footer-nav a { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.footer-nav a::after { content: "↗"; color: var(--mustard); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.6); font-size: 12px; }
.mobile-cta { display: none; }

/* Lower pages */
.page-hero { position: relative; min-height: 470px; display: flex; align-items: center; overflow: hidden; background: var(--sage-light); }
.page-hero::after { content: ""; position: absolute; right: -10%; bottom: -65%; width: 58vw; height: 58vw; min-width: 580px; min-height: 580px; border: 1px solid rgba(53,107,102,.18); border-radius: 50%; }
.page-hero__inner { position: relative; z-index: 1; width: var(--container); margin: auto; padding-block: 70px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 52px; color: var(--muted); font-size: 12px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--sage); }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-title { color: var(--teal-900); font-size: clamp(42px, 6vw, 74px); }
.page-hero__lead { max-width: 680px; margin-top: 24px; color: var(--muted); font-size: 17px; }
.anchor-nav { margin-top: -34px; position: relative; z-index: 5; }
.anchor-nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 15px; background: var(--white); border-radius: 999px; box-shadow: var(--shadow); }
.anchor-nav a { display: inline-flex; align-items: center; min-height: 46px; padding: 8px 18px; border-radius: 999px; color: var(--teal-800); font-weight: 700; font-size: 14px; white-space: nowrap; }
.anchor-nav a:hover { background: var(--sage-light); }
.prose { max-width: 760px; }
.prose p + p { margin-top: 1.5em; }
.prose-lead { font: 600 clamp(30px, 4vw, 49px)/1.65 "Shippori Mincho", serif; color: var(--teal-900); letter-spacing: .07em; text-wrap: balance; }
.image-text { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(46px, 8vw, 110px); align-items: center; }
.image-text--reverse .image-text__image { order: 2; }
.image-text__image img { aspect-ratio: 4/5; object-fit: cover; border-radius: 46% 54% 20px 20px / 22% 34% 20px 20px; }
.image-text__body h2 { margin: 16px 0 26px; font: 600 clamp(30px, 4vw, 48px)/1.55 "Shippori Mincho", serif; color: var(--teal-900); letter-spacing: .06em; text-wrap: balance; }
.image-text__body p + p { margin-top: 1.3em; }
.profile-table { margin-top: 34px; border-top: 1px solid rgba(53,107,102,.25); }
.profile-table div { display: grid; grid-template-columns: 105px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(53,107,102,.25); }
.profile-table dt { font-weight: 700; }
.profile-table dd { margin: 0; color: var(--muted); }
.principle-list { counter-reset: principles; }
.principle { counter-increment: principles; display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 35px; padding: 48px 0; border-top: 1px solid rgba(53,107,102,.25); }
.principle:last-child { border-bottom: 1px solid rgba(53,107,102,.25); }
.principle::before { content: "0" counter(principles); color: var(--mustard-dark); font: 500 64px/1 "Shippori Mincho", serif; }
.principle h3 { margin: 0 0 14px; font: 600 28px/1.5 "Shippori Mincho", serif; color: var(--teal-900); }
.principle p { max-width: 680px; color: var(--muted); }

.medical-detail { display: grid; grid-template-columns: 130px 1fr; gap: 42px; padding: 55px 0; border-top: 1px solid rgba(53,107,102,.25); }
.medical-detail:last-child { border-bottom: 1px solid rgba(53,107,102,.25); }
.medical-detail__icon { display: grid; place-items: center; width: 100px; height: 100px; background: var(--sage-light); border-radius: 50%; color: var(--teal-700); }
.medical-detail__icon .icon { width: 50px; height: 50px; }
.medical-detail h3 { margin: 0 0 18px; font: 600 29px/1.5 "Shippori Mincho", serif; color: var(--teal-900); }
.medical-detail p { max-width: 700px; color: var(--muted); }
.bullet-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.bullet-list li { padding: 7px 14px; background: var(--white); border-radius: 999px; font-size: 14px; }
.guide-note { margin-top: 36px; padding: 28px 32px; border-left: 4px solid var(--mustard); background: var(--white); }
.guide-note h3 { margin: 0 0 8px; color: var(--teal-900); }

.facility-list { display: grid; gap: 90px; }
.facility-entry { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 7vw, 95px); align-items: center; }
.facility-entry:nth-child(even) .facility-entry__image { order: 2; }
.facility-entry__image img { aspect-ratio: 3/2; object-fit: cover; border-radius: 12px 80px 12px 80px; }
.facility-entry:nth-child(even) img { border-radius: 80px 12px 80px 12px; }
.facility-entry__body .eyebrow { color: var(--mustard-dark); }
.facility-entry h3 { margin: 15px 0 18px; font: 600 clamp(28px, 3vw, 40px)/1.5 "Shippori Mincho", serif; color: var(--teal-900); }
.facility-entry p { color: var(--muted); }
.equipment-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(53,107,102,.2); border: 1px solid rgba(53,107,102,.2); }
.equipment-list li { min-height: 170px; padding: 30px; background: var(--ivory); }
.equipment-list h3 { margin: 0 0 12px; font-family: "Shippori Mincho", serif; color: var(--teal-900); }
.equipment-list p { color: var(--muted); font-size: 14px; }
.barrier-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 50px; }
.barrier-list li { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid rgba(53,107,102,.22); }
.barrier-list .icon { flex: 0 0 auto; color: var(--teal-700); }

.flow-list { counter-reset: guide; display: grid; gap: 0; }
.flow-item { counter-increment: guide; position: relative; display: grid; grid-template-columns: 110px 1fr; gap: 36px; padding: 0 0 52px; }
.flow-item:not(:last-child)::after { content: ""; position: absolute; left: 43px; top: 88px; bottom: 6px; width: 1px; background: var(--sage); }
.flow-item::before { content: counter(guide); display: grid; place-items: center; width: 88px; height: 88px; border: 1px solid var(--teal-700); border-radius: 50%; color: var(--teal-700); font: 600 28px/1 "Montserrat", sans-serif; }
.flow-item h3 { margin: 5px 0 10px; font: 600 27px/1.5 "Shippori Mincho", serif; color: var(--teal-900); }
.flow-item p { color: var(--muted); }
.belongings { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.belongings li { position: relative; min-height: 96px; padding: 24px 24px 24px 58px; background: var(--white); border-radius: 18px; }
.belongings li::before { content: "✓"; position: absolute; left: 24px; color: var(--mustard-dark); font-weight: 700; }
.reservation-box { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 48px; background: var(--teal-700); color: var(--white); border-radius: 8px 80px 8px 80px; }
.reservation-box h2 { margin: 0 0 12px; font: 600 clamp(28px, 3vw, 42px)/1.5 "Shippori Mincho", serif; }
.reservation-box p { color: rgba(255,255,255,.8); }

.schedule-table-wrap { overflow-x: auto; border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
.schedule-table { min-width: 720px; }
.schedule-table th, .schedule-table td { padding: 18px 14px; text-align: center; border-bottom: 1px solid var(--sage-light); }
.schedule-table thead th { background: var(--teal-700); color: var(--white); }
.schedule-table tbody th { text-align: left; color: var(--teal-900); white-space: nowrap; }
.schedule-table .open { color: var(--teal-700); font-size: 20px; font-weight: 700; }
.schedule-table .closed { color: #a3aca9; }
.access-detail { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.access-detail__list { border-top: 1px solid rgba(53,107,102,.25); }
.access-detail__list div { padding: 20px 0; border-bottom: 1px solid rgba(53,107,102,.25); }
.access-detail__list dt { color: var(--muted); font-size: 13px; }
.access-detail__list dd { margin: 5px 0 0; font-weight: 700; }
.transport-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.transport-item { padding-top: 28px; border-top: 4px solid var(--mustard); }
.transport-item h3 { margin: 0 0 12px; font-family: "Shippori Mincho", serif; font-size: 23px; color: var(--teal-900); }
.transport-item p { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  :root { --header-h: 78px; --container: min(100% - 56px, 1080px); --narrow: min(100% - 56px, 760px); }
  .global-nav, .header-reserve { display: none; }
  .menu-button { display: block; }
  .site-header { height: var(--header-h); }
  .header-inner { width: calc(100vw - 40px); }
  .global-nav.is-open { display: block; position: fixed; inset: var(--header-h) 0 0; padding: 26px 28px 110px; background: var(--ivory); overflow-y: auto; }
  .global-nav.is-open ul { display: block; }
  .global-nav.is-open a { padding: 19px 5px; border-bottom: 1px solid rgba(53,107,102,.2); font-family: "Shippori Mincho", serif; font-size: 22px; }
  .global-nav.is-open a::after { display: none; }
  .global-nav.is-open .nav-mobile-actions { display: flex; gap: 10px; margin-top: 28px; }
  .hero__inner { width: calc(100vw - 56px); grid-template-columns: 52% 1fr; }
  .hero h1 { font-size: clamp(44px, 6vw, 64px); }
  .hero-quick { right: 28px; }
  .hero-quick__links { display: none; }
  .hero-quick__status { padding-right: 0; border: 0; }
  .schedule-strip__inner { grid-template-columns: auto 1fr; }
  .schedule-note { grid-column: 1 / -1; }
  .medical-item { padding-inline: 20px; }
}

@media (max-width: 900px) {
  :root { --container: calc(100% - 48px); --narrow: calc(100% - 48px); }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero__image { position: relative; inset: auto; grid-row: 2; height: 58vw; min-height: 390px; margin-left: 9%; border-radius: 46% 0 0 0 / 25% 0 0 0; }
  .hero__inner { width: var(--container); grid-template-columns: 1fr; padding: 66px 0 44px; }
  .hero-quick { position: relative; right: auto; bottom: auto; margin: -52px 24px 25px; border-radius: 24px 4px 24px 24px; }
  .hero-quick__status { flex: 1; }
  .hero-quick__links { display: flex; }
  .schedule-strip { margin-top: 0; }
  .about-collage, .doctor-layout, .image-text, .facility-entry, .access-detail { grid-template-columns: 1fr; }
  .feature-item { grid-template-columns: 90px 1fr; }
  .feature-item p { grid-column: 2; }
  .medical-grid { grid-template-columns: repeat(2, 1fr); }
  .medical-item:nth-child(2) { border-right: 0; }
  .medical-item:nth-child(-n+2) { border-bottom: 1px solid rgba(53,107,102,.25); }
  .visit-flow { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .visit-step:nth-child(3) { border-left: 1px solid rgba(53,107,102,.25); }
  .access-layout { grid-template-columns: 1fr; }
  .map-placeholder { min-height: 390px; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
  .page-hero { min-height: 420px; }
  .image-text--reverse .image-text__image, .facility-entry:nth-child(even) .facility-entry__image { order: 0; }
  .image-text__image img { aspect-ratio: 16/10; }
  .facility-entry { gap: 28px; }
  .facility-entry__image img { aspect-ratio: 16/9; }
  .transport-list { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --container: calc(100% - 36px); --narrow: calc(100% - 36px); --header-h: 70px; }
  body { font-size: 16px; line-height: 1.85; padding-bottom: 74px; }
  .section { padding-block: 84px; }
  .section--compact { padding-block: 64px; }
  .pc-br { display: none; }
  .sp-br { display: block; }
  .section-title { font-size: clamp(28px, 8.2vw, 38px); line-height: 1.55; }
  .section-head { gap: 12px; margin-bottom: 42px; }
  .section-description { font-size: 15px; }
  .header-inner { width: calc(100vw - 28px); }
  .logo__mark { width: 39px; height: 39px; }
  .logo__text strong { font-size: 16px; }
  .logo__text small { font-size: 7px; }
  .hero__inner { padding: 52px 0 36px; }
  .hero__sub { margin-bottom: 17px; font-size: 10px; }
  .hero h1 { font-size: clamp(39px, 10.5vw, 43px); line-height: 1.42; letter-spacing: .04em; }
  .hero__lead { margin-top: 22px; font-size: 15px; }
  .hero__actions { margin-top: 25px; }
  .hero__actions .btn { min-height: 50px; padding-inline: 20px; }
  .hero__image { height: 74vw; min-height: 300px; margin-left: 6%; border-radius: 42% 0 0 0 / 20% 0 0 0; }
  .hero__image img { object-position: 57% center; }
  .hero-quick { min-height: 0; margin: -28px 18px 18px; padding: 16px 18px; }
  .hero-quick__status { min-width: 0; }
  .hero-quick__status strong { font-size: 16px; }
  .hero-quick__links { padding-left: 10px; }
  .quick-link { min-width: 54px; min-height: 54px; font-size: 0; }
  .quick-link .icon { margin: 0; width: 25px; height: 25px; }
  .schedule-strip { padding: 24px 0; }
  .schedule-strip__inner { grid-template-columns: 1fr; gap: 18px; }
  .schedule-strip__title { display: flex; justify-content: space-between; align-items: baseline; }
  .schedule-mini { gap: 3px; }
  .schedule-mini b { width: 27px; height: 27px; }
  .schedule-note { white-space: normal; }
  .news-layout { grid-template-columns: 1fr; gap: 25px; }
  .news-list a { grid-template-columns: 94px 1fr auto; gap: 10px; min-height: 100px; padding-block: 15px; }
  .news-list .tag { grid-column: 1; grid-row: 2; justify-self: start; }
  .news-list .news-title { grid-column: 2; grid-row: 1 / 3; }
  .about-collage { gap: 46px; }
  .about-collage__visual .main-photo { height: 360px; }
  .about-collage__copy .display-copy { font-size: clamp(31px, 9vw, 40px); line-height: 1.58; }
  .feature-item { grid-template-columns: 70px 1fr; gap: 20px; padding: 36px 0; }
  .feature-item__number { font-size: 56px; }
  .feature-item h3 { font-size: 24px; }
  .medical-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .medical-item { min-height: 0; padding: 30px 8px; border-right: 0; border-bottom: 1px solid rgba(53,107,102,.25); }
  .medical-item h3 { margin: 25px 0 10px; }
  .medical-item span { margin-top: 16px; }
  .symptom-cloud { justify-content: flex-start; gap: 8px; }
  .symptom-cloud a { min-height: 50px; padding: 9px 16px; font-size: 14px; }
  .doctor-layout { gap: 44px; }
  .doctor-copy .display-copy { font-size: clamp(29px, 8.5vw, 38px); }
  .facility-flow { display: flex; overflow-x: auto; gap: 14px; margin-inline: -18px; padding-inline: 18px; scroll-snap-type: x mandatory; }
  .facility-shot, .facility-shot:first-child, .facility-shot:nth-child(2), .facility-shot:nth-child(3) { flex: 0 0 82vw; height: 330px; border-radius: 12px 60px 12px 60px; scroll-snap-align: center; }
  .visit-flow { grid-template-columns: 1fr; gap: 0; }
  .visit-step { min-height: 0; padding: 0 0 35px 24px; border-left: 1px solid rgba(53,107,102,.25); }
  .visit-step:last-child { border-right: 0; }
  .visit-step__num { font-size: 44px; }
  .faq-item summary { padding: 22px 42px 22px 36px; line-height: 1.65; }
  .faq-item summary::before, .faq-answer::before { left: 0; }
  .faq-answer { padding: 0 8px 24px 36px; }
  .map-placeholder { min-height: 310px; border-radius: 10px 60px 10px 10px; }
  .access-layout { gap: 44px; }
  .access-info h2 { font-size: 31px; }
  .access-meta li { grid-template-columns: 74px 1fr; }
  .footer-main { gap: 38px; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .mobile-cta { position: fixed; z-index: 99; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1.3fr; min-height: 68px; padding: 7px 8px calc(7px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.97); box-shadow: 0 -6px 24px rgba(32,75,72,.12); }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 54px; font-weight: 700; white-space: nowrap; }
  .mobile-cta__tel { color: var(--teal-800); }
  .mobile-cta__reserve { background: var(--teal-700); color: var(--white); border-radius: 999px; }
  .page-hero { min-height: 390px; }
  .page-hero__inner { padding-block: 52px 70px; }
  .breadcrumbs { margin-bottom: 36px; }
  .page-title { font-size: clamp(39px, 11vw, 50px); line-height: 1.5; }
  .page-hero__lead { font-size: 15px; }
  .anchor-nav { margin-top: -22px; overflow-x: auto; padding: 0 18px 15px; }
  .anchor-nav ul { width: max-content; flex-wrap: nowrap; justify-content: flex-start; padding: 8px; }
  .anchor-nav a { min-height: 42px; padding-inline: 14px; font-size: 13px; }
  .prose-lead { font-size: clamp(27px, 8vw, 36px); line-height: 1.7; }
  .image-text { gap: 36px; }
  .image-text__image img { aspect-ratio: 4/3; border-radius: 42% 58% 12px 12px / 25% 35% 12px 12px; }
  .image-text__body h2 { font-size: 30px; }
  .profile-table div { grid-template-columns: 86px 1fr; gap: 12px; }
  .principle { grid-template-columns: 68px 1fr; gap: 18px; padding: 35px 0; }
  .principle::before { font-size: 42px; }
  .principle h3 { font-size: 24px; }
  .medical-detail { grid-template-columns: 70px 1fr; gap: 18px; padding: 38px 0; }
  .medical-detail__icon { width: 64px; height: 64px; }
  .medical-detail__icon .icon { width: 32px; height: 32px; }
  .medical-detail h3 { font-size: 24px; }
  .bullet-list { grid-column: 1 / -1; }
  .facility-list { gap: 62px; }
  .facility-entry__image img { aspect-ratio: 4/3; border-radius: 10px 50px 10px 50px; }
  .equipment-list { grid-template-columns: 1fr; }
  .equipment-list li { min-height: 0; }
  .barrier-list { grid-template-columns: 1fr; }
  .flow-item { grid-template-columns: 68px 1fr; gap: 18px; padding-bottom: 40px; }
  .flow-item::before { width: 58px; height: 58px; font-size: 20px; }
  .flow-item:not(:last-child)::after { left: 29px; top: 66px; }
  .flow-item h3 { margin-top: 0; font-size: 23px; }
  .belongings { grid-template-columns: 1fr; }
  .reservation-box { grid-template-columns: 1fr; gap: 25px; padding: 34px 24px; border-radius: 8px 50px 8px 50px; }
  .schedule-table-wrap { margin-right: -18px; border-radius: 14px 0 0 14px; }
  .access-detail { gap: 42px; }
}

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