/* Total Salon NO-K — サイトの見た目
   色はロゴ(黒地に金のセリフ体)に合わせた。写真が無くても成り立つ作り。 */

:root {
  --ink: #131210;
  --ink-2: #1c1a17;
  --ink-3: #2a2723;
  --paper: #f6f2ea;
  --bone: #ece6d9;
  --white: #fffdf9;
  --gold: #b99a5b;
  --gold-l: #e2cf9f;
  --gold-d: #86692f;
  --text: #2a2723;
  --mute: #6f695e;
  --line: rgba(19, 18, 16, .13);
  --line-d: rgba(226, 207, 159, .22);
  --serif-jp: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --serif-en: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --wrap: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --header-h: 72px;
  --notch: var(--paper);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }

/* ───────── ヘッダー ───────── */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  color: var(--paper);
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}
.header.is-solid, .page-sub .header { background: rgba(19, 18, 16, .94); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line-d); }
.header__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(100% - var(--gutter) * 2, 1280px); margin-inline: auto; }
.brand { display: flex; align-items: baseline; gap: 12px; text-decoration: none; line-height: 1; }
.brand__mark { font-family: var(--serif-en); font-size: 30px; font-weight: 500; letter-spacing: .08em; color: var(--gold-l); }
.brand__sub { font-family: var(--serif-en); font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: rgba(246, 242, 234, .7); }
.nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); }
.nav a { text-decoration: none; font-size: 13.5px; letter-spacing: .12em; position: relative; padding: 6px 0; color: rgba(246, 242, 234, .88); }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold-l); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav .btn { padding: 10px 22px; font-size: 13px; }
.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span { position: absolute; left: 10px; right: 10px; height: 1px; background: var(--gold-l); transition: transform .3s ease, opacity .3s ease, top .3s ease; }
.burger span:nth-child(1) { top: 16px; } .burger span:nth-child(2) { top: 22px; } .burger span:nth-child(3) { top: 28px; }
.nav-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ───────── ボタン ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px; border-radius: 999px;
  font-size: 15px; font-weight: 500; letter-spacing: .1em; text-decoration: none; line-height: 1.3;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn--gold { background: linear-gradient(135deg, #cdb07a, #a98845); color: #15130f; box-shadow: 0 8px 24px -10px rgba(185, 154, 91, .8); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(185, 154, 91, .9); }
.btn--line { border-color: currentColor; color: inherit; }
.btn--line:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.on-dark .btn--line:hover, .hero .btn--line:hover { background: var(--gold-l); color: var(--ink); border-color: var(--gold-l); }
.btn--sm { padding: 11px 22px; font-size: 13px; }
.btn .arr { display: inline-block; width: 18px; height: 1px; background: currentColor; position: relative; }
.btn .arr::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); }
.ext::after { content: "↗"; font-size: .85em; margin-left: .35em; opacity: .7; }

/* ───────── ヒーロー ───────── */
.hero {
  position: relative; min-height: min(100svh, 920px);
  background:
    radial-gradient(1100px 600px at 85% 20%, rgba(185, 154, 91, .16), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(185, 154, 91, .10), transparent 60%),
    var(--ink);
  color: var(--paper);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 72px;
  overflow: hidden;
}
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .5; }
.hero__in { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.hero__eyebrow { font-family: var(--serif-en); font-size: 15px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-l); display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; }
.hero__eyebrow .kana { font-family: var(--sans); font-size: 12px; letter-spacing: .24em; color: rgba(246, 242, 234, .62); text-transform: none; }
.hero__title { font-family: var(--serif-jp); font-weight: 500; font-size: clamp(30px, 4.5vw, 58px); line-height: 1.5; letter-spacing: .06em; margin-top: 26px; }
.hero__title .nw { white-space: nowrap; }
.hero__title em { font-style: normal; color: var(--gold-l); }
.hero__sub { margin-top: 22px; font-size: clamp(14px, 1.5vw, 16.5px); letter-spacing: .1em; color: rgba(246, 242, 234, .84); }
.hero__facts { margin-top: 34px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line-d); max-width: 560px; }
.hero__facts li { padding: 14px 8px 14px 0; border-bottom: 1px solid var(--line-d); font-size: 13.5px; letter-spacing: .06em; display: flex; gap: 10px; align-items: baseline; color: rgba(246, 242, 234, .9); }
.hero__facts li::before { content: ""; width: 5px; height: 5px; flex: none; background: var(--gold); transform: rotate(45deg) translateY(-2px); }
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin-top: 14px; font-size: 12px; color: rgba(246, 242, 234, .55); }

.arch { position: relative; aspect-ratio: 3 / 4; max-width: 420px; margin-inline: auto; width: 100%; }
.arch__frame { position: absolute; inset: 0; border-radius: 999px 999px 10px 10px; border: 1px solid rgba(226, 207, 159, .55); overflow: hidden; background: linear-gradient(180deg, rgba(226, 207, 159, .12), rgba(226, 207, 159, .02) 60%), var(--ink-2); display: grid; place-items: center; }
.arch__frame img { width: 100%; height: 100%; object-fit: cover; }
.arch::before { content: ""; position: absolute; inset: -14px; border-radius: 999px 999px 16px 16px; border: 1px solid rgba(226, 207, 159, .2); }
.arch__mono { text-align: center; color: var(--gold-l); }
.arch__mono b { display: block; font-family: var(--serif-en); font-weight: 500; font-size: clamp(64px, 9vw, 112px); letter-spacing: .06em; line-height: 1; }
.arch__mono i { display: block; margin-top: 14px; font-family: var(--serif-en); font-style: italic; font-size: 17px; letter-spacing: .3em; color: rgba(226, 207, 159, .75); }
.arch__mono small { display: block; margin-top: 26px; font-family: var(--sans); font-size: 11.5px; letter-spacing: .3em; color: rgba(246, 242, 234, .55); }
.arch__foot { position: absolute; left: 0; right: 0; bottom: 8%; text-align: center; font-family: var(--serif-jp); font-size: 12.5px; letter-spacing: .16em; line-height: 2; color: rgba(226, 207, 159, .78); padding: 0 12%; }
.arch__orn { position: absolute; left: 50%; top: 9%; width: 1px; height: 12%; background: linear-gradient(var(--gold-l), transparent); }
.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); font-family: var(--serif-en); font-size: 11px; letter-spacing: .4em; color: rgba(226, 207, 159, .7); text-transform: uppercase; }

/* 流れる帯 */
.strip { background: var(--ink-2); color: var(--gold-l); border-block: 1px solid var(--line-d); overflow: hidden; }
.strip__track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.strip ul { display: flex; flex: none; }
.strip li { padding: 15px 28px; font-family: var(--serif-jp); font-size: 14.5px; letter-spacing: .2em; white-space: nowrap; display: flex; align-items: center; gap: 56px; }
.strip li::after { content: "◇"; font-size: 9px; opacity: .6; margin-right: -28px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ───────── セクション共通 ───────── */
.sec { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.sec--bone { background: var(--bone); --notch: var(--bone); }
.sec--dark { background: var(--ink); color: var(--paper); --notch: var(--ink); }
.sec__head { margin-bottom: clamp(36px, 5vw, 60px); }
.sec__head--center { text-align: center; }
.sec__en { font-family: var(--serif-en); font-style: italic; font-size: clamp(17px, 1.6vw, 20px); letter-spacing: .22em; color: var(--gold-d); display: inline-flex; align-items: center; gap: 14px; }
.sec__en::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.sec--dark .sec__en { color: var(--gold-l); }
.sec__title { font-family: var(--serif-jp); font-weight: 500; font-size: clamp(25px, 3.3vw, 38px); line-height: 1.6; letter-spacing: .08em; margin-top: 12px; }
.sec__lead { margin-top: 18px; color: var(--mute); max-width: 46em; font-size: 15px; }
.sec__head--center .sec__lead { margin-inline: auto; }
.sec--dark .sec__lead { color: rgba(246, 242, 234, .7); }
.sec__more { margin-top: clamp(32px, 4vw, 52px); display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ───────── コンセプト ───────── */
.concept { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 84px); align-items: start; }
.concept__quote { font-family: var(--serif-jp); font-size: clamp(21px, 2.5vw, 29px); line-height: 1.85; letter-spacing: .1em; position: relative; padding-top: 34px; }
.concept__quote::before { content: "“"; position: absolute; top: -18px; left: -6px; font-family: var(--serif-en); font-size: 80px; line-height: 1; color: var(--gold); opacity: .55; }
.concept__by { margin-top: 22px; font-size: 13px; letter-spacing: .14em; color: var(--mute); display: flex; align-items: center; gap: 12px; }
.concept__by::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.tags { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.tags li { font-size: 12.5px; letter-spacing: .08em; padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.point { background: var(--white); padding: clamp(22px, 2.6vw, 32px); }
.point__no { font-family: var(--serif-en); font-style: italic; color: var(--gold-d); font-size: 15px; letter-spacing: .16em; }
.point__t { font-family: var(--serif-jp); font-size: 19px; letter-spacing: .08em; margin-top: 8px; line-height: 1.6; }
.point__d { margin-top: 10px; font-size: 13.8px; line-height: 1.95; color: var(--mute); }

/* ───────── メニューの柱 ───────── */
.pillars { display: grid; gap: 22px; }
.pillar { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pillar__l { padding: clamp(26px, 3.4vw, 44px); background: var(--ink); color: var(--paper); position: relative; display: flex; flex-direction: column; }
.pillar__no { font-family: var(--serif-en); font-style: italic; font-size: 15px; letter-spacing: .2em; color: var(--gold-l); }
.pillar__t { font-family: var(--serif-jp); font-weight: 500; font-size: clamp(23px, 2.5vw, 30px); letter-spacing: .12em; margin-top: 8px; }
.pillar__d { margin-top: 16px; font-size: 13.8px; line-height: 2; color: rgba(246, 242, 234, .78); }
.pillar__flow { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 6px 4px; font-size: 12.5px; color: var(--gold-l); }
.pillar__flow li { display: flex; align-items: center; gap: 4px; }
.pillar__flow li + li::before { content: "→"; opacity: .6; margin-right: 2px; }
.pillar__note { margin-top: 14px; font-size: 12px; color: rgba(246, 242, 234, .6); padding-left: 1em; text-indent: -1em; }
.pillar__link { margin-top: auto; padding-top: 24px; }
.pillar__link a { font-size: 13px; letter-spacing: .12em; color: var(--gold-l); text-decoration: none; border-bottom: 1px solid rgba(226, 207, 159, .4); padding-bottom: 4px; }
.pillar__link a:hover { border-color: var(--gold-l); }
.pillar__r { padding: clamp(14px, 2vw, 26px) clamp(20px, 2.8vw, 36px); }
.mini { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 18px; padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; align-items: center; transition: padding .25s ease; }
.mini:last-child { border-bottom: 0; }
.mini:hover { padding-left: 6px; }
.mini__n { font-size: 14px; line-height: 1.7; font-weight: 500; }
.mini__p { font-family: var(--serif-en); font-size: 25px; font-weight: 500; color: var(--gold-d); white-space: nowrap; letter-spacing: .02em; }
.mini__k { grid-column: 1 / -1; display: flex; gap: 8px; align-items: center; font-size: 11.5px; color: var(--mute); }

/* 種別バッジ */
.badge { display: inline-flex; align-items: center; justify-content: center; font-size: 11px; letter-spacing: .14em; padding: 2px 10px; border-radius: 999px; border: 1px solid var(--gold-d); color: var(--gold-d); line-height: 1.6; white-space: nowrap; }
.badge--新規 { background: var(--ink); border-color: var(--ink); color: var(--gold-l); }
.badge--再来 { background: transparent; }
.badge--全員 { background: var(--gold); border-color: var(--gold); color: #15130f; }

/* ───────── クーポン(チケット) ───────── */
.cps { display: grid; gap: 18px; }
.cps--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cp { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 212px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease; scroll-margin-top: calc(var(--header-h) + 90px); }
.cp:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -28px rgba(19, 18, 16, .45); }
.cp.is-target { box-shadow: 0 0 0 2px var(--gold), 0 22px 40px -28px rgba(19, 18, 16, .45); }
.cp::before, .cp::after { content: ""; position: absolute; right: 203px; width: 18px; height: 18px; border-radius: 50%; background: var(--notch); border: 1px solid var(--line); z-index: 1; }
.cp::before { top: -10px; clip-path: inset(50% 0 0 0); }
.cp::after { bottom: -10px; clip-path: inset(0 0 50% 0); }
.cp__main { padding: 24px 26px; min-width: 0; }
.cps--2 .cp { grid-template-columns: minmax(0, 1fr); grid-template-rows: 1fr auto; }
.cps--2 .cp::before, .cps--2 .cp::after { display: none; }
.cps--2 .cp__side { border-left: 0; border-top: 1px dashed rgba(19, 18, 16, .25); flex-direction: row; flex-wrap: wrap; justify-content: space-between; padding: 16px 26px 20px; border-radius: 0 0 var(--radius) var(--radius); gap: 10px 14px; text-align: left; }
.cps--2 .cp__tax { margin: 0 auto 0 0; align-self: flex-end; padding-bottom: 4px; }
.cps--2 .cp__side .btn { width: auto; padding: 12px 24px; }
.cps--2 .cp__side .btn br { display: none; }
.cp__top { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.cp__cat { font-size: 11.5px; letter-spacing: .14em; color: var(--mute); }
.cp__name { font-family: var(--serif-jp); font-weight: 600; font-size: 17.5px; line-height: 1.7; letter-spacing: .04em; margin-top: 10px; overflow-wrap: anywhere; }
.cp__desc { margin-top: 10px; font-size: 13.5px; line-height: 1.95; color: #4a463e; overflow-wrap: anywhere; }
.cp__cond { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 4px 20px; font-size: 12.2px; color: var(--mute); }
.cp__cond div { display: flex; gap: 4px; }
.cp__cond dt { color: var(--gold-d); white-space: nowrap; }
.cp__side { border-left: 1px dashed rgba(19, 18, 16, .25); padding: 22px 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; background: linear-gradient(180deg, rgba(185, 154, 91, .09), rgba(185, 154, 91, .02)); border-radius: 0 var(--radius) var(--radius) 0; }
.cp__price { font-family: var(--serif-en); font-size: 38px; font-weight: 500; line-height: 1; color: var(--ink); letter-spacing: .01em; }
.cp__price.is-text { font-family: var(--serif-jp); font-size: 24px; }
.cp__tax { font-size: 11px; color: var(--mute); margin-top: -6px; }
.cp__side .btn { padding: 12px 18px; font-size: 12.5px; width: 100%; white-space: normal; letter-spacing: .06em; }

.legend { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 12.5px; color: var(--mute); }
.legend div { display: flex; align-items: center; gap: 8px; }
.notes { margin-top: 18px; font-size: 12.5px; color: var(--mute); }
.notes li { padding-left: 1.2em; text-indent: -1.2em; }
.notes li::before { content: "※"; margin-right: .2em; }

/* 絞り込み */
.filter { position: sticky; top: var(--header-h); z-index: 20; background: rgba(246, 242, 234, .95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); padding: 14px 0; }
.filter__row { display: flex; align-items: center; gap: 12px; overflow-x: auto; scrollbar-width: none; padding: 3px 0; }
.filter__row::-webkit-scrollbar { display: none; }
.filter__row + .filter__row { margin-top: 8px; }
.filter__label { flex: none; font-size: 11.5px; letter-spacing: .12em; color: var(--mute); min-width: 4.6em; white-space: nowrap; }
.chip { flex: none; font-size: 13px; letter-spacing: .08em; padding: 7px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); transition: all .2s ease; }
.chip:hover { border-color: var(--gold-d); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--gold-l); border-color: var(--ink); }
.chip small { font-size: 11px; opacity: .7; margin-left: 4px; }
.count { font-size: 13px; color: var(--mute); margin: 26px 0 16px; }
.count b { font-family: var(--serif-en); font-size: 26px; font-weight: 500; color: var(--ink); margin-right: 4px; }
.empty { padding: 48px 0; text-align: center; color: var(--mute); }
[hidden] { display: none !important; }

/* ───────── 料金表 ───────── */
.price-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.price-nav a { text-decoration: none; }
.price { margin-top: 56px; scroll-margin-top: calc(var(--header-h) + 24px); }
.price:first-of-type { margin-top: 0; }
.price__t { font-family: var(--serif-jp); font-weight: 500; font-size: 23px; letter-spacing: .1em; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; padding-bottom: 14px; border-bottom: 1px solid var(--ink); }
.price__t small { font-family: var(--sans); font-size: 11.5px; color: var(--mute); letter-spacing: .06em; }
.row { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 4px 22px; align-items: baseline; padding: 17px 4px; border-bottom: 1px solid var(--line); }
.row__n { font-size: 15px; font-weight: 500; line-height: 1.7; overflow-wrap: anywhere; }
.row__p { font-family: var(--serif-en); font-size: 25px; font-weight: 500; white-space: nowrap; }
.row__b a { font-size: 12px; letter-spacing: .1em; color: var(--gold-d); text-decoration: none; border-bottom: 1px solid currentColor; white-space: nowrap; }
.row__d { grid-column: 1 / -1; font-size: 13px; color: var(--mute); line-height: 1.85; overflow-wrap: anywhere; }

/* ───────── スタッフ ───────── */
.staff { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.person { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 38px); display: grid; grid-template-columns: 124px minmax(0, 1fr); gap: 22px 26px; align-content: start; }
.person__ph { width: 124px; aspect-ratio: 3 / 4; border-radius: 999px 999px 8px 8px; overflow: hidden; background: var(--ink); display: grid; place-items: center; color: var(--gold-l); font-family: var(--serif-en); font-size: 46px; border: 1px solid var(--gold); }
.person__ph img { width: 100%; height: 100%; object-fit: cover; }
.person__role { font-size: 12px; letter-spacing: .12em; color: var(--gold-d); }
.person__name { font-family: var(--serif-jp); font-size: 27px; font-weight: 500; letter-spacing: .12em; margin-top: 4px; line-height: 1.4; }
.person__name small { font-family: var(--sans); font-size: 11.5px; letter-spacing: .2em; color: var(--mute); margin-left: 10px; }
.person__catch { margin-top: 12px; font-family: var(--serif-jp); font-size: 15.5px; line-height: 1.8; }
.person__body { grid-column: 1 / -1; }
.person__msg { font-size: 14px; color: #4a463e; }
.person__dl { margin-top: 16px; border-top: 1px solid var(--line); }
.person__dl div { display: grid; grid-template-columns: 9.5em minmax(0, 1fr); gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.person__dl dt { color: var(--gold-d); font-size: 12.5px; letter-spacing: .06em; }
.person__dl dd { overflow-wrap: anywhere; }
.person__cta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }

/* ───────── ご来店前に ───────── */
.care { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.care__item { border: 1px solid var(--line-d); border-radius: var(--radius); padding: 26px; background: rgba(246, 242, 234, .03); }
.care__k { font-family: var(--serif-jp); color: var(--gold-l); font-size: 16.5px; letter-spacing: .14em; display: flex; align-items: center; gap: 12px; }
.care__k::before { content: ""; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.care__item ul { margin-top: 14px; display: grid; gap: 10px; }
.care__item li { font-size: 13.8px; line-height: 1.9; color: rgba(246, 242, 234, .86); padding-left: 1em; position: relative; }
.care__item li::before { content: ""; position: absolute; left: 0; top: .85em; width: 5px; height: 1px; background: var(--gold-l); }

/* ───────── ギャラリー(写真を入れた時だけ出る) ───────── */
.gal { columns: 3; column-gap: 14px; }
.gal figure { break-inside: avoid; margin-bottom: 14px; border-radius: 10px; overflow: hidden; }

/* ───────── 口コミ・ブログ ───────── */
.duo { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.score { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 3.4vw, 44px); text-align: center; }
.score__src { font-size: 12.5px; letter-spacing: .1em; color: var(--mute); }
.score__n { font-family: var(--serif-en); font-size: clamp(68px, 8vw, 96px); font-weight: 500; line-height: 1; margin-top: 12px; color: var(--ink); }
.score__stars { margin-top: 10px; position: relative; display: inline-block; font-size: 20px; letter-spacing: .2em; color: rgba(19, 18, 16, .14); line-height: 1; }
.score__stars::after { content: "★★★★★"; position: absolute; left: 0; top: 0; color: var(--gold); overflow: hidden; width: var(--w, 0%); white-space: nowrap; }
.score__c { margin-top: 12px; font-size: 14px; }
.score__note { margin-top: 12px; font-size: 11.8px; color: var(--mute); line-height: 1.8; }
.score .btn { margin-top: 22px; }
.posts { border-top: 1px solid var(--ink); }
.post { display: grid; grid-template-columns: 7.2em minmax(0, 1fr) auto; gap: 6px 18px; align-items: baseline; padding: 17px 4px; border-bottom: 1px solid var(--line); text-decoration: none; transition: padding .25s ease, background .25s ease; }
.post:hover { padding-left: 12px; background: rgba(185, 154, 91, .07); }
.post__d { font-family: var(--serif-en); font-size: 16px; letter-spacing: .06em; color: var(--gold-d); }
.post__t { font-size: 15px; font-weight: 500; }
.post__m { font-size: 11.5px; color: var(--mute); white-space: nowrap; }
.posts__foot { margin-top: 18px; font-size: 12px; color: var(--mute); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; align-items: center; }
.posts__foot a { color: var(--gold-d); }

/* ───────── アクセス ───────── */
.access { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.info { border-top: 1px solid var(--ink); }
.info div { display: grid; grid-template-columns: 7.5em minmax(0, 1fr); gap: 16px; padding: 16px 4px; border-bottom: 1px solid var(--line); }
.info dt { font-size: 12.5px; letter-spacing: .12em; color: var(--gold-d); padding-top: 2px; }
.info dd { font-size: 14.5px; line-height: 1.9; overflow-wrap: anywhere; }
.info dd a { color: inherit; }
.info .tel { font: inherit; letter-spacing: inherit; text-decoration: none; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bone); aspect-ratio: 4 / 3.4; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.35) contrast(1.02); }
.map-links { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
.kodawari { margin-top: clamp(40px, 5vw, 64px); }
.kodawari__t { font-family: var(--serif-jp); font-size: 18px; letter-spacing: .14em; margin-bottom: 16px; }
.kodawari ul { display: flex; flex-wrap: wrap; gap: 8px; }
.kodawari li { font-size: 12.5px; padding: 6px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); }

/* ───────── 最後の誘導・フッター ───────── */
.cta { background: radial-gradient(800px 380px at 50% 0%, rgba(185, 154, 91, .2), transparent 70%), var(--ink); color: var(--paper); text-align: center; padding: clamp(72px, 9vw, 120px) 0; }
.cta__en { font-family: var(--serif-en); font-style: italic; font-size: 20px; letter-spacing: .26em; color: var(--gold-l); }
.cta__t { font-family: var(--serif-jp); font-weight: 500; font-size: clamp(24px, 3.4vw, 40px); letter-spacing: .1em; margin-top: 14px; line-height: 1.7; }
.cta__btns { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta__tel { margin-top: 26px; font-size: 13px; color: rgba(246, 242, 234, .7); }
.cta__tel a { font: inherit; letter-spacing: inherit; color: inherit; text-decoration: none; margin-left: 10px; }
.footer { background: #0d0c0b; color: rgba(246, 242, 234, .72); padding: 56px 0 120px; font-size: 13px; }
.footer__in { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr); gap: 36px; }
.footer__brand b { font-family: var(--serif-en); font-weight: 500; font-size: 34px; letter-spacing: .08em; color: var(--gold-l); display: block; line-height: 1.1; }
.footer__brand span { font-size: 12px; letter-spacing: .24em; }
.footer h3 { font-family: var(--serif-en); font-style: italic; font-weight: 400; font-size: 15px; letter-spacing: .2em; color: var(--gold-l); margin-bottom: 12px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--gold-l); }
.footer li { padding: 3px 0; }
.footer__note { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line-d); font-size: 11.5px; line-height: 1.9; color: rgba(246, 242, 234, .5); }

/* スマホの下に出る固定バー */
.dock { display: none; }

/* 下層ページの見出し */
.subhero { background: radial-gradient(900px 380px at 80% 0%, rgba(185, 154, 91, .16), transparent 65%), var(--ink); color: var(--paper); padding: calc(var(--header-h) + clamp(44px, 7vw, 84px)) 0 clamp(44px, 6vw, 72px); }
.subhero__en { font-family: var(--serif-en); font-style: italic; font-size: 19px; letter-spacing: .26em; color: var(--gold-l); }
.subhero__t { font-family: var(--serif-jp); font-weight: 500; font-size: clamp(29px, 4.2vw, 46px); letter-spacing: .12em; margin-top: 10px; }
.subhero__d { margin-top: 16px; font-size: 14px; color: rgba(246, 242, 234, .72); }
.crumb { font-size: 12px; letter-spacing: .1em; color: rgba(246, 242, 234, .55); margin-bottom: 26px; }
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--gold-l); }

/* ふわっと出す(JSが動く時だけ隠す) */
.js .rv { opacity: 0; transform: translateY(22px); transition: opacity .9s ease, transform .9s cubic-bezier(.2, .7, .2, 1); transition-delay: var(--d, 0s); }
.js .rv.is-in { opacity: 1; transform: none; }

/* ───────── 画面が狭い時 ───────── */
@media (max-width: 980px) {
  /* 閉じている間は visibility:hidden = 透明なだけでなく、キーボードの Tab や読み上げからも外す(見えないリンクに入らせない) */
  .nav { position: fixed; inset: 0; background: rgba(13, 12, 11, .98); flex-direction: column; justify-content: center; gap: 26px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s ease, visibility 0s linear .3s; }
  .nav a { font-size: 18px; font-family: var(--serif-jp); letter-spacing: .2em; }
  .nav .btn { font-size: 15px; padding: 15px 34px; margin-top: 10px; }
  .nav-open .nav { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .3s ease, visibility 0s; }
  /* スマホでは、文字だけのリンクの押し場所を広げる(見た目の行間は変えない) */
  .crumb a { display: inline-block; padding: 14px 10px; margin: -14px -10px; }
  .burger { display: block; z-index: 60; }
  .hero__in, .concept, .duo, .access { grid-template-columns: minmax(0, 1fr); }
  .hero { min-height: 0; padding-bottom: 88px; }
  .arch { max-width: 260px; }
  .hero__scroll { display: none; }
  .pillar { grid-template-columns: minmax(0, 1fr); }
  .staff, .cps--2 { grid-template-columns: minmax(0, 1fr); }
  .care { grid-template-columns: minmax(0, 1fr); }
  .footer__in { grid-template-columns: minmax(0, 1fr); }
  .gal { columns: 2; }
}
@media (max-width: 680px) {
  :root { --header-h: 62px; }
  body { font-size: 15px; }
  /* スマホ: 文字だけのリンクも、指で押せる高さ(40px 前後)にする。文字の大きさ・並びは変えない */
  .footer li { padding: 0; }
  .footer a, .posts__foot a, .pillar__link a, .hero__sns a, .info a, .cta__tel a { display: inline-block; padding-top: 11px; padding-bottom: 11px; }
  .brand { padding-top: 6px; padding-bottom: 6px; }
  .brand__sub { display: none; }
  .hero__facts { grid-template-columns: minmax(0, 1fr); }
  .hero__cta .btn { flex: 1 1 100%; }
  .points { grid-template-columns: minmax(0, 1fr); }
  .cp { grid-template-columns: minmax(0, 1fr); }
  .cp::before, .cp::after { display: none; }
  .cp__main { padding: 22px 20px 18px; }
  .cp__side { border-left: 0; border-top: 1px dashed rgba(19, 18, 16, .25); flex-direction: row; flex-wrap: wrap; justify-content: space-between; padding: 16px 20px 20px; border-radius: 0 0 var(--radius) var(--radius); gap: 10px 14px; text-align: left; }
  .cp__price { font-size: 32px; }
  .cp__tax { margin: 0; align-self: flex-end; margin-right: auto; padding-bottom: 3px; }
  .cp__side .btn { width: auto; flex: 1 1 100%; }
  .person { grid-template-columns: 92px minmax(0, 1fr); gap: 18px; }
  .person__ph { width: 92px; font-size: 34px; }
  .person__name { font-size: 23px; }
  .person__dl div { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .row { grid-template-columns: minmax(0, 1fr) auto; }
  .row__b { grid-column: 1 / -1; }
  /* 料金表の「空席確認・予約する」: スマホでは指で押せる高さに(下線は文字の方へ移す) */
  .row__b a { display: inline-block; padding: 13px 0; margin: -6px 0; border-bottom: 0; }
  .row__b a span { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
  .row__p { font-size: 22px; }
  .post { grid-template-columns: minmax(0, 1fr) auto; }
  .post__d { grid-column: 1 / -1; font-size: 14px; }
  .info div { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .mini__p { font-size: 22px; }
  .pillar__r .mini:nth-child(n+3) { display: none; }
  .cps--2 .cp:nth-child(n+5) { display: none; }
  .price__t small { flex-basis: 100%; }
  .hero { padding-bottom: 64px; }
  .dock { display: grid; grid-template-columns: 1fr 1fr; position: fixed; inset: auto 0 0 0; z-index: 40; background: rgba(13, 12, 11, .96); backdrop-filter: blur(8px); border-top: 1px solid var(--line-d); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px; transform: translateY(110%); transition: transform .35s ease; }
  .dock.is-on { transform: none; }
  .dock .btn { padding: 13px 10px; font-size: 13.5px; }
  .dock .btn--line { color: var(--gold-l); }
  .filter { top: var(--header-h); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .strip__track { animation: none; }
  .js .rv { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}
@media print {
  .header, .dock, .strip, .filter, .cta, .hero__scroll { display: none !important; }
  .hero, .subhero, .sec--dark { background: #fff !important; color: #000 !important; }
  .js .rv { opacity: 1 !important; transform: none !important; }
}

/* ───────── ホットペッパーの写真(台帳で「使う」にした物だけ) ───────── */
.pillar__img { margin: calc(clamp(26px, 3.4vw, 44px) * -1) calc(clamp(26px, 3.4vw, 44px) * -1) 26px; aspect-ratio: 16 / 8; overflow: hidden; }
.pillar__img img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.cp__body { display: flex; gap: 16px; align-items: flex-start; margin-top: 10px; }
.cp__body > div:last-child { min-width: 0; flex: 1; }
.cp__body .cp__desc { margin-top: 0; }
.cp__img { flex: none; width: 132px; aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: var(--bone); }
.cp__img img { width: 100%; height: 100%; object-fit: cover; }
.access-photo { margin-top: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.access-photo img { width: 100%; height: auto; }
.access-photo figcaption { padding: 12px 16px; font-size: 13px; color: var(--mute); }
.gal figure { position: relative; background: var(--bone); }
.gal figure img { width: 100%; height: auto; }
.gal figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 10px; font-size: 12.5px; letter-spacing: .06em; color: #fff; background: linear-gradient(transparent, rgba(0, 0, 0, .62)); }
@media (max-width: 680px) { .cp__img { width: 104px; } }

/* ───────── LINE / Instagram の入口 ───────── */
.btn--ln { background: #06c755; color: #fff; box-shadow: 0 8px 24px -12px rgba(6, 199, 85, .9); }
.btn--ln:hover { transform: translateY(-2px); background: #05b34c; }
.hero__sns { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13px; letter-spacing: .1em; }
.hero__sns a { color: var(--gold-l); text-decoration: none; border-bottom: 1px solid rgba(226, 207, 159, .4); padding-bottom: 3px; }
.hero__sns a:hover { border-color: var(--gold-l); }
@media (max-width: 680px) { .dock.dock--3 { grid-template-columns: 1.3fr 1fr 1fr; } .dock .btn--ln { color: #fff; } }

/* 閲覧しやすさの調整：本文と条件を読みやすく、一覧を短くする */
.header { background: rgba(19, 18, 16, .96); }
.nav a { letter-spacing: .06em; }
.hero { min-height: 660px; padding-bottom: 56px; }
.hero__title { font-size: clamp(28px, 3.5vw, 46px); letter-spacing: .04em; }
.hero__eyebrow { letter-spacing: .2em; }
.hero__eyebrow .kana { color: #c6c0b5; }
.hero__facts { margin-top: 26px; }
.hero__cta { margin-top: 28px; }
.hero__note { color: #c6c0b5; font-size: 13px; }
.hero__scroll { display: none; }
.sec { padding: clamp(56px, 7vw, 88px) 0; }
.sec__head { margin-bottom: 32px; }
.skip-link { position: fixed; top: 8px; left: 16px; z-index: 100; padding: 12px 20px; background: var(--paper); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.page-guide { background: var(--ink-2); color: var(--gold-l); border-block: 1px solid var(--line-d); }
.page-guide .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 36px; }
.page-guide a { display: inline-block; padding: 16px 0; font-size: 14px; text-decoration: none; }
.page-guide a:hover { text-decoration: underline; text-underline-offset: 5px; }
.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service { display: flex; flex-direction: column; overflow: hidden; min-width: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-decoration: none; transition: border-color .2s, box-shadow .2s; }
.service:hover, .service:focus-visible { border-color: var(--gold-d); box-shadow: 0 8px 22px rgba(19, 18, 16, .08); }
.service__photo { aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); }
.service__photo img { width: 100%; height: 100%; object-fit: cover; }
.service__body { padding: 20px 22px 24px; }
.service__en { font-family: var(--serif-en); color: var(--gold-d); font-size: 16px; letter-spacing: .1em; }
.service__title { font-family: var(--serif-jp); font-size: 23px; font-weight: 500; line-height: 1.6; margin-top: 4px; }
.service__link { margin-top: 14px; font-size: 14px; color: #655022; }
.menu-actions { margin-top: 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.snapshot-note { margin-top: 20px; color: #625d54; font-size: 13px; line-height: 1.9; text-align: center; }
.snapshot-note--start { margin: 0 0 24px; text-align: left; }
.point__d, .person__msg, .care__item li, .row__d, .cp__desc { font-size: 15px; line-height: 1.9; }
.person__dl div, .cp__cond { font-size: 14px; }
.cp__cond { display: grid; gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); color: #514c43; }
.cp__cond div { display: grid; grid-template-columns: 6em minmax(0, 1fr); gap: 8px; }
.cp__cond dd { overflow-wrap: anywhere; }
.notes, .legend { font-size: 14px; }
.badge, .cp__cat, .cp__tax, .person__role, .person__dl dt { font-size: 13px; }
.care__context { display: block; margin-top: 6px; color: #c9c2b7; font-size: 13px; line-height: 1.8; }
.care__context span { overflow-wrap: anywhere; }
.gal { columns: auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: start; }
.gal figure { margin: 0; background: var(--white); border: 1px solid var(--line); }
.gal figure img { aspect-ratio: 4 / 3; object-fit: contain; background: var(--bone); }
.gal figcaption { position: static; color: var(--text); background: var(--white); font-size: 14px; padding: 12px 14px; letter-spacing: .02em; }
.gallery-more { margin-top: 28px; }
.gallery-more summary { width: fit-content; margin-inline: auto; padding: 12px 24px; border: 1px solid var(--gold-d); border-radius: 999px; cursor: pointer; font-size: 15px; }
.gallery-more[open] summary { margin-bottom: 24px; }
.filter__row { flex-wrap: wrap; overflow: visible; gap: 8px; }
.filter__label { font-size: 13px; }
.chip { min-height: 44px; padding: 9px 16px; }
.filter__reset { display: block; margin: 10px 0 0 auto; min-height: 44px; font-size: 14px; color: #655022; text-decoration: underline; text-underline-offset: 4px; }
.footer__note, .crumb { font-size: 13px; color: #bdb7ad; }
.btn--ln { background: #087b38; box-shadow: none; }
.btn--ln:hover { background: #06652e; }
:focus-visible { outline: 3px solid var(--gold-d); }
.on-dark :focus-visible, .hero :focus-visible, .header :focus-visible, .footer :focus-visible, .page-guide :focus-visible { outline-color: var(--gold-l); }
@media (max-width: 980px) {
  html.nav-open, .nav-open body { overflow: hidden; }
  .nav { overflow-y: auto; overscroll-behavior: contain; gap: 12px; padding: 80px 24px 24px; justify-content: flex-start; }
  .nav a { padding: 9px 0; }
  .nav .btn { margin-top: 6px; }
  .hero { min-height: 0; }
  .hero__in { gap: 36px; }
  .arch { max-width: 230px; }
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service__title { font-size: 21px; }
  .gal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .hero { padding-top: calc(var(--header-h) + 30px); padding-bottom: 40px; }
  .hero__title { font-size: clamp(24px, 7vw, 36px); margin-top: 18px; }
  .hero__sub { letter-spacing: .03em; font-size: 15px; margin-top: 16px; }
  .hero__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 22px; }
  .hero__facts li { font-size: 13px; letter-spacing: 0; gap: 7px; padding: 12px 8px 12px 0; }
  .hero__cta { margin-top: 24px; gap: 10px; }
  .hero__cta .btn { padding: 15px 20px; }
  .hero__sns { margin-top: 10px; }
  .hero__eyebrow { gap: 8px; }
  .arch { aspect-ratio: 4 / 3; max-width: 280px; }
  .arch__frame, .arch::before { border-radius: 100px 100px 10px 10px; }
  .page-guide .wrap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 16px; }
  .page-guide a { font-size: 13px; padding: 12px 0; }
  .services { gap: 12px; }
  .service__body { padding: 14px 12px 16px; }
  .service__en { font-size: 13px; letter-spacing: .04em; }
  .service__title { font-size: 18px; letter-spacing: 0; }
  .service__link { font-size: 13px; margin-top: 10px; }
  .menu-actions .btn { width: 100%; padding-inline: 18px; }
  .filter { position: static; }
  .filter__row { align-items: start; }
  .filter__label { width: 100%; }
  .filter__reset { margin-left: 0; }
  .cp__body { flex-direction: column; gap: 12px; }
  .cp__img { width: 132px; }
  .cp__name { font-size: 18px; }
  .gal { gap: 12px; }
  .gal figcaption { font-size: 13px; padding: 10px; }
  .map-links .btn { white-space: normal; line-height: 1.6; text-align: center; }
  .row { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .row__p { font-size: 28px; }
  .row__b a { font-size: 14px; }
  .person__name small { display: block; margin: 8px 0 0; }
}
@media (max-width: 359px) {
  .services { grid-template-columns: minmax(0, 1fr); }
  .service { display: grid; grid-template-columns: 90px minmax(0, 1fr); }
  .service__photo { aspect-ratio: auto; height: 100%; }
  .gal { grid-template-columns: minmax(0, 1fr); }
}
/* カテゴリ入口は写真の有無に左右されない共通レイアウト */
.service__body { padding: 26px 24px; }
.service__link span { display: inline-block; }
@media (max-width: 680px) {
  .service__body { padding: 18px 14px; }
  .service__title { font-size: 17px; }
  .service__link { line-height: 1.6; }
}
@media (max-width: 359px) {
  .service { display: block; }
}

/* 料金比較は矢印の直後に、同じクーポンの価格を表示 */
.cp__inline-price { display: inline-block; margin-inline: .25em .15em; font-family: var(--sans); font-size: 1.1em; font-weight: 700; white-space: nowrap; }
.cp__comparison-tax { margin-top: 6px; }
.cp__comparison-tax .cp__tax { margin: 0; font-size: 13px; }
.care__context .cp__inline-price { font: inherit; font-weight: 500; }
.footer__access { margin-top: 18px; }
.footer__access a { text-decoration: underline; text-underline-offset: 5px; }
.cp__comparison { display: inline-block; white-space: nowrap; }

/* 元のアーチ形を保ち、中央のロゴが収まる位置で背景だけを切り取る。
   画像を絶対配置して、Safariでも元画像の高さがGridを押し広げないようにする。 */
.arch.arch--photo { aspect-ratio: 3 / 4; }
.arch--photo .arch__frame { position: absolute; inset: 0; display: block; border-radius: 999px 999px 10px 10px; }
.arch--photo .arch__frame img { position: absolute; inset: 0; width: 100%; height: 100%; min-width: 0; min-height: 0; object-fit: cover; object-position: 50% 50%; }
.arch--photo::before { border-radius: 999px 999px 16px 16px; }
@media (max-width: 680px) {
  .arch.arch--photo { aspect-ratio: 4 / 3; }
  .arch--photo .arch__frame, .arch--photo::before { border-radius: 100px 100px 10px 10px; }
}
/* PCメニューへ切り替わる幅でも、ヘッダーの店名を途中で折り返さない */
.brand { flex-shrink: 0; }
.brand__mark, .brand__sub, .nav a { white-space: nowrap; }
@media (min-width: 981px) and (max-width: 1100px) {
  .header__in { gap: 16px; }
  .nav { gap: 12px; }
  .nav a { letter-spacing: .04em; }
  .nav .btn { padding-inline: 14px; }
}

/* 地図は住所直下のボタンから開く。駐車位置は元写真の上に案内を重ねる。 */
.info .map-links { margin-top: 14px; gap: 10px; }
.info .map-links a { padding: 12px 16px; font-size: 13px; }
.parking__title { font-family: var(--serif-jp); font-size: 23px; font-weight: 500; margin-bottom: 18px; }
.parking .access-photo { margin-top: 0; }
.parking__photo { position: relative; }
.parking__photo img { width: 100%; height: auto; }
.parking__marker { position: absolute; transform: translate(-50%, calc(-100% - 7px)); padding: 5px 9px; border: 2px solid #fff; border-radius: 6px; background: #17633b; color: #fff; font-size: 14px; font-weight: 700; line-height: 1.4; white-space: nowrap; box-shadow: 0 2px 8px rgba(0, 0, 0, .4); }
.parking__marker::after { content: ""; position: absolute; top: calc(100% + 2px); left: 50%; transform: translateX(-50%); border: 7px solid transparent; border-top-color: #fff; }
.parking__marker--left { left: 28%; top: 79%; }
.parking__marker--middle { left: 58.5%; top: 81%; }
.parking__marker--right { left: 91%; top: 79%; background: #842d28; transform: translate(calc(-100% + 14px), calc(-100% - 7px)); }
.parking__marker--right::after { left: auto; right: 5px; transform: none; }

/* 持ち主の眉毛写真。写真の組み合わせ・内容を保ち、外側の余白だけ表示範囲から外す。 */
.gallery__label { margin-top: 14px; font-size: 16px; color: var(--mute); }
.gal.gal--eyebrows { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.gal--eyebrows .eyebrow-card { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3px; border-radius: 12px; overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.eyebrow-panel { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; }
.gal--eyebrows .eyebrow-panel img { position: absolute; max-width: none; height: auto; aspect-ratio: auto; object-fit: unset; background: none; }
/* 電話番号も、各掲載箇所の周りの本文と同じ書体・大きさ・太さにする。 */
a[href^="tel:"]:not(.btn) { font: inherit; letter-spacing: inherit; font-variant-numeric: inherit; font-feature-settings: inherit; }
@media (max-width: 980px) { .gal.gal--eyebrows { grid-template-columns: minmax(0, 1fr); max-width: 760px; margin-inline: auto; } }
@media (max-width: 680px) { .gal.gal--eyebrows { grid-template-columns: minmax(0, 1fr); max-width: 440px; margin-inline: auto; gap: 20px; } }
.parking .access-photo figcaption { padding: 18px; font-size: 15px; line-height: 1.85; color: var(--text); }
.parking__guide { font-weight: 700; }
.parking__caution { margin-top: 10px; color: #842d28; }
@media (max-width: 680px) {
  .info .map-links { align-items: stretch; }
  .info .map-links a { flex: 1 1 auto; }
  .parking__marker { font-size: 12px; padding: 5px 7px; }
}

/* 持ち主の指定：左は施術前、右は施術後。スマホも左右並びを維持。 */
.eyebrow-stage { margin:0; padding:10px 6px; font-family:var(--sans); font-size:clamp(12px, 1.2vw, 14px); font-weight:700; line-height:1.5; letter-spacing:.04em; text-align:center; }
.eyebrow-stage--before { background:#3a3834; color:#fff; }
.eyebrow-stage--after { background:#c8ad73; color:#211e18; }
.eyebrow-step { min-width:0; }

/* 旧ギャラリーはご来店写真2枚を除いて復元。写真全体が見える既存の比率を使う。 */
.gallery-restored { margin-top: 32px; }

/* 施術ごとの比較写真。原本を保ち、同じ大きさの枠に縦横比を維持して表示。 */
.service-cases { margin-bottom: 40px; scroll-margin-top: calc(var(--header-h) + 24px); }
.case-top { padding-top: 32px; }
.case-top[hidden] { display: none; }
.service-cases[hidden] { display: none; }
.service-cases__title { margin-bottom: 22px; font-family: var(--serif-jp); font-size: clamp(21px, 2.5vw, 28px); font-weight: 500; }
.case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.case-card { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.case-step { min-width: 0; }
.case-frame { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; background: #e9e4da; }
.case-crop { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); overflow: hidden; }
.case-crop img { position: absolute; max-width: none; height: auto; aspect-ratio: auto; object-fit: unset; }
@media (max-width: 980px) { .case-grid { grid-template-columns: minmax(0, 1fr); max-width: 760px; margin-inline: auto; } }
@media (max-width: 680px) { .case-grid { max-width: 440px; gap: 20px; } .service-cases__title { font-size: 21px; } }

/* 比較写真を見出しの直後に置き、スマホでも前後を並べる。 */
.hero__txt, .hero-cases { grid-column: 1 / -1; min-width: 0; }
.hero__in { row-gap: 32px; }
.hero-cases .service-cases__title { color: var(--gold-l); }
.gallery-cases { margin-top: 48px; }
.gallery-cases > .service-cases__title { text-align: center; }
.person__ph--rotated img { transform: rotate(180deg); }

.case-title-phrase { display: inline-block; }
