@charset "UTF-8";

/* ==========================================================================
   MV
   ========================================================================== */
.mv {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  margin-top: calc(var(--header-h) * -1);
  color: #fff;
}
.mv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(1.2) saturate(0.95);
}
.mv__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,.15) 0%, rgba(36, 56, 72, .08) 40%, rgba(36, 56, 72, .42) 100%),
    linear-gradient(90deg, rgba(36, 56, 72, .36) 0%, rgba(36, 56, 72, .08) 50%, transparent 70%);
}
.mv__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(28px, 7vw, 100px);
  max-width: 1640px;
  margin: 0 auto;
  padding-top: var(--header-h);
  /* Push the entire MV text+CTA block down by 110px on PC. translateY guarantees
     a real visible shift (padding-top alone is absorbed by justify-content: center).
     The SCROLL marker has been compacted (smaller bottom + shorter line) so the
     shifted CTAs no longer collide with it. */
  transform: translateY(110px);
}
@media (max-width: 768px) {
  .mv__inner { transform: none; }
}
.mv__en {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  font-weight: 300;
  display: block;
  position: relative;
  padding-left: 48px;
}
.mv__en::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 32px; height: 1px;
  background: rgba(255,255,255,.6);
}
.mv__title {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.55;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 18em;
  text-shadow: 0 2px 24px rgba(0,0,0,.32), 0 1px 4px rgba(0,0,0,.18);
}
.mv__sub {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,.85);
  margin-bottom: 8px;
}
.mv__sub--sp,
.mv__br-sp {
  display: none;
}
.mv__loc {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  margin-bottom: 56px;
}
.mv__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.mv__btns.mv__btns--sp {
  display: none;
}

.mv__scroll {
  position: absolute;
  left: 50%; 
  bottom: 3px;
  z-index: 3;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mv__scroll::after {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), transparent);
  animation: scroll-line 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 768px) {
  .mv { min-height: 560px; height: 100svh; max-height: none; }
  .mv__video { object-position: center top; }
  .mv__overlay {
    background:
      linear-gradient(180deg, rgba(9, 24, 44, .08) 0%, rgba(9, 24, 44, .16) 34%, rgba(9, 24, 44, .72) 72%, rgba(9, 24, 44, .9) 100%),
      linear-gradient(90deg, rgba(9, 24, 44, .34) 0%, rgba(9, 24, 44, .12) 55%, transparent 100%);
  }
  .mv__inner {
    justify-content: flex-end;
    padding: var(--header-h) 20px calc(116px + env(safe-area-inset-bottom));
    transform: none;
  }
  .mv__en,
  .mv__sub--small,
  .mv__loc,
  .mv__scroll,
  .mv__sub--pc,
  .mv__btns--pc {
    display: none;
  }
  .mv__br-sp { display: block; }
  .mv__title {
    font-size: clamp(28px, 8.2vw, 30px);
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    max-width: 10em;
  }
  .mv__sub {
    line-height: 1.7;
    letter-spacing: 0.06em;
  }
  .mv__sub--sp {
    display: block;
    font-size: 14px;
    margin-bottom: 22px;
    text-shadow: 0 1px 16px rgba(0,0,0,.38);
  }
  .mv__btns {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .mv__btns.mv__btns--sp {
    display: flex;
    width: 100%;
    max-width: 320px;
  }
  .mv__btns--sp .btn {
    width: 100%;
    min-width: 0;
    padding: 15px 20px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }
}

/* ==========================================================================
   About / Intro section
   - Centered heading + lead, followed by a 3-step patient journey card row.
   - White-dominant background with one subtle paper accent at the top.
   - Designed to read as a quick, reassuring introduction at the top of the
     homepage, replacing the previous heavy two-column photo layout.
   ========================================================================== */
.about-intro {
  padding: clamp(72px, 9vw, 104px) 0 clamp(72px, 9vw, 104px);
  background: #fff;
  position: relative;
}
/* Subtle paper-tone band at the very top so the section softly separates
   from the main visual above without a hard divider line. */
.about-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--c-line-soft);
  opacity: 0.7;
}

.about-intro__inner {
  max-width: var(--maxw);
}

/* --- Heading block --- */
.about-intro__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.about-intro__head .en-label {
  display: inline-block;
  margin-bottom: 18px;
}
.about-intro__title {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--c-text);
  margin: 0 0 24px;
}
.about-intro__lead {
  font-family: var(--font-jp-serif);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
  margin: 0 0 16px;
}
.about-intro__sub {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--c-text-mute, #888);
  margin: 0;
}

/* --- 3-step cards --- */
.about-intro__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 28px);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.about-intro__step {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line-soft);
  border-radius: 6px;
  padding: clamp(28px, 3.4vw, 40px) clamp(24px, 2.6vw, 32px) clamp(28px, 3vw, 36px);
  box-shadow: 0 4px 16px rgba(78, 143, 165, 0.05);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.about-intro__step-num {
  display: block;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 14px;
}
.about-intro__step-num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: var(--c-accent);
  opacity: 0.6;
}
.about-intro__step-title {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--c-text);
  margin: 0 0 12px;
}
.about-intro__step-text {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--c-text-soft);
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-intro__steps {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 16px;
  }
  .about-intro__step {
    padding: 26px 24px;
  }
  .about-intro__step-num {
    font-size: 24px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .about-intro {
    padding: clamp(56px, 12vw, 80px) 0;
  }
  .about-intro__title {
    font-size: 22px;
  }
  .about-intro__lead {
    font-size: 14px;
    text-align: left;
  }
  .about-intro__sub {
    text-align: left;
  }
}

/* Respect the existing large-font-size mode (文字サイズ "大") */
html.is-fontsize-large .about-intro__lead,
html.is-fontsize-large .about-intro__step-text {
  font-size: 15px;
  line-height: 2.1;
}
html.is-fontsize-large .about-intro__title {
  font-size: clamp(26px, 3.6vw, 38px);
}

/* ==========================================================================
   Self check
   ========================================================================== */
.selfcheck {
  background: var(--c-bg-paper);
  position: relative;
}
.selfcheck__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  margin-bottom: 56px;
  border-radius: 4px;
  overflow: hidden;
}
.selfcheck__item {
  background: #fff;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.selfcheck__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-bg-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
}
.selfcheck__icon svg { width: 20px; height: 20px; }
.selfcheck__cta {
  text-align: center;
  background: #fff;
  border: 1px solid var(--c-line-soft);
  padding: clamp(40px, 5vw, 56px);
  border-radius: 4px;
}
.selfcheck__cta-text {
  font-family: var(--font-jp-serif);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  line-height: 1.8;
}
.selfcheck__cta-note { font-size: 13px; color: var(--c-text-soft); margin-bottom: 32px; line-height: 2; }
.selfcheck__cta-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   Feature
   ========================================================================== */
.feature { background: #fff; }
.feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.feature__card {
  position: relative;
}
.feature__num {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--c-gold);
  margin-bottom: 14px;
  display: block;
}
.feature__img {
  aspect-ratio: 16/10;
  margin-bottom: 24px;
}
.feature__title {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: 14px;
}
.feature__text {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text-soft);
}
@media (max-width: 768px) {
  .feature__list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   About cataract
   ========================================================================== */
.about-cat { background: var(--c-bg-paper); }
.about-cat__points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.about-cat__point {
  background: #fff;
  padding: 32px 28px;
  border: 1px solid var(--c-line-soft);
  border-radius: 4px;
}
.about-cat__point h3 {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--c-accent);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line-soft);
  line-height: 1.6;
}
.about-cat__point p {
  font-size: 13px;
  line-height: 2;
  color: var(--c-text-soft);
}
.about-cat__caution {
  margin-top: 36px;
  padding: 28px 32px;
  background: rgba(179, 74, 59, .04);
  border: 1px solid rgba(179, 74, 59, .15);
  border-radius: 4px;
  font-size: 13px;
  line-height: 2;
  color: var(--c-text-soft);
}
.about-cat__caution strong {
  display: block;
  color: var(--c-warn);
  font-family: var(--font-jp-serif);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   Lens
   ========================================================================== */
.lens { background: #fff; }
.lens__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.lens__card {
  border: 1px solid var(--c-line-soft);
  background: var(--c-bg);
  padding: clamp(28px, 3.4vw, 40px) clamp(32px, 4vw, 48px) clamp(32px, 4vw, 48px);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.lens__type {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lens__title {
  font-family: var(--font-jp-serif);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  line-height: 1.7;
}
.lens__text {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text-soft);
  margin-bottom: 24px;
}
.lens__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line-soft);
}
.lens__features li {
  font-size: 13px;
  color: var(--c-text);
  position: relative;
  padding-left: 20px;
  line-height: 1.8;
}
.lens__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 10px; height: 1px;
  background: var(--c-accent);
}
.lens__more {
  text-align: center;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .lens__list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Flow timeline
   ========================================================================== */
.flow { background: var(--c-bg-paper); }
.flow__list {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.flow__list::before {
  content: "";
  position: absolute;
  left: 24px; top: 12px; bottom: 12px;
  width: 1px;
  background: var(--c-line);
}
.flow__step {
  position: relative;
  padding-left: 80px;
  padding-bottom: 40px;
}
.flow__step:last-child { padding-bottom: 0; }
.flow__num {
  position: absolute;
  left: 0; top: 0;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  font-family: var(--font-en);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.flow__step h3 {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  line-height: 1.6;
}
.flow__step p {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text-soft);
}
@media (max-width: 600px) {
  .flow__list::before { left: 18px; }
  .flow__step { padding-left: 60px; padding-bottom: 32px; }
  .flow__num { width: 38px; height: 38px; font-size: 12px; }
}

/* ==========================================================================
   Day cautions
   ========================================================================== */
.dayc { background: #fff; }
.dayc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.dayc__card {
  background: var(--c-bg);
  border: 1px solid var(--c-line-soft);
  padding: 28px;
  border-radius: 4px;
}
.dayc__icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-paper);
  border-radius: 50%;
  color: var(--c-accent);
  margin-bottom: 16px;
}
.dayc__icon svg { width: 18px; height: 18px; }
.dayc__title {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.dayc__text { font-size: 13px; line-height: 1.95; color: var(--c-text-soft); }

/* ==========================================================================
   Family
   ========================================================================== */
.family {
  background: var(--c-bg-deep);
  color: var(--c-text);
  position: relative;
  overflow: hidden;
}
.family::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at 80% 20%, rgba(127, 183, 201, .15), transparent 50%);
  pointer-events: none;
}
.family__inner { position: relative; }
.family .section-head__title { color: var(--c-text); }
.family .section-head__lead { color: var(--c-text-soft); }
.family .en-label { color: var(--c-accent); }
.family__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.family__item {
  padding: 28px 26px 30px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: var(--c-bg-card);
  display: flex;
  flex-direction: column;
}
.family__item h3 {
  font-family: var(--font-jp-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--c-text);
  text-align: center;
}
.family__item p {
  font-size: 13px;
  line-height: 1.95;
  color: var(--c-text-soft);
  margin-top: 2px;
}
.family__cta { text-align: center; }
/* Override page.css's near-invisible white-on-white hover for this section
   (family bg is pale #EEF6F8, so we need a real color change on hover). */
.family__cta .btn--white:hover {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}

/* ==========================================================================
   Access
   ========================================================================== */
.access-sec { background: var(--c-bg-paper); }
.access-sec__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: stretch;
}
.access-sec__map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  background: #eee;
}
.access-sec__info {
  background: #fff;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--c-line-soft);
}
.access-sec__info dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  row-gap: 18px;
  column-gap: 24px;
  margin-bottom: 32px;
}
.access-sec__info dt {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-text-mute);
  text-transform: uppercase;
  padding-top: 4px;
}
.access-sec__info dd {
  font-size: 14px;
  line-height: 1.85;
  color: var(--c-text);
}
.access-sec__info dd a { color: var(--c-accent); font-family: var(--font-en); font-size: 18px; letter-spacing: 0.04em; }
.access-sec__tel-note {
  font-size: 12px;
  color: var(--c-text-mute);
  letter-spacing: .06em;
}
@media (max-width: 768px) {
  .access-sec__grid { grid-template-columns: 1fr; }
  .access-sec__map { min-height: 320px; }
  .access-sec__info dl { grid-template-columns: 80px 1fr; }
}

/* ==========================================================================
   Two surgeries
   ========================================================================== */
.two-surg { background: #fff; }
.two-surg--paper { background: var(--c-bg-paper); }
.two-surg__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}
.two-surg__card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-line-soft);
  border-radius: 4px;
  background: #fff;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.two-surg__card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.two-surg__card-visual {
  --illust-scale: 1;
  --illust-tx: 0%;
  --illust-ty: 0%;
  height: 240px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FA 100%);
  border-bottom: 1px solid var(--c-line-soft);
  overflow: hidden;
}
.two-surg__card-visual img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  transform: translate(var(--illust-tx), var(--illust-ty)) scale(var(--illust-scale));
  transition: transform .8s var(--ease);
  will-change: transform;
}
.two-surg__card:hover .two-surg__card-visual img {
  transform: translate(var(--illust-tx), var(--illust-ty)) scale(calc(var(--illust-scale) * 1.03));
}
/* Per-card tuning. The cataract diagram has lots of internal whitespace
   (content fills ~50% of frame), so scale it up generously. The
   oculoplastic illustration is already content-dense, so only modest
   scale + tighter padding gives the lift. */
.two-surg__card--cataract .two-surg__card-visual {
  --illust-scale: 1.55;
  padding: 18px 24px;
}
.two-surg__card--oculoplastic .two-surg__card-visual {
  --illust-scale: 1.18;
  --illust-tx: 0%;
  padding: 14px 20px;
}
.two-surg__card-body {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.two-surg__card-en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.two-surg__card-title {
  font-family: var(--font-jp-serif);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  line-height: 1.6;
}
.two-surg__card-text {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text-soft);
  margin-bottom: 24px;
}
.two-surg__card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--c-accent);
  margin-top: auto;
}
.two-surg__card-link::after {
  content: "";
  width: 18px; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.two-surg__card:hover .two-surg__card-link::after { width: 28px; }
@media (max-width: 768px) {
  .two-surg__list { grid-template-columns: 1fr; }
  .two-surg__card-visual {
    height: 200px;
    padding: 22px 24px;
  }
}
@media (max-width: 540px) {
  .two-surg__card-visual {
    height: 180px;
    padding: 20px 20px;
  }
}

.top-section-cta {
  text-align: center;
  margin-top: 48px;
}
.top-faq { background: #fff; }

/* ==========================================================================
   Doctor section
   ========================================================================== */
.doctor-sec {
  background: var(--c-bg-paper);
  position: relative;
}
.doctor-sec__list {
  margin-top: 56px;
}
.doctor-sec__card {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  background: var(--c-bg-card);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-line-soft);
}
.doctor-sec__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.doctor-sec__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doctor-sec__body {
  display: flex;
  flex-direction: column;
}
.doctor-sec__role {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 400;
  position: relative;
  padding-left: 38px;
}
.doctor-sec__role::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--c-gold);
}
.doctor-sec__name {
  font-family: var(--font-jp-serif);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--c-text);
}
.doctor-sec__name-en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-text-mute);
  font-weight: 300;
  margin-top: 6px;
}
.doctor-sec__intro {
  font-size: 15px;
  line-height: 2;
  color: var(--c-text-soft);
  margin-bottom: 32px;
}
.doctor-sec__msg {
  background: var(--c-bg-paper);
  padding: 24px 28px;
  border-left: 2px solid var(--c-gold);
}
.doctor-sec__msg-label {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 400;
}
.doctor-sec__msg p {
  font-family: var(--font-jp-serif);
  font-size: 15px;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .doctor-sec__card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .doctor-sec__photo {
    max-width: 252px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }
  .doctor-sec__photo img {
    object-position: center top;
    transform-origin: center top;
  }
}
@media (max-width: 540px) {
  .doctor-sec__name { font-size: 26px; }
  .doctor-sec__intro { font-size: 14px; }
}

/* ==========================================================================
   Director message (top page summary block)
   ========================================================================== */
.director-msg {
  background: var(--c-bg-paper);
}
.director-msg__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.director-msg__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-bg-card);
  box-shadow: var(--shadow-card);
}
.director-msg__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.director-msg__photo-cap {
  position: absolute;
  left: 0; bottom: 0;
  background: rgba(13, 33, 56, 0.88);
  color: #fff;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.director-msg__photo-cap-role {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.director-msg__photo-cap-name {
  font-family: var(--font-jp-serif);
  font-size: 18px;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.director-msg__body {
  display: flex;
  flex-direction: column;
}
.director-msg__title {
  font-family: var(--font-jp-serif);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--c-text);
  margin: 16px 0 14px;
}
.director-msg__sub {
  font-family: var(--font-jp-serif);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.85;
  color: var(--c-gold);
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--c-line);
}
.director-msg__text p {
  font-size: 15px;
  line-height: 2.05;
  color: var(--c-text-soft);
  letter-spacing: 0.04em;
  margin-bottom: 1.2em;
}
.director-msg__text p:last-child { margin-bottom: 0; }
.director-msg__sign {
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.director-msg__sign-role {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-text-mute);
}
.director-msg__sign-name {
  font-family: var(--font-jp-serif);
  font-size: 22px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--c-text);
}
.director-msg__cta {
  margin-top: 32px;
}
@media (max-width: 900px) {
  .director-msg__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .director-msg__photo {
    max-width: 266px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }
}
@media (max-width: 540px) {
  .director-msg__photo-cap { padding: 12px 16px; }
  .director-msg__photo-cap-name { font-size: 16px; }
  .director-msg__sign-name { font-size: 19px; }
}

/* ==========================================================================
   Card illustrations — Lens & Family cards
   Quiet visual aids placed at the top of each card. Sized small enough not
   to compete with the text; framed with a faint blue-grey wash so the
   illustrations' white backgrounds blend with the surrounding card.
   ========================================================================== */

/* --- Lens cards (Monofocal / Multifocal) ---------------------------------- */
.lens__illust {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -6px 0 28px;
  padding: 8px 12px;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.55) 100%);
  border: 1px solid var(--c-line-soft);
  border-radius: 6px;
  overflow: hidden;
}
.lens__illust img {
  display: block;
  max-width: 92%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* --- Family / care cards (4-up) ------------------------------------------- */
.family__illust {
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 2px;
  background: linear-gradient(180deg, #FBFDFD 0%, #F4F8FA 100%);
  border-radius: 4px;
  overflow: hidden;
}
.family__illust img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  will-change: transform;
}
/* Card-specific tuning — each illustration has been chosen to match
   the card it's in. The schedule image has been pre-padded to roughly
   match the container's aspect ratio, so it renders to full size without
   needing a transform. The others use modest scaling to lift them
   visually within the container.                                          */
.family__item:nth-child(1) .family__illust img { /* accompany (square)        */
  transform: scale(1.12) translateY(2%);
}
.family__item:nth-child(2) .family__illust img { /* eyedrops (wide)           */
  transform: scale(1.26) translateX(-2%);
}
.family__item:nth-child(3) .family__illust img { /* lifestyle 2×2 icons       */
  transform: scale(1.06);
}
.family__item:nth-child(4) .family__illust { /* schedule: blend bg with card to hide empty stripes */
  background: transparent;
}
.family__item:nth-child(4) .family__illust img { /* follow-up timeline        */
  transform: scale(1.10) translateY(2%);
}

@media (min-width: 769px) {
  .family__list {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
  }
  .family__item { height: 100%; }
}

@media (max-width: 768px) {
  .lens__illust {
    height: 160px;
    margin-bottom: 22px;
  }
  .family__illust {
    height: 180px;
    margin-bottom: 20px;
  }
  /* On mobile cards are wider — keep the scale generous so illustrations
     don't shrink visually when text wraps short. */
  .family__item:nth-child(1) .family__illust img { transform: scale(1.10) translateY(2%); }
  .family__item:nth-child(2) .family__illust img { transform: scale(1.22) translateX(-2%); }
  .family__item:nth-child(3) .family__illust img { transform: scale(1.05); }
  .family__item:nth-child(4) .family__illust img { transform: scale(1.10) translateY(2%); }
}
@media (max-width: 540px) {
  .lens__illust { height: 150px; }
  .family__illust { height: 160px; }
}
