/* ============================================================
   ルナージュ美容クリニック LP（デモ）— 販売LP（縦一直線・ナビなし）
   月モチーフ：ネイビー × シャンパンゴールド × オフホワイト × くすみピンク
============================================================ */

:root {
  --navy:        #1b2140;
  --navy-deep:   #12162e;
  --navy-soft:   #2a3159;
  --gold:        #c7a86a;
  --gold-light:  #ddc79a;
  --pink:        #e5c3c7;
  --pink-soft:   #f4e6e7;
  --cream:       #faf6f0;
  --white:       #ffffff;
  --ink:         #2c2c33;
  --ink-soft:    #6a6a72;

  --serif-en: 'Playfair Display', serif;
  --script:   'Cormorant Garamond', serif;
  --serif-jp: 'Noto Serif JP', serif;
  --sans-jp:  'Noto Sans JP', sans-serif;

  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans-jp);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.9;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.sp-only { display: none; }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-jp);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 18px 40px;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s;
  text-align: center;
  line-height: 1.5;
}
.btn__sub { font-size: 0.72rem; letter-spacing: 0.14em; opacity: 0.85; margin-bottom: 2px; }
.btn--line {
  background: linear-gradient(135deg, #06c755, #04a648);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(6, 199, 85, 0.6);
}
.btn--line:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -12px rgba(6, 199, 85, 0.7); }
.btn--ghost {
  border: 1px solid var(--gold);
  color: var(--navy);
  background: transparent;
}
.btn--ghost:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.btn--lg { padding: 22px 54px; font-size: 1.08rem; }

/* ===== CTA block（セクション間に繰り返し配置） ===== */
.cta-block { text-align: center; margin-top: 56px; }

/* ============================================================
   Header（ナビなし・ロゴ＋CTAのみ）
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.4s, background 0.4s;
}
.header.scrolled { box-shadow: 0 6px 24px -14px rgba(27, 33, 64, 0.4); background: rgba(250, 246, 240, 0.96); }
.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { font-size: 1.5rem; color: var(--gold); line-height: 1; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__en { font-family: var(--serif-en); font-size: 1.05rem; letter-spacing: 0.2em; color: var(--navy); }
.brand__jp { font-family: var(--serif-jp); font-size: 0.62rem; letter-spacing: 0.16em; color: var(--ink-soft); }

.header__cta {
  font-family: var(--serif-jp);
  font-size: 0.86rem;
  background: linear-gradient(135deg, #06c755, #04a648);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -10px rgba(6, 199, 85, 0.6);
  white-space: nowrap;
}

/* ============================================================
   Hero
============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 70px;
  background:
    linear-gradient(165deg, rgba(18, 22, 46, 0.86) 0%, rgba(27, 33, 64, 0.72) 45%, rgba(27, 33, 64, 0.84) 100%),
    url('images/01_hero.jpg') center / cover no-repeat var(--navy-deep);
  color: var(--cream);
  overflow: hidden;
}
.hero__bg .hero__moon { display: none; } /* 実写背景に月があるためCSS月は非表示 */
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__moon {
  position: absolute;
  top: 10%; right: 10%;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fdf6e6, #e9d5a8 55%, #c7a86a 100%);
  box-shadow: 0 0 90px 20px rgba(221, 199, 154, 0.35);
  opacity: 0.9;
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.glow--1 { width: 380px; height: 380px; background: rgba(199, 168, 106, 0.35); bottom: -120px; left: -100px; }
.glow--2 { width: 320px; height: 320px; background: rgba(229, 195, 199, 0.3); top: 30%; left: 30%; }

.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero__badge {
  display: inline-block;
  font-family: var(--serif-jp);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  border: 1px solid rgba(221, 199, 154, 0.5);
  border-radius: 999px;
  padding: 7px 22px;
  margin-bottom: 26px;
}
.hero__title {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.hero__title b { color: var(--gold-light); font-size: 1.15em; }
.hero__title-price {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--serif-en);
  font-size: clamp(2.6rem, 8vw, 4rem);
  color: var(--gold-light);
  letter-spacing: 0.02em;
}
.hero__title-price small { font-family: var(--serif-jp); font-size: 0.4em; margin-left: 2px; }
.hero__lead {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: clamp(0.88rem, 2.2vw, 1rem);
  margin: 26px auto 36px;
  color: rgba(250, 246, 240, 0.88);
  max-width: 520px;
}
.hero__cta { display: inline-flex; }
.hero__note { margin-top: 26px; font-size: 0.66rem; color: rgba(250, 246, 240, 0.5); letter-spacing: 0.04em; }

/* ============================================================
   Section head（共通）
============================================================ */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head__en {
  font-family: var(--script); font-style: italic; font-size: 1.4rem;
  color: var(--gold); letter-spacing: 0.08em; margin-bottom: 6px;
}
.section-head__jp {
  font-family: var(--serif-jp); font-weight: 500;
  font-size: clamp(1.4rem, 3.8vw, 2rem); color: var(--navy); letter-spacing: 0.05em; line-height: 1.55;
}

/* ============================================================
   Strip
============================================================ */
.strip { background: var(--navy); padding: 0; }
.strip__list {
  max-width: var(--max); margin: 0 auto; list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.strip__item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 34px 16px; text-align: center; color: var(--cream);
  border-right: 1px solid rgba(199, 168, 106, 0.22);
}
.strip__item:last-child { border-right: none; }
.strip__icon { font-size: 1.6rem; color: var(--gold-light); }
.strip__label { font-family: var(--serif-jp); font-size: 0.82rem; line-height: 1.6; letter-spacing: 0.03em; }

/* ============================================================
   Worry（あるある共感）
============================================================ */
.worry { padding: 90px 24px 70px; background: var(--cream); }
.check-list {
  max-width: 640px; margin: 0 auto; list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.check-list li {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: 14px; padding: 20px 26px;
  font-family: var(--serif-jp); font-size: 0.98rem; color: var(--ink);
  box-shadow: 0 16px 32px -26px rgba(27, 33, 64, 0.4);
  border: 1px solid rgba(199, 168, 106, 0.15);
}
.check-list__mark {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--pink-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-en); font-size: 0.9rem;
}
.worry__bridge {
  text-align: center; margin-top: 40px;
  font-family: var(--serif-jp); font-size: clamp(1rem, 2.8vw, 1.2rem);
  color: var(--navy); letter-spacing: 0.06em;
}
.worry__bridge strong { color: var(--gold); }

/* ============================================================
   Reason
============================================================ */
.reason { padding: 90px 24px 70px; background: linear-gradient(180deg, var(--pink-soft), var(--cream)); }
.reason__list { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.reason__item {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center;
  background: var(--white); border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 60px -44px rgba(27, 33, 64, 0.5);
}
.reason__item:nth-child(even) { grid-template-columns: 1.1fr 0.9fr; }
.reason__item:nth-child(even) .reason__img { order: 2; }
.reason__item:nth-child(even) .reason__body { order: 1; }
.reason__img {
  min-height: 240px; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.reason__img img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.reason__img--1 { background: linear-gradient(135deg, #2a3159, #1b2140); }
.reason__img--2 { background: linear-gradient(135deg, #c7a86a, #a98a4e); }
.reason__img--3 { background: linear-gradient(135deg, #e5c3c7, #cf9aa0); }
.reason__img--4 { background: linear-gradient(135deg, #3a4270, #232a4d); }
.reason__body { padding: 36px 40px 36px 4px; }
.reason__item:nth-child(even) .reason__body { padding: 36px 4px 36px 40px; }
.reason__no { font-family: var(--serif-en); font-style: italic; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 10px; }
.reason__title {
  font-family: var(--serif-jp); font-weight: 600; font-size: clamp(1.15rem, 2.8vw, 1.4rem);
  color: var(--navy); line-height: 1.55; margin-bottom: 14px;
}
.reason__desc { font-size: 0.9rem; color: var(--ink-soft); font-family: var(--serif-jp); }

/* ============================================================
   Flow（3ステップ）
============================================================ */
.flow { padding: 90px 24px 80px; background: var(--navy); color: var(--cream); }
.flow .section-head__jp { color: var(--cream); }
.flow__list {
  max-width: var(--max); margin: 0 auto; list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  counter-reset: none;
}
.flow__item {
  text-align: center; padding: 36px 24px; border-radius: 18px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(199,168,106,0.25);
}
.flow__num {
  display: inline-flex; width: 52px; height: 52px; border-radius: 50%;
  align-items: center; justify-content: center; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--gold), #a98a4e); color: #fff;
  font-family: var(--serif-en); font-size: 1.1rem;
}
.flow__item h3 { font-family: var(--serif-jp); font-weight: 600; font-size: 1.05rem; margin-bottom: 10px; color: var(--gold-light); }
.flow__item p { font-size: 0.86rem; color: rgba(250,246,240,0.78); line-height: 1.8; }

/* ============================================================
   Offer（開院記念オファー＝料金・広告色を強く）
============================================================ */
.offer { padding: 90px 24px 80px; background: var(--cream); }
.offer__inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.offer__label { font-family: var(--serif-en); letter-spacing: 0.26em; color: var(--gold); font-size: 0.82rem; margin-bottom: 8px; }
.offer__title { font-family: var(--serif-jp); font-weight: 600; font-size: clamp(1.6rem, 4.2vw, 2.2rem); color: var(--navy); letter-spacing: 0.05em; }
.offer__period {
  font-family: var(--serif-jp); color: var(--navy); background: var(--pink-soft);
  display: inline-block; padding: 6px 24px; border-radius: 999px; font-size: 0.84rem; margin: 16px 0 44px;
}
.offer__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch;
  margin-bottom: 40px;
}
.offer__card {
  background: var(--white); border-radius: 20px; padding: 36px 26px;
  text-align: center; border: 1px solid rgba(199, 168, 106, 0.22);
  box-shadow: 0 24px 48px -36px rgba(27, 33, 64, 0.4);
  position: relative; display: flex; flex-direction: column;
}
.offer__card--feature { border: 2px solid var(--gold); transform: translateY(-8px); box-shadow: 0 34px 60px -34px rgba(199, 168, 106, 0.6); }
.offer__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #a98a4e); color: #fff;
  font-family: var(--serif-jp); font-size: 0.74rem; letter-spacing: 0.08em;
  padding: 6px 20px; border-radius: 999px; white-space: nowrap;
}
.offer__cat {
  display: inline-block; margin: 0 auto 12px; font-size: 0.72rem; letter-spacing: 0.12em;
  color: var(--navy); background: var(--pink-soft); padding: 4px 14px; border-radius: 999px;
  font-family: var(--serif-jp);
}
.offer__name { font-family: var(--serif-jp); font-weight: 600; font-size: 1.05rem; color: var(--navy); line-height: 1.5; margin-bottom: 18px; }
.offer__normal { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 4px; }
.offer__normal span { text-decoration: line-through; }
.offer__price {
  margin-top: auto; padding-top: 16px; border-top: 1px dashed rgba(199, 168, 106, 0.5);
  font-family: var(--serif-en); font-size: 2.2rem; color: var(--navy); line-height: 1;
}
.offer__yen { font-family: var(--serif-jp); font-size: 1rem; margin-left: 2px; }
.offer__cta { display: inline-flex; margin-bottom: 30px; }
.offer__risk {
  max-width: 860px; margin: 0 auto 14px; background: rgba(255,255,255,0.6);
  border: 1px solid rgba(199, 168, 106, 0.25); border-radius: 14px; padding: 18px 24px;
  text-align: left;
}
.offer__risk p { font-size: 0.74rem; color: var(--ink-soft); line-height: 1.85; }
.offer__caution { font-size: 0.72rem; color: var(--ink-soft); }

/* ============================================================
   Doctor（コンパクト）
============================================================ */
.doctor { padding: 80px 24px; background: var(--navy-soft); color: var(--cream); }
.doctor__inner {
  max-width: 880px; margin: 0 auto;
  display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 44px; align-items: center;
}
.doctor__photo {
  aspect-ratio: 3 / 4; border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, #f4e6e7, #e5c3c7 60%, #c7a86a);
  box-shadow: 0 40px 70px -40px rgba(0,0,0,0.6);
}
.doctor__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.doctor__name { font-family: var(--serif-jp); font-size: 1.1rem; color: var(--gold-light); margin-bottom: 16px; }
.doctor__role { font-size: 0.8rem; color: rgba(250,246,240,0.6); margin-left: 10px; letter-spacing: 0.06em; }
.doctor__message { font-family: var(--serif-jp); font-weight: 300; font-size: 0.92rem; line-height: 2; color: rgba(250,246,240,0.9); }

/* ============================================================
   Menu
============================================================ */
.menu { padding: 90px 24px 70px; background: var(--cream); }
.menu__cols { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.menu__col-title {
  font-family: var(--serif-jp); font-weight: 600; font-size: 1.1rem; color: var(--navy);
  text-align: center; padding-bottom: 12px; margin-bottom: 6px;
  border-bottom: 2px solid var(--gold-light); letter-spacing: 0.06em;
}
.menu__items { list-style: none; }
.menu__items li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 14px 4px; border-bottom: 1px dotted rgba(106,106,114,0.3);
  font-family: var(--serif-jp); font-size: 0.92rem; color: var(--ink);
}
.menu__from { color: var(--gold); font-family: var(--serif-en); font-size: 0.88rem; white-space: nowrap; }
.menu__note { text-align: center; margin-top: 26px; font-size: 0.74rem; color: var(--ink-soft); }

/* ============================================================
   Anshin（安心の担保）
============================================================ */
.anshin { padding: 80px 24px; background: linear-gradient(180deg, var(--pink-soft), var(--cream)); }
.anshin__list {
  max-width: var(--max); margin: 0 auto; list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.anshin__item {
  text-align: center; background: var(--white); border-radius: 18px; padding: 32px 22px;
  box-shadow: 0 20px 40px -32px rgba(27, 33, 64, 0.4);
}
.anshin__icon { display: block; font-size: 1.8rem; color: var(--gold); margin-bottom: 14px; }
.anshin__item h3 { font-family: var(--serif-jp); font-weight: 600; font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.anshin__item p { font-size: 0.84rem; color: var(--ink-soft); }

/* ============================================================
   FAQ
============================================================ */
.faq { padding: 90px 24px 70px; background: var(--cream); }
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--white); border-radius: 14px; padding: 4px 26px;
  border: 1px solid rgba(199,168,106,0.2); box-shadow: 0 18px 36px -30px rgba(27,33,64,0.3);
}
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 30px 20px 32px; position: relative;
  font-family: var(--serif-jp); font-weight: 500; color: var(--navy); font-size: 0.96rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before {
  content: 'Q'; position: absolute; left: 0; top: 18px;
  font-family: var(--serif-en); color: var(--gold); font-size: 1.1rem;
}
.faq__item summary::after {
  content: '+'; position: absolute; right: 4px; top: 16px;
  font-size: 1.4rem; color: var(--gold); transition: transform 0.35s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 30px 22px 32px; font-size: 0.88rem; color: var(--ink-soft);
  font-family: var(--serif-jp); line-height: 1.9;
}

/* ============================================================
   Contact（クロージング）
============================================================ */
.contact { position: relative; padding: 100px 24px 90px; background: linear-gradient(160deg, var(--navy-deep), var(--navy-soft)); color: var(--cream); text-align: center; overflow: hidden; }
.contact__bg { position: absolute; inset: 0; opacity: 0.5; }
.contact__bg .hero__moon { top: -60px; right: -40px; width: 260px; height: 260px; }
.contact__inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.contact__en { font-family: var(--script); font-style: italic; font-size: 1.5rem; color: var(--gold-light); margin-bottom: 8px; }
.contact__title { font-family: var(--serif-jp); font-weight: 500; font-size: clamp(1.4rem, 4vw, 2rem); letter-spacing: 0.04em; line-height: 1.6; }
.contact__lead { font-family: var(--serif-jp); font-weight: 300; margin: 22px 0 36px; color: rgba(250,246,240,0.88); font-size: 0.96rem; }
.contact__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact__caution { margin-top: 22px; font-size: 0.7rem; color: rgba(250,246,240,0.5); }
.contact__access {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(199,168,106,0.25);
  display: flex; flex-direction: column; gap: 10px; text-align: left;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.contact__access div { display: flex; gap: 14px; font-size: 0.82rem; }
.contact__access dt { flex-shrink: 0; width: 76px; color: var(--gold-light); font-family: var(--serif-jp); }
.contact__access dd { color: rgba(250,246,240,0.8); }

/* ============================================================
   Footer（最小限）
============================================================ */
.footer { background: var(--navy-deep); color: rgba(250,246,240,0.7); padding: 50px 24px 36px; }
.footer__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.footer__legal { font-size: 0.72rem; line-height: 1.9; margin-bottom: 16px; }
.footer__demo { font-size: 0.72rem; line-height: 1.9; color: rgba(229,195,199,0.85); background: rgba(255,255,255,0.05); padding: 14px 18px; border-radius: 12px; margin-bottom: 22px; }
.footer__demo strong { color: var(--gold-light); }
.footer__copy { font-family: var(--serif-en); font-size: 0.68rem; letter-spacing: 0.1em; color: rgba(250,246,240,0.4); }

/* ============================================================
   Sticky CTA
============================================================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: 10px; padding: 10px 14px;
  background: rgba(18, 22, 46, 0.94); backdrop-filter: blur(8px);
  transform: translateY(120%); transition: transform 0.5s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta__line {
  flex: 1; text-align: center; padding: 15px; border-radius: 12px;
  background: linear-gradient(135deg, #06c755, #04a648); color: #fff;
  font-family: var(--serif-jp); font-weight: 500; font-size: 0.98rem;
  box-shadow: 0 8px 20px -10px rgba(6,199,85,0.7);
}
.sticky-cta__tel {
  width: 54px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--gold); color: #fff; font-size: 1.3rem;
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 900px) {
  .strip__list { grid-template-columns: repeat(2, 1fr); }
  .strip__item:nth-child(2) { border-right: none; }
  .strip__item:nth-child(1), .strip__item:nth-child(2) { border-bottom: 1px solid rgba(199,168,106,0.22); }

  .reason__item, .reason__item:nth-child(even) { grid-template-columns: 1fr; }
  .reason__item:nth-child(even) .reason__img { order: 0; }
  .reason__img { min-height: 200px; }
  .reason__body, .reason__item:nth-child(even) .reason__body { padding: 32px 28px; }

  .flow__list { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .offer__cards { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .offer__card--feature { transform: none; }
  .doctor__inner { grid-template-columns: 1fr; gap: 32px; }
  .doctor__photo { max-width: 260px; margin: 0 auto; width: 100%; }
  .anshin__list { grid-template-columns: 1fr; }

  .sticky-cta { display: flex; }
}

@media (max-width: 600px) {
  .sp-only { display: inline; }
  .hero { padding: 108px 20px 60px; }
  .hero__moon { width: 120px; height: 120px; top: 2%; right: -4%; opacity: 0.8; }
  .hero__badge {
    background: rgba(18, 22, 46, 0.55);
    backdrop-filter: blur(2px);
    position: relative; z-index: 3;
  }
  .hero__cta .btn { width: 100%; }
  .btn--lg { padding-left: 20px; padding-right: 20px; font-size: 1.02rem; }
  .hero__title { font-size: 1.42rem; letter-spacing: 0.02em; }
  .hero__title-price { font-size: 2.5rem; }
  .hero__badge { font-size: 0.68rem; letter-spacing: 0.12em; }
  .header__cta { font-size: 0.76rem; padding: 8px 16px; }
  .brand__en { font-size: 0.92rem; }
  .menu__cols { grid-template-columns: 1fr; gap: 26px; }
  .worry, .reason, .offer, .doctor, .menu, .faq, .anshin { padding-left: 18px; padding-right: 18px; }
  .contact__btns { flex-direction: column; align-items: stretch; }
  .contact__btns .btn { width: 100%; }
}
