:root {
  --green: #4f8066;
  --green-dark: #355f4b;
  --green-light: #edf6f0;
  --sage: #a9c5b3;
  --beige: #f3eadc;
  --cream: #fbf9f5;
  --paper: #ffffff;
  --ink: #2d3933;
  --muted: #66736d;
  --line: #dfe8e2;
  --pink: #d3a5c1;
  --pink-light: #fbf1f7;
  --gold: #c99a32;
  --red: #a55f70;
  --red-light: #fbf0f4;
  --shadow: 0 16px 42px rgba(53, 95, 75, .09);
  --serif: "Noto Serif JP", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: -60px; left: 16px; z-index: 200; padding: 10px 18px; background: white; border: 2px solid var(--green); }
.skip-link:focus { top: 10px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 25; background: rgba(255, 255, 255, .96); border-bottom: 1px solid rgba(95, 145, 116, .14); backdrop-filter: blur(12px); }
.header-inner { display: flex; align-items: center; min-height: 96px; gap: 18px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; gap: 11px; }
.brand-logo { display: block; width: 310px; height: auto; mix-blend-mode: multiply; }
.global-nav { display: flex; align-items: center; justify-content: center; flex: 1; gap: clamp(13px, 1.5vw, 26px); }
.global-nav a { position: relative; font-size: 13px; font-weight: 600; white-space: nowrap; }
.global-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--green); content: ""; transform: scaleX(0); transition: .25s; }
.global-nav a:hover::after, .global-nav a:focus-visible::after { transform: scaleX(1); }
.header-phone { display: flex; align-items: center; flex-shrink: 0; gap: 8px; padding-left: 20px; border-left: 1px solid var(--line); }
.header-phone svg { width: 24px; color: var(--green); }
.header-phone small, .header-phone strong { display: block; line-height: 1.3; }
.header-phone small { color: var(--muted); font-size: 10px; }
.header-phone strong { font-size: 17px; letter-spacing: 0; }
.menu-button { display: none; padding: 8px; background: none; border: 0; }

.hero { position: relative; overflow: hidden; padding: 30px 0 42px; background: #f7faf8; }
.today-panel { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; min-height: 104px; margin-top: 24px; padding: 20px 28px; background: white; border: 1px solid #e4e8e5; border-radius: 14px; box-shadow: 0 10px 35px rgba(52, 73, 64, .08); }
.today-status { display: flex; align-items: center; gap: 18px; }
.status-icon { display: grid; width: 58px; height: 58px; place-items: center; background: var(--green-light); border-radius: 50%; }
.status-icon span { position: relative; display: block; width: 20px; height: 20px; background: var(--green); border: 5px solid white; border-radius: 50%; box-shadow: 0 0 0 2px var(--green); }
.status-icon span::after { position: absolute; inset: -7px; border: 1px solid var(--green); border-radius: 50%; content: ""; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: .7; transform: scale(.8); } 80%, 100% { opacity: 0; transform: scale(1.5); } }
.today-status p { margin: 0; color: var(--muted); font-size: 14px; }
.today-status h2 { display: inline; margin: 0 12px 0 0; font-family: var(--serif); font-size: 26px; }
.today-status #today-detail { display: inline; color: var(--green); font-size: 15px; font-weight: 700; }
.today-panel.closed .status-icon { background: #f1eeee; }
.today-panel.closed .status-icon span { background: #8b7c78; box-shadow: 0 0 0 2px #8b7c78; }
.today-panel.closed .status-icon span::after { display: none; }
.today-panel.closed #today-detail { color: #796c68; }
.today-actions { display: flex; align-items: center; gap: 10px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 25px; border: 1px solid transparent; border-radius: 7px; font-size: 15px; font-weight: 700; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 21px; margin-right: 8px; }
.button-primary { color: white; background: var(--green); box-shadow: 0 8px 18px rgba(63, 110, 89, .18); }
.button-primary:hover { background: var(--green-dark); }
.button-outline { color: var(--green); background: white; border-color: var(--green); }
.today-actions .button { padding-right: 18px; padding-left: 18px; }
.text-link, .plain-button { color: var(--green); font-size: 14px; font-weight: 700; }
.text-link span, .plain-button span { margin-left: 8px; transition: margin .2s; }
.text-link:hover span, .plain-button:hover span { margin-left: 13px; }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: center; gap: 34px; min-height: 0; }
.eyebrow { margin: 0 0 12px; color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.hero-copy { max-width: 560px; }
.hero-copy h1 { margin: 0; color: #3e6153; font-family: var(--sans); font-size: clamp(42px, 4.7vw, 62px); font-weight: 600; letter-spacing: 0; line-height: 1.18; }
.hero-lead { margin: 20px 0 0; color: #51635a; font-size: 16px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-facts { display: grid; grid-template-columns: .82fr 1.55fr .82fr; gap: 0; margin: 24px 0 0; padding: 14px 16px; background: rgba(255,255,255,.7); border: 1px solid rgba(223,232,226,.9); border-radius: 10px; }
.hero-facts div { display: block; padding: 0 12px; border-left: 1px solid var(--line); }
.hero-facts div:first-child { padding-left: 0; border-left: 0; }
.hero-facts dt { color: var(--green); font-size: 12px; font-weight: 700; }
.hero-facts dd { margin: 2px 0 0; color: var(--ink); font-size: 12px; line-height: 1.5; }
.hero-facts div:nth-child(2) dd { white-space: nowrap; }
.hero-visual { position: relative; width: 100%; }
.hero-visual img { width: 100%; mix-blend-mode: multiply; }
.parking-badge { position: absolute; right: 20px; bottom: 25px; display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: rgba(255,255,255,.94); border: 1px solid white; border-radius: 10px; box-shadow: var(--shadow); }
.parking-badge svg { width: 34px; color: var(--green); }
.parking-badge span, .parking-badge strong { display: block; line-height: 1.5; }
.parking-badge span { color: var(--muted); font-size: 11px; }
.parking-badge strong { color: var(--ink); font-size: 15px; }

.quick-guide { position: relative; z-index: 3; margin-top: -35px; padding-bottom: 35px; }
.guide-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 20px; }
.guide-card { min-width: 0; padding: 28px 30px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.fever-card { display: grid; grid-template-columns: auto 1fr; gap: 20px; background: var(--pink-light); border-color: #edd8e4; }
.card-icon { display: grid; flex-shrink: 0; width: 56px; height: 56px; color: var(--green); background: var(--green-light); border-radius: 50%; place-items: center; }
.card-icon svg { width: 29px; }
.fever-card .card-icon { color: var(--red); background: white; }
.card-label { margin: 0 0 2px; color: var(--muted); font-size: 12px; font-weight: 700; }
.guide-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 23px; }
.guide-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.fever-card a { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 4px 12px; min-width: 0; margin-top: 14px; color: var(--red); font-size: 20px; font-weight: 700; }
.fever-card a span { font-size: 12px; }
.hours-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.hours-table-wrap { overflow-x: auto; }
.hours-table { width: 100%; border-collapse: collapse; text-align: center; }
.hours-table th, .hours-table td { min-width: 40px; padding: 6px 8px; border-bottom: 1px solid var(--line); font-size: 13px; }
.hours-table thead th { color: var(--muted); font-size: 11px; font-weight: 600; }
.hours-table tbody th { min-width: 105px; text-align: left; font-size: 12px; }
.hours-table td { color: var(--green); font-size: 16px; font-weight: 700; }
.hours-table td:last-child { color: #767676; }
.hours-card .hours-note { margin-top: 8px; color: var(--red); font-size: 12px; text-align: right; }
.calendar-card { grid-column: 1 / -1; }
.monthly-calendar { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.calendar-card .monthly-calendar { display: grid; grid-template-columns: 240px 1fr; align-items: start; gap: 12px 28px; margin-top: 0; padding-top: 0; border-top: 0; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.calendar-card .calendar-header { display: block; margin-bottom: 0; }
.calendar-header h3 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 22px; line-height: 1.4; }
.calendar-controls { display: flex; gap: 6px; }
.calendar-card .calendar-controls { margin-top: 14px; }
.calendar-controls button { min-width: 54px; padding: 6px 9px; color: var(--green); background: white; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 11px; font-weight: 700; }
.calendar-controls button:hover { border-color: var(--green); }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 10px; color: var(--muted); font-size: 11px; }
.calendar-legend span { display: inline-flex; align-items: center; gap: 5px; }
.calendar-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 50%; }
.legend-open { background: var(--green); }
.legend-closed { background: #d8d2cc; }
.legend-special { background: var(--red); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-card .calendar-grid { grid-column: 2; grid-row: 1 / span 4; }
.calendar-weekday, .calendar-day { display: grid; min-height: 34px; border-radius: 7px; place-items: center; }
.calendar-weekday { color: var(--muted); background: #f5f4ef; font-size: 11px; font-weight: 700; }
.calendar-day { position: relative; color: var(--green-dark); background: white; border: 1px solid #e2ebe5; font-size: 13px; font-weight: 700; }
.calendar-day.is-empty { background: transparent; border-color: transparent; }
.calendar-day.is-closed { color: #867975; background: #f3efec; border-color: #ebe1dc; }
.calendar-day.is-special { color: white; background: var(--red); border-color: var(--red); }
.calendar-day.is-today { box-shadow: inset 0 0 0 2px var(--gold); }
.calendar-note { margin: 10px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.calendar-card .calendar-note { margin-top: 0; }
.seasonal-closures { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.calendar-card .seasonal-closures { margin-top: 0; }
.seasonal-closures span { padding: 3px 9px; color: var(--red); background: var(--red-light); border-radius: 999px; font-size: 11px; font-weight: 700; }
.reservation-bar { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 20px; padding: 24px 30px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.reservation-copy { display: flex; align-items: center; gap: 18px; }
.reservation-copy h3, .reservation-copy p { margin: 0; }
.reservation-copy h3 { font-family: var(--serif); font-size: 22px; }
.reservation-copy p:last-child { color: var(--muted); font-size: 12px; }
.reservation-icon { display: grid; flex: 0 0 56px; width: 56px; height: 56px; color: white; background: var(--green); border-radius: 50%; place-items: center; }
.reservation-icon svg { width: 29px; }

.section { padding: 105px 0; }
.section-heading { margin-bottom: 45px; }
.section-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(32px, 3.5vw, 46px); letter-spacing: 0; line-height: 1.4; }
.section-heading > p:not(.eyebrow), .heading-row > p { max-width: 580px; margin: 12px 0 0; color: var(--muted); font-size: 15px; line-height: 2; }
.heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.heading-row > p { margin-bottom: 3px; }
.care-heading > p:not(.eyebrow) { max-width: none; white-space: nowrap; }

.care-section { background: var(--paper); }
.care-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.care-card { position: relative; overflow: hidden; min-height: 340px; padding: 35px 32px; background: white; border: 1px solid var(--line); border-radius: 10px; transition: transform .25s, box-shadow .25s; }
.care-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.care-number { position: absolute; top: 23px; right: 25px; color: var(--sage); font-family: var(--serif); font-size: 14px; }
.care-icon { display: grid; width: 64px; height: 64px; margin-bottom: 22px; color: var(--green); background: var(--green-light); border-radius: 50%; place-items: center; }
.care-icon svg { width: 36px; }
.care-icon .icon-cross { fill: currentColor; stroke: none; }
.care-icon .icon-stomach { width: 34px; height: 44px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 4; }
.care-card h3 { margin: 0 0 15px; font-family: var(--serif); font-size: 25px; }
.care-card p { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-list span { padding: 3px 10px; color: var(--green); background: var(--green-light); border-radius: 20px; font-size: 11px; font-weight: 600; }
.emergency-note { display: flex; align-items: center; gap: 28px; margin-top: 28px; padding: 20px 26px; background: var(--pink-light); border-left: 4px solid var(--pink); }
.emergency-note strong { flex-shrink: 0; color: var(--red); font-size: 14px; }
.emergency-note p { margin: 0; color: #765d56; font-size: 12px; }

.tests-section { background: #fbfcfb; }
.split-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 100px; }
.sticky-heading { position: sticky; top: 145px; margin-bottom: 0; }
.sticky-heading p:not(.eyebrow) { margin: 22px 0 30px; }
.test-list article { display: grid; grid-template-columns: 62px 1fr; gap: 15px; padding: 30px 10px 30px 0; border-bottom: 1px solid #d4dbd5; }
.test-list article:first-child { padding-top: 0; }
.test-list article > span { color: var(--sage); font-family: var(--serif); font-size: 14px; }
.test-list h3 { margin: -7px 0 7px; font-family: var(--serif); font-size: 23px; }
.test-list p { margin: 0; color: var(--muted); font-size: 14px; }

.vaccine-section { background: white; }
.center-heading { max-width: 700px; margin-right: auto; margin-left: auto; text-align: center; }
.center-heading > p:not(.eyebrow) { margin-right: auto; margin-left: auto; }
.prevention-heading { max-width: none; }
.prevention-heading > p:not(.eyebrow) { max-width: none; white-space: nowrap; }
.prevention-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: auto; }
.prevention-grid article { overflow: hidden; padding: 0 36px 30px; background: #fcfbf8; border: 1px solid var(--line); border-radius: 12px; }
.prevention-title { display: flex; align-items: center; gap: 18px; margin: 0 -36px 26px; padding: 25px 36px; background: var(--green-light); }
.prevention-title span { display: grid; width: 56px; height: 56px; color: white; background: var(--green); border-radius: 50%; font-size: 12px; font-weight: 700; place-items: center; }
.prevention-title h3 { margin: 0; font-family: var(--serif); font-size: 26px; }
.prevention-grid ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 0 0 20px; padding: 0; list-style: none; }
.prevention-grid li { position: relative; padding-left: 19px; font-size: 14px; }
.prevention-grid li::before { position: absolute; top: .7em; left: 0; width: 8px; height: 8px; background: var(--sage); border-radius: 50%; content: ""; }
.prevention-grid article > p { margin: 0; padding-top: 15px; color: var(--muted); border-top: 1px solid var(--line); font-size: 12px; }

.doctor-section { color: var(--ink); background: #f4f9f6; }
.doctor-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 90px; }
.doctor-portrait { overflow: hidden; width: 68%; max-width: 280px; margin: 0 auto; background: white; border: 7px solid white; border-radius: 42% 42% 12px 12px; box-shadow: var(--shadow); }
.doctor-portrait img { width: 100%; aspect-ratio: .76; object-fit: cover; object-position: center top; }
.doctor-copy h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(32px, 3.2vw, 42px); line-height: 1.5; }
.doctor-message { color: var(--muted); font-size: 14px; }
.doctor-message p { margin: 0 0 18px; }
.doctor-signature { display: grid; justify-content: end; margin: 24px 0 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; text-align: left; }
.doctor-signature strong { color: var(--ink); font-family: var(--serif); font-size: 21px; letter-spacing: 0; }
.doctor-profile { margin: 0; }
.doctor-profile div { display: flex; gap: 25px; margin: 6px 0; font-size: 12px; }
.doctor-profile dt { flex: 0 0 38px; color: var(--green); font-weight: 700; }
.doctor-profile dd { margin: 0; color: #56645d; }
.doctor-profile .doctor-history { margin-bottom: 17px; }
.doctor-history ul { display: grid; gap: 5px; margin: 0; padding: 0; list-style: none; }
.doctor-history li { display: grid; grid-template-columns: 82px 1fr; gap: 12px; }
.doctor-history time { color: #7a8a82; white-space: nowrap; }

.access-section { background: #fff; }
.access-heading { align-items: center; }
.access-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; }
.map-card { position: relative; overflow: hidden; min-height: 430px; background: white; border: 10px solid white; border-radius: 10px; box-shadow: var(--shadow); }
.google-map, .google-map iframe { display: block; width: 100%; height: 100%; min-height: 410px; }
.google-map iframe { filter: saturate(.82) contrast(.96); }
.map-button { position: absolute; z-index: 2; right: 25px; bottom: 25px; }
.map-landmarks { position: absolute; z-index: 2; top: 16px; left: 16px; display: flex; flex-wrap: wrap; gap: 6px; max-width: calc(100% - 32px); pointer-events: none; }
.map-landmarks span { padding: 4px 9px; color: var(--green-dark); background: rgba(255,255,255,.92); border: 1px solid rgba(223,232,226,.95); border-radius: 999px; box-shadow: 0 6px 16px rgba(53,95,75,.08); font-size: 11px; font-weight: 700; }
.access-info dl { margin: 0 0 12px; border-top: 1px solid var(--line); }
.access-info dl div { display: grid; grid-template-columns: 115px 1fr; padding: 15px 0; border-bottom: 1px solid var(--line); }
.access-info dt { color: var(--green); font-size: 13px; font-weight: 700; }
.access-info dd { margin: 0; font-size: 14px; }
.access-info dd strong { font-size: 18px; }
.access-note { margin: 0 0 22px; color: var(--muted); font-size: 11px; }
.access-caution { padding: 18px 20px; background: var(--red-light); border-radius: 7px; }
.access-caution strong { color: var(--red); font-size: 13px; }
.access-caution p { margin: 3px 0 0; color: #735b54; font-size: 12px; }

.news-section { padding-bottom: 85px; background: #f7faf8; }
.plain-button { padding: 8px 0; background: none; border: 0; cursor: pointer; }
.news-list { border-top: 1px solid #ccd5cf; }
.news-list article { display: grid; grid-template-columns: 115px 100px 1fr; align-items: center; min-height: 85px; border-bottom: 1px solid #ccd5cf; }
.news-list time { color: var(--muted); font-size: 12px; }
.news-tag { justify-self: start; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.news-tag.notice { color: var(--green); background: var(--green-light); }
.news-tag.trend { color: var(--red); background: var(--red-light); }
.news-tag.vaccine { color: #7f673e; background: #eee3c9; }
.news-content { min-width: 0; }
.news-list h3 { margin: 0; font-size: 15px; font-weight: 500; }
.news-content p { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; white-space: pre-line; }
.news-empty { margin: 0; padding: 28px 0; color: var(--muted); border-bottom: 1px solid #ccd5cf; font-size: 14px; }

.faq-section { background: white; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 70px; }
.faq-layout .section-heading { position: sticky; top: 145px; margin-bottom: 0; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: #fbfcfb; border: 1px solid var(--line); border-radius: 10px; }
.faq-list summary { position: relative; display: block; padding: 20px 56px 20px 24px; color: var(--ink); cursor: pointer; font-weight: 700; line-height: 1.6; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 24px; width: 18px; height: 18px; color: var(--green); content: "+"; font-size: 24px; font-weight: 500; line-height: 18px; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "-"; }
.faq-list p { margin: 0; padding: 0 24px 22px; color: var(--muted); font-size: 14px; line-height: 1.9; }

.contact-section { padding: 75px 0; color: var(--ink); background: #eaf5ee; border-top: 1px solid var(--line); }
.contact-section .eyebrow { color: var(--green); }
.contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.contact-inner h2 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 3.6vw, 42px); line-height: 1.55; }
.contact-details { min-width: 390px; padding-left: 48px; border-left: 1px solid #cdded3; }
.contact-phone small, .contact-phone strong { display: block; }
.contact-phone small { color: var(--muted); font-size: 11px; }
.contact-phone strong { font-size: 34px; letter-spacing: 0; }
.contact-details p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }

.site-footer { padding: 65px 0 25px; background: #faf8f4; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 70px; }
.footer-brand { margin-bottom: 20px; }
.footer-logo { width: 285px; }
.footer-main address { color: var(--muted); font-size: 12px; font-style: normal; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 35px; }
.footer-links a { padding-bottom: 7px; border-bottom: 1px solid #d8d6cf; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 45px; padding-top: 18px; color: #90938f; border-top: 1px solid #d8d6cf; font-size: 12px; }
.mobile-actions { display: none; }

@media (max-width: 1080px) {
  .global-nav { gap: 13px; }
  .global-nav a { font-size: 11px; }
  .header-phone { display: none; }
  .split-layout { gap: 60px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 68px; font-size: 16px; }
  .container { width: min(100% - 32px, 680px); }
  html { scroll-padding-top: 78px; }
  .header-inner { min-height: 82px; }
  .brand-logo { width: min(275px, calc(100vw - 110px)); }
  .global-nav { position: fixed; top: 82px; right: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 15px 25px 25px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: .2s; }
  .global-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .global-nav a { padding: 13px; border-bottom: 1px solid var(--line); font-size: 13px; }
  .menu-button { display: grid; grid-template-columns: 23px; align-items: center; margin-left: auto; }
  .menu-button span { grid-column: 1; display: block; width: 23px; height: 2px; margin: 2px 0; background: var(--green); transition: .2s; }
  .menu-button b { display: none; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding-top: 30px; }
  .hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero-copy { max-width: none; }
  .hero-copy h1 { font-size: 44px; }
  .hero-lead { margin-top: 16px; font-size: 14px; line-height: 1.9; }
  .hero-actions { margin-top: 22px; }
  .hero-actions .button { flex: 1 1 0; min-width: 0; padding-right: 10px; padding-left: 10px; font-size: 13px; white-space: nowrap; }
  .hero-actions .button svg { width: 18px; margin-right: 6px; }
  .hero-facts { display: none; }
  .hero-facts div { display: grid; grid-template-columns: 70px 1fr; gap: 12px; padding: 0; border-left: 0; }
  .today-panel { display: block; padding: 18px; }
  .today-status { align-items: flex-start; gap: 13px; }
  .status-icon { width: 46px; height: 46px; }
  .today-status h2 { display: block; margin: 1px 0; font-size: 21px; }
  .today-status #today-detail { display: block; font-size: 13px; }
  .today-actions { display: none; }
  .hero-visual { width: 100%; }
  .hero-visual img { margin-top: 0; }
  .parking-badge { right: 0; bottom: 7px; padding: 10px 13px; }
  .guide-grid { grid-template-columns: 1fr; }
  .reservation-bar { align-items: stretch; flex-direction: column; }
  .reservation-bar .button { width: 100%; }
  .calendar-header { align-items: flex-start; flex-direction: column; }
  .calendar-card .monthly-calendar { display: block; }
  .calendar-card .calendar-header { display: flex; margin-bottom: 12px; }
  .calendar-controls { width: 100%; }
  .calendar-card .calendar-controls { margin-top: 0; }
  .calendar-controls button { flex: 1; }
  .guide-card { padding: 23px 20px; }
  .fever-card { grid-template-columns: 1fr; }
  .fever-card .card-icon { width: 48px; height: 48px; }
  .section { padding: 75px 0; }
  .heading-row { display: block; }
  .care-heading > p:not(.eyebrow) { white-space: normal; }
  .prevention-heading > p:not(.eyebrow) { white-space: normal; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: 33px; }
  .care-grid, .prevention-grid { grid-template-columns: 1fr; }
  .care-card { min-height: auto; }
  .emergency-note { display: block; }
  .emergency-note p { margin-top: 7px; }
  .split-layout { grid-template-columns: 1fr; gap: 45px; }
  .sticky-heading { position: static; }
  .prevention-grid article { padding-right: 24px; padding-left: 24px; }
  .prevention-title { margin-right: -24px; margin-left: -24px; padding-right: 24px; padding-left: 24px; }
  .doctor-layout { grid-template-columns: 1fr; gap: 45px; }
  .doctor-portrait { width: 58%; max-width: 230px; margin: 0 auto; }
  .access-grid { grid-template-columns: 1fr; }
  .map-card { min-height: 360px; }
  .google-map, .google-map iframe { min-height: 340px; }
  .news-list article { grid-template-columns: 95px 85px 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-layout .section-heading { position: static; }
  .contact-inner { display: block; }
  .contact-details { min-width: 0; margin-top: 30px; padding: 25px 0 0; border-top: 1px solid #cdded3; border-left: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .mobile-actions { position: fixed; right: 0; bottom: 0; left: 0; z-index: 50; display: grid; grid-template-columns: repeat(3, 1fr); height: 68px; color: white; background: var(--green-dark); box-shadow: 0 -5px 20px rgba(0,0,0,.12); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2px; font-size: 10px; }
  .mobile-actions a:first-child { background: var(--green); }
  .mobile-actions svg { width: 23px; height: 23px; }
}

@media (max-width: 520px) {
  .hero-copy h1 { font-size: 40px; }
  .hero-facts div { grid-template-columns: 64px 1fr; }
  .hours-card { padding-right: 14px; padding-left: 14px; }
  .hours-heading { padding-left: 5px; }
  .hours-table th, .hours-table td { padding-right: 5px; padding-left: 5px; }
  .hours-table tbody th { min-width: 92px; }
  .calendar-day, .calendar-weekday { min-height: 31px; font-size: 11px; }
  .first-visit-intro { white-space: normal; }
  .bring-note ul { grid-template-columns: 1fr; }
  .prevention-grid ul { grid-template-columns: 1fr; }
  .news-list article { grid-template-columns: 90px 1fr; padding: 15px 0; }
  .news-content { grid-column: 1 / -1; margin-top: 5px; }
  .map-button { right: 14px; bottom: 14px; left: 14px; }
  .map-landmarks { position: static; margin-top: 10px; pointer-events: auto; }
  .map-card { overflow: visible; }
  .footer-bottom { display: block; }
  .contact-phone strong { font-size: 29px; }
}

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

.first-visit-section { background: var(--cream); }
.first-visit-intro { max-width: none; white-space: nowrap; }
.first-visit-grid { display: grid; grid-template-columns: minmax(0, 760px); justify-content: center; gap: 40px; margin-top: 48px; }
.flow-title { margin: 0 0 24px; padding-left: 12px; color: var(--green-dark); border-left: 4px solid var(--green); font-family: var(--serif); font-size: 18px; }
.step-list { display: flex; flex-direction: column; gap: 0; margin: 0 0 24px; padding: 0; list-style: none; }
.step-item { position: relative; display: flex; gap: 18px; padding-bottom: 28px; }
.step-item:last-child { padding-bottom: 0; }
.step-item::before { position: absolute; top: 42px; bottom: 0; left: 19px; width: 2px; background: var(--line); content: ""; }
.step-item:last-child::before { display: none; }
.step-num { position: relative; z-index: 1; display: grid; flex-shrink: 0; width: 40px; height: 40px; color: white; background: var(--green); border-radius: 50%; font-size: 16px; font-weight: 700; place-items: center; }
.step-body { padding-top: 6px; }
.step-body strong { display: block; margin-bottom: 4px; font-size: 16px; }
.step-body p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.bring-note { margin: 0; padding: 20px 24px; background: var(--green-light); border-radius: 12px; font-size: 16px; line-height: 1.75; }
.bring-note strong { display: block; margin-bottom: 10px; color: var(--green-dark); font-family: var(--serif); font-size: 21px; line-height: 1.4; }
.bring-note ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin: 0; padding-left: 20px; }
.bring-note li { padding-left: 2px; }

@media (max-width: 768px) {
  .first-visit-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  .first-visit-section .section-heading h2 { font-size: 30px; }
  .first-visit-intro { white-space: normal; }
  .bring-note ul { grid-template-columns: 1fr; }
}

/* 2026-07 visual refinement */
:root {
  --green: #47755f;
  --green-dark: #315545;
  --green-light: #eef5f1;
  --sage: #a6bdb1;
  --cream: #f7f6f2;
  --paper: #ffffff;
  --ink: #26342e;
  --muted: #64716b;
  --line: #dce4df;
  --pink: #c4878f;
  --pink-light: #fcf4f3;
  --red: #955967;
  --red-light: #fbf2f3;
  --shadow: 0 12px 32px rgba(38, 52, 46, .07);
  --rounded: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Noto Sans JP", sans-serif;
  --serif: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Noto Sans JP", sans-serif;
}

body { color: var(--ink); background: #fdfcf9; font-size: 16px; line-height: 1.85; }
h1, h2, h3 { font-family: var(--rounded); }
.container { width: min(1120px, calc(100% - 48px)); }
.site-header { background: rgba(255, 255, 255, .97); border-color: var(--line); box-shadow: 0 4px 18px rgba(38, 52, 46, .035); backdrop-filter: blur(10px); }
.header-inner { min-height: 82px; gap: 24px; }
.brand-logo { width: 235px; }
.global-nav { justify-content: flex-end; gap: clamp(16px, 2vw, 30px); }
.global-nav a { color: #3d4d45; font-size: 13px; font-weight: 600; }
.global-nav a::after { bottom: -10px; height: 1px; }
.header-phone { min-height: 42px; padding-left: 18px; }
.header-phone small { font-size: 9px; }
.header-phone strong { font-size: 16px; }

.hero { padding: 0 0 42px; background: white; border-bottom: 1px solid var(--line); }
.hero-grid { position: relative; display: block; overflow: hidden; min-height: 520px; }
.hero-copy { position: relative; z-index: 2; max-width: 520px; padding: 72px 0 58px; }
.eyebrow { margin-bottom: 14px; color: var(--green); font-size: 12px; letter-spacing: 0; }
.hero-copy h1 { color: #24483a; font-family: var(--rounded); font-size: clamp(46px, 4.7vw, 62px); font-weight: 700; letter-spacing: 0; line-height: 1.22; }
.hero-lead { margin-top: 24px; color: var(--muted); font-size: 15px; line-height: 2; }
.hero-lead strong { color: var(--green-dark); font-family: var(--rounded); font-size: 21px; font-weight: 700; }
.hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 450px; margin-top: 30px; }
.hero-actions .button { width: 100%; min-width: 0; padding-inline: 14px; }
.button { min-height: 50px; padding: 0 22px; border-radius: 8px; font-size: 14px; box-shadow: none; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--green-dark); box-shadow: 0 8px 18px rgba(49, 85, 69, .14); }
.button-primary:hover { background: #254638; }
.button-outline { color: var(--green-dark); border-color: #96ab9f; }
.hero-facts { grid-template-columns: .95fr 1.4fr .7fr; margin-top: 30px; padding: 15px 12px; background: rgba(255,255,255,.72); border: 1px solid #dce7e0; border-radius: 8px; box-shadow: 0 8px 24px rgba(38,52,46,.035); }
.hero-facts div { padding: 0 16px; }
.hero-facts dt { font-size: 11px; }
.hero-facts dd { font-size: 11px; }
.hero-facts div:nth-child(2) dd { white-space: nowrap; }
.hero-visual { position: absolute; z-index: 0; inset: 0; width: 100%; padding: 0; }
.hero-visual::before { display: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; border: 0; border-radius: 0; box-shadow: none; mix-blend-mode: normal; }

@media (min-width: 821px) {
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-lead strong {
    text-shadow: -1px -1px 0 rgba(255,255,255,.98), 1px -1px 0 rgba(255,255,255,.98), -1px 1px 0 rgba(255,255,255,.98), 1px 1px 0 rgba(255,255,255,.98), 0 0 10px rgba(255,255,255,.98);
  }
  .hero-lead { text-shadow: 0 0 2px #fff, 0 0 7px #fff, 0 0 14px rgba(255,255,255,.96); }
}

.parking-badge { right: 16px; bottom: 16px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 8px 22px rgba(38, 52, 46, .09); }
.parking-badge svg { width: 28px; }
.parking-badge strong { font-size: 14px; }

.today-panel { min-height: 88px; margin-top: 28px; padding: 17px 22px; background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 8px 24px rgba(38, 52, 46, .045); }
.today-status { gap: 15px; }
.status-icon { width: 42px; height: 42px; border-radius: 50%; }
.status-icon span { width: 14px; height: 14px; border-width: 4px; }
.status-icon span::after { display: none; }
.today-status p { font-size: 11px; }
.today-status h2 { display: block; margin: 0; font-family: var(--rounded); font-size: 19px; font-weight: 700; }
.today-status #today-detail { display: block; font-size: 12px; }
.today-actions .text-link { padding: 8px 0; font-size: 13px; }

.quick-guide { margin-top: 0; padding: 34px 0 52px; background: #fdfcf9; }
.reservation-bar { margin-top: 0; margin-bottom: 20px; padding: 20px 24px; background: #eaf3ee; border: 1px solid #d2e2d9; border-radius: 8px; box-shadow: 0 10px 26px rgba(49, 85, 69, .06); }
.reservation-copy { align-items: flex-start; gap: 14px; }
.reservation-icon { flex-basis: 34px; width: 34px; height: 34px; background: var(--green-dark); border-radius: 50%; }
.reservation-icon svg { width: 19px; stroke-width: 2.2; }
.reservation-copy h3 { font-family: var(--rounded); font-size: 17px; font-weight: 700; }
.reservation-copy p:last-child { margin-top: 2px; font-size: 12px; }
.guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 18px; }
.guide-card { height: 100%; padding: 26px 28px; border-color: #e2e7e4; border-radius: 8px; box-shadow: 0 8px 24px rgba(38, 52, 46, .04); }
.fever-card, .hours-card { min-height: 242px; }
.fever-card { gap: 16px; background: #fbf7f5; border-color: #ece4df; }
.hours-card { display: flex; flex-direction: column; background: white; }
.card-icon { width: 42px; height: 42px; border-radius: 50%; }
.card-icon svg { width: 23px; }
.guide-card h3 { font-family: var(--rounded); font-size: 19px; font-weight: 700; }
.guide-card p { font-size: 12px; }
.fever-card a { margin-top: 12px; font-size: 17px; }
.hours-heading { margin-bottom: 4px; }
.hours-card .card-icon { display: none; }
.hours-table-wrap { margin-top: 10px; }
.hours-table th, .hours-table td { padding: 7px 6px; }
.hours-table td { font-size: 14px; }
.hours-card .hours-note { margin-top: auto; padding-top: 8px; }
.calendar-card { grid-column: 1 / -1; height: auto; padding: 30px; background: #f8f9f7; border-color: #e0e5e1; box-shadow: 0 8px 26px rgba(38,52,46,.045); }
.calendar-card .monthly-calendar { grid-template-columns: 220px 1fr; margin: 0; padding: 0; border: 0; }
.calendar-header h3 { font-family: var(--rounded); font-size: 20px; font-weight: 700; }
.calendar-controls button { border-radius: 8px; }
.calendar-weekday, .calendar-day { border-radius: 4px; }
.seasonal-closures span { border-radius: 4px; }

.section { padding: 98px 0; }
.section-heading { margin-bottom: 38px; }
.section-heading .eyebrow { display: block; margin-bottom: 8px; color: #5d6f66; font-size: 11px; letter-spacing: 0; }
.contact-section .eyebrow { display: block; margin-bottom: 8px; color: #5d6f66; font-size: 11px; letter-spacing: 0; }
.section-heading h2 { font-family: var(--rounded); font-size: clamp(30px, 3vw, 39px); font-weight: 700; letter-spacing: 0; line-height: 1.45; }
.section-heading h2::after { display: none; }
.section-heading > p:not(.eyebrow), .heading-row > p { margin-top: 14px; font-size: 14px; line-height: 1.9; }
.care-heading > p:not(.eyebrow) { max-width: none; white-space: nowrap; }
.prevention-heading > p:not(.eyebrow), .first-visit-intro { max-width: 680px; white-space: normal; }
.center-heading { max-width: 720px; }

.first-visit-section { background: var(--cream); }
.first-visit-grid { margin-top: 0; }
.flow-title { font-family: var(--rounded); font-size: 17px; }
.step-num { background: var(--green-dark); }
.bring-note { background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 8px 22px rgba(38, 52, 46, .04); }
.bring-note strong { font-family: var(--rounded); font-size: 18px; }

.care-section { background: #fff; }
.care-grid { grid-template-columns: repeat(2, 1fr); gap: 0 48px; border-top: 1px solid var(--line); }
.care-card { display: grid; grid-template-columns: 52px 1fr; min-height: 0; padding: 34px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none; transition: color .2s; }
.care-card:hover { color: var(--green-dark); box-shadow: none; transform: none; }
.care-number { display: none; }
.care-icon { grid-column: 1; grid-row: 1 / span 3; width: 40px; height: 40px; margin: 1px 0 0; border-radius: 50%; }
.care-icon svg { width: 21px; }
.care-icon .icon-stomach { width: 19px; height: 26px; stroke-width: 4; }
.care-card h3, .care-card p, .care-card .tag-list { grid-column: 2; }
.care-card h3 { margin-bottom: 8px; font-family: var(--rounded); font-size: 20px; font-weight: 700; }
.care-card p { margin-bottom: 13px; font-size: 13px; }
.tag-list span { padding: 2px 8px; border-radius: 4px; font-size: 10px; }
.emergency-note { margin-top: 26px; padding: 18px 22px; background: var(--pink-light); border-left-width: 3px; }

.tests-section { background: #f7f8f6; }
.split-layout { grid-template-columns: .65fr 1.35fr; gap: 88px; }
.sticky-heading { top: 120px; }
.test-list article { grid-template-columns: 44px 1fr; padding: 25px 0; }
.test-list article > span { font-family: var(--sans); font-size: 12px; }
.test-list h3 { margin: -4px 0 6px; font-family: var(--rounded); font-size: 19px; font-weight: 700; }
.test-list p { font-size: 13px; }

.prevention-grid { gap: 20px; }
.prevention-grid article { padding: 0 30px 28px; background: white; border-radius: 8px; box-shadow: 0 8px 24px rgba(38, 52, 46, .04); }
.prevention-title { margin: 0 -30px 24px; padding: 22px 30px; background: var(--green-light); }
.prevention-title span { width: auto; height: auto; padding-right: 18px; background: transparent; border-right: 1px solid #bed0c6; border-radius: 0; color: var(--green-dark); }
.prevention-title h3 { font-family: var(--rounded); font-size: 21px; font-weight: 700; }
.prevention-grid .vaccine-wide { grid-column: 1 / -1; white-space: nowrap; }

.doctor-section { background: var(--cream); }
.doctor-layout { grid-template-columns: .72fr 1.28fr; gap: 76px; }
.doctor-portrait { width: 72%; max-width: 270px; border: 5px solid white; border-radius: 8px; box-shadow: 0 16px 38px rgba(38, 52, 46, .1); }
.doctor-copy h2 { margin-bottom: 24px; font-family: var(--rounded); font-size: clamp(29px, 3vw, 38px); font-weight: 700; }
.doctor-message { font-size: 13px; }
.doctor-signature strong { font-family: var(--rounded); font-size: 19px; }

.access-grid { gap: 46px; }
.map-card { min-height: 410px; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 14px 34px rgba(38, 52, 46, .07); }
.map-landmarks span { border-radius: 4px; box-shadow: none; }
.access-caution { border-radius: 6px; }
.news-section { background: #f7f8f6; }
.news-tag { border-radius: 4px; }
.faq-layout { grid-template-columns: .65fr 1.35fr; gap: 72px; }
.faq-layout .section-heading { top: 120px; }
.faq-list { gap: 8px; }
.faq-list details { background: white; border-radius: 8px; box-shadow: 0 6px 18px rgba(38, 52, 46, .035); }
.faq-list summary { padding: 18px 52px 18px 20px; font-size: 14px; }
.faq-list p { padding: 0 20px 20px; font-size: 13px; }

.contact-section { padding: 72px 0; color: var(--ink); background: #eef3ef; border: 0; }
.contact-inner h2 { color: var(--ink); font-family: var(--rounded); font-size: clamp(26px, 3.2vw, 36px); font-weight: 700; }
.contact-details { border-left-color: #cbd9d1; }
.contact-phone small, .contact-details p { color: var(--muted); }
.contact-phone strong { color: var(--green-dark); font-size: 31px; }
.site-footer { padding-top: 54px; background: #f7f6f2; }
.footer-logo { width: 240px; }

@media (max-width: 1080px) {
  .brand-logo { width: 215px; }
  .global-nav { gap: 15px; }
  .global-nav a { font-size: 12px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 66px; }
  .container { width: min(100% - 32px, 680px); }
  .header-inner { min-height: 72px; }
  .brand-logo { width: min(220px, calc(100vw - 94px)); }
  .global-nav { top: 72px; grid-template-columns: 1fr 1fr; padding: 10px 18px 20px; }
  .global-nav a { padding: 12px 10px; font-size: 13px; }
  .hero { padding: 28px 0 30px; background: #f7faf8; }
  .hero-grid { display: grid; overflow: visible; grid-template-columns: 1fr; gap: 22px; min-height: 0; }
  .hero-copy { max-width: none; padding: 0; }
  .hero-copy h1 { font-size: 40px; }
  .hero-lead { margin-top: 16px; font-size: 13px; line-height: 1.9; }
  .hero-lead strong { font-size: 17px; }
  .hero-actions { margin-top: 20px; }
  .hero-actions .button { min-height: 48px; font-size: 12px; }
  .hero-facts { display: none; }
  .hero-visual { position: relative; z-index: 1; inset: auto; max-width: 560px; margin-inline: auto; padding: 0; }
  .hero-visual img { max-height: 230px; object-fit: cover; object-position: center; }
  .parking-badge { right: 8px; bottom: 8px; }
  .today-panel { margin-top: 20px; padding: 15px 17px; }
  .today-status h2 { font-size: 17px; }
  .today-actions { display: none; }
  .quick-guide { padding: 24px 0 36px; }
  .guide-grid { grid-template-columns: 1fr; }
  .reservation-bar { align-items: flex-start; padding: 17px 18px; }
  .guide-card { padding: 21px 20px; }
  .fever-card, .hours-card { min-height: 0; }
  .calendar-card { padding: 21px 20px; }
  .calendar-card .monthly-calendar { display: block; margin: 0; padding: 0; }
  .calendar-card .calendar-header { display: flex; margin-bottom: 12px; }
  .calendar-card .calendar-controls { width: auto; margin-top: 0; }
  .calendar-card .calendar-grid { margin-top: 12px; }
  .section { padding: 72px 0; }
  .section-heading h2 { font-size: 29px; }
  .care-heading > p:not(.eyebrow) { white-space: normal; }
  .care-grid { grid-template-columns: 1fr; }
  .care-card { min-height: 0; padding: 26px 24px; }
  .split-layout, .doctor-layout, .access-grid, .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .sticky-heading, .faq-layout .section-heading { position: static; }
  .prevention-grid { grid-template-columns: 1fr; }
  .doctor-portrait { width: 55%; max-width: 220px; }
  .map-card { min-height: 350px; }
  .contact-section { padding: 54px 0; }
  .contact-details { border-top-color: #cbd9d1; }
  .mobile-actions { height: 66px; background: var(--green-dark); }
  .mobile-actions a:first-child { background: var(--green); }
}

@media (max-width: 520px) {
  .hero-copy h1 { font-size: 36px; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-actions .button { width: 100%; padding-inline: 10px; }
  .hero-visual img { max-height: 200px; }
  .parking-badge span { display: none; }
  .parking-badge svg { width: 24px; }
  .reservation-copy h3 { font-size: 16px; }
  .fever-card { grid-template-columns: 36px 1fr; }
  .fever-card .card-icon { width: 36px; height: 36px; }
  .hours-card { padding-inline: 14px; }
  .hours-table { table-layout: fixed; }
  .hours-table th, .hours-table td { min-width: 0; padding-inline: 2px; font-size: 10px; }
  .hours-table thead th:first-child, .hours-table tbody th { width: 86px; min-width: 0; }
  .calendar-card { padding-inline: 16px; }
  .prevention-grid .vaccine-wide { white-space: normal; }
  .care-card { grid-template-columns: 42px 1fr; }
  .news-list article { grid-template-columns: 88px 1fr; }
  .contact-phone strong { font-size: 27px; }
}

/* Motion enhancements for the restored clinic design */
.site-header, .header-inner { transition: min-height .3s ease, background-color .3s ease, box-shadow .3s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 28px rgba(38, 52, 46, .09); }
.site-header.is-scrolled .header-inner { min-height: 72px; }
.global-nav a.is-current::after { transform: scaleX(1); }

.hero { --hero-loop-duration: 18s; }
.hero-visual { overflow: hidden; }
.hero-visual img { transform-origin: 64% 50%; animation: clinic-hero-zoom-loop var(--hero-loop-duration) linear infinite; will-change: transform, opacity; }
.hero-copy > .eyebrow { animation: clinic-copy-in .7s .03s both; }
.hero-copy > h1 { animation: clinic-copy-in .82s .1s both; }
.hero-copy > .hero-lead { animation: clinic-copy-in .88s .2s both; }
.hero-copy > .hero-actions { animation: clinic-copy-in .9s .3s both; }
.hero-copy > .hero-facts { animation: clinic-copy-in .9s .4s both; }
.today-panel { animation: clinic-panel-in .85s .42s both; }
.parking-badge { animation: clinic-badge-float 3.8s ease-in-out 1.1s infinite, clinic-visual-fade var(--hero-loop-duration) linear infinite; }

.motion-ready .reveal { opacity: 0; transform: translateY(38px) scale(.985); transition: opacity .82s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms), transform .82s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms); }
.motion-ready .section-heading.reveal { transform: translateX(-34px); }
.motion-ready .guide-card.reveal:nth-child(even), .motion-ready .care-card.reveal:nth-child(even), .motion-ready .doctor-copy.reveal, .motion-ready .access-info.reveal { transform: translateX(38px); }
.motion-ready .guide-card.reveal:nth-child(odd), .motion-ready .care-card.reveal:nth-child(odd), .motion-ready .doctor-portrait.reveal, .motion-ready .map-card.reveal { transform: translateX(-38px); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .section-heading.reveal.is-visible, .motion-ready .guide-card.reveal.is-visible:nth-child(n), .motion-ready .care-card.reveal.is-visible:nth-child(n), .motion-ready .doctor-copy.reveal.is-visible, .motion-ready .doctor-portrait.reveal.is-visible, .motion-ready .access-info.reveal.is-visible, .motion-ready .map-card.reveal.is-visible { transform: none; }
.guide-card, .prevention-grid article, .map-card, .news-list article, .faq-list details { transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.faq-list summary::after { transition: transform .3s ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.calendar-day { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button svg, .text-link span, .plain-button span { transition: transform .2s ease, margin .2s ease; }

@keyframes clinic-hero-zoom-loop {
  0% { opacity: 0; transform: scale(1) translate3d(0, 0, 0); }
  10% { opacity: 1; transform: scale(1.01) translate3d(-.1%, -.05%, 0); }
  78% { opacity: 1; transform: scale(1.12) translate3d(-1.45%, -.8%, 0); }
  90% { opacity: 0; transform: scale(1.15) translate3d(-1.75%, -1%, 0); }
  100% { opacity: 0; transform: scale(1) translate3d(0, 0, 0); }
}

@keyframes clinic-visual-fade {
  0% { opacity: 0; }
  10%, 78% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

@keyframes clinic-copy-in {
  from { opacity: 0; transform: translate3d(-28px, 12px, 0) scale(.985); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes clinic-panel-in {
  from { opacity: 0; transform: translateY(34px) scale(.98); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes clinic-badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px) scale(1.025); }
}

@media (hover: hover) {
  .guide-card:hover, .prevention-grid article:hover { border-color: #afc9ba; box-shadow: 0 20px 42px rgba(38,52,46,.12); transform: translateY(-7px) scale(1.008); }
  .care-card:hover { transform: translateX(9px); }
  .map-card:hover { box-shadow: 0 24px 50px rgba(38,52,46,.14); transform: translateY(-6px) scale(1.005); }
  .news-list article:hover { border-color: var(--green); transform: translateX(9px); }
  .faq-list details:hover { border-color: #adc6b8; transform: translateX(6px); }
  .calendar-day:not(.is-empty):hover { border-color: var(--green); box-shadow: 0 7px 15px rgba(38,52,46,.11); transform: translateY(-4px) scale(1.035); }
  .button:hover { transform: translateY(-3px) scale(1.015); }
  .button:hover svg { transform: translateX(4px); }
  .guide-card:hover .card-icon, .care-card:hover .care-icon { transform: rotate(-6deg) scale(1.08); }
}

@media (max-width: 820px) {
  .site-header.is-scrolled .header-inner { min-height: 72px; }
  .hero { --hero-loop-duration: 20s; }
  .motion-ready .reveal, .motion-ready .section-heading.reveal, .motion-ready .guide-card.reveal:nth-child(n), .motion-ready .care-card.reveal:nth-child(n), .motion-ready .doctor-copy.reveal, .motion-ready .doctor-portrait.reveal, .motion-ready .access-info.reveal, .motion-ready .map-card.reveal { transform: translateY(24px) scale(.99); }
  .motion-ready .reveal.is-visible { transform: none; }
}

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

/* Bright and fresh visual refinement */
:root {
  --green: #4d8268;
  --green-dark: #35664f;
  --green-light: #edf7f2;
  --cream: #f4f8f5;
  --paper: #ffffff;
  --ink: #26372f;
  --muted: #60726a;
  --line: #d8e8df;
  --pink: #ca8f9b;
  --pink-light: #fff3f5;
  --red: #98606c;
  --red-light: #fff1f3;
  --shadow: 0 14px 36px rgba(45, 89, 68, .075);
}

body { background: #ffffff; }
.site-header { background: rgba(255,255,255,.97); border-color: #dcebe3; }
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(40,78,60,.1); }
.hero { background: #f4faf7; border-color: #dcebe3; }
.hero-facts { display: block; max-width: 450px; margin-top: 26px; padding: 13px 16px; background: rgba(255,255,255,.8); border-color: #d5e6dc; box-shadow: 0 10px 26px rgba(47,83,66,.055); backdrop-filter: blur(8px); }
.hero-facts div { display: grid; grid-template-columns: 58px minmax(0, 1fr); align-items: center; gap: 12px; padding: 0; border: 0; }
.hero-facts dt { color: #4d8268; font-size: 11px; }
.hero-facts dd { margin: 0; color: #31443a; font-size: 12px; white-space: nowrap; }
.button-primary { background: #35664f; box-shadow: 0 9px 20px rgba(53,102,79,.18); }
.button-primary:hover { background: #285740; }
.button-outline { color: #35664f; background: rgba(255,255,255,.8); border-color: #8fb09f; }
.today-panel { background: #ffffff; border-color: #d8e8df; box-shadow: 0 12px 30px rgba(45,89,68,.07); }
.status-icon span::after { display: block; }

.quick-guide { background: #f9fcfa; }
.reservation-bar { background: #eaf6f0; border-color: #cfe5d9; }
.guide-card { background: #ffffff; border-color: #dce9e2; box-shadow: 0 10px 28px rgba(45,89,68,.055); }
.fever-card { background: #fff4f5; border-color: #f0dfe2; }
.calendar-card { background: #f1f7f9; border-color: #d9e7eb; }
.calendar-weekday { background: #e8f1f3; }
.calendar-day { background: #ffffff; border-color: #d9e8e3; }
.card-icon, .care-icon { transition: color .3s ease, background-color .3s ease, transform .35s cubic-bezier(.2,.8,.2,1); }

.first-visit-section { background: #f3f8f5; }
.bring-note { background: #ffffff; border-color: #d9e8df; }
.care-section { background: #ffffff; }
.care-grid, .care-card { border-color: #dbe8e1; }
.care-card:nth-child(1) .care-icon { color: #4d8268; background: #edf7f2; }
.care-card:nth-child(2) .care-icon { color: #66849d; background: #edf4f8; }
.care-card:nth-child(3) .care-icon { color: #b07582; background: #fff0f3; }
.care-card:nth-child(4) .care-icon { color: #638c7a; background: #edf6f1; }
.tag-list span { color: #4e7462; background: #eff7f3; }
.emergency-note { background: #fff4f2; border-color: #d7a19a; }

.tests-section { background: #f3f8fb; }
.test-list article { border-color: #d8e5e9; }
.test-list article > span { color: #7da0b2; }
.vaccine-section { background: #fff9f8; }
.prevention-grid article { background: #ffffff; border-color: #e4e5df; box-shadow: 0 10px 28px rgba(74,78,66,.045); }
.prevention-grid article:first-child .prevention-title { background: #eaf6f0; }
.prevention-grid article:nth-child(2) .prevention-title { background: #edf5f9; }
.prevention-title span { color: #35664f; border-color: #b7cfc2; }

.doctor-section { background: #eef7f2; }
.doctor-portrait { border-color: #ffffff; box-shadow: 0 18px 42px rgba(45,89,68,.1); }
.access-section { background: #ffffff; }
.map-card { border-color: #ffffff; box-shadow: 0 16px 38px rgba(45,89,68,.085); }
.news-section { background: #f3f8fa; }
.news-list, .news-list article { border-color: #d2e2e6; }
.faq-section { background: #ffffff; }
.faq-list details { background: #fbfdfc; border-color: #dce8e1; }
.contact-section { color: var(--ink); background: #eaf6f0; }
.contact-inner h2, .contact-phone strong { color: #2f5d48; }
.contact-phone small, .contact-details p { color: #60726a; }
.contact-details { border-color: #c9dfd3; }
.site-footer { background: #f5faf7; }
.footer-links a, .footer-bottom { border-color: #d8e6df; }

@media (max-width: 820px) {
  .hero { background: #f4faf7; }
  .hero-facts { display: none; }
}

/* ===== 重要なお知らせ（帯／ポップアップ） ===== */
.site-banner { position: relative; z-index: 24; background: var(--green-dark); color: #fff; }
.site-banner-inner { display: flex; align-items: center; gap: 16px; padding: 11px 0; }
.site-banner-text { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; flex: 1; min-width: 0; line-height: 1.6; }
.site-banner-text strong { font-size: 15px; font-weight: 700; }
.site-banner-text span { font-size: 14px; color: #e7efe9; }
.site-banner-text a { flex-shrink: 0; padding-bottom: 1px; color: #fff; font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.7); }
.site-banner-close { flex-shrink: 0; width: 34px; height: 34px; padding: 0; color: #fff; background: rgba(255,255,255,.12); border: 0; border-radius: 50%; cursor: pointer; font-size: 20px; line-height: 1; }
.site-banner-close:hover { background: rgba(255,255,255,.24); }

.highlight-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; }
.highlight-modal[hidden] { display: none; }
.site-banner[hidden] { display: none; }
.highlight-modal-overlay { position: absolute; inset: 0; background: rgba(24,32,28,.55); backdrop-filter: blur(2px); }
.highlight-modal-box { position: relative; z-index: 1; width: min(460px, 100%); padding: 34px 30px 30px; background: #fff; border-radius: 14px; box-shadow: 0 30px 70px rgba(24,36,30,.32); animation: highlight-pop .32s cubic-bezier(.2,.8,.2,1) both; }
.highlight-modal-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; padding: 0; color: var(--muted); background: #f1f4f1; border: 0; border-radius: 50%; cursor: pointer; font-size: 22px; line-height: 1; }
.highlight-modal-close:hover { background: #e4eae5; color: var(--ink); }
.highlight-modal-box h2 { margin: 0 0 12px; padding-right: 32px; font-family: var(--rounded); font-size: 22px; font-weight: 700; color: var(--green-dark); line-height: 1.5; }
.highlight-modal-box p { margin: 0 0 20px; color: var(--ink); font-size: 15px; line-height: 1.9; white-space: pre-line; }
.highlight-modal-box .button { width: 100%; }

@keyframes highlight-pop { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 820px) {
  .site-banner-inner { padding: 10px 0; }
  .site-banner-text strong { font-size: 14px; }
  .site-banner-text span { font-size: 13px; }
  .highlight-modal-box { padding: 28px 22px 24px; }
  .highlight-modal-box h2 { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  .highlight-modal-box { animation-duration: .01ms; }
}

/* 2026-07-23 production polish: readability, accessibility, calmer motion */
:root {
  --green: #426f59;
  --green-dark: #294f3e;
  --green-light: #edf6f1;
  --ink: #22332b;
  --muted: #52645b;
  --line: #d2e1d8;
  --red: #8d5260;
  --shadow: 0 12px 32px rgba(32, 66, 49, .075);
}

body { color: var(--ink); }
body.modal-open,
body.menu-open { overflow: hidden; }

:where(a, button, summary, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid rgba(50, 111, 83, .42);
  outline-offset: 3px;
}

button,
.button,
.global-nav a,
.mobile-actions a { -webkit-tap-highlight-color: transparent; }

.global-nav a { font-size: 14px; }
.header-phone small { color: #596b62; }
.hero-lead { color: #4d6057; font-size: 16px; }
.hero-visual img { animation: none; will-change: auto; }
.parking-badge { animation: none; }

.guide-card p,
.care-card p,
.test-list p,
.doctor-message,
.faq-list p,
.section-heading > p:not(.eyebrow),
.heading-row > p { color: var(--muted); font-size: 14px; }

.guide-card p,
.care-card p,
.test-list p,
.doctor-message,
.faq-list p { line-height: 1.85; }

.section-heading > p:not(.eyebrow),
.heading-row > p { max-width: 680px; }

.calendar-controls button {
  min-width: 68px;
  min-height: 42px;
  padding: 8px 12px;
  border-color: #bcd1c5;
  font-size: 12px;
}
.calendar-controls button:disabled {
  color: #839188;
  background: #eef2ef;
  border-color: #d9e2dc;
  cursor: not-allowed;
  opacity: .72;
}
.calendar-note { color: #53665c; font-size: 12px; line-height: 1.75; }
.calendar-day { min-height: 38px; }
.calendar-day.is-closed { color: #705f5c; }
.calendar-day.is-today { box-shadow: inset 0 0 0 2px #a97916; }

.news-empty {
  padding: 30px 24px;
  color: var(--muted);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.news-empty p { margin: 0; }
.news-empty.is-error { color: #6e3f48; background: #fff7f8; border-color: #e4c7ce; }
.news-empty.is-error a { display: inline-block; margin-top: 8px; color: var(--green-dark); font-size: 18px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.test-list article > span { color: #50778a; font-weight: 700; }
.footer-main address,
.footer-links a,
.footer-bottom { color: #4e6057; font-size: 13px; }
.footer-links a { min-height: 38px; }

.access-caution { border: 1px solid #e4cbd0; }
.access-caution p { line-height: 1.85; }

.highlight-modal-overlay { cursor: pointer; }
.highlight-modal-box { max-height: min(680px, calc(100vh - 40px)); overflow-y: auto; }
.highlight-modal-box:focus { outline: none; }

@media (hover: hover) {
  .guide-card:hover,
  .prevention-grid article:hover,
  .map-card:hover { transform: translateY(-3px); }
  .news-list article:hover,
  .faq-list details:hover { transform: translateX(3px); }
  .calendar-day:not(.is-empty):hover { transform: translateY(-2px); }
}

@media (max-width: 1080px) {
  .global-nav a { font-size: 13px; }
}

@media (max-width: 820px) {
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .global-nav { max-height: calc(100vh - 72px); overflow-y: auto; }
  .global-nav a { min-height: 48px; font-size: 14px; }
  .menu-button { width: 44px; height: 44px; place-content: center; }
  .hero-lead { font-size: 14px; }
  .guide-card p,
  .care-card p,
  .test-list p,
  .doctor-message,
  .faq-list p,
  .section-heading > p:not(.eyebrow),
  .heading-row > p { font-size: 14px; }
  .calendar-controls button { min-height: 44px; }
  .mobile-actions { height: calc(66px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); }
  .mobile-actions a { min-height: 58px; font-size: 11px; }
}

@media (max-width: 520px) {
  .hero-copy h1 { font-size: clamp(33px, 10vw, 37px); }
  .hours-table th,
  .hours-table td { font-size: 11px; }
  .calendar-day,
  .calendar-weekday { min-height: 35px; font-size: 12px; }
  .footer-bottom { line-height: 1.7; }
}

@media (min-width: 821px) {
  .hero-grid::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(247,250,248,.98) 0%, rgba(247,250,248,.92) 31%, rgba(247,250,248,.55) 48%, rgba(247,250,248,0) 72%);
    content: "";
    pointer-events: none;
  }
}


/* 2026-07-23 Japanese line-breaking refinement
   Prefer phrase-aware Japanese wrapping and protect important medical terms. */
:where(
  .hero-lead,
  .reservation-copy p,
  .guide-card p,
  .first-visit-intro,
  .step-body p,
  .bring-note,
  .section-heading > p:not(.eyebrow),
  .heading-row > p,
  .care-card p,
  .emergency-note p,
  .test-list h3,
  .test-list p,
  .prevention-grid li,
  .prevention-grid article > p,
  .doctor-message p,
  .doctor-profile dd,
  .access-info,
  .news-content,
  .faq-list summary,
  .faq-list p,
  .contact-details,
  .site-banner-text,
  .highlight-modal-box p
) {
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

@supports (word-break: auto-phrase) {
  :where(
    .hero-lead,
    .reservation-copy p,
    .guide-card p,
    .first-visit-intro,
    .step-body p,
    .bring-note,
    .section-heading > p:not(.eyebrow),
    .heading-row > p,
    .care-card p,
    .emergency-note p,
    .test-list h3,
    .test-list p,
    .prevention-grid li,
    .prevention-grid article > p,
    .doctor-message p,
    .doctor-profile dd,
    .access-info,
    .news-content,
    .faq-list summary,
    .faq-list p,
    .contact-details,
    .site-banner-text,
    .highlight-modal-box p
  ) {
    word-break: auto-phrase;
    overflow-wrap: normal;
  }
}

:where(h1, h2, h3, .guide-card h3, .prevention-title h3) {
  line-break: strict;
  text-wrap: balance;
}

.no-break {
  display: inline;
  white-space: nowrap;
}

.test-list article > div,
.prevention-grid article,
.doctor-copy,
.doctor-message,
.care-card,
.guide-card {
  min-width: 0;
}

.hero-lead,
.test-list p,
.doctor-message p {
  hanging-punctuation: allow-end;
}

@media (max-width: 820px) {
  .hero-lead {
    max-width: 36em;
    line-height: 2;
  }

  .test-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 26px 0;
  }

  .test-list article:first-child {
    padding-top: 0;
  }

  .test-list h3 {
    margin-top: -5px;
    font-size: 21px;
    line-height: 1.55;
  }

  .test-list p {
    font-size: 14px;
    line-height: 1.95;
  }

  .prevention-grid li {
    line-height: 1.8;
  }

  .doctor-message p {
    line-height: 2;
  }
}

@media (max-width: 520px) {
  .hero-lead {
    font-size: 14px;
  }

  .test-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 24px 0;
  }

  .test-list article > span {
    font-size: 12px;
  }

  .test-list h3 {
    font-size: 20px;
  }

  .prevention-grid li,
  .doctor-message p {
    font-size: 14px;
  }
}

/* Narrow-screen profile layout: prevent career entries from widening the page. */
.doctor-profile dd,
.doctor-history ul,
.doctor-history li,
.doctor-history li span {
  min-width: 0;
}

.doctor-profile dd {
  flex: 1 1 auto;
}

.doctor-history li span {
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

@supports (word-break: auto-phrase) {
  .doctor-history li span { word-break: auto-phrase; }
}

@media (max-width: 520px) {
  .doctor-profile div {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .doctor-profile dt {
    min-width: 0;
  }

  .doctor-history li {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 8px;
  }
}
