@charset "UTF-8";
/* =========================================================
   Ease（東京・中目黒の架空の美容室）
   Kazuma Web Works のWebサイト制作サンプル

   6つのセクションを、ナビゲーションで軽快に行き来できる構成です。
   配色は生成りと墨、書体は明朝を軸にしています。
   ========================================================= */

/* ---------- 自前ホスティングのWebフォント ----------
   scripts/build-fonts.py が使用文字だけに絞って生成しています。
   Shippori Mincho / Jost（いずれも SIL Open Font License） */

@font-face {
  font-family: "Shippori Mincho";
  src: url("../fonts/shippori-mincho-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Shippori Mincho";
  src: url("../fonts/shippori-mincho-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* 色：白地に墨・焙じ茶。美容室らしい清潔感を優先し、地色は白一色に統一 */
  --paper:    #ffffff;
  --paper-2:  #f7f6f3;
  --ink:      #22201b;
  --ink-2:    #5d574b;
  --line:     #e4e1d8;
  --line-ink: #3a372f;
  /* 焙じ茶。背景の光が乗る面でも小さな文字がAA(4.5:1)を保てる濃さにしている */
  --accent:   #7e5f3c;

  /* 暗い面（Style面）用 */
  --d-bg:   #201d18;
  --d-text: #f2ede2;
  --d-sub:  #a89f8d;
  --d-line: #45403634;

  /* 書体 */
  --mincho: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --gothic: "Yu Gothic Medium", "YuGothic", "Hiragino Sans", "Meiryo", sans-serif;
  --latin:  "Jost", "Futura", "Avenir Next", "Century Gothic", "Segoe UI", sans-serif;

  --head-h: 76px;
  --ease: cubic-bezier(.22, .61, .21, 1);
}

/* ---------- 土台 ---------- */

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

html {
  /* セクション送りはヘッダーメニュー・右のジャンプナビ・「次へ」ボタンの
     3経路で用意しているため、スクロール自体はスナップさせず自由にしている。
     （以前は scroll-snap-type: y proximity を使っていたが、パネルが
     ちょうど100vhずつのため軽いスクロールでも引っかかりやすく、
     操作感を損ねていたため外した）
     スムース移動はJS側で行う（URL直リンクで開いた瞬間は動かさないため） */
  scroll-padding-top: 0;
}

body {
  font-family: var(--mincho);
  font-feature-settings: "palt";
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  letter-spacing: .06em;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
/* <picture> はレイアウトに参加させず、img をそのまま親の子として扱う */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
i, b { font-style: normal; }

.u-en {
  font-family: var(--latin);
  letter-spacing: .14em;
}

/* 目には見せず、読み上げにだけ届けたい補足に使う */
.u-vh {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

::selection { background: #d9cdb6; color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 100;
  padding: .6em 1em;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  transform: translateY(-300%);
}
.skip-link:focus { transform: none; }

/* ---------- サンプル表示（常時・小さく） ---------- */

.sample-badge {
  position: fixed;
  left: 14px; bottom: 14px;
  z-index: 60;
  padding: .35em .9em;
  border: 1px solid var(--line-ink);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  color: var(--ink);
  font-family: var(--gothic);
  font-size: 11px;
  letter-spacing: .12em;
}
.sample-badge:hover { background: var(--ink); color: var(--paper); }
body.on-dark .sample-badge {
  border-color: var(--d-sub);
  background: color-mix(in srgb, var(--d-bg) 82%, transparent);
  color: var(--d-text);
}
/* 最後の面はフッターに同じ趣旨の注記が出るので、重ならないよう引っ込める */
body.is-end .sample-badge {
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}

/* ---------- ヘッダー ---------- */

.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--head-h);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(20px, 3.4vw, 44px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
body.is-scrolled .site-head {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: var(--line);
}
body.on-dark .site-head {
  background: rgba(32, 29, 24, .94);
  border-bottom-color: #3a352c;
  color: var(--d-text);
}

.brand { min-height: 44px; display: flex; align-items: center; gap: 14px; }
.brand__mark {
  font-family: var(--latin);
  font-size: 24px;
  letter-spacing: .34em;
  font-weight: 300;
}
.brand__sub {
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--ink-2);
  text-transform: uppercase;
}
body.on-dark .brand__sub { color: var(--d-sub); }

.gnav { margin-left: auto; }
.gnav__list { display: flex; gap: clamp(14px, 2vw, 30px); }
.gnav__list a {
  position: relative;
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .4em 0;
  transition: color .3s;
}
/* 下線は左から引かれる */
.gnav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentcolor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s var(--ease);
}
.gnav__list a i {
  font-size: 9px;
  margin-right: .5em;
  color: var(--accent);
}
body.on-dark .gnav__list a i { color: var(--d-sub); }
.gnav__list a:hover::after,
.gnav__list a[aria-current="true"]::after { transform: scaleX(1); }
.gnav__note { display: none; }

.head-side { display: flex; align-items: center; gap: 18px; }
.gnav + .head-side { margin-left: 0; }

.head-reserve {
  appearance: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gothic);
  font-size: 12.5px;
  letter-spacing: .2em;
  padding: .72em 1.5em .68em 1.7em;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s, color .3s;
}
.head-reserve .u-en {
  display: inline-block;
  margin-left: .5em;
  font-size: 11px;
  transition: transform .45s var(--ease);
}
.head-reserve:hover .u-en { transform: translate3d(.3em, -.3em, 0); }
.head-reserve:hover { background: transparent; color: var(--ink); }
body.on-dark .head-reserve {
  background: var(--d-text);
  border-color: var(--d-text);
  color: var(--d-bg);
}
body.on-dark .head-reserve:hover { background: transparent; color: var(--d-text); }

/* ハンバーガー（モバイルのみ） */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 76px;
  min-height: 44px;
}
.menu-btn__bar {
  position: relative;
  width: 26px; height: 1px;
  background: currentcolor;
  transition: transform .3s var(--ease), background .3s;
}
.menu-btn__bar::before {
  content: "";
  position: absolute;
  left: 0; top: -7px;
  width: 26px; height: 1px;
  background: currentcolor;
  transition: transform .3s var(--ease), top .3s;
}
.menu-btn__label {
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: .3em;
}
body.menu-open .menu-btn__bar { transform: rotate(45deg); }
body.menu-open .menu-btn__bar::before { top: 0; transform: rotate(-90deg); }
body.menu-open { overflow: hidden; }

/* ---------- 右端の番号ナビ ---------- */

.dots {
  position: fixed;
  right: clamp(10px, 1.6vw, 26px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dots a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--ink-2);
  transition: color .3s;
  /* 写真の上に重なっても読めるように、地色のハロを敷く */
  text-shadow: 0 0 6px var(--paper), 0 0 2px var(--paper);
}
body.on-dark .dots a {
  text-shadow: 0 0 6px var(--d-bg), 0 0 2px var(--d-bg);
}
.dots a::before {
  content: "";
  width: 14px; height: 1px;
  background: currentcolor;
  transition: width .3s var(--ease);
}
.dots a:hover { color: var(--ink); }
.dots a[aria-current="true"] {
  color: var(--accent);
}
.dots a[aria-current="true"]::before { width: 30px; }
body.on-dark .dots a { color: var(--d-sub); }
body.on-dark .dots a:hover,
body.on-dark .dots a[aria-current="true"] { color: var(--d-text); }

/* ---------- 次へボタン ---------- */

.next-jump {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 40;
  width: 44px; height: 52px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-2);
  transition: color .3s, opacity .4s;
}
.next-jump:hover { color: var(--accent); }
body.on-dark .next-jump { color: var(--d-sub); }
body.on-dark .next-jump:hover { color: var(--d-text); }
.next-jump__line {
  position: absolute;
  left: 50%; top: 2px;
  width: 22px; height: 22px;
  border-right: 1px solid currentcolor;
  border-bottom: 1px solid currentcolor;
  transform: translateX(-50%) rotate(45deg);
  transition: border-color .3s, transform .3s;
}
body.on-dark .next-jump__line { border-color: var(--d-sub); }
.next-jump:hover .next-jump__line {
  border-color: var(--accent);
  transform: translateX(-50%) rotate(45deg) translate(2px, 2px);
}
body.is-end .next-jump,
body.menu-open .next-jump { opacity: 0; pointer-events: none; }

/* ---------- パネル共通 ---------- */

.panel {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.panel__inner {
  width: min(1180px, calc(100% - clamp(40px, 8vw, 120px)));
  margin-inline: auto;
  padding-top: var(--head-h);
  padding-bottom: 28px;
}

.sec-head {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(18px, 2.6vh, 34px);
}
.panel[data-tone="dark"] .sec-head { color: var(--d-sub); }

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
}

/* ---------- 01 TOP ----------
   写真を全面に敷き、文章は下部に淡いグラデーションを添えて重ねる構成 */

.panel--top {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(330px, 44%) minmax(0, 56%);
  background: var(--paper);
}
.top__photo {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
}
.top__photo::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: clamp(80px, 16vw, 220px);
  background: linear-gradient(to right, var(--paper) 0%, rgba(255, 255, 255, .82) 32%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.top__slide {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.top__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
html.js .top__slide {
  opacity: 0;
  transition: opacity 2.2s var(--ease);
}
html.js .top__slide.is-active {
  opacity: 1;
}
html:not(.js) .top__slide:not(:first-child) {
  display: none;
}
.top__overlay {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: clamp(40px, 10vh, 100px) clamp(28px, 5vw, 82px);
  text-align: center;
  background: var(--paper);
}
.top__brand {
  margin: 0;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: .08em;
  color: var(--ink);
}
.top__en {
  font-size: 10px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
}
/* ファーストビューでも架空のサンプルだと分かるようにしておく */
.top__note {
  margin-top: 4px;
  font-family: var(--gothic);
  font-size: 11px;
  letter-spacing: .06em;
  line-height: 1.8;
  color: var(--ink-2);
  max-width: 26em;
  text-align: center;
}

/* ---------- 02 CONCEPT ---------- */

.concept__body p + p { margin-top: 1em; }
.concept__body { max-width: 34em; color: var(--ink); }

.concept__facts {
  margin-top: clamp(18px, 3vh, 30px);
  display: flex;
}
.concept__facts > div {
  flex: 1;
  padding: 4px 18px;
  border-left: 1px solid var(--line);
}
.concept__facts dt {
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--accent);
  font-family: var(--gothic);
}
.concept__facts dd { font-size: 14px; }

.concept__photos {
  position: relative;
  height: min(62vh, 560px);
}
.concept__ph { position: absolute; overflow: hidden; }
.concept__ph img { width: 100%; height: 100%; object-fit: cover; }
.concept__ph--a {
  right: 0; top: 0;
  width: 62%;
  height: 74%;
}
.concept__ph--b {
  left: 0; bottom: 0;
  width: 52%;
  height: 44%;
  outline: 10px solid var(--paper);
}

/* ---------- 03 MENU ---------- */

.panel--menu { background: var(--paper-2); }

.grid-menu {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}
.menu__photo {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.menu__photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.menu__photo figcaption {
  position: absolute;
  left: 0; bottom: 0;
  padding: .7em 1.2em;
  background: color-mix(in srgb, var(--ink) 66%, transparent);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: .12em;
}

.menu__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.6vh, 26px) clamp(24px, 3vw, 48px);
}
.mgroup__name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.mrow {
  display: flex;
  align-items: baseline;
  gap: .7em;
  font-size: 13.5px;
  padding: .28em 0;
}
.mrow__dots {
  flex: 1;
  border-bottom: 1px dotted #b4aa93;
  transform: translateY(-.3em);
}
.mrow__price {
  font-family: var(--latin);
  letter-spacing: .06em;
  font-size: 13px;
  white-space: nowrap;
}

.menu__notes {
  margin-top: clamp(14px, 2.4vh, 22px);
  font-family: var(--gothic);
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--ink-2);
}
.menu__cta { margin-top: clamp(14px, 2.4vh, 22px); }

/* ボタンは、地の色が左から滑り込んで反転します */
.btn-line,
.btn-fill {
  appearance: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: transparent;
  font-family: var(--gothic);
  font-size: 13px;
  letter-spacing: .16em;
  padding: .9em 1.9em;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: color .45s var(--ease);
}
.btn-line::before,
.btn-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translate3d(-101%, 0, 0);
  transition: transform .5s var(--ease);
}
.btn-line::before { background: var(--ink); }
.btn-line:hover { color: var(--paper); }
.btn-line:hover::before { transform: none; }

.btn-fill { background: var(--ink); color: var(--paper); }
.btn-fill::before { background: var(--paper); }
.btn-fill:hover { color: var(--ink); }
.btn-fill:hover::before { transform: none; }

.btn-line .u-en, .btn-fill .u-en {
  display: inline-block;
  margin-left: .6em;
  font-size: 11px;
  transition: transform .45s var(--ease);
}
.btn-line:hover .u-en,
.btn-fill:hover .u-en { transform: translate3d(.3em, -.3em, 0); }

/* ---------- 04 STYLE（暗い面・横に流すルックブック） ---------- */

.panel--style {
  background: var(--d-bg);
  color: var(--d-text);
}

@media (min-width: 961px) {
  .panel--style .panel__inner {
    position: relative;
    --look-nav-top: 48px;
    padding-top: 48px;
    padding-bottom: 20px;
  }
}

.lookbook {
  display: flex;
  gap: clamp(14px, 1.8vw, 26px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: #55503f transparent;
}
.look {
  flex: 0 0 clamp(190px, 19vw, 250px);
  scroll-snap-align: start;
}
.look figure {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #2b2822;
}
.look img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), opacity .8s;
}
.look:hover img { transform: scale(1.045); }
/* 触れると光がひと筋わたる */
.look figure::after {
  content: "";
  position: absolute;
  inset: -20% -60%;
  background: linear-gradient(100deg,
    transparent 38%,
    rgba(255, 255, 255, .38) 50%,
    transparent 62%);
  transform: translate3d(-70%, 0, 0);
  opacity: 0;
  pointer-events: none;
}
.look:hover figure::after {
  opacity: 1;
  transform: translate3d(70%, 0, 0);
  transition: transform 1s var(--ease), opacity .3s;
}
.look__cap {
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: .1em;
  line-height: 1.7;
}
.look__cap b {
  display: block;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--d-sub);
  margin-bottom: 2px;
}
.look__cap span {
  display: block;
  font-family: var(--gothic);
  font-size: 10.5px;
  color: var(--d-sub);
}
.lookbook__note {
  margin-top: clamp(12px, 2vh, 20px);
  font-size: 12.5px;
  color: var(--d-sub);
}
.demo-text-link {
  appearance: none;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.lookbook__note .demo-text-link {
  color: var(--d-text);
  border: 0;
  border-bottom: 1px solid var(--d-sub);
  padding-bottom: 1px;
  margin-inline: .2em;
}
.lookbook__note .demo-text-link:hover { border-bottom-color: var(--d-text); }
.lookbook__note .u-en { font-size: 10px; margin-left: .3em; }

/* 横送りボタン */
.look-nav {
  position: absolute;
  right: 0;
  top: var(--look-nav-top, var(--head-h));
  display: flex;
  gap: 10px;
}
.look-nav button {
  width: 40px; height: 40px;
  background: none;
  border: 1px solid #55503f;
  color: var(--d-text);
  font-family: var(--latin);
  font-size: 14px;
  cursor: pointer;
  transition: border-color .3s, background .3s, color .3s;
}
.look-nav button:hover {
  border-color: var(--d-text);
  background: var(--d-text);
  color: var(--d-bg);
}
.look-nav button[aria-disabled="true"] {
  border-color: #3a372f;
  color: #686252;
  background: none;
  cursor: default;
}

/* ---------- 05 STYLIST ---------- */

/* 他の面と同じく1画面ぶんの高さを取る。ここだけ min-height を外すと
   PCで面が短くなり、次のAccessが下から覗いて体裁が崩れる */
.panel--stylist .panel__inner {
  padding-top: calc(var(--head-h) + 8px);
  padding-bottom: 42px;
}
.stylists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 52px);
  max-width: 980px;
}
.stylist { display: flex; gap: clamp(16px, 2vw, 26px); }
.stylist__ph {
  flex: 0 0 clamp(140px, 14vw, 190px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.stylist__ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.88);
}
.stylist__role {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.stylist__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .12em;
  margin-bottom: 8px;
}
.stylist__name .u-en {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 2px;
}
.stylist__bio {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.9;
}
.stylist__word {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: .1em;
}
.stylists__note {
  margin-top: clamp(14px, 2.2vh, 22px);
  font-family: var(--gothic);
  font-size: 11.5px;
  color: var(--ink-2);
}

/* ---------- 06 ACCESS ---------- */

.panel--access { justify-content: flex-start; }
/* この面の .panel__inner は .grid-2 を兼ねている（フッターを下に置くため flex:1 で伸ばす） */
.panel--access .panel__inner {
  flex: 1;
  align-content: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
}

.access__table > div {
  display: grid;
  grid-template-columns: 7.5em 1fr;
  gap: 16px;
  padding: .68em 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.access__table > div:first-child { border-top: 1px solid var(--line); }
.access__table dt {
  color: var(--ink-2);
  letter-spacing: .2em;
}
.access__table dd { line-height: 1.8; }

.access__actions {
  margin-top: clamp(18px, 3vh, 30px);
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.access__sns { display: flex; gap: 20px; }
.access__sns .demo-text-link {
  font-size: 12px;
  letter-spacing: .2em;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.access__sns .demo-text-link:hover { border-bottom-color: var(--ink); }

.access__photo {
  overflow: hidden;
  height: min(56vh, 520px);
}
.access__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.site-foot {
  background: var(--ink);
  color: #cfc8b8;
  padding: 20px clamp(20px, 4vw, 60px) 24px;
}
.site-foot__note {
  font-family: var(--gothic);
  font-size: 11px;
  line-height: 1.9;
  max-width: 62em;
}
.site-foot__note b { color: var(--paper); font-weight: 600; }
/* 個人情報保護方針へのリンクは、著作権表示と同じ行にまとめて縦の余白を詰める */
.site-foot__copy {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-size: 10px;
  letter-spacing: .22em;
  color: #9a927e;
}
.site-foot__privacy {
  color: #cfc8b8;
  border-bottom: 1px solid #55503f;
  padding-bottom: 1px;
  letter-spacing: .06em;
}
.site-foot__privacy:hover { border-bottom-color: #cfc8b8; }

/* ---------- 登場のアニメーション ----------
   JSが動く環境でだけ隠す（html.js）。動きを控えたい設定の
   ときはアニメーションなしで最初から表示します */

@media (prefers-reduced-motion: no-preference) {
  html.js .rv {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    transition-delay: var(--rv-delay, 0s);
  }
  html.js .rv.is-in {
    opacity: 1;
    transform: none;
  }

  /* 写真は下から開くように出す。中の画像は少し引きながら定位置へ */
  html.js .rv--mask {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, var(--py, 0px), 0);
    transition: clip-path 1.05s var(--ease);
    transition-delay: var(--rv-delay, 0s);
  }
  html.js .rv--mask.is-in { clip-path: inset(0 0 0 0); }
  html.js .rv--mask img {
    transform: scale(1.14);
    transition: transform 1.5s var(--ease);
    transition-delay: var(--rv-delay, 0s);
  }
  html.js .rv--mask.is-in img { transform: none; }

  /* 料金の行は、上から順にすっと出す */
  html.js .mgroup .mrow {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
  }
  html.js .mgroup.is-in .mrow { opacity: 1; transform: none; }
  html.js .mgroup.is-in .mrow:nth-child(1) { transition-delay: calc(var(--rv-delay, 0s) + .10s); }
  html.js .mgroup.is-in .mrow:nth-child(2) { transition-delay: calc(var(--rv-delay, 0s) + .20s); }
  html.js .mgroup.is-in .mrow:nth-child(3) { transition-delay: calc(var(--rv-delay, 0s) + .30s); }

  /* 見出しは1文字ずつ立ち上げる。文字送りはJSが span に分けてから */
  html.js .is-split { opacity: 1; transform: none; }
  html.js .is-split .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(.55em);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transition-delay: calc(var(--i) * 45ms);
  }
  html.js .is-split.is-in .char {
    opacity: 1;
    transform: none;
  }
  /* 立ち上がったあと、光が左から右へ流れる（きらめき）。
     見えている面だけで動かし、画面外では止めておきます */
  html.js .is-active .is-split.is-in .char {
    animation: char-sheen 3.2s ease-in-out infinite;
    animation-delay: calc(1.5s + var(--i) * 70ms);
  }

}

.demo-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  max-width: min(420px, calc(100vw - 40px));
  padding: .8em 1.2em;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--gothic);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.demo-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes char-sheen {
  0%, 100% { filter: brightness(1); }
  6%       { filter: brightness(1.75); }
  14%      { filter: brightness(1); }
}
@media (prefers-reduced-motion: reduce) {
  .rv,
  .rv::after,
  .char,
  .look figure::after,
  .btn-line::before,
  .btn-fill::before,
  .demo-toast {
    animation: none !important;
    transition: none !important;
  }
  .look img { transition: none; }
  .opening { display: none; }
  .glow span { animation: none; }
  .glow__slot { transition: none; }
  html.js .top__slide { transition: none; }
}

/* ---------- オープニング（1セッションに1回） ---------- */

.opening {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition: opacity .7s var(--ease), visibility 0s .7s;
}
.opening__logo {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: .6em;
  text-indent: .6em;
  opacity: 0;
  animation: opening-logo 1.5s var(--ease) forwards;
}
@keyframes opening-logo {
  0%   { opacity: 0; letter-spacing: 1.1em; }
  45%  { opacity: 1; }
  100% { opacity: 1; letter-spacing: .34em; }
}
/* 幕は下に残さず、そのまま明るく抜ける */
.opening.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.opening.is-done .opening__logo { transition: opacity .4s; opacity: 0; }
/* JSが動かない環境では最初から出さない */
html:not(.js) .opening { display: none; }

/* ---------- 背景の光（白い店内に差す反射のイメージ） ----------
   .glow は画面に固定。中の slot が画面（data-panel）ごとに基準位置を
   変え、そのなかで span がゆっくり漂います。
   Menu / Style の面は自前の不透明な背景を持つため、そこでは隠れます */

.glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.glow__slot {
  position: absolute;
  inset: 0;
  transition: transform 1.6s var(--ease);
  will-change: transform;
}
.glow__slot--a { transform: translate3d(var(--a-x, 0), var(--a-y, 0), 0); }
.glow__slot--b { transform: translate3d(var(--b-x, 0), var(--b-y, 0), 0); }
.glow__slot--c { transform: translate3d(var(--c-x, 0), var(--c-y, 0), 0); }

.glow span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
/* 白を濁らせないよう色みは抑えつつ、しっかり動きが見える濃さにします */
.glow__a {
  width: 46vw; height: 46vw;
  top: -12vw; left: -8vw;
  background: rgba(233, 205, 184, .64);
  animation: drift-a 34s ease-in-out infinite alternate;
}
.glow__b {
  width: 38vw; height: 38vw;
  bottom: -14vw; right: -6vw;
  background: rgba(196, 220, 217, .60);
  animation: drift-b 44s ease-in-out infinite alternate;
}
.glow__c {
  width: 30vw; height: 30vw;
  top: 38%; left: 52%;
  background: rgba(219, 210, 231, .52);
  animation: drift-c 52s ease-in-out infinite alternate;
}
@keyframes drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(14vw, 10vh, 0) scale(1.18); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.1); }
  to   { transform: translate3d(-12vw, -12vh, 0) scale(.92); }
}
@keyframes drift-c {
  from { transform: translate3d(0, 0, 0) scale(.9); }
  to   { transform: translate3d(-16vw, 12vh, 0) scale(1.25); }
}

/* 画面ごとの基準位置。値は玄関の「凪」→部屋ごとに陽の差し方が
   変わるイメージで、ゆるく散らしています */
body[data-panel="top"] {
  --a-x: 0vw;  --a-y: 0vh;
  --b-x: 0vw;  --b-y: 0vh;
  --c-x: 0vw;  --c-y: 0vh;
}
body[data-panel="concept"] {
  --a-x: 12vw; --a-y: 8vh;
  --b-x: -16vw; --b-y: -10vh;
  --c-x: -10vw; --c-y: 10vh;
}
body[data-panel="menu"] {
  --a-x: -8vw; --a-y: 12vh;
  --b-x: 14vw; --b-y: -6vh;
  --c-x: 6vw;  --c-y: -12vh;
}
body[data-panel="style"] {
  --a-x: 18vw; --a-y: -8vh;
  --b-x: -10vw; --b-y: 14vh;
  --c-x: -20vw; --c-y: -6vh;
}
body[data-panel="stylist"] {
  --a-x: -10vw; --a-y: -12vh;
  --b-x: 16vw; --b-y: 8vh;
  --c-x: -22vw; --c-y: 6vh;
}
body[data-panel="access"] {
  --a-x: 16vw; --a-y: 14vh;
  --b-x: -20vw; --b-y: -8vh;
  --c-x: 4vw;  --c-y: -16vh;
}

/* 本文は光より前面に。背景を持たない面では光が透けて見えます */
main { position: relative; z-index: 1; }

/* ---------- 下層ページ（個人情報保護方針など） ----------
   6画面のジャンプ構成ではなく、上から普通に読む1本のページです。
   幅は .panel__inner と揃え、見出しは .sec-head を使い回して
   トップページと同じ調子にしています */

.legal {
  padding-top: calc(var(--head-h) + 48px);
  padding-bottom: 90px;
}
/* トップページの .sec-head は、1画面ジャンプ構成の登場演出
   （文字分割・IntersectionObserverでの is-in 付与）と結びついている。
   下層ページは普通に上から読むだけなので、その仕組みには頼らず
   最初から表示される見出しにしている */
.legal__title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(18px, 2.6vh, 34px);
}
.legal__crumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--ink-2);
  margin-bottom: clamp(28px, 5vh, 52px);
}
.legal__crumb a { border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.legal__crumb a:hover { border-bottom-color: var(--ink-2); }
.legal__crumb span[aria-hidden] { color: var(--line-ink); }

.legal__lead {
  max-width: 40em;
  color: var(--ink-2);
  margin-bottom: clamp(30px, 5vh, 54px);
}
.legal__lead p + p { margin-top: 1em; }

.legal__section {
  max-width: 42em;
  padding: clamp(20px, 3vh, 30px) 0;
  border-top: 1px solid var(--line);
}
.legal__section:last-of-type { border-bottom: 1px solid var(--line); }
.legal__section h2 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.legal__section h2 .u-en {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .28em;
  color: var(--accent);
  margin-bottom: 6px;
}
.legal__section p,
.legal__section li {
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-2);
}
.legal__section p + p { margin-top: .8em; }
.legal__section ul {
  margin-top: .4em;
  padding-left: 1.3em;
}
.legal__section li { list-style: disc; margin-top: .3em; }
.legal__section li::marker { color: var(--accent); }

.legal__callout {
  max-width: 42em;
  margin-top: clamp(28px, 4vh, 44px);
  padding: 22px clamp(20px, 3vw, 30px);
  background: var(--paper-2);
  border-left: 2px solid var(--accent);
}
.legal__callout p { font-size: 13.5px; line-height: 1.9; color: var(--ink-2); }
.legal__callout p + p { margin-top: .6em; }
.legal__callout dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  font-size: 13px;
  color: var(--ink-2);
}
.legal__callout dt { color: var(--ink-2); }
.legal__callout dd { color: var(--ink); }

.legal__note {
  max-width: 42em;
  margin-top: clamp(28px, 4vh, 44px);
  padding: 20px clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
}
.legal__note p {
  font-family: var(--gothic);
  font-size: 12px;
  line-height: 1.95;
  color: var(--ink-2);
}
.legal__note p + p { margin-top: .6em; }
.legal__note b { color: var(--ink); }

.legal__dates {
  max-width: 42em;
  margin-top: clamp(20px, 3vh, 30px);
  font-family: var(--gothic);
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-2);
}

.legal__back {
  display: inline-block;
  margin-top: clamp(36px, 6vh, 60px);
}

/* ---------- モバイル ---------- */

@media (max-width: 960px) {
  :root { --head-h: 62px; }

  body { font-size: 14px; }

  .brand__sub { display: none; }
  .brand__mark { font-size: 20px; }

  .menu-btn { display: flex; }
  .head-reserve { padding: .6em 1em; font-size: 11.5px; }

  /* TOPは写真が上に来るため、ヘッダーには常に地色を敷く。
     backdrop-filter は position:fixed の子要素の基準位置を
     ヘッダー自身に変えてしまい、全画面メニュー（.gnav）が
     ヘッダーの高さに閉じ込められる。スマホでは外しておく */
  .site-head {
    background: rgba(255, 255, 255, .96);
    border-bottom-color: var(--line);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* バッジは画面下端の細い帯に。本文と重ならず、常にサンプルだと分かる */
  .sample-badge {
    left: 0;
    right: 0;
    bottom: 0;
    padding: .5em 1em;
    border: none;
    background: color-mix(in srgb, var(--paper) 92%, transparent);
    text-align: center;
    letter-spacing: .16em;
  }
  body.on-dark .sample-badge {
    background: color-mix(in srgb, var(--d-bg) 88%, transparent);
  }
  body.is-end .sample-badge { opacity: 0; }

  /* 全画面メニュー。.gnav はヘッダーの子なので、z-indexを持たせると
     ロゴや閉じるボタンより前面に出てしまう。背面に置いて重なりを避ける */
  .brand,
  .head-side { position: relative; z-index: 1; }
  .gnav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 80px clamp(28px, 10vw, 60px) 40px;
    background: var(--paper);
    color: var(--ink);
    visibility: hidden;
    opacity: 0;
    transition: opacity .35s var(--ease), visibility 0s .35s;
  }
  body.menu-open .gnav {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }
  .gnav__list {
    flex-direction: column;
    gap: 0;
  }
  .gnav__list a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-family: var(--mincho);
    font-size: 22px;
    letter-spacing: .22em;
    text-transform: none;
    padding: .55em 0;
    border-bottom: 1px solid var(--line);
  }
  /* 一覧の区切り線があるので、なぞる下線は出しません */
  .gnav__list a::after { display: none; }
  .gnav__list a i { font-family: var(--latin); font-size: 10px; }
  .gnav__note {
    display: block;
    font-family: var(--gothic);
    font-size: 11px;
    color: var(--ink-2);
  }
  body.menu-open .site-head {
    background: transparent;
    border-bottom-color: transparent;
    color: var(--ink);
  }

  .dots { display: none; }

  .panel { min-height: 100vh; min-height: 100svh; }
  /* 下端のサンプル帯（約34px）と重ならないよう、下側に余白を確保する */
  .panel__inner { padding-top: calc(var(--head-h) + 8px); padding-bottom: 42px; }

  /* TOP：モバイルでは写真を上、テキストを下に積み、写真下端だけ白へ溶かす */
  .panel--top {
    display: flex;
    flex-direction: column;
  }
  .top__photo {
    flex: 1 1 auto;
    min-height: 54vh;
  }
  .top__photo::after {
    width: 100%;
    height: 104px;
    inset: auto 0 0;
    background: linear-gradient(to top, var(--paper) 0, var(--paper) 16px, rgba(255, 255, 255, .9) 34px, rgba(255, 255, 255, .72) 52%, rgba(255, 255, 255, 0) 100%);
  }
  .top__overlay {
    flex: 0 0 auto;
    z-index: 2;
    margin-top: -1px;
    min-height: 26vh;
    padding: clamp(28px, 9vh, 64px) clamp(20px, 6vw, 40px) 34px;
    gap: 9px;
  }
  .top__brand { font-size: clamp(56px, 18vw, 82px); }

  .grid-2,
  .panel--access .grid-2,
  .grid-menu { grid-template-columns: 1fr; }

  /* CONCEPT：写真は横並びの2枚に */
  .concept__photos {
    height: auto;
    display: flex;
    gap: 12px;
  }
  .concept__ph { position: static; }
  .concept__ph--a { width: 56%; height: auto; aspect-ratio: 4 / 5; }
  .concept__ph--b { width: 44%; height: auto; aspect-ratio: 4 / 5; outline: none; align-self: flex-end; }
  .concept__facts > div { padding: 4px 10px; }
  .concept__facts > div:first-child { border-left: none; padding-left: 0; }

  /* MENUは項目数が多いので、1画面に収まるところまで詰める */
  .menu__photo { display: none; }
  .menu__cols { grid-template-columns: 1fr; gap: 11px; }
  .sec-head { margin-bottom: 12px; }
  .mgroup__name { padding-bottom: 4px; margin-bottom: 5px; }
  .mrow { font-size: 12.5px; padding: .1em 0; }
  .mrow__price { font-size: 12px; }
  .menu__notes { font-size: 10.5px; line-height: 1.7; margin-top: 12px; }
  .menu__cta { margin-top: 12px; }
  .btn-line, .btn-fill { font-size: 12px; padding: .8em 1.4em; }

  .look { flex: 0 0 min(62vw, 240px); }
  .look-nav { display: none; }

  .stylists { grid-template-columns: 1fr; gap: 22px; }
  .stylist__ph { flex-basis: clamp(120px, 32vw, 160px); }
  .panel--stylist .panel__inner { padding-top: calc(var(--head-h) + 4px); padding-bottom: 32px; }

  .access__photo { display: none; }
  .access__table > div {
    grid-template-columns: 6.2em 1fr;
    gap: 10px;
    padding: .48em 0;
    font-size: 12.5px;
  }
  .access__actions { margin-top: 16px; gap: 16px; }

  /* 最後の面はフッターを含めて1画面に収める */
  .panel--access .panel__inner { padding-bottom: 16px; }
  .site-foot {
    padding: 14px clamp(20px, 6vw, 40px) 16px;
  }
  .site-foot__note { font-size: 10px; line-height: 1.75; }
  .site-foot__copy { margin-top: 8px; }

  .sample-badge { font-size: 10px; }
  .demo-toast { bottom: 42px; }
  .next-jump { display: none; }

  /* 個人情報保護方針など、下端のサンプル帯と重ならないよう余白を足す */
  .legal { padding-bottom: 56px; }
  .legal__section h2 { font-size: 14px; }
}

@media (max-width: 360px) {
  /* 固定サンプル帯の上に予約ボタンまで収まるよう、項目数の多いMenuだけ詰める */
  .panel--menu .panel__inner { padding-top: calc(var(--head-h) + 4px); }
  .panel--menu .sec-head { margin-bottom: 8px; }
  .panel--menu .menu__cols { gap: 6px; }
  .panel--menu .mgroup__name { padding-bottom: 2px; margin-bottom: 3px; }
  .panel--menu .mrow { padding: 0; line-height: 1.55; }
  .panel--menu .menu__notes { margin-top: 8px; line-height: 1.55; }
  .panel--menu .menu__cta { margin-top: 8px; }

  .top__overlay {
    padding-bottom: 56px;
  }
  .top__en {
    font-size: 9px;
    letter-spacing: .24em;
    line-height: 1.8;
  }
}

/* 短い画面（ノートPCなど）でも1画面に収まるよう詰める */
@media (min-width: 961px) and (max-height: 760px) {
  body { font-size: 13.5px; }
  .sec-head { margin-bottom: 14px; }
  .concept__photos { height: min(58vh, 430px); }
  .mrow { font-size: 12.5px; padding: .2em 0; }
  .menu__notes { font-size: 10.5px; }
  .access__photo { height: 48vh; }
  .top__overlay { padding-top: clamp(40px, 10vh, 80px); gap: 10px; }
}
