/* =============================================================
   Lucia — Brand Stylesheet
   Eyebrow Salon | Mie, Japan
   ============================================================= */

/* ── Custom Properties ── */
:root {
  --gold: #c9a84c;
  --gold-light: #d9bc74;
  --greige: #b8a99a;
  --slate: #5b7b8a;
  --slate-dark: #4a6777;
  --offwhite: #f8f6f3;
  --white: #ffffff;
  --ink: #2c2822;
  --ink-mid: #5a524a;
  --ink-light: #8c8078;
  --border: #e4dfd9;

  --ff-serif: "Noto Serif JP", "Times New Roman", serif;
  --ff-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-latin: "Cormorant Garamond", "Times New Roman", serif;

  --max-w: 1200px;
  --max-w-text: 720px;
  --gutter: clamp(24px, 5vw, 80px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

.post,
.page {
  margin: 0;
}

/* ══════════════════════════════════════════════
   PAGE TRANSITION
══════════════════════════════════════════════ */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* メインパネル */
.pt-panel {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* ゴールドのアクセントライン */
.pt-stripe {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.6;
  will-change: transform;
}

/* ロゴ */
.pt-logo {
  position: relative;
  z-index: 1;
  opacity: 0;
  will-change: opacity;
}
.pt-logo__mark {
  display: block;
  width: clamp(72px, 10vw, 120px);
  height: auto;
}

/* ── LEAVE: パネルが左から右へ流入 ── */
#page-transition.is-leaving {
  pointer-events: all;
}
#page-transition.is-leaving .pt-panel {
  animation: pt-panel-in 0.45s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
#page-transition.is-leaving .pt-stripe {
  animation: pt-stripe-in 0.45s cubic-bezier(0.76, 0, 0.24, 1) 0.04s forwards;
}
#page-transition.is-leaving .pt-logo {
  animation: pt-logo-in 0.25s ease forwards 0.2s;
}

/* ── REVEAL: パネルが右へ抜けていく ── */
#page-transition.is-revealing .pt-panel {
  transform: scaleX(1);
  transform-origin: right center;
  animation: pt-panel-out 0.55s cubic-bezier(0.76, 0, 0.24, 1) 0.05s forwards;
}
#page-transition.is-revealing .pt-stripe {
  transform: scaleX(1);
  transform-origin: right center;
  animation: pt-stripe-out 0.55s cubic-bezier(0.76, 0, 0.24, 1) 0.02s forwards;
}
#page-transition.is-revealing .pt-logo {
  opacity: 1;
  animation: pt-logo-out 0.2s ease forwards;
}

@keyframes pt-panel-in {
  from {
    transform: scaleX(0);
    transform-origin: left center;
  }
  to {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
@keyframes pt-panel-out {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@keyframes pt-stripe-in {
  from {
    transform: scaleX(0);
    transform-origin: left center;
  }
  to {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
@keyframes pt-stripe-out {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@keyframes pt-logo-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pt-logo-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* prefers-reduced-motion: アニメーション無効化 */
@media (prefers-reduced-motion: reduce) {
  #page-transition {
    display: none !important;
  }
}

/* ── Reset / Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* visited を通常リンク色と統一（style.css の #800080 を上書き） */
a:visited {
  color: inherit;
}
a:visited:hover {
  color: inherit;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
p {
  margin: 0 0 1.4em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  clear: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
}

/* ── Utility ── */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-label {
  display: block;
  font-family: var(--ff-latin);
  font-size: clamp(10px, 1.5vw, 12px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: 0.05em;
}

.section-lead {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--ink-mid);
  line-height: 2;
  max-width: 52em;
}

.gold-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-family: var(--ff-sans);
  font-weight: 400;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 0.28s var(--ease-out),
    background 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    transform 0.2s var(--ease-out);
}
.btn:active {
  transform: translateY(1px);
}

/* visited を通常色と同じに固定 */
.btn:visited {
  color: inherit;
}

/* ─── Primary（ゴールド塗り） ─── */
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  box-shadow:
    0 2px 12px rgba(201, 168, 76, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow:
    0 4px 20px rgba(201, 168, 76, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn--primary:visited {
  color: var(--white);
}

/* ─── Outline（線のみ・インク） ─── */
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(44, 40, 34, 0.4);
  transition:
    background 0.3s var(--ease-out),
    color 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    transform 0.2s var(--ease-out);
}
.btn--outline:visited {
  color: var(--ink);
} /* ← visited は hover より前 */
.btn--outline:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--outline:visited:hover {
  color: var(--white);
} /* 訪問済み＋ホバーを明示上書き */

/* ─── Ghost（線のみ・ゴールド） ─── */
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.55);
  transition:
    background 0.3s var(--ease-out),
    color 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    transform 0.2s var(--ease-out);
}
.btn--ghost:visited {
  color: var(--gold);
} /* ← visited は hover より前 */
.btn--ghost:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--ghost:visited:hover {
  color: var(--white);
} /* 訪問済み＋ホバーを明示上書き */

/* ─── LINE（グリーン） ─── */
.btn--line {
  background: #06c755;
  color: var(--white);
  border: 1px solid #06c755;
  box-shadow:
    0 2px 12px rgba(6, 199, 85, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn--line:hover {
  background: #05b34c;
  border-color: #05b34c;
  box-shadow: 0 4px 18px rgba(6, 199, 85, 0.3);
}
.btn--line:visited {
  color: var(--white);
}

/* ─── WEB予約（スレートブルー） ─── */
.btn--web {
  background: var(--slate);
  color: var(--white);
  border: 1px solid var(--slate);
  box-shadow:
    0 2px 12px rgba(91, 123, 138, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn--web:hover {
  background: var(--slate-dark);
  border-color: var(--slate-dark);
  box-shadow: 0 4px 18px rgba(91, 123, 138, 0.32);
}
.btn--web:visited {
  color: var(--white);
}

/* ─── LINE ヘッダー小型 ─── */
.btn--line-sm {
  padding: 10px 16px;
  font-size: 11px;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--gold);
  color: var(--white);
  padding: 8px 16px;
  font-size: 13px;
}
.skip-link:focus {
  top: 0;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 246, 243, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(44, 40, 34, 0.06);
}

/* WordPress 管理バー対応 */
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.site-branding {
  flex-shrink: 0;
}
.site-branding .site-title,
.site-branding p.site-title {
  margin: 0;
  font-size: 1rem;
}
.site-branding .site-description {
  display: none;
}

.site-logo-link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}
.site-logo-img {
  display: block;
  width: clamp(100px, 12vw, 140px);
  height: auto;
  transition: opacity 0.2s;
}
.site-logo-link:hover .site-logo-img {
  opacity: 0.8;
}

.site-logo-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-light);
  line-height: 1;
  white-space: nowrap;
}

/* フッター：暗背景に合わせて白反転 */
.site-logo-img--footer {
  width: clamp(100px, 12vw, 140px);
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.site-logo-link:hover .site-logo-img--footer {
  opacity: 1;
}

/* Primary Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-navigation {
  display: flex;
  align-items: center;
}
.main-navigation ul {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-navigation ul ul {
  display: none;
}

/* Bilingual nav link — desktop */
.main-navigation a,
.main-navigation .nav-link-bilingual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  color: var(--ink-mid);
}
.main-navigation a:hover,
.main-navigation .nav-link-bilingual:hover {
  color: var(--gold);
}
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: var(--gold);
}
.main-navigation a:visited,
.main-navigation a:visited .nav-link__en,
.main-navigation a:visited .nav-link__ja {
  color: inherit;
}

.nav-link__en {
  font-family: var(--ff-latin);
  font-size: 12px;
  letter-spacing: 0.18em;
  line-height: 1;
  font-weight: 400;
}
.nav-link__ja {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  line-height: 1;
  transition: color 0.2s;
}
.main-navigation a:hover .nav-link__ja,
.main-navigation .current-menu-item > a .nav-link__ja,
.main-navigation .current_page_item > a .nav-link__ja {
  color: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  flex-shrink: 0;
}
.header-cta .btn {
  padding: 10px 18px;
  font-size: 12px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition:
    transform 0.3s var(--ease-out),
    opacity 0.3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--offwhite);
  z-index: 999;
  padding: 100px 32px 40px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav-overlay.is-open {
  display: flex;
}
.mobile-nav-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-overlay ul ul {
  display: none;
}
.mobile-nav-overlay li {
  border-bottom: 1px solid var(--border);
}
.mobile-nav-overlay a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-overlay a:hover {
  color: var(--gold);
}
.mobile-nav-overlay .nav-link__en {
  font-family: var(--ff-latin);
  font-size: 18px;
  letter-spacing: 0.18em;
  line-height: 1;
}
.mobile-nav-overlay .nav-link__ja {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  line-height: 1;
}
.mobile-nav-overlay a:hover .nav-link__ja {
  color: var(--gold-light);
}
.mobile-nav-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-cta .btn {
  width: 100%;
  padding: 16px;
  font-size: 14px;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: #1a1714;
  color: rgba(255, 255, 255, 0.5);
  padding: clamp(60px, 8vw, 100px) 0 0;
  border-top: 1px solid var(--gold);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .lucia-logo__en {
  color: var(--white);
}
.footer-brand .lucia-logo__ja {
  color: var(--gold);
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
  line-height: 1.8;
}

.footer-nav h3 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--ff-latin);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  letter-spacing: 0.05em;
}
.footer-nav a:hover {
  color: var(--white);
}

.footer-shops {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-shop-name {
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.footer-shop-addr {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a:hover {
  color: var(--white);
}

/* ══════════════════════════════════════════════
   FIXED BUTTONS（WEB予約 + LINEで相談）
══════════════════════════════════════════════ */
.fixed-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
/* 管理バーがあっても被らないよう bottom を確保 */
.admin-bar .fixed-btns {
  bottom: 24px;
}

.fixed-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out);
}
.fixed-btn:hover {
  transform: translateY(-2px);
}

.fixed-btn__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed-btn__icon svg {
  width: 24px;
  height: 24px;
}

.fixed-btn__label {
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  background: var(--white);
  padding: 2px 8px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.fixed-btn--web .fixed-btn__icon {
  background: var(--slate);
  box-shadow: 0 4px 16px rgba(91, 123, 138, 0.35);
  color: var(--white);
}
.fixed-btn--line .fixed-btn__icon {
  background: #06c755;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.35);
}

@media (max-width: 767px) {
  .fixed-btns {
    bottom: 0;
    right: 0;
    left: 0;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
  }
  .admin-bar .fixed-btns {
    bottom: 0;
  }
  .fixed-btn {
    flex: 1;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    border-radius: 0;
  }
  .fixed-btn:hover {
    transform: none;
  }
  .fixed-btn__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  .fixed-btn__icon svg {
    width: 18px;
    height: 18px;
  }
  .fixed-btn__label {
    font-size: 11px;
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    color: var(--white);
  }
  .fixed-btn--web {
    background: var(--slate);
  }
  .fixed-btn--line {
    background: #06c755;
  }
}

/* ══════════════════════════════════════════════
   LINE POPUP
══════════════════════════════════════════════ */
.line-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 18, 14, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-out);
}
.line-popup-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.line-popup {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s var(--ease-out);
}
.line-popup-overlay.is-open .line-popup {
  transform: translateY(0) scale(1);
}

/* close button */
.line-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink-mid);
  background: transparent;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.line-popup__close:hover {
  background: var(--offwhite);
  color: var(--ink);
}

/* header */
.line-popup__header {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 32px);
}
.line-popup__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #06c755;
  color: var(--white);
  margin-bottom: 16px;
}
.line-popup__icon svg {
  width: 30px;
  height: 30px;
}
.line-popup__title {
  font-family: var(--ff-latin);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 6px;
}
.line-popup__sub {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}

/* shop buttons */
.line-popup__shops {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.line-popup__shop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  background: var(--offwhite);
  transition:
    border-color 0.22s,
    background 0.22s,
    transform 0.22s var(--ease-out);
  min-height: 96px;
}
.line-popup__shop:hover {
  border-color: #06c755;
  background: #f0fbf3;
  transform: translateY(-2px);
  color: var(--ink);
}
.line-popup__shop--full {
  grid-column: 1 / -1;
}
.line-popup__shop-en {
  font-family: var(--ff-latin);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #06c755;
  font-weight: 500;
}
.line-popup__shop-name {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.line-popup__shop-arrow {
  margin-top: 6px;
  color: #06c755;
  display: flex;
}

/* ══════════════════════════════════════════════
   HERO / FIRST VIEW
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--offwhite);
  padding-top: 72px;
}
.admin-bar .hero {
  padding-top: calc(72px + 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar .hero {
    padding-top: calc(72px + 46px);
  }
}
@media screen and (max-width: 600px) {
  .admin-bar .hero {
    padding-top: 72px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(248, 246, 243, 0.92) 40%, rgba(248, 246, 243, 0.5) 70%, rgba(248, 246, 243, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 80px 0;
}

.hero-eyebrow {
  font-family: var(--ff-latin);
  font-size: clamp(10px, 1.5vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 4.5vw, 45px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 2.2;
  color: var(--ink-mid);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-cta .btn {
  min-width: 180px;
  padding: 15px 28px;
  font-size: 13px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-family: var(--ff-latin);
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--ink-light);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50% {
    transform: scaleX(0.3);
    transform-origin: left;
  }
}

/* ── Decorative element top-right ── */
.hero-deco {
  position: absolute;
  top: 20%;
  right: 5%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-latin);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.7;
  writing-mode: vertical-lr;
  text-orientation: mixed;
}

/* ══════════════════════════════════════════════
   SECTION: CONCEPT
══════════════════════════════════════════════ */
.section-concept {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}

.concept-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.concept-visual {
  position: relative;
}
.concept-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--greige);
}
.concept-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.concept-img-wrap:hover img {
  transform: scale(1.03);
}
.concept-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #c4b8ae 0%, #d4c9be 60%, #bfb4aa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.concept-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.concept-text {
}
.concept-num {
  font-family: var(--ff-latin);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.concept-heading {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 24px;
}
.concept-body {
  font-size: 14px;
  line-height: 2.2;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}
.concept-quote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: var(--offwhite);
}
.concept-quote p {
  font-family: var(--ff-serif);
  font-size: clamp(14px, 2vw, 16px);
  color: var(--ink);
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ══════════════════════════════════════════════
   SECTION: REASONS
══════════════════════════════════════════════ */
.section-reasons {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--offwhite);
}

.reasons-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.reason-item {
  background: var(--white);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}
.reason-item:hover {
  background: #fdfcfa;
}

.reason-num {
  font-family: var(--ff-latin);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.reason-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
}
.reason-icon svg {
  width: 32px;
  height: 32px;
}

.reason-title {
  font-family: var(--ff-serif);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.reason-body {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-mid);
}

/* ══════════════════════════════════════════════
   SECTION: MENU
══════════════════════════════════════════════ */
.section-menu {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}

.menu-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.menu-tab {
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  cursor: pointer;
}
.menu-tab.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-tab-panel.is-hidden {
  display: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.menu-card {
  position: relative;
  overflow: hidden;
  background: var(--offwhite);
  border: 1px solid var(--border);
}
.menu-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-family: var(--ff-serif);
  color: #fff;
  background: var(--slate);
  padding: 4px 10px;
  pointer-events: none;
}

.menu-card__img-link {
  display: block;
}
.menu-card__img-link:hover .menu-card__img img {
  transform: scale(1.04);
}
.menu-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--greige);
}
.menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.menu-card:hover .menu-card__img img {
  transform: scale(1.04);
}
.menu-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-card__img-placeholder--bimi {
  background: linear-gradient(135deg, #c4b5a8 0%, #d8ccc4 100%);
}
.menu-card__img-placeholder--lift {
  background: linear-gradient(135deg, #a8bac4 0%, #c4d4dc 100%);
}
.menu-card__img-placeholder--ext {
  background: linear-gradient(135deg, #b8c4a8 0%, #ced8c4 100%);
}
.menu-card__img-placeholder--perm {
  background: linear-gradient(135deg, #c4a8b8 0%, #d8c4d0 100%);
}

.menu-card__body {
  padding: clamp(20px, 2.5vw, 32px);
}
.menu-card__tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--ff-latin);
  margin-bottom: 8px;
}
.menu-card__name {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.menu-card__desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.menu-card__price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.menu-card__price-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.menu-card__price-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-light);
}
.menu-card__price-val {
  font-family: var(--ff-latin);
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--ink);
  letter-spacing: 0.02em;
}
.menu-card__price-unit {
  font-size: 13px;
  color: var(--ink-light);
}
.menu-card__price-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  align-self: flex-end;
}

.menu-note {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 2px solid var(--slate);
  background: #f0f5f7;
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.9;
}

.menu-link-wrap {
  margin-top: 48px;
  text-align: center;
}

/* ══════════════════════════════════════════════
   SECTION: BEFORE / AFTER
══════════════════════════════════════════════ */
.section-ba {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  color: var(--white);
}
.section-ba .section-label {
  color: var(--gold);
}
.section-ba .section-title {
  color: var(--white);
}
.section-ba .section-lead {
  color: rgba(255, 255, 255, 0.6);
}

.ba-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.ba-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ba-item__concern {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-block;
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
}
.ba-images::before {
  content: "AFTER";
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 1;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--white);
  background: var(--gold);
  padding: 2px 8px;
  font-family: var(--ff-latin);
}
.ba-images::after {
  content: "BEFORE";
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 1;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--white);
  background: rgba(44, 40, 34, 0.7);
  padding: 2px 8px;
  font-family: var(--ff-latin);
}
.ba-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #3a3630;
}
.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-img-placeholder--before {
  background: linear-gradient(145deg, #2e2a26 0%, #3a3630 100%);
}
.ba-img-placeholder--after {
  background: linear-gradient(145deg, #3d3830 0%, #4a4338 100%);
}

.ba-caption {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════════════
   SECTION: FIRST VISIT（お悩み共感型）
══════════════════════════════════════════════ */
.section-first {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}

.first-header {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.concern-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    box-shadow 0.25s var(--ease-out),
    border-color 0.25s;
}
.concern-item:hover {
  border-color: var(--greige);
  box-shadow: 0 6px 24px rgba(44, 40, 34, 0.06);
}

.concern-item__voice {
  font-family: var(--ff-serif);
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.8;
  color: var(--ink);
  letter-spacing: 0.03em;
  position: relative;
  margin: 0;
}
.concern-item__quote {
  font-family: var(--ff-latin);
  font-size: 22px;
  color: var(--greige);
  line-height: 0;
  vertical-align: -6px;
}
.concern-item__quote--close {
  margin-left: 2px;
}

.concern-item__resolve {
  font-size: 12px;
  line-height: 1.9;
  color: var(--slate);
  letter-spacing: 0.04em;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin: 0;
}

.concern-footer {
  text-align: center;
}
.concern-footer__text {
  font-family: var(--ff-serif);
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--ink-mid);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.concern-footer__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .concern-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .concern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════
   SECTION: FLOW
══════════════════════════════════════════════ */
.section-flow {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--offwhite);
}

.flow-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: flow;
  max-width: 760px;
  margin: 0 auto;
}

.flow-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 40px;
}
.flow-item:last-child {
  padding-bottom: 0;
}
.flow-item::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 52px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.flow-item:last-child::before {
  display: none;
}

.flow-item__num {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 12px auto 0;
  position: relative;
  z-index: 1;
  background: var(--white);
}
.flow-item__num span {
  font-family: var(--ff-latin);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.flow-item__body {
}
.flow-item__title {
  font-family: var(--ff-serif);
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.5;
  padding-top: 12px;
}
.flow-item__text {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-mid);
  margin: 0;
}

/* ══════════════════════════════════════════════
   SECTION: SHOPS
══════════════════════════════════════════════ */
.section-shops {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}

.shops-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.shops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
}

.shop-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}
.shop-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--greige);
}
.shop-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-card__img-placeholder--yokkaichi {
  background: linear-gradient(135deg, #b8a99a 0%, #c8bcb0 100%);
}
.shop-card__img-placeholder--nabari {
  background: linear-gradient(135deg, #a8bac4 0%, #bcc8d0 100%);
}

.shop-card__body {
  padding: clamp(24px, 3vw, 40px);
}
.shop-card__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--ff-latin);
  margin-bottom: 8px;
}
.shop-card__name {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.shop-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.shop-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-mid);
}
.shop-info-row__label {
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  width: 48px;
  padding-top: 2px;
}
.shop-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.shop-tag {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-mid);
  border: 1px solid var(--border);
  padding: 4px 12px;
}
.shop-tag--slate {
  border-color: var(--slate);
  color: var(--slate);
}
.shop-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.shop-card__link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ══════════════════════════════════════════════
   SECTION: FAQ
══════════════════════════════════════════════ */
.section-faq {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--offwhite);
}
.faq-header {
  margin-bottom: clamp(48px, 6vw, 80px);
  text-align: center;
}
.faq-header .gold-line {
  margin-inline: auto;
}
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--gold);
}

.faq-q-mark {
  font-family: var(--ff-latin);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.4;
}
.faq-q-text {
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.7;
  flex: 1;
  text-align: left;
  letter-spacing: 0.03em;
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: 2px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink-light);
  transition:
    transform 0.3s var(--ease-out),
    opacity 0.3s;
}
.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.faq-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}
.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease-out);
}
.faq-answer.is-open {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
}
.faq-a-wrap {
  padding: 0 0 24px 34px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.faq-a-mark {
  font-family: var(--ff-latin);
  font-size: 18px;
  color: var(--slate);
  flex-shrink: 0;
  line-height: 1.4;
}
.faq-a-text {
  font-size: clamp(13px, 1.7vw, 14px);
  line-height: 2;
  color: var(--ink-mid);
}

/* ══════════════════════════════════════════════
   SINGLE: MENU
══════════════════════════════════════════════ */

/* ── 共通セクション見出し ── */
.mns-section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.mns-section-head .section-title {
  font-size: clamp(20px, 2.5vw, 28px);
}
.mns-section-head .gold-line {
  margin: 16px auto 0;
}

/* ── イントロ ── */
.mns-intro {
  background: var(--white);
  padding: clamp(56px, 7vw, 100px) 0;
}
.mns-intro__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  max-width: 1040px;
}
.mns-intro__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.mns-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mns-intro__desc {
  font-size: 15px;
  line-height: 2.2;
  color: var(--ink-mid);
  margin-bottom: 24px;
}
.mns-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.menu-detail-tag {
  font-size: 11px;
  color: var(--ink-light);
  border: 1px solid var(--border);
  padding: 4px 14px;
  letter-spacing: 0.05em;
}

/* ── 料金ボックス ── */
.mns-intro__aside {
  position: sticky;
  top: 100px;
}
.mns-price-box {
  background: var(--ink);
  color: var(--white);
  padding: clamp(24px, 3vw, 36px);
  margin-bottom: 24px;
}
.mns-price-box__heading {
  margin-bottom: 20px;
}
.mns-price-box__heading .section-label {
  color: var(--gold);
}
.mns-price-dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mns-price-dl__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mns-price-dl__row:last-child {
  border-bottom: none;
}
.mns-price-dl__row dt {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}
.mns-price-dl__row dd {
  font-family: var(--ff-serif);
}
.mns-price-dl__num {
  font-size: 22px;
  color: var(--white);
}
.mns-price-dl__row dd small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 2px;
}
.mns-price-dl__row--student dt,
.mns-price-dl__row--student .mns-price-dl__num {
  color: var(--gold);
}
/* 価格テーブル（バリエーション複数対応） */
.mns-price-table {
  width: 100%;
  border-collapse: collapse;
}
.mns-price-table thead th {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 8px;
  text-align: right;
}
.mns-price-table thead th:first-child {
  text-align: left;
}
.mns-price-table tbody tr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mns-price-table__var {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 8px 10px 0;
  white-space: nowrap;
}
.mns-price-table__price {
  text-align: right;
  padding: 10px 0 10px 8px;
  font-family: var(--ff-serif);
}
.mns-price-table__price .mns-price-dl__num {
  font-size: 18px;
}
.mns-price-table__price small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 1px;
}
.mns-meta-dl {
  border: 1px solid var(--border);
  padding: clamp(16px, 2vw, 24px);
  margin-bottom: 24px;
}
.mns-meta-dl__row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.mns-meta-dl__row:last-child {
  border-bottom: none;
}
.mns-meta-dl__row dt {
  color: var(--ink-light);
  font-size: 11px;
  letter-spacing: 0.05em;
  min-width: 68px;
  padding-top: 1px;
}
.mns-meta-dl__row dd {
  color: var(--ink-mid);
  line-height: 1.6;
}
.mns-aside-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mns-aside-btns .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 767px) {
  .mns-intro__inner {
    grid-template-columns: 1fr;
  }
  .mns-intro__aside {
    position: static;
  }
  .mns-aside-btns {
    flex-direction: row;
  }
}

/* ── おすすめ ── */
.mns-recommend {
  background: var(--offwhite);
  padding: clamp(60px, 8vw, 100px) 0;
}
.mns-recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
}
.mns-recommend-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.6;
}
.mns-recommend-item__icon {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--gold);
}
@media (max-width: 599px) {
  .mns-recommend-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 特徴・メリット ── */
.mns-features {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
}
.mns-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.mns-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
}
.mns-feature-item__num {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--gold);
  line-height: 1;
  min-width: 52px;
  opacity: 0.9;
}
.mns-feature-item__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.mns-feature-item__desc {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.9;
}
@media (max-width: 599px) {
  .mns-features-list {
    grid-template-columns: 1fr;
  }
}

/* ── Philosophy ── */
.mns-philosophy {
  background: var(--offwhite);
  padding: clamp(60px, 8vw, 100px) 0;
}
.mns-philosophy__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}
.mns-philosophy__label .section-title {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-top: 8px;
}
.mns-philosophy__label .gold-line {
  margin-top: 20px;
}
.mns-philosophy__body p {
  font-size: 15px;
  line-height: 2.4;
  color: var(--ink-mid);
}
@media (max-width: 767px) {
  .mns-philosophy__inner {
    grid-template-columns: 1fr;
  }
  .mns-philosophy__label .gold-line {
    margin-bottom: 32px;
  }
}

/* ══════════════════════════════════════════════
   SECTION: REVIEWS
══════════════════════════════════════════════ */
.section-reviews {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--offwhite);
}
.section-reviews-inline {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}
.reviews-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

/* ══════════════════════════════════════════════
   SECTION: BLOG / NEWS
══════════════════════════════════════════════ */
.section-blog {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}

/* ── ブログ一覧ページ ── */
.blog-wrap {
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 120px);
  background: var(--offwhite);
}

/* カテゴリーフィルター */
.blog-cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.blog-cat-filter__item {
  font-family: var(--ff-latin);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  border: 1px solid var(--border);
  padding: 6px 16px;
  text-decoration: none;
  transition: all 0.2s;
  background: var(--white);
}
.blog-cat-filter__item:hover,
.blog-cat-filter__item.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* カードのカテゴリータグ */
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card__cat {
  font-family: var(--ff-latin);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.5);
  padding: 2px 8px;
}

/* ページネーション */
.blog-pagination {
  margin-top: clamp(48px, 6vw, 72px);
  text-align: center;
}
.blog-pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--ff-latin);
  font-size: 13px;
  color: var(--ink-mid);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
  background: var(--white);
}
.blog-pagination .page-numbers:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.blog-pagination .page-numbers.current {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
  width: auto;
  padding: 0 16px;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.blog-empty {
  text-align: center;
  color: var(--ink-light);
  padding: 80px 0;
  font-size: 14px;
}

/* ── 既存のblog-headerは維持 ── */
.blog-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
}

.blog-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease-out);
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(44, 40, 34, 0.08);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--greige);
  flex-shrink: 0;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}

.blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4c9be 0%, #c4b8ae 100%);
}

.blog-card__body {
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-card__date {
  font-family: var(--ff-latin);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-light);
}

.blog-card__title {
  font-family: var(--ff-serif);
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin: 0;
  transition: color 0.2s;
}
.blog-card:hover .blog-card__title {
  color: var(--gold);
}

.blog-card__excerpt {
  font-size: 12px;
  line-height: 1.85;
  color: var(--ink-light);
  margin: 0;
}

@media (max-width: 768px) {
  .blog-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════
   SECTION: SINGLE POST
══════════════════════════════════════════════ */

/* ── Hero（ブログ個別） ── */
.single-post-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.single-post-cat {
  font-family: var(--ff-latin);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(185, 155, 100, 0.6);
  padding: 4px 12px;
  border-radius: 2px;
  text-decoration: none;
}
.single .fv-page-hero__title {
  font-size: clamp(22px, 4vw, 40px);
  line-height: 1.45;
  text-wrap: balance;
}

/* ── Category tags ── */
.single-post-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0;
}
.single-post-cat {
  display: inline-block;
  font-family: var(--ff-latin);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(185, 155, 100, 0.6);
  padding: 4px 12px;
  border-radius: 2px;
  transition:
    background 0.25s,
    color 0.25s;
}
.single-post-cat:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
/* Author Box */
.post-author-box {
  margin: 48px 0 0;
  padding: 32px;
  background: var(--bg-off);
  border: 1px solid var(--border);
}

.post-author-box__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.post-author-box__inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.post-author-box__avatar {
  flex-shrink: 0;
}

.post-author-box__avatar-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.post-author-box__body {
  flex: 1;
  min-width: 0;
}

.post-author-box__role {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 4px;
}

.post-author-box__name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 10px;
}

.post-author-box__bio {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 14px;
}

.post-author-box__links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.post-author-box__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-author-box__link:hover {
  color: var(--gold);
}

.post-author-box__avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--border);
}

@media (max-width: 480px) {
  .post-author-box {
    padding: 24px 20px;
  }
  .post-author-box__inner {
    flex-direction: column;
    gap: 16px;
  }
}

.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.single-post-tag {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.single-post-tag:hover {
  color: var(--gold);
}

/* ── Layout ── */
.single-post-wrap {
  padding: clamp(56px, 8vw, 100px) 0 clamp(64px, 8vw, 120px);
  background: var(--white);
}
.single-post-inner {
  max-width: 760px;
  margin: 0 auto;
}
.single-post-article {
  margin-bottom: clamp(48px, 6vw, 80px);
}

/* ── Entry content typography ── */
.entry-content {
  font-family: var(--ff-jp);
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.9;
  color: var(--ink);
}
.entry-content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 2.4em 0 1em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-lt);
}
.entry-content h3 {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 2em 0 0.8em;
}
.entry-content h4 {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  margin: 1.8em 0 0.6em;
}
.entry-content p {
  margin-bottom: 1.6em;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  border-radius: 4px;
}
.entry-content figure {
  margin: 2em 0;
}
.entry-content figcaption {
  font-size: 12px;
  color: var(--ink-lt);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.06em;
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.6em;
}
.entry-content li {
  margin-bottom: 0.5em;
}
.entry-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content a:hover {
  color: var(--ink);
}
.entry-content blockquote {
  border-left: 3px solid var(--gold-lt);
  padding: 16px 20px;
  margin: 2em 0;
  background: var(--offwhite);
  font-style: italic;
  color: var(--ink-lt);
}
.entry-content hr {
  border: none;
  border-top: 1px solid var(--gold-lt);
  margin: 2.5em 0;
}
.entry-content strong {
  font-weight: 500;
  color: var(--ink);
}

/* ── Post nav (Prev / Next) ── */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--gold-lt);
}
.post-nav__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--gold-lt);
  border-radius: 4px;
  transition:
    border-color 0.25s,
    background 0.25s;
  color: var(--ink);
}
.post-nav__item:hover {
  border-color: var(--gold);
  background: rgba(185, 155, 100, 0.04);
}
.post-nav__item--next {
  text-align: right;
  align-items: flex-end;
}
.post-nav__dir {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-latin);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.post-nav__item--next .post-nav__dir {
  flex-direction: row-reverse;
}
.post-nav__title {
  font-family: var(--ff-jp);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Back to list ── */
.single-post-back {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .post-nav {
    grid-template-columns: 1fr;
  }
  .post-nav__item--next {
    text-align: left;
    align-items: flex-start;
  }
  .post-nav__item--next .post-nav__dir {
    flex-direction: row;
  }
  .single-post-inner {
    max-width: 100%;
    padding: 0 4px;
  }
}

/* ══════════════════════════════════════════════
   SECTION: BEFORE / AFTER
══════════════════════════════════════════════ */

/* ── 一覧ラッパー ── */
.ba-wrap {
  padding: clamp(56px, 8vw, 100px) 0 clamp(64px, 8vw, 120px);
  background: var(--offwhite);
}

/* ── カテゴリーフィルター（blog-cat-filterと同パターン） ── */
.ba-cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.ba-cat-filter__item {
  font-family: var(--ff-latin);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--ink-mid);
  background: var(--white);
  transition:
    background 0.22s,
    border-color 0.22s,
    color 0.22s;
}
.ba-cat-filter__item:hover,
.ba-cat-filter__item.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* ── グリッド ── */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

/* ── カード ── */
.ba-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.25s,
    transform 0.25s var(--ease-out);
}
.ba-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.ba-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ── カード：画像エリア ── */
.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-card__side {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--border);
}
.ba-card__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.ba-card:hover .ba-card__side img {
  transform: scale(1.03);
}
.ba-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--border);
}
.ba-card__side--before {
  border-right: 1px solid var(--white);
}
.ba-card__label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--ff-latin);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(20, 18, 14, 0.5);
  padding: 3px 8px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.ba-card__label--after {
  left: auto;
  right: 8px;
  background: rgba(185, 155, 100, 0.6);
}

/* ── カード：テキストエリア ── */
.ba-card__body {
  padding: 16px 18px 18px;
}
.ba-card__cat {
  display: inline-block;
  font-family: var(--ff-latin);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(185, 155, 100, 0.5);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}
.ba-card__concern {
  font-family: var(--ff-jp);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ba-card__more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--ff-latin);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.ba-empty {
  text-align: center;
  color: var(--ink-mid);
  padding: 80px 0;
  font-size: 14px;
  letter-spacing: 0.06em;
}

/* ══ 個別ページ ══ */

/* ── Hero（Before/After個別） ── */
.ba-single-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.ba-single-cat {
  font-family: var(--ff-latin);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(185, 155, 100, 0.6);
  padding: 4px 12px;
  border-radius: 2px;
}
.post-type-lucia_before_after .fv-page-hero__title {
  max-width: 680px;
  text-wrap: balance;
}

/* ── 本文ラッパー ── */
.ba-single-wrap {
  padding-bottom: 0;
  background: var(--white);
}
.ba-single-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) 0 clamp(48px, 6vw, 72px);
}

/* ── 比較スライダー ── */
.ba-compare {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 8px;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  margin-bottom: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}
.ba-compare__img {
  position: absolute;
  inset: 0;
}
.ba-compare__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  draggable: false;
}
.ba-compare__img--after {
  clip-path: inset(0 0 0 var(--ba-pos, 50%));
}
.ba-compare__caption {
  position: absolute;
  bottom: 14px;
  font-family: var(--ff-latin);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  padding: 4px 12px;
  border-radius: 2px;
  backdrop-filter: blur(6px);
}
.ba-compare__img--before .ba-compare__caption {
  left: 14px;
  background: rgba(20, 18, 14, 0.45);
}
.ba-compare__img--after .ba-compare__caption {
  right: 14px;
  background: rgba(185, 155, 100, 0.55);
}
.ba-compare__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos, 50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-compare__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.22);
  pointer-events: all;
  cursor: ew-resize;
  color: var(--ink-mid);
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s;
}
.ba-compare__handle:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}
.ba-compare__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-latin);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-light);
  margin-bottom: clamp(32px, 4vw, 48px);
}

/* ── 詳細情報グリッド ── */
.ba-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.ba-info__item {
  background: var(--white);
  padding: 16px 20px;
}
.ba-info__label {
  font-family: var(--ff-latin);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.ba-info__value {
  font-family: var(--ff-jp);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}

/* ── 施術コメント ── */
.ba-comment {
  background: var(--offwhite);
  border-left: 3px solid var(--gold-light);
  padding: 24px 28px;
  border-radius: 0 6px 6px 0;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.ba-comment__eyebrow {
  font-family: var(--ff-latin);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.ba-comment__text {
  font-family: var(--ff-jp);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-mid);
}

/* ── 戻るボタン ── */
.ba-single-back {
  text-align: center;
}

/* ── 関連事例 ── */
.ba-related {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--offwhite);
}
.ba-grid--related {
  margin-top: clamp(32px, 4vw, 48px);
}

/* ── レスポンシブ ── */
@media (max-width: 1024px) {
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ba-single-inner {
    max-width: 100%;
  }
  .ba-info {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════
   SECTION: INSTAGRAM
══════════════════════════════════════════════ */
.section-instagram {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--offwhite);
}
.instagram-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(32px, 4vw, 56px);
  flex-wrap: wrap;
  gap: 16px;
}
.instagram-handle {
  font-family: var(--ff-latin);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--greige);
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.instagram-item:hover img {
  transform: scale(1.06);
}
.instagram-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #c4b8ae 0%, #d4c9be 100%);
  opacity: 0.6;
}

/* ══════════════════════════════════════════════
   SECTION: CTA BANNER
══════════════════════════════════════════════ */
.section-cta-banner {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta-banner::before {
  content: "Lucia";
  position: absolute;
  font-family: var(--ff-latin);
  font-size: clamp(120px, 20vw, 220px);
  color: rgba(255, 255, 255, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}

.cta-banner-label {
  font-family: var(--ff-latin);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.cta-banner-title {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 3.5vw, 34px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 12px;
}
.cta-banner-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.cta-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-banner-btns .btn {
  min-width: 200px;
  padding: 16px 32px;
  font-size: 13px;
}

/* ══════════════════════════════════════════════
   INNER PAGES — COMMON
══════════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
}
.admin-bar .page-hero {
  padding-top: calc(140px + 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar .page-hero {
    padding-top: calc(140px + 46px);
  }
}
@media screen and (max-width: 600px) {
  .admin-bar .page-hero {
    padding-top: 140px;
  }
}
.page-hero__eyebrow {
  font-family: var(--ff-latin);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.page-hero__sub {
  font-size: 14px;
  color: var(--ink-mid);
  margin-top: 12px;
  letter-spacing: 0.05em;
}

.page-content-wrap {
  padding: clamp(60px, 8vw, 120px) 0;
}

/* Breadcrumb */
.breadcrumb {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--ink-light);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb__sep {
  color: var(--border);
}

/* ══════════════════════════════════════════════
   PAGE: 初めての方へ
══════════════════════════════════════════════ */

/* ── Page Hero ── */
.fv-page-hero {
  position: relative;
  height: clamp(320px, 45vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.fv-page-hero__bg {
  position: absolute;
  inset: 0;
}
.fv-page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.fv-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 40, 34, 0.75) 0%, rgba(44, 40, 34, 0.3) 50%, rgba(44, 40, 34, 0.1) 100%);
}
.fv-page-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(40px, 5vw, 64px);
  color: var(--white);
}
.fv-page-hero__breadcrumb {
  color: rgba(255, 255, 255, 0.5);
}
.fv-page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}
.fv-page-hero__breadcrumb a:hover {
  color: var(--white);
}
.fv-page-hero__eyebrow {
  font-family: var(--ff-latin);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 16px 0 10px;
}
.fv-page-hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  margin: 0 0 12px;
}
.fv-page-hero__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin: 0;
}

/* ── Welcome 2カラム ── */
.fv-welcome {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--white);
}
.fv-welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.fv-welcome__heading {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}
.fv-welcome__body {
  font-size: 14px;
  line-height: 2.2;
  color: var(--ink-mid);
  margin: 0;
}
.fv-welcome__visual {
  position: relative;
}
.fv-welcome__img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.fv-welcome__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv-welcome__img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.5;
}

/* Section head（ページ内共通） */
.fv-section-head {
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* こんな方が来ています */
.fv-concerns {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--offwhite);
}
.fv-concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}
.fv-concern-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.fv-concern-item:hover {
  border-color: var(--greige);
  box-shadow: 0 6px 20px rgba(44, 40, 34, 0.06);
}
.fv-concern-item__voice {
  font-family: var(--ff-serif);
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: 1.85;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin: 0;
}
.fv-concern-item__mark {
  font-family: var(--ff-latin);
  font-size: 20px;
  color: var(--greige);
  line-height: 0;
  vertical-align: -5px;
}
.fv-concern-item__resolve {
  font-size: 12px;
  line-height: 1.9;
  color: var(--slate);
  letter-spacing: 0.04em;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* 当日の準備 */
.fv-prep {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--white);
}
.fv-prep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.fv-prep-item {
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fv-prep-item__icon {
  width: 40px;
  height: 40px;
  color: var(--slate);
}
.fv-prep-item__icon svg {
  width: 36px;
  height: 36px;
}
.fv-prep-item__title {
  font-family: var(--ff-serif);
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.05em;
  margin: 0;
}
.fv-prep-item__body {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-mid);
  margin: 0;
}

/* ── 写真帯 ── */
.fv-photo-band {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  height: clamp(160px, 20vw, 280px);
  overflow: hidden;
}
.fv-photo-band__item {
  overflow: hidden;
}
.fv-photo-band__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.fv-photo-band__item:hover img {
  transform: scale(1.04);
}

/* 施術の流れ */
.fv-flow {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--offwhite);
}
.fv-flow__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.fv-flow__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(72px + 24px);
}
.fv-flow__side-img {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.fv-flow__side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv-flow__side-img--small {
  aspect-ratio: 4/3;
}
.fv-flow-list {
  display: flex;
  flex-direction: column;
}
.fv-flow-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 36px;
}
.fv-flow-item:last-child {
  padding-bottom: 0;
}
.fv-flow-item::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.fv-flow-item:last-child::before {
  display: none;
}
.fv-flow-item__num {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--white);
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.fv-flow-item__num span {
  font-family: var(--ff-latin);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.fv-flow-item__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  margin-bottom: 8px;
}
.fv-flow-item__title {
  font-family: var(--ff-serif);
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin: 0;
}
.fv-flow-item__note {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--slate);
  padding: 3px 10px;
  white-space: nowrap;
}
.fv-flow-item__text {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-mid);
  margin: 0;
}

/* FAQ（初回特化） */
.fv-faq {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--white);
}
.fv-faq-list {
  max-width: 760px;
  margin-inline: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .fv-flow__inner {
    grid-template-columns: 1fr;
  }
  .fv-flow__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: static;
  }
  .fv-flow__side-img--small {
    aspect-ratio: 3/4;
  }
}
@media (max-width: 768px) {
  .fv-welcome__grid {
    grid-template-columns: 1fr;
  }
  .fv-welcome__visual {
    display: none;
  }
  .fv-concern-grid {
    grid-template-columns: 1fr;
  }
  .fv-prep-grid {
    grid-template-columns: 1fr;
  }
  .fv-flow-item {
    grid-template-columns: 48px 1fr;
  }
  .fv-photo-band {
    grid-template-columns: 1fr 1fr;
    height: clamp(120px, 30vw, 180px);
  }
  .fv-photo-band__item:last-child {
    display: none;
  }
  .fv-flow__side {
    grid-template-columns: 1fr;
  }
  .fv-flow__side-img--small {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .fv-concern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
[data-anim].is-visible {
  opacity: 1;
  transform: none;
}
[data-anim="fade"] {
  transform: none;
}
[data-anim="left"] {
  transform: translateX(-24px);
}
[data-anim="right"] {
  transform: translateX(24px);
}
[data-anim="scale"] {
  transform: scale(0.96);
}
[data-delay="1"] {
  transition-delay: 0.1s;
}
[data-delay="2"] {
  transition-delay: 0.2s;
}
[data-delay="3"] {
  transition-delay: 0.3s;
}
[data-delay="4"] {
  transition-delay: 0.4s;
}
[data-delay="5"] {
  transition-delay: 0.5s;
}

/* ══════════════════════════════════════════════
   PAGE: 店舗一覧
══════════════════════════════════════════════ */

.shop-maps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 3vw, 48px);
}
.shop-map-heading {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.shop-map-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

/* ── 店舗案内ページ 新レイアウト ── */
.shop-detail-section {
  padding: clamp(72px, 10vw, 120px) 0;
  border-bottom: 1px solid var(--gold-lt);
}
.shop-detail-section:last-of-type {
  border-bottom: none;
}

.shop-detail__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

/* 偶数店舗は左右反転 */
.shop-detail-section--reverse .shop-detail__media {
  order: 2;
}
.shop-detail-section--reverse .shop-detail__info {
  order: 1;
}

.shop-detail__media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.shop-detail__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.shop-detail__img--placeholder {
  background: var(--offwhite);
}
.shop-detail-section:hover .shop-detail__img:not(.shop-detail__img--placeholder) {
  transform: scale(1.03);
}

.shop-detail__en {
  font-family: var(--ff-latin);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 10px;
}
.shop-detail__name {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}
.shop-detail__bar {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}

.shop-detail__table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.shop-detail__row {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 8px;
  font-size: 14px;
  line-height: 1.7;
}
.shop-detail__row dt {
  font-family: var(--ff-jp);
  color: var(--greige);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding-top: 2px;
  white-space: nowrap;
}
.shop-detail__row dd {
  color: var(--ink);
}

.shop-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.shop-detail__services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.shop-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--ink-light);
}
.shop-service-pill--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.shop-service-pill__icon {
  font-size: 11px;
  line-height: 1;
}
.shop-detail__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-detail__map {
  margin-top: clamp(40px, 5vw, 64px);
  height: clamp(240px, 30vw, 380px);
  border-radius: 2px;
  overflow: hidden;
}
.shop-detail__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 767px) {
  .shop-detail__split {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 40px);
  }
  .shop-detail-section--reverse .shop-detail__media {
    order: 0;
  }
  .shop-detail-section--reverse .shop-detail__info {
    order: 0;
  }
  .shop-detail__row {
    grid-template-columns: 5em 1fr;
  }
}

/* ══════════════════════════════════════════════
   PAGE: スタッフ紹介
══════════════════════════════════════════════ */

.staff-section {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--offwhite);
}

/* ── Grid ── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

/* ── Card ── */
.staff-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.staff-card:hover {
  box-shadow: 0 8px 32px rgba(44, 40, 34, 0.1);
}

/* ── Photo ── */
.staff-card__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--offwhite);
}
.staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.staff-card:hover .staff-card__photo img {
  transform: scale(1.04);
}
.staff-card__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--offwhite) 0%, #e8e2dc 100%);
}
.staff-card__role-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(44, 40, 34, 0.65);
  backdrop-filter: blur(4px);
  font-family: var(--ff-serif);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* ── Body ── */
.staff-card__body {
  padding: clamp(20px, 2.5vw, 28px);
}
.staff-card__name-en {
  font-family: var(--ff-latin);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}
.staff-card__name {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}
.staff-card__shop {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}
.staff-card__shop svg {
  flex-shrink: 0;
  color: var(--greige);
}
.staff-card__message {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── 趣味 ── */
.staff-card__hobbies {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}
.staff-card__hobbies svg {
  flex-shrink: 0;
  color: var(--greige);
}

/* ── Instagram リンク ── */
.staff-card__instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 5px 12px;
  margin-top: 16px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.staff-card__instagram:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ── 資格タグ ── */
.staff-card__quals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.staff-qual-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.05);
  padding: 3px 9px;
}
.staff-qual-tag svg {
  flex-shrink: 0;
}

/* ── 得意なこと ── */
.staff-card__specialties {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.staff-card__specialties li {
  font-size: 12px;
  color: var(--ink-light);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.staff-card__specialties li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 1px;
  background: var(--greige);
}

/* ── 資格説明帯 ── */
.staff-qual-note {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--ink);
}
.staff-qual-note__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.staff-qual-note .section-label {
  color: var(--gold);
}
.staff-qual-note__text {
  font-size: 14px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  margin: 16px 0 0;
}

/* ══════════════════════════════════════════════
   PAGE: コンセプト
══════════════════════════════════════════════ */

/* ── Hero 装飾 ── */
.concept-hero__overlay {
  background: linear-gradient(to top, rgba(44, 40, 34, 0.65) 0%, rgba(44, 40, 34, 0.15) 55%, rgba(44, 40, 34, 0.35) 100%);
}
.concept-hero__deco {
  position: absolute;
  right: clamp(24px, 6vw, 80px);
  bottom: -0.08em;
  font-family: var(--ff-latin);
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Section containers ── */
.concept-sec {
  padding: clamp(72px, 9vw, 120px) 0;
}
.concept-sec--light {
  background: var(--offwhite);
}
.concept-sec--white {
  background: var(--white);
}
.concept-sec--offwhite {
  background: var(--offwhite);
}

/* ── Split 2-column layout ── */
.concept-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.concept-split--reverse .concept-split__visual {
  order: -1;
}

/* ── Image components ── */
.concept-img-main {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.concept-img-main--tall {
  aspect-ratio: 2/3;
}
.concept-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.concept-img-main:hover img {
  transform: scale(1.03);
}
.concept-img-sub {
  margin-top: 16px;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.concept-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Badge ── */
.concept-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  background: rgba(201, 168, 76, 0.06);
}
.concept-badge__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}
.concept-badge__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.concept-badge__text {
  font-family: var(--ff-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink);
}

/* ── Checklist ── */
.concept-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.concept-checklist li {
  padding-left: 26px;
  position: relative;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.concept-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 7px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

/* ── Statement band ── */
.concept-statement {
  position: relative;
  height: clamp(300px, 40vw, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.concept-statement__img {
  position: absolute;
  inset: 0;
}
.concept-statement__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept-statement__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 40, 34, 0.72);
}
.concept-statement__quote {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0;
  padding: 0 var(--gutter);
}
.concept-statement__quote p {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 3.5vw, 38px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: var(--white);
  margin: 0 0 24px;
}
.concept-statement__quote cite {
  font-family: var(--ff-latin);
  font-size: clamp(11px, 1.5vw, 13px);
  letter-spacing: 0.3em;
  color: var(--gold);
  font-style: normal;
}

/* ── Photo band ── */
.concept-photo-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: clamp(140px, 18vw, 240px);
}
.concept-photo-band__item {
  overflow: hidden;
}
.concept-photo-band__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.concept-photo-band__item:hover img {
  transform: scale(1.05);
}

/* ── Values grid ── */
.concept-values {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--ink);
}
.concept-values__head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.concept-values__head .section-label {
  color: var(--gold);
}
.concept-values__head .section-title {
  color: var(--white);
}
.concept-values__head .gold-line {
  margin-inline: auto;
}
.concept-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.concept-value-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}
.concept-value-item:hover {
  background: rgba(255, 255, 255, 0.07);
}
.concept-value-item__num {
  font-family: var(--ff-latin);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  padding-top: 4px;
}
.concept-value-item__en {
  display: block;
  font-family: var(--ff-latin);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.concept-value-item__ja {
  font-family: var(--ff-serif);
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}
.concept-value-item__text {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03em;
  margin: 0;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (768px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner > *:last-child {
    grid-column: 1 / -1;
  }
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
  }

  /* Header */
  .main-navigation,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero-bg__overlay {
    background: linear-gradient(160deg, rgba(248, 246, 243, 0.95) 50%, rgba(248, 246, 243, 0.6) 100%);
  }
  .hero-deco {
    display: none;
  }
  .hero-cta .btn {
    flex: 1;
    min-width: 0;
  }

  /* Concept (home section) */
  .concept-inner {
    grid-template-columns: 1fr;
  }
  .concept-visual {
    order: -1;
  }
  .concept-img-accent {
    display: none;
  }

  /* Staff */
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Concept page */
  .concept-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .concept-split--reverse .concept-split__visual {
    order: 0;
  }
  .concept-img-main {
    aspect-ratio: 4/3;
  }
  .concept-img-main--tall {
    aspect-ratio: 4/3;
  }
  .concept-img-sub {
    display: none;
  }
  .concept-hero__deco {
    display: none;
  }
  .concept-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .concept-photo-band {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reasons */
  .reasons-header {
    grid-template-columns: 1fr;
  }
  .reasons-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-tabs {
    overflow-x: auto;
    gap: 0;
  }

  /* BA */
  .ba-grid {
    grid-template-columns: 1fr;
  }

  /* First */
  .first-grid {
    grid-template-columns: 1fr;
  }

  /* Shops */
  .shops-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner > *:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Instagram */
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* CTA banner */
  .cta-banner-btns .btn {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  .first-grid {
    grid-template-columns: 1fr;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .concept-values__grid {
    grid-template-columns: 1fr;
  }
  .concept-photo-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .staff-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: clamp(21px, 7vw, 28px);
  }
  .menu-card__price {
    flex-direction: column;
    gap: 8px;
  }
  .menu-card__price-sep {
    display: none;
  }
}

/* ══════════════════════════════════════════════
   404
══════════════════════════════════════════════ */
.error404-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--offwhite);
  padding: clamp(80px, 10vw, 140px) 0;
}
.error404-inner {
  text-align: center;
  max-width: 640px;
}
.error404-num {
  font-family: var(--ff-serif);
  font-size: clamp(80px, 15vw, 160px);
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -0.1em;
  letter-spacing: 0.05em;
}
.error404-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.error404-title {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 24px;
}
.error404-desc {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 2;
  margin-bottom: 32px;
}
.error404-line {
  margin: 0 auto 40px;
}
.error404-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
  text-align: left;
}
.error404-nav__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--ink-mid);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.error404-nav__item:hover {
  background: var(--ink);
  color: var(--white);
}
.error404-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .error404-nav {
    grid-template-columns: 1fr;
  }
}

#booking-package-memberActionPanel,
#booking-package_calendarPage {
  padding: 1rem;
}
#booking-package-memberActionPanel .register,
#booking-package-login,
#booking-package-logout,
#booking-package-edit,
#booking-package-bookedHistory,
#booking-package-subscribed {
  background: #eef0f3;
  font-size: 90%;
  padding: 5px 15px;
  border-radius: 1rem;
}

#booking-package_schedulePage .bottomPanelForPositionInherit {
  padding: 1rem;
}

#previous_available_day_button::after,
#next_available_day_button::after {
  content: "日";
}

#booking-package_inputFormPanel .cartPanel,
#booking-package_inputFormPanel .bottomBarPanel {
  padding: 0 1rem 1rem;
}

.yoyaku-box ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.yoyaku-box li {
  width: 50%;
  text-align: center;
}

.yoyaku-box a {
  background: var(--gold);
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 1rem;
}

/* ─────────────────────────────────────────
   Privacy Policy
───────────────────────────────────────── */
.policy-body {
  max-width: 760px;
  margin: 0 auto;
}

.policy-intro {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--border);
}

.policy-section {
  margin-bottom: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--border);
}

.policy-section:last-of-type {
  border-bottom: none;
}

.policy-heading {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 16px;
}

.policy-body p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-mid);
}

.policy-list {
  margin-top: 12px;
  padding-left: 1.2em;
  list-style: disc;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-mid);
}

.policy-list li + li {
  margin-top: 4px;
}

.policy-dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
}

.policy-dl__row {
  display: flex;
  gap: 24px;
}

.policy-dl__row dt {
  flex-shrink: 0;
  width: 80px;
  color: var(--ink-light);
}

.policy-dl__row dd {
  color: var(--ink-mid);
}

.policy-contact-btns {
  margin-top: 20px;
}

.policy-date {
  text-align: right;
  font-size: 12px;
  color: var(--ink-light);
  margin-top: clamp(40px, 5vw, 64px);
  letter-spacing: 0.05em;
}
