/* =========================================================
   fish hair｜髪質改善＆ケアブリーチ LP
   静的本番スタイル ─ 配色は白×ベージュ×くすみ水色（NGカラフル遵守）
   ========================================================= */

:root {
  /* --- color: surfaces --- */
  --white: #ffffff;
  --beige: #f6f1ea;
  --beige-deep: #efe7da;
  --water: #f1f6f7;
  --water-deep: #e9f1f2;
  --hero-base: #eef3f4;

  /* --- color: ink --- */
  --ink: #33403f;
  --ink-sub: #5e696c;
  --ink-mute: #7a858a;
  --ink-faint: #9aa6a8;

  /* --- color: accent --- */
  --accent: #7fa6b0;          /* くすみ水色 */
  --accent-deep: #4f7d88;     /* リンク・強調 */
  --gold: #cdb89a;            /* 数字の温度 */
  --hair-line: #e4ddd1;       /* 細い区切り（ベージュ系） */

  /* --- CV: LINE green（CV最優先のため例外色） --- */
  --line: #4f7d88;            /* 予約ボタン＝ブランド水色（旧LINEグリーン） */
  --line-dark: #3f6b75;
  --line-shadow: rgba(79, 125, 136, .30);

  /* --- type --- */
  --serif: 'Shippori Mincho', 'Zen Kaku Gothic New', serif;
  --sans: 'Zen Kaku Gothic New', sans-serif;
  --label: 'Jost', sans-serif;

  /* --- spacing scale（意図のある刻み） --- */
  --s1: 6px; --s2: 10px; --s3: 14px; --s4: 18px; --s5: 24px;
  --s6: 32px; --s7: 44px; --s8: 60px; --s9: 80px; --s10: 104px;

  /* --- shaping --- */
  --r-s: 6px; --r-m: 10px; --r-l: 14px;
  --shadow-card: 0 6px 22px rgba(51, 64, 63, .055);
  --shadow-lift: 0 16px 34px rgba(51, 64, 63, .10);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --gutter: clamp(22px, 5vw, 48px);
  --maxw: 1120px;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3 { font-family: var(--serif); letter-spacing: .045em; font-weight: 700; margin: 0; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 3px; border-radius: 3px; }

/* ---------- shared atoms ---------- */
.eyebrow {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
}
.eyebrow--deep { color: var(--accent-deep); }
.section-head { text-align: center; margin-bottom: var(--s8); }
.section-head h2 {
  font-size: clamp(25px, 4.2vw, 33px);
  line-height: 1.5;
  margin-top: var(--s3);
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
/* SP専用改行（PCでは改行しない） */
.sp-br { display: none; }
@media (max-width: 640px) { .sp-br { display: inline; } }
.lede {
  font-size: clamp(15px, 1.7vw, 16px);
  line-height: 2;
  color: var(--ink-sub);
}

/* CTA buttons */
.btn-line {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--line); color: #fff; font-weight: 700;
  line-height: 1; letter-spacing: .03em;
  padding: 18px 30px; border-radius: var(--r-s);
  box-shadow: 0 10px 24px var(--line-shadow);
  transition: transform .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
  will-change: transform;
}
.btn-line:hover { background: var(--line-dark); transform: translateY(-2px); box-shadow: 0 15px 30px rgba(79,125,136,.40); }
.btn-line svg { flex: none; }
.btn-line__ico { flex: none; width: 22px; height: 22px; border-radius: 5px; display: block; }
.btn-line--lg .btn-line__ico { width: 26px; height: 26px; border-radius: 6px; }
.btn-line--sm .btn-line__ico { width: 20px; height: 20px; border-radius: 4px; }
.btn-line--lg { font-size: clamp(18px, 3.2vw, 21px); padding: 22px 48px; }
.btn-line--sm { font-size: 14px; padding: 12px 19px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-deep); font-weight: 700; font-size: 16px;
  border: 1px solid #a9c3c7; background: rgba(255,255,255,.6);
  padding: 17px 24px; border-radius: var(--r-s);
  transition: background .22s var(--ease), border-color .22s var(--ease);
}
.btn-ghost:hover { background: #fff; border-color: var(--accent-deep); }

.btn-hp {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--accent-deep); font-weight: 600; font-size: 15px;
  padding: 8px 4px; border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.btn-hp:hover { border-color: var(--accent-deep); }

/* repeated boundary CTA band */
.cta-band {
  display: flex; flex-direction: column; align-items: center; gap: var(--s4);
  text-align: center;
}
.cta-band__rule { width: 46px; height: 1px; background: #cdd9dc; }
.cta-band__note { font-size: 13px; color: var(--ink-mute); margin: 0; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4);
  padding: 17px var(--gutter);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-scrolled { padding-block: 10px; background: rgba(255,255,255,.93); box-shadow: 0 2px 18px rgba(51,64,63,.07); }
.header__logo img { height: 30px; width: auto; }
.header__right { display: flex; align-items: center; gap: var(--s2); }

.nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 26px); }
.nav a {
  font-size: 13.5px; color: var(--ink-sub); letter-spacing: .04em;
  position: relative; padding-block: 4px;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent-deep); transition: width .28s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.tel-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid #b9ccd0; border-radius: var(--r-s);
  color: var(--accent-deep); background: rgba(255,255,255,.6);
  transition: background .2s var(--ease);
}
.tel-ico:hover { background: var(--water); }

/* hamburger */
.burger {
  display: none; width: 44px; height: 44px; position: relative;
  border: 1px solid #b9ccd0; border-radius: var(--r-s); background: rgba(255,255,255,.6);
}
.burger span {
  position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; z-index: 55;
  width: min(82vw, 340px);
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  transform: translateX(100%); transition: transform .42s var(--ease);
  box-shadow: -12px 0 40px rgba(51,64,63,.12);
  padding: 92px var(--s7) var(--s7);
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--serif); font-size: 18px; color: var(--ink);
  padding: 16px 0; border-bottom: 1px solid var(--hair-line);
  opacity: 0; transform: translateX(16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.drawer.is-open a { opacity: 1; transform: none; }
.drawer.is-open a:nth-child(1) { transition-delay: .10s; }
.drawer.is-open a:nth-child(2) { transition-delay: .16s; }
.drawer.is-open a:nth-child(3) { transition-delay: .22s; }
.drawer.is-open a:nth-child(4) { transition-delay: .28s; }
.drawer.is-open a:nth-child(5) { transition-delay: .34s; }
.drawer.is-open a:nth-child(6) { transition-delay: .40s; }
.drawer__cta { margin-top: var(--s7); }
.drawer__cta .btn-line { width: 100%; color: #fff; font-family: var(--sans); }
.drawer__close {
  position: absolute; top: 20px; right: 20px; width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-sub); border-radius: 8px; background: transparent;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.drawer__close:hover { background: var(--beige); color: var(--ink); }
.scrim {
  position: fixed; inset: 0; z-index: 54; background: rgba(40,52,52,.32);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.scrim.is-open { opacity: 1; visibility: visible; }

/* =========================================================
   reveal / motion primitives
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .10s; }
[data-reveal][data-delay="2"] { transition-delay: .20s; }
[data-reveal][data-delay="3"] { transition-delay: .30s; }

/* clip / mask image reveal */
.clip-reveal { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease); will-change: clip-path; }
.clip-reveal.is-in { clip-path: inset(0 0 0 0); }
.clip-reveal img { transform: scale(1.12); transition: transform 1.4s var(--ease); }
.clip-reveal.is-in img { transform: scale(1); }

/* big heading line-clip reveal (split-type 風) */
.line-rise { display: block; overflow: hidden; }
.line-rise > span { display: block; transform: translateY(108%); transition: transform 1s var(--ease); }
.line-rise.is-in > span { transform: none; }
.line-rise.is-in > span.d1 { transition-delay: .08s; }
.line-rise.is-in > span.d2 { transition-delay: .20s; }

/* parallax layer */
[data-parallax] { will-change: transform; }

/* =========================================================
   ① HERO
   ========================================================= */
.hero {
  position: relative; min-height: clamp(600px, 88vh, 800px);
  display: flex; align-items: center; overflow: hidden; background: var(--hero-base);
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.20); } }
/* mouse-reactive water ripple canvas (Only-No jquery.ripples 相当) */
.hero__ripple { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; mix-blend-mode: screen; opacity: .5; }
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(102deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 36%, rgba(255,255,255,.36) 64%, rgba(255,255,255,0) 86%);
}
.hero__inner { position: relative; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: clamp(80px,12vh,112px) var(--gutter); }
.hero__copy { max-width: 600px; }
.hero__eyebrow { font-family: var(--label); font-size: 13px; letter-spacing: .3em; color: var(--accent-deep); font-weight: 500; margin-bottom: var(--s5); }
.hero h1 {
  font-size: clamp(28px, 5.6vw, 50px); line-height: 1.46; letter-spacing: .02em;
  margin-bottom: var(--s5);
}
.hero h1 .accent { color: var(--accent-deep); }
.hero__brand { font-size: clamp(34px, 6vw, 54px); line-height: 1.42; letter-spacing: .03em; }
.hero__sub { font-size: clamp(15px, 1.9vw, 17px); line-height: 2; color: var(--ink-sub); margin-bottom: var(--s6); max-width: 480px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s3); align-items: center; }
.hero__micro { font-size: 12.5px; color: var(--ink-mute); margin-top: var(--s5); letter-spacing: .02em; }

/* =========================================================
   section frame
   ========================================================= */
.section { padding-block: clamp(64px, 9vw, 96px); position: relative; }
/* ベージュ問題提起ブロックをFV下端にかぶせ、境目の水色を隠す */
.section--lift { margin-top: clamp(-64px, -5.5vw, -36px); position: relative; z-index: 2; }
.s-beige { background: var(--beige); }
.s-white { background: var(--white); }
.s-water { background: var(--water); }

/* animated wave divider (Only-No wavify 相当) */
.wave { display: block; width: 100%; height: clamp(38px, 6vw, 72px); overflow: hidden; line-height: 0; }
.wave svg { display: block; width: 200%; height: 100%; animation: waveflow 16s linear infinite; }
.wave--slow svg { animation-duration: 22s; }
.wave--rev svg { animation-direction: reverse; }
@keyframes waveflow { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ② PROBLEM */
.prob-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: var(--s5); }
.prob-card {
  background: #fff; border-radius: var(--r-s); padding: 26px 24px;
  display: flex; align-items: center; gap: var(--s4); box-shadow: var(--shadow-card);
}
.prob-card .tick {
  width: 36px; height: 36px; border: 1.5px solid var(--accent); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: var(--accent-deep); flex: none;
}
.prob-card p { font-size: 16.5px; line-height: 1.8; }
.prob-close { text-align: center; font-size: clamp(16px,1.9vw,17px); line-height: 1.95; color: var(--ink-sub); margin: var(--s7) auto 0; max-width: 700px; }
.prob-deco { position: absolute; top: 24px; right: 5%; width: clamp(110px,13vw,172px); opacity: .5; pointer-events: none; }

/* ③ SOLUTION */
.sol-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: var(--s6); margin-top: var(--s8); }
.sol-card {
  background: #fff; border: 1px solid var(--hair-line); border-radius: var(--r-m); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.sol-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.sol-card__media { position: relative; height: 204px; overflow: hidden; }
.sol-card__media img { width: 100%; height: 100%; object-fit: cover; }
.sol-card__media .bub { position: absolute; bottom: 8px; right: 8px; width: 74px; opacity: .85; }
.sol-card__body { padding: 26px 24px 28px; }
.sol-card .no { font-family: var(--label); font-size: 12px; letter-spacing: .2em; color: var(--accent); }
.sol-card h3 { font-size: 19px; margin: 6px 0 11px; }
.sol-card p { font-size: 15px; line-height: 1.85; color: var(--ink-sub); }

/* ④ WHY */
.why-list { display: flex; flex-direction: column; gap: var(--s8); }
.why-row { display: flex; flex-wrap: wrap; column-gap: var(--s7); row-gap: var(--s4); align-items: center; }
.why-row--rev { flex-direction: row-reverse; }
.why-row__media { flex: 1 1 320px; border-radius: var(--r-m); overflow: hidden; box-shadow: 0 8px 26px rgba(51,64,63,.085); }
.why-row__media img { width: 100%; height: 300px; object-fit: cover; }
.why-row__body { flex: 1 1 320px; }
.why-row__no { font-family: var(--label); font-size: 30px; font-weight: 300; color: var(--gold); line-height: 1; }
.why-row__body h3 { font-size: 22px; margin: var(--s2) 0 var(--s3); }
.why-row__body p { font-size: 15.5px; line-height: 1.95; color: var(--ink-sub); }

/* ⑤ PROOF ─ point付きカルーセル（画像下端にpointをかぶせ、右→左へ流す） */
.proof-carousel { margin: var(--s7) 0 var(--s6); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.proof-carousel__track { display: flex; gap: clamp(20px, 3vw, 34px); width: max-content; animation: marquee 130s linear infinite; }
.proof-carousel:hover .proof-carousel__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.proof-slide { position: relative; flex: none; width: clamp(290px, 82vw, 380px); padding-bottom: 136px; }
.proof-slide__media { position: relative; }
.proof-slide__img { display: block; width: 100%; height: clamp(360px, 64vw, 440px); object-fit: cover;
  border-radius: var(--r-m); box-shadow: 0 8px 24px rgba(51,64,63,.10); }

/* 店頭ポップ風キャプション：少し斜め／画像下端からはみ出す（画像が見えるよう下げる）／白枠は86%・高さは最長に合わせ均一 */
.proof-pop {
  position: absolute; left: 50%; bottom: -123px; transform: translateX(-50%) rotate(-3deg); width: 86%;
  min-height: 164px; display: flex; flex-direction: column; justify-content: center;
  background: #fff; border-radius: 13px; padding: 20px 20px 18px;
  box-shadow: 0 16px 34px rgba(51,64,63,.24); border: 1px dashed #d4c3ab;
}
.proof-slide:nth-child(even) .proof-pop { transform: translateX(-50%) rotate(2.6deg); }
.proof-pop__no {
  position: absolute; top: -17px; left: 18px;
  font-family: 'Caveat', cursive; font-weight: 700; font-size: 29px; line-height: 1;
  color: #fff; background: var(--accent-deep);
  padding: 5px 14px 3px; border-radius: 20px; letter-spacing: .02em;
  box-shadow: 0 6px 14px rgba(79,125,136,.32);
}
.proof-pop__txt { font-family: 'Yomogi', var(--sans); font-size: 15px; line-height: 1.8; color: var(--ink); margin: 4px 0 0; }
.proof-pop__txt b { color: var(--accent-deep); font-weight: 700; border-bottom: 3px solid #ffe39a; padding-bottom: 1px; }
.proof-pop__arrow { color: var(--gold); font-family: 'Caveat', cursive; font-size: 21px; padding: 0 4px; }

/* ⑥ OFFER */
.offer {
  display: flex; flex-wrap: wrap; border-radius: var(--r-l); overflow: hidden;
  box-shadow: 0 16px 44px rgba(51,64,63,.11); border: 1px solid #eef1ec; margin-top: var(--s7);
}
.offer__media { flex: 1 1 290px; min-height: 300px; }
.offer__media img { width: 100%; height: 100%; object-fit: cover; }
.offer__body { flex: 1 1 340px; background: #fff; padding: clamp(30px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.offer__name { font-size: 18px; font-weight: 700; line-height: 1.65; }
.offer__price { margin: var(--s5) 0 var(--s4); }
.offer__was { font-size: 17px; color: var(--ink-faint); text-decoration: line-through; }
.offer__now { display: flex; align-items: baseline; gap: 7px; margin-top: 7px; }
.offer__now .lbl { font-size: 18px; color: var(--accent-deep); font-weight: 500; }
.offer__now .num { font-size: clamp(38px, 7vw, 54px); font-weight: 700; color: var(--ink); line-height: 1; font-family: var(--serif); }
.offer__now .tax { font-size: 14px; color: var(--ink-sub); }
.offer__note { margin: 0 0 var(--s5); font-size: 13px; color: var(--ink-mute); border-top: 1px dashed #d8ddd6; padding-top: var(--s4); }
.offer__incl { list-style: none; margin: 0 0 var(--s5); padding: 0; display: grid; gap: 9px; }
.offer__incl li { font-size: 14px; color: var(--ink-sub); padding-left: 20px; position: relative; line-height: 1.7; }
.offer__incl li::before { content: ''; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }

/* ⑦ VOICE */
.voice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: var(--s5); }
.voice-card { background: #fff; border-radius: var(--r-m); padding: 32px 28px; box-shadow: var(--shadow-card); }
.voice-card .q { font-family: var(--label); font-size: 40px; color: #dfe9ea; line-height: .6; }
.voice-card p { font-size: 14.5px; font-weight: 400; line-height: 1.95; margin: var(--s1) 0 var(--s4); font-family: var(--sans); text-align: left; color: var(--ink); }
.voice-card .who { font-size: 13px; color: var(--ink-faint); border-top: 1px solid #f0ece4; padding-top: var(--s3); }
.voice-disc { text-align: center; font-size: 12px; color: var(--ink-faint); margin-top: var(--s6); }

/* ⑧ MENU */
.menu-card { max-width: 760px; margin: 0 auto; background: #fff; border-radius: var(--r-l); overflow: hidden; box-shadow: 0 8px 26px rgba(51,64,63,.06); }
.menu-row { display: flex; align-items: center; gap: var(--s3); padding: 18px 26px; border-bottom: 1px solid #eef1ec; }
.menu-row:last-child { border-bottom: 0; }
.menu-row .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.menu-name { flex: 1; font-size: 16.5px; }
.menu-price { font-family: var(--serif); font-size: 16.5px; font-weight: 600; color: var(--accent-deep); white-space: nowrap; letter-spacing: .02em; }
.menu-note { text-align: center; font-size: 15px; color: var(--ink-sub); margin-top: var(--s5); line-height: 1.85; }
.menu-note a { color: var(--accent-deep); border-bottom: 1px solid var(--accent); }
.menu-deco { position: absolute; top: 30px; right: 4%; width: clamp(120px,14vw,192px); opacity: .45; pointer-events: none; }

/* ⑨ STYLIST */
.stylist { display: flex; flex-wrap: wrap; gap: var(--s8); align-items: center; max-width: 980px; margin: 0 auto; }
.stylist__media { flex: 1 1 300px; position: relative; border-radius: var(--r-l); overflow: hidden; box-shadow: 0 10px 30px rgba(51,64,63,.10); }
.stylist__media img { width: 100%; height: 549px; object-fit: cover; }
.stylist__tag { position: absolute; left: 16px; bottom: 14px; background: rgba(255,255,255,.86); backdrop-filter: blur(4px); padding: 7px 13px; border-radius: var(--r-s); font-size: 12px; color: var(--ink-sub); }
.stylist__body { flex: 1 1 320px; }
.stylist__label { font-family: var(--label); font-size: 13px; letter-spacing: .2em; color: var(--accent); }
.stylist__body h3 { font-size: 27px; margin: var(--s2) 0 var(--s3); }
.stylist__bio { font-size: 14.5px; line-height: 1.95; color: var(--ink-sub); margin: 0 0 var(--s5); padding-bottom: var(--s5); border-bottom: 1px solid var(--hair-line); }
.stylist__pts { display: flex; flex-direction: column; gap: var(--s4); }
.stylist__pt dt { font-weight: 700; font-size: 16.5px; margin-bottom: 4px; color: var(--accent-deep); }
.stylist__pt dd { margin: 0; font-size: 15px; line-height: 1.85; color: var(--ink-sub); }

/* ⑩ ACCESS */
.access { display: flex; flex-wrap: wrap; gap: var(--s7); max-width: var(--maxw); margin: 0 auto; }
.access__map { flex: 1.3 1 340px; min-height: 324px; border-radius: var(--r-l); overflow: hidden; box-shadow: 0 8px 26px rgba(51,64,63,.08); }
.access__map iframe { width: 100%; height: 100%; min-height: 324px; border: 0; display: block; }
.access__info { flex: 1 1 280px; display: flex; flex-direction: column; justify-content: center; gap: var(--s5); }
.access__info h3 { font-family: var(--sans); font-weight: 700; font-size: 16px; color: var(--accent-deep); margin-bottom: 6px; }
.access__info p { font-size: 15.5px; line-height: 1.95; color: var(--ink-sub); }
.access__info .sub { font-size: 13px; color: var(--ink-mute); margin-top: 7px; }
.access__tel { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-deep); font-weight: 700; font-size: 18px; }

/* ⑪ FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--s3); }
.faq {
  background: #f8f9f8; border: 1px solid #eef1ec; border-radius: var(--r-s); padding: 4px 22px;
}
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: var(--s4); padding: 18px 0; font-size: 15.5px; font-weight: 700; font-family: var(--serif);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .mk { color: var(--accent); font-size: 22px; flex: none; transition: transform .3s var(--ease); }
.faq[open] summary .mk { transform: rotate(45deg); }
.faq__a { margin: 0 0 18px; font-size: 15px; line-height: 1.9; color: var(--ink-sub); }

/* ⑫ CLOSING ─ 全面背景画像＋白地パネル */
.closing { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
  padding: clamp(84px, 15vw, 150px) var(--gutter); }
.closing__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* 画像の上に全面の白地（不透明度60%） */
.closing::before { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(255,255,255,.60); }
.closing__panel {
  position: relative; z-index: 2; max-width: 640px; margin: 0 auto; text-align: center;
  padding: clamp(20px, 4vw, 40px);
}
.closing__panel h2 { font-size: clamp(24px, 4.4vw, 36px); line-height: 1.58; margin-bottom: var(--s4); }
.closing__sub { font-size: 15px; color: var(--ink-sub); letter-spacing: .04em; }

/* footer */
.footer { background: var(--ink); color: #cdd5d4; padding: var(--s8) var(--gutter) var(--s6); }
.footer__row { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: var(--s6); justify-content: space-between; align-items: flex-start; }
.footer__logo img { height: 34px; width: auto; filter: invert(1); opacity: .92; }
.footer__tag { margin-top: var(--s3); font-size: 13px; line-height: 1.9; color: #a7b2b1; }
.footer__meta { font-size: 13px; line-height: 1.95; color: #a7b2b1; }
.footer__meta a.sns { color: #cdd5d4; border-bottom: 1px solid rgba(255,255,255,.3); }
.footer__links { margin-top: var(--s3); }
.footer__links a { color: #cdd5d4; text-decoration: underline; text-underline-offset: 3px; }
.footer__copy { max-width: var(--maxw); margin: var(--s6) auto 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: var(--s4); font-family: var(--label); font-size: 12px; letter-spacing: .08em; color: #7f8c8b; }

/* =========================================================
   下層ページ（お知らせ・ブログ）
   ========================================================= */
.page-hero { position: relative; background: var(--beige); padding: clamp(48px, 8vw, 84px) var(--gutter) clamp(40px, 6vw, 60px); text-align: center; overflow: hidden; }
.page-hero--water { background: var(--water); }
.page-hero__deco { position: absolute; top: 18px; right: 6%; width: clamp(100px, 12vw, 150px); opacity: .5; pointer-events: none; }
.breadcrumb { font-size: 12.5px; color: var(--ink-mute); letter-spacing: .04em; margin-bottom: var(--s3); }
.breadcrumb a { color: var(--accent-deep); }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb span { margin: 0 8px; color: var(--ink-faint); }
.page-hero h1 { font-size: clamp(27px, 4.6vw, 38px); line-height: 1.45; }
.page-hero__en { display: block; font-family: var(--label); font-size: 12px; letter-spacing: .28em; color: var(--accent); font-weight: 500; margin-top: var(--s3); }

.news-wrap { max-width: 820px; margin: 0 auto; padding-inline: var(--gutter); }
.news-note { font-size: 12.5px; color: var(--ink-faint); text-align: center; margin-bottom: var(--s7); }
.news-list { display: flex; flex-direction: column; gap: var(--s5); }
.news-item {
  background: #fff; border: 1px solid var(--hair-line); border-radius: var(--r-m);
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 32px); box-shadow: var(--shadow-card);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.news-item:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.news-item__meta { display: flex; align-items: center; gap: var(--s3); margin-bottom: var(--s3); flex-wrap: wrap; }
.news-item__date { font-family: var(--label); font-size: 13px; letter-spacing: .06em; color: var(--ink-mute); }
.news-item__cat { font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: var(--accent-deep); background: var(--water); border: 1px solid #d5e4e7; border-radius: 999px; padding: 3px 12px; }
.news-item h2 { font-size: 18.5px; line-height: 1.6; margin-bottom: var(--s3); }
.news-item p { font-size: 15px; line-height: 1.9; color: var(--ink-sub); }
/* 一覧カードをリンク化 */
a.news-item { display: block; color: inherit; text-decoration: none; }
a.news-item h2 { color: var(--ink); transition: color .2s var(--ease); }
a.news-item:hover h2 { color: var(--accent-deep); }
.news-item__more { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--s4);
  font-family: var(--label); font-size: 12px; letter-spacing: .14em; font-weight: 500; color: var(--accent-deep);
  transition: gap .25s var(--ease); }
a.news-item:hover .news-item__more { gap: 12px; }

/* 記事ページ本文 */
.article { max-width: 720px; margin: 0 auto; padding-inline: var(--gutter); }
.article__meta { display: flex; align-items: center; gap: var(--s3); margin-bottom: var(--s6); flex-wrap: wrap; }
.article__body { font-size: 15.5px; line-height: 2.05; color: var(--ink); }
.article__body p { margin: 0 0 var(--s5); }
.article__body h2 { font-size: 20px; line-height: 1.6; margin: var(--s7) 0 var(--s4); }
.article__body .note { font-size: 13px; color: var(--ink-mute); border-top: 1px solid var(--hair-line); padding-top: var(--s4); margin-top: var(--s6); }
.article__back { text-align: center; margin-top: var(--s8); }
.news-empty { text-align: center; color: var(--ink-mute); padding: var(--s9) 0; font-size: 15px; }
.news-back { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--s8); color: var(--accent-deep); font-weight: 700; font-size: 15px; }
.news-back:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --- メニュー・料金ページ --- */
.menu-group {
  font-size: clamp(19px, 2.4vw, 23px); line-height: 1.5; margin: var(--s9) 0 var(--s5);
  padding-bottom: var(--s3); border-bottom: 1px solid var(--hair-line);
  display: flex; align-items: baseline; gap: var(--s4); flex-wrap: wrap;
}
.menu-group:first-of-type { margin-top: var(--s6); }
.menu-group__en { font-family: var(--label); font-size: 11.5px; letter-spacing: .24em; color: var(--accent); font-weight: 500; }
.menu-list { display: flex; flex-direction: column; gap: var(--s4); }
.menu-item {
  background: #fff; border: 1px solid var(--hair-line); border-radius: var(--r-m);
  padding: clamp(20px, 2.6vw, 26px) clamp(20px, 2.6vw, 28px); box-shadow: var(--shadow-card);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.menu-item:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.menu-item__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; }
.menu-item__head h3 { font-size: 16px; line-height: 1.65; flex: 1 1 260px; font-family: var(--sans); font-weight: 700; letter-spacing: .01em; }
.menu-item__price { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--accent-deep); white-space: nowrap; }
.menu-item__desc { font-size: 13.5px; line-height: 1.9; color: var(--ink-sub); margin-top: var(--s3); }
.menu-cta { text-align: center; margin-top: var(--s9); }
.menu-cta__sub { margin-top: var(--s4); }
/* メニューページの目玉オファーカード：狭い枠でも「初回/（税込）」を折り返さない */
.news-wrap .offer__now { flex-wrap: nowrap; }
.news-wrap .offer__now .lbl, .news-wrap .offer__now .tax { white-space: nowrap; }
.news-wrap .offer__body { padding: clamp(26px, 3.2vw, 40px); }
.menu-back-wrap { text-align: center; margin-top: var(--s8); }
.btn-back {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--accent-deep);
  background: #fff; border: 1.5px solid var(--accent-deep); border-radius: 999px;
  padding: 16px 40px; box-shadow: var(--shadow-card);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-back:hover { background: var(--accent-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lift); }

/* MENUブロックの VIEW MORE */
.view-more {
  display: inline-flex; align-items: center; gap: 9px; margin-top: var(--s6);
  font-family: var(--label); font-size: 13px; letter-spacing: .16em; font-weight: 500;
  color: var(--accent-deep); padding-bottom: 5px; border-bottom: 1px solid var(--accent);
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.view-more:hover { gap: 15px; color: var(--ink); }

/* =========================================================
   STICKY FOLLOW CTA（モバイル下部固定追従）
   ========================================================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 58;
  display: none; gap: 8px; padding: 10px clamp(12px, 4vw, 16px) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  box-shadow: 0 -6px 20px rgba(51,64,63,.12);
  transform: translateY(120%); transition: transform .4s var(--ease);
}
.sticky-cta.is-shown { transform: none; }
.sticky-cta .btn-line { flex: 1 1 auto; padding: 15px 14px; font-size: 15.5px; }
.sticky-cta .sc-tel {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  width: 56px; border: 1px solid #b9ccd0; border-radius: var(--r-s); color: var(--accent-deep); font-size: 20px; background: #fff;
}

/* =========================================================
   RESPONSIVE — breakpoint 768px
   ========================================================= */
@media (max-width: 768px) {
  body { line-height: 1.8; }
  .header__logo img { height: 27px; }
  /* SP：ナビはハンバーガーに切替。ヘッダーのご予約・電話は非表示（下部追従CTAが担う） */
  .nav { display: none; }
  .header__right .tel-ico { display: none; }
  .header__right .btn-line { display: none; }
  .burger { display: block; }
  .sticky-cta { display: flex; }
  .why-list { gap: var(--s6); }
  .why-row, .why-row--rev { flex-direction: column; gap: var(--s1); }
  /* 縦並び時、media の flex-basis(320px) が高さになり画像下に空白が出るのを解消 */
  .why-row__media, .why-row__body { flex: 0 0 auto; width: 100%; }
  .why-row__media img { height: 240px; }
  .why-row__no { font-size: 24px; }
  .why-row__body h3 { margin: 0; }
  .stylist__media img { height: 458px; }
  .offer__media { min-height: 230px; }
  /* SP：オファーCTAを1行に収める */
  .offer .btn-line--lg { padding-left: 14px; padding-right: 14px; gap: 7px; white-space: nowrap; }
  .proof-pop { min-height: 192px; bottom: -144px; }
  .proof-slide { padding-bottom: 158px; }
  .section-head { margin-bottom: var(--s7); }
  .hero { min-height: 84vh; }
  /* leave room above OS bar for sticky cta */
  .footer { padding-bottom: calc(var(--s6) + 76px); }
}
/* PC幅ではモバイル用のドロワー/スクリム/ハンバーガーは常に非表示 */
@media (min-width: 769px) {
  .drawer, .scrim, .burger { display: none !important; }
}

/* =========================================================
   reduced motion — 全演出を静止フォールバック
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .clip-reveal { clip-path: none !important; }
  .clip-reveal img { transform: none !important; }
  .line-rise > span { transform: none !important; }
  .hero__ripple, .closing__ripple { display: none; }
}
