/* =========================================================
   lumiette — style
   base: milk / blush / cocoa. photo tone = milk-pink paper.
   ========================================================= */
:root {
  --milk: #f8f2ee;
  --blush: #f1e4de;
  --beige: #e9dad2;
  --rose: #d9aea6;
  --rose-deep: #a8675f;
  --ink: #4a3835;
  --ink-2: #7a6460;
  --line: #e2d0c8;
  --cocoa: #4e3634;
  --white: #fffdfb;

  --pad: clamp(24px, 4.5vw, 72px);
  --max: 1200px;
  --radius: 18px;

  --serif: "Fraunces", "Times New Roman", serif;
  --maru: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--milk);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .04em;
  font-feature-settings: "palt" 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, figure, dl, dd { margin: 0; }
button { font: inherit; color: inherit; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.pc { display: none; }
@media (min-width: 900px) { .pc { display: inline; } }

:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; border-radius: 4px; }

/* ---------- serif (Fraunces soft) ---------- */
.eyebrow, .hd__logo, .fv__word, .fv__logo-on, .mcol__title, .first__no, .ft__logo,
.price dd, .salon__body .h2, .side-reserve__en, .dcard__menu b, .fv__info dt, .scard__role {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100;
  font-optical-sizing: auto;
}

/* ---------- photo placeholders ----------
   写真が届くまでは、撮影トーン(ミルクピンクの背景紙)に近い面で成立させる */
.ph { position: relative; overflow: hidden; background: #ead8d1; isolation: isolate; }
.ph img, .ph picture { width: 100%; height: 100%; object-fit: cover; }
.ph picture img { width: 100%; height: 100%; object-fit: cover; }
.ph img.is-missing { opacity: 0; }
.ph--hero  { background: radial-gradient(120% 90% at 70% 35%, #f3e3dc 0%, #e9d2ca 45%, #dcbfb6 100%); }
.ph--a     { background: radial-gradient(110% 80% at 30% 25%, #f4e6e0 0%, #e8d3cb 55%, #dcc2b9 100%); }
.ph--b     { background: radial-gradient(110% 80% at 70% 30%, #f5e2de 0%, #ebcfc9 55%, #dfbdb5 100%); }
.ph--c     { background: radial-gradient(110% 80% at 50% 20%, #f2e7e1 0%, #e5d5cc 55%, #d6c1b6 100%); }
.ph--salon { background: linear-gradient(115deg, #f6ede7 0%, #ecdcd4 45%, #dfc9bf 100%); }

.arch { border-radius: 999px 999px 0 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 28px;
  min-height: 56px; padding: 0 26px 0 30px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: .08em;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn--fill { background: var(--cocoa); color: var(--white); }
.btn--line { border: 1px solid var(--ink); color: var(--ink); }
.arw {
  position: relative; display: inline-block; width: 18px; height: 1px; background: currentColor; flex: none;
  transition: transform .3s var(--ease);
}
.arw::after {
  content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg);
}
@media (hover: hover) {
  .btn--fill:hover { background: var(--rose-deep); }
  .btn--line:hover { background: var(--ink); color: var(--white); }
  .btn:hover .arw, .rbtn:hover .arw { transform: translateX(4px); }
}

/* ---------- section heading ---------- */
.eyebrow {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300; line-height: 1.1; letter-spacing: 0;
  color: var(--ink);
}
.h2 {
  font-family: var(--maru); font-weight: 500;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.75; letter-spacing: .1em;
  margin-top: 18px;
}
.sec-head { text-align: center; padding: 0 var(--pad); }
.sec-head__lead { margin-top: 18px; color: var(--ink-2); font-size: 14px; }

/* =========================================================
   header
   ========================================================= */
.hd {
  position: absolute; z-index: 20; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; padding: 0 var(--pad);
}
.hd__logo { font-size: 28px; font-weight: 400; letter-spacing: .01em; line-height: 1; }
.hd__nav, .hd__cta { display: none; }

.burger {
  position: fixed; z-index: 40; top: 18px; right: 16px;
  width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: rgba(248, 242, 238, .88); backdrop-filter: blur(6px);
  box-shadow: 0 2px 14px rgba(74, 56, 53, .08);
  cursor: pointer;
}
.burger span {
  position: absolute; left: 15px; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 20px; }
.burger span:nth-child(2) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 23.5px; transform: rotate(35deg); }
.burger[aria-expanded="true"] span:nth-child(2) { top: 23.5px; transform: rotate(-35deg); }

.spnav {
  position: fixed; z-index: 35; inset: 0;
  background: var(--milk);
  padding: 110px var(--pad) 40px;
  overflow-y: auto;
}
.spnav[hidden] { display: none; }
.spnav ul { border-top: 1px solid var(--line); margin-bottom: 36px; }
.spnav li { border-bottom: 1px solid var(--line); }
.spnav li a {
  display: flex; align-items: baseline; justify-content: space-between; padding: 20px 4px;
  font-family: var(--serif); font-variation-settings: "SOFT" 100; font-size: 26px; font-weight: 300; letter-spacing: 0;
}
.spnav small { font-family: var(--sans); font-size: 12px; color: var(--ink-2); letter-spacing: .08em; }
.spnav .btn { width: 100%; justify-content: center; }

@media (min-width: 900px) {
  .burger, .spnav { display: none !important; }
  .hd { height: 96px; }
  .hd__logo { font-size: 30px; }
  .hd__nav { display: flex; gap: 34px; margin-left: auto; margin-right: 40px; }
  .hd__nav a {
    font-family: var(--serif); font-variation-settings: "SOFT" 100;
    font-size: 15px; letter-spacing: .04em; position: relative;
  }
  .hd__nav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: currentColor;
    transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
  }
  .hd__cta {
    display: inline-flex; align-items: center; height: 42px; padding: 0 22px;
    border: 1px solid var(--ink); border-radius: 999px; font-size: 13px; letter-spacing: .12em;
    transition: background-color .3s var(--ease), color .3s var(--ease);
  }
}
@media (min-width: 900px) and (hover: hover) {
  .hd__nav a:hover::after { transform: scaleX(1); }
  .hd__cta:hover { background: var(--ink); color: var(--white); }
}

/* =========================================================
   FV — 雑誌の表紙のように、ロゴが写真に食い込む
   ========================================================= */
.fv {
  --logo-size: min(22vw, 190px);
  position: relative;
  padding-top: 104px;
  padding-bottom: 72px;
}
.fv__lead {
  padding: 0 var(--pad);
  margin-bottom: 18px;
}
.fv__lead p { margin: 0; }
.fv__lead-main {
  font-family: var(--maru); font-weight: 500;
  font-size: clamp(18px, 5vw, 20px);
  line-height: 1.8; letter-spacing: .18em;
}
.fv__lead-sub {
  margin-top: 6px !important;
  font-size: 12px; line-height: 1.9; letter-spacing: .06em;
  color: var(--ink-2);
}
.fv__logo {
  position: relative; z-index: 0;
  padding-left: var(--pad);
  font-weight: 400;
  margin-bottom: calc(var(--logo-size) * -.42);
}
.fv__word, .fv__logo-on {
  display: block;
  font-size: var(--logo-size);
  font-weight: 300; line-height: 1; letter-spacing: -.01em;
  white-space: nowrap;
}
.fv__word { color: var(--rose-deep); }
.fv__photo {
  position: relative; z-index: 1;
  width: calc(100% - var(--pad));
  aspect-ratio: 4 / 5;
  border-radius: 0 28px 28px 0;
}
.fv__logo-on {
  position: absolute; z-index: 2;
  top: calc(var(--logo-size) * -.58);
  left: var(--pad);
  color: var(--white);
  pointer-events: none;
}
.fv__cap {
  position: absolute; z-index: 2; left: var(--pad); bottom: 22px;
  font-family: var(--serif); font-variation-settings: "SOFT" 100; font-style: italic;
  font-size: 13px; letter-spacing: .06em; color: var(--white);
}
.fv__line {
  position: absolute; z-index: 3; pointer-events: none;
  width: 62%; right: 0; top: calc(104px + var(--logo-size) * 1.9 + 60vw);
  fill: none; stroke: var(--rose); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  display: none;
}
.fv__line .fv__spark { fill: var(--rose); stroke: none; }
.fv__side { padding: 36px var(--pad) 0; }
.fv__info { display: grid; gap: 8px; margin-bottom: 30px; font-size: 13.5px; }
.fv__info div { display: grid; grid-template-columns: 76px 1fr; align-items: baseline; }
.fv__info dt { font-size: 15px; font-style: italic; color: var(--rose-deep); letter-spacing: .02em; }
.fv__side .btn { width: 100%; }

@media (min-width: 600px) and (max-width: 899px) {
  .fv__photo { aspect-ratio: 3 / 2; }
  .fv__side { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
  .fv__info { margin-bottom: 0; }
  .fv__side .btn { width: auto; }
}

@media (min-width: 900px) {
  .fv {
    --photo-top: 196px;
    --logo-size: clamp(110px, min(13.6vw, 26vh), 230px);
    --photo-w: 63vw;
    /* 横長・低い画面でも予約ボタンまでが1画面に入るよう、写真の高さに上限を持たせる */
    --photo-h: max(440px, min(calc(var(--photo-w) * 2 / 3), calc(100vh - var(--photo-top) - 56px)));
    padding: 0;
    min-height: calc(var(--photo-top) + var(--photo-h) + 90px);
  }
  .fv__logo {
    position: absolute; left: 0; margin: 0;
    top: calc(var(--photo-top) - var(--logo-size) * .58);
  }
  .fv__photo {
    position: absolute; left: 0; top: var(--photo-top);
    width: var(--photo-w); height: var(--photo-h); aspect-ratio: auto;
    border-radius: 0 36px 36px 0;
  }
  .fv__cap { bottom: 28px; font-size: 14px; }
  .fv__lead {
    position: absolute; z-index: 2;
    top: 152px; right: var(--pad);
    width: min(30vw, 380px);
    padding: 0; margin: 0;
  }
  .fv__lead-main { font-size: 20px; line-height: 1.8; letter-spacing: .2em; }
  .fv__lead-sub { margin-top: 10px !important; font-size: 12px; line-height: 2; letter-spacing: .06em; }
  .fv__side {
    position: absolute; z-index: 2;
    left: calc(var(--photo-w) + clamp(32px, 4vw, 72px));
    right: var(--pad);
    top: calc(var(--photo-top) + var(--photo-h));
    translate: 0 -100%;
    padding: 0;
    max-width: 380px;
  }
  .fv__info { font-size: 13px; gap: 6px; margin-bottom: 28px; }
  .fv__info div { grid-template-columns: 70px 1fr; }
  .fv__line {
    display: block;
    /* 線の終わり(光)が、右カラムの情報ブロックの上に来るように */
    width: min(32vw, 520px); right: auto; left: calc(var(--photo-w) - 20vw);
    top: calc(var(--photo-top) + var(--photo-h) - 300px - min(13.5vw, 220px));
  }
}
@media (min-width: 900px) and (max-height: 760px) {
  .fv { --photo-top: 184px; }
  .fv__lead { top: 128px; }
}

/* =========================================================
   Concept
   ========================================================= */
.concept {
  position: relative;
  padding: 120px var(--pad) 140px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "body body" "a b";
  column-gap: 16px; row-gap: 56px;
}
.concept__body { grid-area: body; }
.concept__ph--a { grid-area: a; aspect-ratio: 3 / 4; }
.concept__ph--b { grid-area: b; aspect-ratio: 3 / 4; margin-top: 64px; }
.prose p + p { margin-top: 1.2em; }
.prose { margin-top: 30px; font-size: 14.5px; line-height: 2.05; }
@media (min-width: 600px) and (max-width: 899px) {
  .concept { grid-template-columns: 250px 250px; justify-content: center; column-gap: 40px; }
  .concept__body { max-width: 540px; justify-self: center; }
}

@media (min-width: 900px) {
  .concept {
    max-width: 1440px; margin: 0 auto;
    padding: 120px var(--pad) 200px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px) minmax(0, 1fr);
    grid-template-areas: "a body b";
    column-gap: clamp(40px, 6vw, 110px);
    align-items: start;
  }
  .concept__ph--a { margin-top: 0; max-width: 300px; justify-self: end; width: 100%; }
  .concept__ph--b { margin-top: 220px; max-width: 280px; justify-self: start; width: 100%; }
  .concept__body { padding-top: 40px; }
  .prose { font-size: 14.5px; }
}

/* =========================================================
   Design (gallery)
   ========================================================= */
.design {
  background: var(--blush);
  border-radius: 40px 40px 0 0;
  padding: 100px 0 110px;
}
.design__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 14px; row-gap: 34px;
  padding: 0 var(--pad);
  margin: 56px auto 0; max-width: calc(var(--max) + var(--pad) * 2);
}
.dcard:nth-child(even) { transform: translateY(44px); }
.dcard__ph { aspect-ratio: 4 / 5; border-radius: var(--radius); }
.dcard figcaption { display: grid; gap: 2px; margin-top: 12px; }
.dcard__name { font-family: var(--maru); font-weight: 500; font-size: 13px; line-height: 1.6; letter-spacing: .06em; }
.dcard__menu { display: flex; flex-direction: column; font-size: 11.5px; line-height: 1.6; color: var(--ink-2); letter-spacing: .04em; }
.dcard__menu b { font-weight: 400; font-size: 16px; color: var(--rose-deep); letter-spacing: .02em; }
@media (min-width: 600px) {
  .dcard__menu { flex-direction: row; flex-wrap: wrap; align-items: baseline; column-gap: 10px; }
}
.design__more { margin-top: 90px; text-align: center; padding: 0 var(--pad); }
@media (min-width: 600px) and (max-width: 899px) {
  .design__grid { grid-template-columns: repeat(3, 1fr); column-gap: 18px; row-gap: 40px; }
  .dcard:nth-child(even) { transform: none; }
  .dcard:nth-child(3n+2) { transform: translateY(48px); }
  .design__more { margin-top: 100px; }
}

@media (min-width: 900px) {
  .design { border-radius: 64px 64px 0 0; padding: 150px 0 160px; }
  .design__grid { grid-template-columns: repeat(3, 1fr); column-gap: clamp(24px, 3vw, 48px); row-gap: 64px; margin-top: 80px; max-width: calc(1040px + var(--pad) * 2); }
  .dcard:nth-child(even) { transform: none; }
  .dcard:nth-child(3n+2) { transform: translateY(80px); }
  .dcard figcaption { margin-top: 16px; }
  .dcard__name { font-size: 14.5px; }
  .dcard__menu { font-size: 12.5px; }
  .dcard__menu b { font-size: 17px; }
  .design__more { margin-top: 140px; }
}

/* =========================================================
   Menu
   ========================================================= */
.menu { padding: 110px 0 120px; }
.menu__cols {
  display: grid; gap: 0;
  margin: 56px auto 0; max-width: calc(var(--max) + var(--pad) * 2);
}
.mcol { padding: 56px var(--pad); text-align: center; }
.mcol + .mcol { border-top: 1px solid var(--line); }
.mcol__title {
  font-size: clamp(44px, 5vw, 60px); font-weight: 300; line-height: 1; letter-spacing: 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.mcol__title small { font-family: var(--sans); font-size: 12px; font-weight: 400; letter-spacing: .16em; color: var(--ink-2); }
.mcol__ph { width: min(62%, 280px); aspect-ratio: 3 / 4; margin: 36px auto 0; }
.mcol__catch { margin-top: 34px; font-family: var(--maru); font-weight: 500; font-size: clamp(18px, 1.7vw, 21px); line-height: 1.8; letter-spacing: .1em; }
.mcol__text { margin: 18px auto 0; max-width: 420px; text-align: left; font-size: 14px; line-height: 2; }

.price { margin: 34px auto 0; max-width: 420px; text-align: left; border-top: 1px solid var(--line); }
.price div {
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; column-gap: 12px;
  padding: 16px 2px; border-bottom: 1px solid var(--line);
}
.price div::after { content: ""; order: 2; border-bottom: 1px dotted var(--rose); transform: translateY(-4px); }
.price dt { order: 1; font-size: 14px; letter-spacing: .06em; }
.price dt small { margin-left: 8px; font-size: 11px; color: var(--ink-2); letter-spacing: .06em; white-space: nowrap; }
.price dd { order: 3; font-size: 21px; font-weight: 400; letter-spacing: .01em; line-height: 1; white-space: nowrap; }
.price dd span { font-family: var(--sans); font-size: 12px; margin-left: 1px; }
.menu__cta { text-align: center; margin-top: 30px; padding: 0 var(--pad); }

@media (min-width: 900px) {
  .menu { padding: 170px 0 170px; }
  .menu__cols { grid-template-columns: 1fr 1fr; margin-top: 90px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .mcol { padding: 80px clamp(32px, 5vw, 80px) 90px; }
  .mcol + .mcol { border-top: 0; border-left: 1px solid var(--line); }
  .mcol__ph { width: 260px; margin-top: 44px; }
  .mcol__text { min-height: 8em; }
  .menu__cta { margin-top: 64px; }
}

/* =========================================================
   Staff
   ========================================================= */
.staff { background: var(--blush); border-radius: 40px; margin: 0 12px; padding: 100px 0 110px; }
.staff__list {
  display: grid; gap: 44px;
  margin: 56px auto 0; padding: 0 calc(var(--pad) - 12px);
  max-width: calc(var(--max) + var(--pad) * 2);
}
.scard { display: grid; grid-template-columns: 112px 1fr; column-gap: 20px; align-items: start; }
.scard__ph { aspect-ratio: 3 / 4; }
.scard__role { font-size: 15px; font-style: italic; color: var(--rose-deep); letter-spacing: .02em; line-height: 1.5; }
.scard__role span { display: block; font-family: var(--sans); font-style: normal; font-size: 11.5px; color: var(--ink-2); letter-spacing: .08em; }
.scard__name { margin-top: 10px; font-family: var(--maru); font-weight: 500; font-size: 19px; letter-spacing: .14em; line-height: 1.5; }
.scard__name small { display: block; font-family: var(--sans); font-weight: 400; font-size: 11px; color: var(--ink-2); letter-spacing: .12em; }
.scard__text { grid-column: 1 / -1; margin-top: 18px; font-size: 13.5px; line-height: 1.95; }
.scard__tag {
  grid-column: 1 / -1; justify-self: start; margin-top: 14px;
  padding: 4px 14px; border-radius: 999px; background: var(--milk);
  font-size: 12px; letter-spacing: .06em; color: var(--ink-2);
}
.scard__body { display: contents; }
.scard__body > .scard__role, .scard__body > .scard__name { grid-column: 2; }
.scard__ph { grid-row: 1 / span 2; }
.scard__role { align-self: end; }

@media (min-width: 600px) {
  .staff__list { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .scard { display: block; }
  .scard__body { display: block; }
  .scard__ph { width: 82%; margin: 0 auto 26px; }
  .scard__tag { display: inline-block; }
}
@media (min-width: 900px) {
  .staff { margin: 0 24px; border-radius: 64px; padding: 150px 0 160px; }
  .staff__list { gap: clamp(28px, 4vw, 64px); margin-top: 90px; padding: 0 calc(var(--pad) - 24px); }
  .scard__ph { width: 78%; margin-bottom: 32px; }
  .scard__role { font-size: 16px; }
  .scard__name { font-size: 21px; }
}

/* =========================================================
   First visit
   ========================================================= */
.first { padding: 120px 0 40px; }
.first__steps {
  display: grid; gap: 0;
  margin: 50px auto 0; padding: 0 var(--pad);
  max-width: calc(var(--max) + var(--pad) * 2);
  counter-reset: s;
}
.first__steps li { padding: 28px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 58px 1fr; column-gap: 8px; }
.first__steps li:last-child { border-bottom: 1px solid var(--line); }
.first__no { grid-row: 1 / span 2; font-size: 34px; font-weight: 300; font-style: italic; color: var(--rose-deep); line-height: 1; letter-spacing: 0; }
.first__steps h3 { font-family: var(--maru); font-weight: 500; font-size: 16.5px; letter-spacing: .1em; line-height: 1.6; }
.first__steps p { margin-top: 8px; font-size: 13.5px; line-height: 1.95; color: var(--ink); }

@media (min-width: 900px) {
  .first { padding: 170px 0 60px; }
  .first__steps { grid-template-columns: repeat(3, 1fr); column-gap: clamp(32px, 4vw, 64px); margin-top: 80px; }
  .first__steps li, .first__steps li:last-child { display: block; padding: 34px 0 0; border-bottom: 0; }
  .first__no { display: block; font-size: 46px; margin-bottom: 22px; }
  .first__steps h3 { font-size: 18px; }
  .first__steps p { margin-top: 12px; font-size: 14px; }
}

/* =========================================================
   Salon
   ========================================================= */
.salon {
  display: grid; gap: 44px;
  padding: 100px var(--pad) 110px;
  max-width: calc(var(--max) + var(--pad) * 2); margin: 0 auto;
}
.salon__ph { aspect-ratio: 16 / 11; border-radius: var(--radius); }
@media (min-width: 600px) and (max-width: 899px) { .salon__ph { aspect-ratio: 16 / 9; } }
.salon__body .h2 { font-size: clamp(26px, 2.4vw, 32px); font-weight: 300; letter-spacing: .01em; margin-top: 14px; line-height: 1.3; color: var(--rose-deep); }
.salon__kana { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; margin-left: 14px; color: var(--ink-2); }
.salon__info { margin-top: 30px; border-top: 1px solid var(--line); }
.salon__info div { display: grid; grid-template-columns: 92px 1fr; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.8; }
.salon__info dt { color: var(--ink-2); font-size: 12.5px; letter-spacing: .1em; padding-top: 1px; }
.salon__info a { border-bottom: 1px solid var(--rose); }
.week { width: 100%; margin-top: 26px; border-collapse: separate; border-spacing: 0; text-align: center; table-layout: fixed; }
.week th { font-weight: 500; font-size: 12.5px; color: var(--ink-2); padding-bottom: 10px; }
.week td { padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.week .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--rose); vertical-align: middle; }
.week .off { font-size: 12px; color: var(--rose-deep); }

@media (min-width: 900px) {
  .salon {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); column-gap: clamp(48px, 6vw, 110px);
    align-items: center; padding: 170px var(--pad) 170px;
  }
  .salon__ph { aspect-ratio: 4 / 3; border-radius: 28px; }
}

/* =========================================================
   Reserve
   ========================================================= */
.reserve { padding: 0 12px 110px; }
.reserve__box {
  max-width: 1080px; margin: 0 auto;
  background: var(--cocoa); color: var(--white);
  border-radius: 32px;
  padding: 72px calc(var(--pad) - 4px) 64px;
  text-align: center;
}
.eyebrow--light { color: var(--rose); font-size: clamp(36px, 4.4vw, 56px); }
.reserve__title { margin-top: 20px; font-family: var(--maru); font-weight: 500; font-size: clamp(19px, 2vw, 25px); line-height: 1.75; letter-spacing: .1em; }
.reserve__text { margin-top: 16px; font-size: 13.5px; color: rgba(255, 253, 251, .78); }
.reserve__btns { display: grid; gap: 12px; margin: 38px auto 0; max-width: 820px; }
.rbtn {
  display: grid; grid-template-columns: 1fr auto; align-items: center; row-gap: 2px; column-gap: 14px;
  white-space: nowrap;
  padding: 16px 26px; min-height: 72px;
  background: var(--white); color: var(--ink);
  border-radius: 18px; text-align: left;
  font-family: var(--maru); font-weight: 500; font-size: 16px; letter-spacing: .06em;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.rbtn__sub { grid-column: 1; font-family: var(--sans); font-weight: 400; font-size: 11px; color: var(--ink-2); letter-spacing: .1em; }
.rbtn .arw { grid-column: 2; grid-row: 1 / span 2; }
.rbtn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255, 253, 251, .5); }
.rbtn--ghost .rbtn__sub { color: rgba(255, 253, 251, .7); }
@media (min-width: 600px) and (max-width: 899px) {
  .reserve__btns { grid-template-columns: 1fr 1fr; }
  .reserve__btns li:first-child { grid-column: 1 / -1; }
}
.reserve__tel { margin-top: 30px; font-size: 13px; color: rgba(255, 253, 251, .78); }
.reserve__tel a { margin-left: 10px; font-family: var(--serif); font-variation-settings: "SOFT" 100; font-size: 19px; color: var(--white); letter-spacing: .04em; }
@media (hover: hover) {
  .rbtn:hover { background: var(--blush); }
  .rbtn--ghost:hover { background: rgba(255, 253, 251, .1); }
}
@media (min-width: 900px) {
  .reserve { padding: 60px 24px 160px; }
  .reserve__box { border-radius: 48px; padding: 110px 64px 96px; }
  .reserve__btns { grid-template-columns: 1.3fr 1fr 1fr; gap: 14px; margin-top: 52px; max-width: 920px; }
  .rbtn { min-height: 88px; padding: 18px 22px 18px 26px; font-size: 15px; letter-spacing: .04em; }
}

/* =========================================================
   footer
   ========================================================= */
.ft {
  background: var(--blush);
  padding: 80px var(--pad) 120px;
  text-align: center;
}
.ft__logo { font-size: clamp(56px, 9vw, 120px); font-weight: 300; line-height: 1; letter-spacing: -.01em; color: var(--rose-deep); }
.ft__desc { margin-top: 20px; font-size: 12.5px; color: var(--ink-2); line-height: 1.9; }
.ft__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 34px; font-family: var(--serif); font-variation-settings: "SOFT" 100; font-size: 15px; }
.ft__copy { margin-top: 44px; font-size: 11px; color: var(--ink-2); letter-spacing: .1em; }
@media (min-width: 900px) { .ft { padding: 110px var(--pad) 70px; } }

/* =========================================================
   fixed reserve
   ========================================================= */
.side-reserve { display: none; }
@media (min-width: 900px) {
  .side-reserve {
    position: fixed; z-index: 30; right: 0; top: 50%;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 26px 14px 22px;
    background: var(--cocoa); color: var(--white);
    border-radius: 18px 0 0 18px;
    transform: translate(100%, -50%);
    transition: transform .5s var(--ease), background-color .3s var(--ease);
  }
  .side-reserve.is-show { transform: translate(0, -50%); }
  .side-reserve__en { writing-mode: vertical-rl; font-size: 15px; font-style: italic; letter-spacing: .08em; }
  .side-reserve__ja { writing-mode: vertical-rl; font-size: 12px; letter-spacing: .3em; font-weight: 500; }
}
@media (min-width: 900px) and (hover: hover) {
  .side-reserve:hover { background: var(--rose-deep); }
}

.spbar {
  position: fixed; z-index: 30; left: 10px; right: 10px; bottom: 10px;
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 8px;
  padding: 8px; border-radius: 999px;
  background: rgba(248, 242, 238, .92); backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(74, 56, 53, .14);
  transform: translateY(140%);
  transition: transform .45s var(--ease);
}
.spbar.is-show { transform: none; }
.spbar__btn {
  display: flex; align-items: center; justify-content: center;
  height: 46px; border-radius: 999px;
  background: var(--cocoa); color: var(--white);
  font-size: 12.5px; font-weight: 500; letter-spacing: .06em; white-space: nowrap;
}
.spbar__btn--sub { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
@media (min-width: 900px) { .spbar { display: none; } }

/* =========================================================
   motion
   ========================================================= */
.js [data-reveal] {
  opacity: 0; translate: 0 28px;
  transition: opacity 1.1s var(--ease), translate 1.1s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; translate: 0 0; }
.js .dcard[data-reveal]:nth-child(3n+2) { transition-delay: .12s; }
.js .dcard[data-reveal]:nth-child(3n) { transition-delay: .24s; }
.js .scard[data-reveal]:nth-child(2), .js .first__steps li:nth-child(2) { transition-delay: .12s; }
.js .scard[data-reveal]:nth-child(3), .js .first__steps li:nth-child(3) { transition-delay: .24s; }

/* FV: 光がともるように、写真 → ロゴ → 線 の順に */
.js .fv__photo { animation: fvPhoto 1.4s var(--ease) both; }
.js .fv__word, .js .fv__logo-on { animation: fvLogo 1.4s var(--ease) .35s both; }
.js .fv__lead, .js .fv__side { animation: fvFade 1.2s var(--ease) .7s both; }
.fv__line path:first-child { stroke-dasharray: 1; stroke-dashoffset: 0; }
.fv__line .fv__spark { transform-origin: 492px 52px; }
.js .fv__line path:first-child { stroke-dashoffset: 1; transition: stroke-dashoffset 2.2s var(--ease) .9s; }
.js .fv__line .fv__spark { opacity: 0; transform: scale(.3) rotate(-30deg); transition: opacity .9s var(--ease) 2.5s, transform .9s var(--ease) 2.5s; }
.js .fv.is-lit .fv__line path:first-child { stroke-dashoffset: 0; }
.js .fv.is-lit .fv__line .fv__spark { opacity: 1; transform: none; }

@keyframes fvPhoto { from { opacity: 0; clip-path: inset(0 12% 0 0 round 0 36px 36px 0); } to { opacity: 1; clip-path: inset(0 0 0 0 round 0 36px 36px 0); } }
@keyframes fvLogo { from { opacity: 0; transform: translateY(18%); } to { opacity: 1; transform: none; } }
@keyframes fvFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal] { opacity: 1; translate: none; }
  .js .fv__line path:first-child { stroke-dashoffset: 0; }
  .js .fv__line .fv__spark { opacity: 1; transform: none; }
}
