:root {
  --ink: #3d2a1e;
  --muted: #75695f;
  --line: #e7dbc9;
  --paper: #ffffff;
  --soft: #fbf8f2;
  --mist: #f5ecdd;
  --teal: #6f512e;
  --teal-dark: #3d2a1e;
  --gold: #b8945d;
  --button-gold-bg: #8a6538;
  --rose: #a77d4c;
  --shadow: 0 24px 70px rgba(61, 42, 30, 0.14);
  --header-height: 78px;
  --font-serif: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.8;
  padding-bottom: 116px;
}

h1,
h2,
h3,
.eyebrow,
.brand-text span {
  font-family: var(--font-serif);
}

body::selection {
  background: rgba(184, 148, 93, 0.22);
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(20px, 4vw, 58px);
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(61, 42, 30, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 1px;
  letter-spacing: 0;
}

.brand-text span {
  font-size: 18px;
  line-height: 1.1;
}

.brand-text small {
  font-size: 10px;
  color: currentColor;
  opacity: 0.76;
  line-height: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 32px);
  flex: 1;
  font-family: var(--font-sans);
  font-size: 14px;
}

.header-nav a {
  opacity: 0.9;
}

.header-nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background: url("img/top_main.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(50, 36, 25, 0.84) 0%, rgba(50, 36, 25, 0.56) 45%, rgba(50, 36, 25, 0.12) 100%),
    linear-gradient(0deg, rgba(50, 36, 25, 0.34), rgba(50, 36, 25, 0.08));
}

.hero-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: var(--header-height);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.2;
  font-weight: 500;
}

.hero h1 span {
  display: block;
}

@media (min-width: 921px) {
  .hero h1 {
    max-width: none;
  }

  .hero h1 span {
    white-space: nowrap;
  }
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
}

.campaign-banner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) 0;
  text-align: center;
}

.campaign-banner img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.closing-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin-top: 34px;
}

.closing-actions {
  max-width: 1200px;
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.4;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 34px rgba(61, 42, 30, 0.26);
}

.button-reserve {
  --button-bg: var(--button-gold-bg);
  position: relative;
  isolation: isolate;
  gap: 18px;
  min-width: 0;
  min-height: 86px;
  padding: 20px 36px;
  color: #fff;
  background: var(--button-bg);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(138, 101, 56, 0.24);
  font-size: 18px;
  font-weight: 700;
}

.button-reserve::before,
.button-reserve::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  z-index: -1;
  width: 22px;
  background: var(--button-bg);
  border-radius: 10px;
}

.button-reserve::before {
  left: -10px;
}

.button-reserve::after {
  right: -10px;
}

.button-reserve-line {
  --button-bg: #a9824d;
  background: #a9824d;
}

.button-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.button-label {
  display: grid;
  gap: 3px;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(61, 42, 30, 0.32);
}

.button-label span {
  font-size: 14px;
  line-height: 1.1;
}

.button-label strong {
  font-size: 18px;
  line-height: 1.2;
}

.button-line {
  color: #fff;
  background: #2a9e6d;
}

.button-light {
  color: var(--ink);
  background: #fff;
  border-color: rgba(61, 42, 30, 0.16);
}

.eyecatch-about {
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 0.96), rgba(255, 255, 255, 0.98)),
    url("img/interior_02.jpg") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.eyecatch-about-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 128px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.eyecatch-about h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.35;
}

.eyecatch-about-copy {
  display: grid;
  gap: 18px;
  max-width: 800px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2.05;
}

.eyecatch-about-copy p {
  margin: 0;
}

.eyecatch-about-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.eyecatch-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-label {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 128px) 0;
}

.section-heading {
  max-width: 960px;
  margin-bottom: 38px;
}

.section-heading h2,
.closing h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.32;
  font-weight: 500;
}

.gallery figure,
.staff-card img {
  overflow: hidden;
  margin: 0;
  background: var(--soft);
}

.gallery img,
.staff-card img {
  object-fit: cover;
}

.promise {
  width: 100%;
  max-width: none;
  background: var(--soft);
  padding-left: max(20px, calc((100% - 1200px) / 2));
  padding-right: max(20px, calc((100% - 1200px) / 2));
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.promise-card {
  min-height: 100%;
  padding: 16px 16px clamp(26px, 3vw, 34px);
  background: #fff;
  box-shadow: 0 14px 34px rgba(138, 101, 56, 0.1);
}

.promise-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 22px;
}

.promise-card span {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
}

.promise-card h3,
.staff-card h3,
.flow-list h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}

.promise-card p,
.staff-card p,
.flow-list p,
.faq details p {
  margin: 0;
  color: var(--muted);
}

.space-copy {
  margin-top: 24px;
  padding: 32px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  background: var(--mist);
}

.space-copy p {
  margin: 0;
}

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

.gallery figure {
  aspect-ratio: auto;
}

.gallery img {
  width: 100%;
  height: auto;
}

.global-doctors {
  width: 100%;
  max-width: none;
  background: var(--mist);
  padding-left: max(20px, calc((100% - 1200px) / 2));
  padding-right: max(20px, calc((100% - 1200px) / 2));
}

.global-doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.global-doctors-card {
  margin: 0;
}

.global-doctors-card img {
  display: block;
  width: 100%;
  aspect-ratio: 11 / 7;
  object-fit: cover;
  background: var(--soft);
  box-shadow: 0 14px 34px rgba(138, 101, 56, 0.1);
}

.global-doctors-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.global-doctors-card figcaption::before {
  content: "▲ ";
  color: var(--gold);
}

.global-doctors-copy {
  max-width: 880px;
  margin: 34px auto 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 2.05;
  text-align: center;
}

.global-doctors-copy p {
  margin: 0;
}

.experience {
  background: #fff;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.experience-card {
  margin: 0;
}

.experience-card img {
  display: block;
  width: 100%;
  height: clamp(360px, 34vw, 430px);
  object-fit: contain;
  background: var(--soft);
  box-shadow: 0 14px 34px rgba(138, 101, 56, 0.1);
}

.experience-card-bottom img {
  object-position: center bottom;
}

.experience-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.experience-card figcaption::before {
  content: "▲ ";
  color: var(--gold);
}

.experience-copy {
  max-width: 1080px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2.05;
  text-align: left;
}

.experience-copy p {
  margin: 0;
}

.experience-copy p + p {
  margin-top: 18px;
}

.pc-line-break {
  display: block;
}

.experience-lead {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
}

.staff {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #fbf8f2, #ffffff);
  padding-left: max(20px, calc((100% - 1200px) / 2));
  padding-right: max(20px, calc((100% - 1200px) / 2));
}

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

.staff-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.staff-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.flow {
  background: #fff;
}

.flow-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  background: #fff;
}

.flow-list li {
  min-height: 200px;
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
}

.flow-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  align-content: start;
  align-items: center;
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-family: var(--font-serif);
  font-weight: 700;
}

.flow-list h3 {
  margin: 0;
}

.flow-list p {
  grid-column: 1 / -1;
  margin-top: 18px;
}

.treatment-guide {
  background: #fff;
}

.treatment-guide .section-heading {
  max-width: 1200px;
}

.treatment-guide-copy {
  display: grid;
  gap: 18px;
  max-width: 1040px;
  color: var(--muted);
  font-size: 16px;
  line-height: 2.05;
}

.treatment-guide-copy p {
  margin: 0;
}

.treatment-guide-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 34px;
}

.treatment-guide-block {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: 0 14px 34px rgba(138, 101, 56, 0.08);
}

.treatment-guide-block h3 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}

.treatment-guide-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.treatment-guide-tags span {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 36px;
  padding: 7px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(184, 148, 93, 0.42);
  font-size: 14px;
  line-height: 1.45;
}

.treatment-guide-message {
  margin-top: 32px;
  padding: 26px 30px;
  color: var(--ink);
  background: var(--mist);
  border-left: 2px solid var(--gold);
  font-size: 16px;
  line-height: 2;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq .section-heading {
  max-width: 960px;
  margin: 0 0 38px;
  padding: 0;
  text-align: left;
}

.faq .section-heading .eyebrow {
  margin: 0 0 14px;
  text-align: left;
}

.faq .section-heading h2 {
  margin: 0;
  text-align: left;
}

.faq details {
  border: 1px solid var(--line);
  background: #fff;
}

.faq summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  padding: 0 24px 24px;
}

.director-message {
  position: relative;
}

.director-message-layout {
  position: relative;
  min-height: 520px;
  padding-bottom: 54px;
}

.director-message-photo {
  width: min(66%, 760px);
  margin: 0 0 0 auto;
}

.director-message-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.director-message-box {
  position: absolute;
  top: clamp(54px, 6vw, 88px);
  left: 0;
  z-index: 1;
  width: min(58%, 700px);
  padding: clamp(34px, 4.2vw, 58px);
  color: var(--ink);
  background: #f6e4d2;
  border: 10px solid rgba(255, 255, 255, 0.82);
  outline: 1px solid rgba(184, 148, 93, 0.26);
  box-shadow: 0 18px 42px rgba(61, 42, 30, 0.1);
}

.director-message-lead {
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.55;
  font-weight: 500;
  text-align: center;
}

.director-message-box p:not(.director-message-lead) {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 2.15;
}

.director-signature {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.director-signature span {
  font-family: var(--font-serif);
  font-size: 16px;
}

.director-signature img {
  display: block;
  width: min(220px, 52%);
  height: auto;
}

.access {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - 1200px) / 2));
  padding-right: max(20px, calc((100% - 1200px) / 2));
  background: var(--soft);
}

.access-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 36px;
  align-items: stretch;
}

.address {
  margin: 24px 0;
  color: var(--muted);
}

.access-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.access-list div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.access-list dt {
  color: var(--gold);
  font-weight: 700;
}

.access-list dd {
  margin: 0;
  color: var(--muted);
}

.map-box {
  min-height: 320px;
  overflow: hidden;
  background: var(--mist);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.closing {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.closing-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("img/commitment_04.jpg") center / cover no-repeat;
}

.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(50, 36, 25, 0.66);
}

.closing-inner {
  width: min(1200px, calc(100% - 40px));
  text-align: center;
}

.closing .eyebrow {
  color: #dfca91;
}

.closing p {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.closing-actions {
  justify-content: center;
}

.site-footer {
  padding: 22px 20px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
  text-align: center;
}

.site-footer small {
  font-size: 12px;
  line-height: 1.4;
}

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 16px;
  width: min(940px, calc(100% - 32px));
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
}

.fixed-cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
  background: rgba(245, 236, 221, 0.94);
  border-top: 1px solid rgba(184, 148, 93, 0.22);
  box-shadow: 0 -10px 32px rgba(61, 42, 30, 0.12);
  backdrop-filter: blur(10px);
}

.fixed-cta-item {
  --button-bg: var(--button-gold-bg);
  position: relative;
  isolation: isolate;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  color: #fff;
  background: var(--button-bg);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(138, 101, 56, 0.24);
  text-align: center;
}

.fixed-cta-item::before,
.fixed-cta-item::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  z-index: -1;
  width: 16px;
  background: var(--button-bg);
  border-radius: 9px;
}

.fixed-cta-item::before {
  left: -7px;
}

.fixed-cta-item::after {
  right: -7px;
}

.fixed-cta-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.fixed-cta-label {
  display: grid;
  gap: 3px;
}

.fixed-cta-label span {
  font-size: 13px;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(61, 42, 30, 0.24);
}

.fixed-cta-label strong {
  font-size: 15px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(61, 42, 30, 0.32);
}

.fixed-cta-phone {
  background: var(--button-bg);
}

.fixed-cta-line {
  --button-bg: #a9824d;
  color: #fff;
  background: #a9824d;
}

.fixed-cta-web {
  background: var(--button-bg);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 920px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .header-nav {
    display: none;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-bg {
    background-position: 78% center;
    transform: scale(1.05) rotate(2.5deg);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(50, 36, 25, 0.86), rgba(50, 36, 25, 0.46)),
      linear-gradient(0deg, rgba(50, 36, 25, 0.38), rgba(50, 36, 25, 0.12));
  }

  .hero-inner {
    width: min(100% - 32px, 680px);
  }

  .space-layout,
  .staff-grid,
  .access-panel {
    grid-template-columns: 1fr;
  }

  .promise-grid,
  .flow-list {
    grid-template-columns: 1fr 1fr;
  }

  .global-doctors-grid {
    gap: 18px;
  }

  .experience-grid {
    gap: 18px;
  }

  .director-message-photo {
    width: 72%;
  }

  .director-message-box {
    width: min(64%, 560px);
    padding: 34px;
  }

  .staff-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  body {
    padding-bottom: 96px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
    font-size: 22px;
  }

  .brand-text span {
    font-size: 16px;
  }

  .hero {
    min-height: 66svh;
    align-items: end;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.34;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.72;
  }

  .campaign-banner {
    width: 100%;
    padding: 0;
  }

  .section {
    width: min(100% - 32px, 1200px);
    padding: 70px 0;
  }

  .eyecatch-about-inner {
    width: min(100% - 32px, 1200px);
    padding: 70px 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .global-doctors,
  .experience,
  .staff,
  .access {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .global-doctors > *,
  .experience > *,
  .staff > *,
  .access > * {
    width: min(100% - 32px, 1200px);
    margin-left: auto;
    margin-right: auto;
  }

  .global-doctors-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .global-doctors-copy {
    margin-top: 28px;
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .experience-card img {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .experience-card-bottom img {
    object-position: center center;
  }

  .experience-copy {
    margin-top: 28px;
    font-size: 15px;
    line-height: 1.9;
  }

  .pc-line-break {
    display: inline;
  }

  .experience-lead {
    font-size: 17px;
  }

  .director-message {
    width: 100%;
  }

  .director-message .section-heading {
    width: min(100% - 32px, 1200px);
    margin-left: auto;
    margin-right: auto;
  }

  .director-message-layout {
    min-height: 0;
    padding-bottom: 0;
  }

  .director-message-photo {
    width: 100%;
    margin: 0;
  }

  .director-message-box {
    position: relative;
    top: auto;
    left: auto;
    width: min(100% - 48px, 430px);
    margin: -52px auto 0;
    padding: 28px 24px 30px;
    border-width: 7px;
  }

  .director-message-lead {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.65;
  }

  .director-message-box p:not(.director-message-lead) {
    font-size: 13px;
    line-height: 1.78;
  }

  .director-signature {
    gap: 16px;
    margin-top: 20px;
  }

  .director-signature img {
    width: 150px;
  }

  .promise {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .promise .section-heading,
  .promise-grid {
    width: min(100% - 32px, 1200px);
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .closing h2 {
    font-size: 24px;
  }

  .eyecatch-about h2 {
    font-size: 24px;
  }

  .promise-card h3,
  .staff-card h3,
  .flow-list h3 {
    font-size: 20px;
  }

  .promise-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .promise-card,
  .flow-list li {
    min-height: auto;
  }

  .flow-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 12px;
  }

  .flow-list h3 {
    margin: 0;
  }

  .flow-list span {
    width: 38px;
    height: 38px;
  }

  .flow-list p {
    grid-column: 1 / -1;
    margin-top: 14px;
  }

  .treatment-guide-copy {
    font-size: 15px;
    line-height: 1.9;
  }

  .treatment-guide-columns {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 26px;
  }

  .treatment-guide-block {
    padding: 22px 18px;
  }

  .treatment-guide-block h3 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .treatment-guide-tags {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .treatment-guide-tags span {
    min-height: 32px;
    padding: 6px 11px;
    font-size: 13px;
  }

  .treatment-guide-message {
    margin-top: 26px;
    padding: 22px 18px;
    font-size: 15px;
    line-height: 1.9;
  }

  .space-copy {
    padding: 24px;
  }

  .staff-card {
    padding: 14px;
  }

  .staff-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .access-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-box {
    min-height: 260px;
  }

  .closing {
    min-height: 480px;
  }

  .closing-actions {
    display: none;
  }

  .fixed-cta {
    bottom: 0;
    gap: 10px;
    width: calc(100% - 18px);
    grid-template-columns: repeat(3, 1fr);
    padding: 8px 8px max(8px, env(safe-area-inset-bottom));
  }

  .fixed-cta-item {
    min-height: 66px;
    gap: 6px;
    padding: 10px 6px;
  }

  .fixed-cta-icon {
    width: 20px;
    height: 20px;
  }

  .fixed-cta-item::before,
  .fixed-cta-item::after {
    top: 9px;
    bottom: 9px;
    width: 10px;
  }

  .fixed-cta-item::before {
    left: -4px;
  }

  .fixed-cta-item::after {
    right: -4px;
  }

  .fixed-cta-item span {
    font-size: 12px;
    white-space: nowrap;
  }

  .fixed-cta-item strong {
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 24px;
  }
}

@media (max-width: 330px) {
  .hero h1 {
    font-size: 22px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
