/*
Theme Name: Hair Salon Prime
Theme URI: https://hairsalon-prime.jp/
Description: ヘアーサロン プライム オリジナルテーマ
Version: 1.0.0
Author: Hair Salon Prime
Text Domain: hairsalon-prime
*/

/* =============================================
   設計方針 v3
   - FV: 明るいウォームトーン・高さ抑制・細くて上品なフォント
   - 本文: Noto Sans JP 400 / 行間1.9 / 色 #4a3c36（読みやすく）
   - SEO: セマンティックHTML・見出し階層・alt必須
   - カード均等グリッドを使わず有機的な構成
============================================= */

:root {
  --pink:      #EFC5BA;
  --pink-dk:   #D9A499;
  --peach:     #F7E3D6;
  --peach-lt:  #FDF3ED;
  --cream:     #FEF9F5;
  --ivory:     #FFFCF9;
  --sage:      #D4E0CC;
  --sage-lt:   #EDF4EA;
  --brown:     #7B5448;
  --brown-lt:  #A07060;
  --text:      #3E2E28;       /* ← v3: より濃くして可読性UP */
  --text-mid:  #6B5248;
  --text-lt:   #9E8078;
  --border:    #EDD8CE;
  --hand: 'Caveat', cursive;
  --serif: 'Noto Serif JP', serif;
  --sans:  'Noto Sans JP', sans-serif;
  --nav-h: 62px;
  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; height: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.9;          /* ← 読みやすい行間 */
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* コンテンツが少ないページでもフッターが下に貼り付き、余白ができないようにする */
main { flex: 1 0 auto; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   共通レイアウト
============================================= */
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 28px; }

.section { padding: 60px 0; }
.section--cream  { background: var(--cream); }
.section--peach  { background: var(--peach-lt); }
.section--brown  { background: var(--brown); }

/* セクション見出し */
.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; }
.sec-head .hand-sub {
  font-family: var(--hand);
  font-size: 26px;
  color: var(--pink-dk);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: .03em;
}
.sec-head h2 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: .1em;
  display: block;
}
.sec-head .dash {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  margin-top: 10px;
}
.sec-head.center .dash { margin: 10px auto 0; }

/* スクロールフェード */
.fade { opacity: 0; transform: translateY(22px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.fade.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* =============================================
   ナビゲーション
============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: rgba(255,252,249,.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .4s;
}
/* スクロール前はボーダーを非表示にして自然に */
.nav.hero-mode {
  background: rgba(255,252,249,.92);
  box-shadow: none;
}
.nav.solid {
  background: rgba(255,252,249,.97);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1060px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-main {
  font-family: var(--sans);
  font-size: 16px; font-weight: 700;
  letter-spacing: .06em; line-height: 1;
  color: var(--brown);
}
.nav-logo-sub {
  font-size: 9px; letter-spacing: .2em;
  font-weight: 300; color: var(--brown-lt);
}
.nav-list { display: flex; align-items: center; gap: 30px; }
.nav-list a {
  font-size: 12px; letter-spacing: .14em; font-weight: 500;
  color: var(--text-mid); position: relative; padding-bottom: 2px;
  transition: color .3s;
}
.nav-list a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1.5px;
  background: var(--pink-dk); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.nav-list a:hover::after { transform: scaleX(1); }
.nav-tel {
  font-size: 15px; font-weight: 700; letter-spacing: .08em;
  color: var(--brown);
}

/* ハンバーガーボタン — button要素のデフォルトをリセット */
.ham {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: none;
  /* レイアウト */
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 28px;
  height: 28px;
}
.ham span {
  display: block;
  height: 1px;
  background: var(--brown);
  border-radius: 1px;
  transition: transform .35s ease, opacity .2s ease, width .25s ease;
}
.ham span:nth-child(1) { width: 100%; }
.ham span:nth-child(2) { width: 68%; }
.ham span:nth-child(3) { width: 84%; }
.nav.hero-mode .ham span { background: var(--brown); }
/* ✕ アニメーション: gap 6px + line 1px → 中心までの移動量 = 6px+1px = 7px */
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* SP メニュー */
@keyframes spFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.sp-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250,243,238,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.sp-menu.open {
  display: flex;
  animation: spFadeIn .25s ease forwards;
}
.sp-menu a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--brown);
  display: block;
  text-align: center;
  padding: 17px 40px;
  border-bottom: 1px solid rgba(200,144,110,.15);
  width: 100%;
  max-width: 280px;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.sp-menu a:first-of-type { border-top: 1px solid rgba(200,144,110,.15); }
.sp-menu a:hover,
.sp-menu a:focus-visible { color: var(--pink-dk); background: rgba(239,197,186,.15); }
.sp-menu .sub { display: none; }
.sp-menu-close {
  margin-top: 32px;
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--brown-lt);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
}
.sp-menu-close::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
}

/* =============================================
   FV（ファーストビュー）
   ── 明るいウォームグラデ、高さ 75vh 程度
============================================= */
.fv {
  min-height: clamp(520px, 78svh, 100svh);
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}

/* 明るい温かいグラデーション背景 */
.fv-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 62% 40%, rgba(239,197,186,.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(247,227,214,.45) 0%, transparent 55%),
    linear-gradient(135deg, #F5E4D8 0%, #FAEEE6 30%, #F9E0D5 65%, #F0D4C8 100%);
}

/* 写真がある場合は上に重ねてblend */
.fv-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: .22;
}

/* 右側の装飾パネル（薄い） */
.fv-deco {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%;
  background: rgba(255,255,255,.28);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  border-left: 1px solid rgba(255,255,255,.5);
}

/* 小さな水玉アクセント */
.fv-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(219,164,153,.25) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .6;
}

.fv-content {
  position: relative; z-index: 2;
  padding-top: var(--nav-h);
  max-width: 1060px; margin: 0 auto; padding-left: 28px; padding-right: 28px;
}

/* ウーマンオンリータグ */
.fv-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .22em; font-weight: 500;
  color: var(--brown-lt);
  margin-top: 20px;
  margin-bottom: 28px;
  background: rgba(255,255,255,.7);
  padding: 5px 14px 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--pink);
}
.fv-tag::before {
  content: '♀';
  font-size: 12px; color: var(--pink-dk);
}

/* FV見出し ── Noto Serif JP 細め */
.fv-h1 {
  font-family: var(--serif);
  font-weight: 300;                 /* ← 細い */
  font-size: clamp(30px, 4.8vw, 52px);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.fv-h1 strong {
  font-weight: 400;
  color: var(--brown);
  display: block;
}

.fv-lead {
  font-size: clamp(13px, 1.4vw, 14.5px);
  color: var(--text-mid);
  line-height: 2.1;
  font-weight: 300;
  max-width: 380px;
  letter-spacing: .04em;
  margin-bottom: 36px;
}

/* ボタン */
.fv-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--brown);
  color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  border-radius: 999px;
  transition: background .3s, transform .2s;
}
.btn-main:hover { background: var(--brown-lt); transform: translateY(-2px); }
.btn-main-arrow { font-size: 11px; opacity: .7; }

.btn-sub {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--brown);
  color: var(--brown);
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
  border-radius: 999px;
  transition: background .3s;
}
.btn-sub:hover { background: var(--peach); }

/* 右下の小さな情報 */
.fv-info {
  position: absolute;
  right: 40px; bottom: 32px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  z-index: 2;
}
.fv-info-item {
  font-size: 10px; letter-spacing: .18em;
  color: var(--text-lt); font-weight: 300;
  display: flex; align-items: center; gap: 6px;
}
.fv-info-item::before { content: '—'; opacity: .5; }

/* スクロール */
.fv-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  font-size: 9px; letter-spacing: .25em;
  color: var(--text-lt); font-family: var(--sans); font-weight: 300;
}
.scroll-bar {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--pink-dk));
  animation: scrolldown 2s ease-in-out infinite;
}
@keyframes scrolldown {
  0%   { opacity: 0; transform: scaleY(.3); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(.3); transform-origin: bottom; }
}

/* =============================================
   コンセプト
============================================= */
.concept-inner {
  display: flex;
  gap: 64px;
  align-items: center;
}
/* 写真スライダー */
.concept-photo {
  flex: 0 0 36%;
  position: relative;
}
.concept-photo-frame {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--peach), var(--pink));
  border-radius: 16px 16px 40px 16px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  clip-path: inset(0 round 16px 16px 40px 16px); /* 子要素のtransformに関係なく確実にクリップ */
}
/* スライダー本体 */
.slider-track {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform .5s ease;
}
.slider-slide {
  width: 25%;
  height: 100%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--peach), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--hand); font-size: 14px;
  color: rgba(255,255,255,.6); letter-spacing: .05em;
}
.slider-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* 矢印ボタン */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.75);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--brown);
  z-index: 2; transition: background .2s;
}
.slider-btn:hover { background: rgba(255,255,255,.95); }
.slider-btn.prev { left: 8px; }
.slider-btn.next { right: 8px; }
/* ドットインジケーター */
.slider-dots {
  display: flex; gap: 5px; justify-content: flex-start;
  position: absolute; bottom: 12px; left: 14px;
  z-index: 3;
}
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.55); cursor: pointer;
  transition: background .2s, transform .2s;
  border: none; padding: 0;
}
.slider-dot.active {
  background: #fff; transform: scale(1.3);
}
/* 装飾枠 */
.concept-photo::before {
  content: '';
  position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 1.5px solid var(--border);
  border-radius: 16px 16px 40px 16px;
  z-index: -1;
}
/* 女性専用バッジ */
.badge-women {
  position: absolute; bottom: -14px; right: 16px;
  background: var(--brown);
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(123,84,72,.22);
  white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
}
.badge-women::before { content: '♀'; color: var(--pink); font-size: 13px; }

/* テキスト */
.concept-text {
  flex: 1;
  display: flex; flex-direction: column; gap: 0;
}
.concept-catch {
  font-family: var(--serif);
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.85;
  letter-spacing: .05em;
  margin-bottom: 24px;
}
.concept-catch mark {
  background: linear-gradient(to bottom, transparent 60%, rgba(239,197,186,.5) 60%);
  color: inherit;
}
.concept-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2.1;
  margin-bottom: 18px;
  font-weight: 300;
  letter-spacing: .03em;
}
.concept-note {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--peach-lt);
  border-left: 3px solid var(--pink);
  border-radius: 0 10px 10px 0;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
}
.concept-note strong {
  font-weight: 700; color: var(--brown);
  display: block; margin-bottom: 3px;
}

/* =============================================
   メニュー ── 帯リスト
============================================= */
.menu-intro {
  text-align: center;
  font-size: 14px; color: var(--text-mid); line-height: 2;
  max-width: 540px; margin: 0 auto 48px;
  font-weight: 300; letter-spacing: .04em;
}

.menu-table { width: 100%; border-collapse: collapse; }
.menu-table thead th {
  font-size: 10px; letter-spacing: .2em; font-weight: 500;
  color: var(--text-lt); text-align: left; padding: 0 16px 14px;
  border-bottom: 1.5px solid var(--border);
}
.menu-table thead th:last-child { text-align: right; }

.menu-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .25s;
}
.menu-table tbody tr:hover { background: var(--peach-lt); }

.menu-table td {
  padding: 22px 16px;
  vertical-align: middle;
}
.m-name {
  font-size: 16px; font-weight: 700;
  color: var(--brown); letter-spacing: .04em;
  font-family: var(--sans);
  white-space: nowrap;
  min-width: 130px;
}
.m-name .en {
  display: block;
  font-family: var(--hand);
  font-size: 13px; font-weight: 400;
  color: var(--text-lt); margin-top: 1px;
  letter-spacing: .04em;
}
.m-desc {
  font-size: 13px; color: var(--text-mid);
  line-height: 1.8; font-weight: 300; letter-spacing: .03em;
}
.m-price {
  text-align: right; white-space: nowrap;
}
.m-price-num {
  font-size: 17px; font-weight: 700;
  color: var(--brown-lt); display: block;
  letter-spacing: .04em;
}
.m-price-from {
  font-size: 10px; color: var(--text-lt);
  letter-spacing: .1em; display: block;
  margin-bottom: 2px;
}
.menu-asterisk {
  font-size: 11.5px; color: var(--text-lt);
  text-align: center; margin-top: 20px;
  letter-spacing: .08em;
}

/* ── メニュー：カテゴリーヘッダー行 ── */
.m-cat-row td {
  background: var(--peach-lt);
  padding: 14px 16px 10px;
  border-bottom: none !important;
}
.m-cat-title {
  font-size: 16px; font-weight: 700;
  color: var(--brown); display: flex;
  align-items: baseline; gap: 8px;
}
.m-cat-title .en {
  font-family: var(--hand); font-size: 14px;
  font-weight: 400; color: var(--text-lt);
}
.m-cat-sub {
  font-size: 11px; color: var(--text-lt);
  margin-top: 3px; font-weight: 300;
}
.m-cat-counsel {
  font-size: 12px; color: var(--brown-lt);
  margin-top: 4px; font-weight: 500;
  display: flex; align-items: center; gap: 4px;
}
.m-cat-counsel::before { content: '✦'; font-size: 9px; color: var(--pink-dk); }

/* ── メニュー：サブ行 ── */
.m-sub-row td {
  padding: 9px 16px 9px 28px;
  vertical-align: middle;
}
.m-sub-label {
  font-size: 13.5px; color: var(--text-mid); font-weight: 400;
}
.m-sub-note {
  font-size: 11px; color: var(--text-lt);
  margin-left: 4px; font-weight: 300;
}
.m-sub-price {
  font-size: 15px; font-weight: 700;
  color: var(--brown-lt); text-align: right;
  white-space: nowrap;
}

/* ── ショップカードセクション ── */
.shopcard-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
/* フリップカード */
.sc-flip-wrap {
  perspective: 900px;
  -webkit-perspective: 900px;
  width: 100%;
  max-width: 364px;
  margin: 0 auto;
  cursor: pointer;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}
.sc-flip-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 91/55;
  transform-style: preserve-3d !important;
  -webkit-transform-style: preserve-3d !important;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  -webkit-transition: -webkit-transform .7s cubic-bezier(.4,0,.2,1);
  border-radius: 16px;
}
.sc-flip-wrap.flipped .sc-flip-inner {
  transform: rotateY(180deg) !important;
  -webkit-transform: rotateY(180deg) !important;
}
.sc-face {
  position: absolute; inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 10px 40px rgba(123,84,72,.18);
}
.sc-face img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 16px;
}
/* 画像がないときのフォールバック */
.sc-face-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  background: linear-gradient(135deg, var(--peach) 0%, var(--pink) 100%);
  font-family: var(--serif); color: var(--brown);
}
.sc-face-ph .ph-label {
  font-size: 14px; font-weight: 700; letter-spacing: .15em;
}
.sc-face-ph .ph-sub {
  font-size: 11px; letter-spacing: .08em; color: var(--brown-lt);
}
.sc-back {
  transform: rotateY(180deg);
}
/* タップヒント */
.sc-hint {
  margin-top: 14px;
  text-align: center;
  font-size: 12px; color: var(--brown-lt);
  letter-spacing: .05em;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.sc-hint::before {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  background: var(--pink-dk);
  border-radius: 50%;
  opacity: .6;
}
.sc-label-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(123,84,72,.75);
  backdrop-filter: blur(4px);
  color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: .12em; padding: 4px 12px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}
.shopcard-text .sec-head { margin-bottom: 20px; }
.shopcard-body {
  font-size: 14px; color: var(--text-mid);
  line-height: 2.1; font-weight: 300;
  letter-spacing: .03em; margin-bottom: 20px;
}
.shopcard-note {
  padding: 14px 18px;
  background: rgba(237,216,206,.55);
  border-left: 3px solid var(--pink);
  border-radius: 0 8px 8px 0;
  font-size: 12.5px; color: var(--text-mid);
  line-height: 1.9; font-weight: 300;
}
@media (max-width: 900px) {
  .shopcard-inner { grid-template-columns: 1fr; }
  .sc-flip-wrap { max-width: 320px; }
}

/* ── カレンダー注記 ── */
.cal-disclaimer {
  margin-top: 10px;
  font-size: 11.5px; color: var(--text-lt);
  text-align: center; line-height: 1.8;
  padding: 8px 12px;
  background: rgba(237,216,206,.35);
  border-radius: 6px;
  font-weight: 300;
}
.cal-capacity {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 6px;
  font-size: 12px; color: var(--brown-lt);
  font-weight: 500;
}
.cal-capacity::before {
  content: '📅'; font-size: 12px;
}

/* =============================================
   カレンダー
============================================= */
.cal-lead {
  text-align: center;
  font-size: 14px; color: var(--text-mid);
  line-height: 2; margin-bottom: 36px;
  font-weight: 300; letter-spacing: .04em;
}
.cal-box {
  max-width: 680px; margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 28px;
  box-shadow: 0 6px 32px rgba(123,84,72,.09);
  border: 1px solid var(--border);
}
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.cal-m-label {
  font-family: var(--sans);
  font-size: 18px; font-weight: 700;
  color: var(--brown); letter-spacing: .04em;
}
.cal-m-label .yr {
  font-size: 13px; font-weight: 400;
  color: var(--text-lt); margin-right: 4px;
}
.cal-navs { display: flex; gap: 6px; }
.cal-navbtn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff; cursor: pointer; font-size: 14px;
  color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.cal-navbtn:hover { background: var(--pink); border-color: var(--pink); }

.cal-tbl { width: 100%; border-collapse: separate; border-spacing: 3px 3px; }
.cal-tbl th {
  font-size: 10px; letter-spacing: .18em; font-weight: 400;
  color: var(--text-lt); text-align: center; padding: 8px 0;
}
.cal-tbl td { padding: 4px 2px; text-align: center; }

.cal-cell {
  width: 100%; aspect-ratio: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px; border-radius: 8px; font-size: 14px;
}
.cal-cell .cn { line-height: 1; }
.cal-cell .cs { font-size: 9px; font-weight: 700; letter-spacing: .04em; }

.cal-cell.avail .cn { color: var(--text); }
.cal-cell.avail .cs { color: #6ea67e; }
.cal-cell.full  { background: #FFF0EE; }
.cal-cell.full  .cn { color: #c07070; }
.cal-cell.full  .cs { color: #c07070; }
.cal-cell.off   { background: #F5F0EE; }
.cal-cell.off   .cn { color: #c0a898; }
.cal-cell.off   .cs { color: #c0a898; }
.cal-cell.blank { opacity: .25; }
.cal-cell.today { background: var(--peach-lt); }
.cal-cell.today .cn { color: var(--brown); font-weight: 700; }
.cal-cell.sun .cn { color: #c07070; }
.cal-cell.sat .cn { color: #7090c4; }

.cal-legend {
  display: flex; gap: 20px; justify-content: center;
  margin-top: 18px; padding-top: 14px;
  border-top: 1.5px dashed var(--border);
}
.cal-leg { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-lt); }
.cal-dot { width: 8px; height: 8px; border-radius: 50%; }
.d-a { background: #6ea67e; }
.d-f { background: #c07070; }
.d-o { background: #c0a898; }
/* 定休日 */
.cal-tbl td.cal-rest { color: #c0a898; background: #F5F0EE; border-radius: 6px; }
/* 過去日 */
.cal-tbl td.cal-past { color: #ccc; }
/* 満席日 */
.cal-tbl td.cal-busy { color: #c07070; font-weight: 600; background: #FFF0EE; border-radius: 6px; }

.cal-note {
  text-align: center; margin-top: 16px;
  font-size: 12px; color: var(--text-lt); font-weight: 300; line-height: 1.8;
}
.cal-note a { color: var(--brown-lt); border-bottom: 1px solid var(--pink); }

/* =============================================
   ニュース
============================================= */
.news-layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start;
}
.news-col-l { position: sticky; top: 80px; }
.news-more-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: .12em;
  color: var(--brown-lt);
  border-bottom: 1px solid var(--pink);
  padding-bottom: 2px;
  margin-top: 16px;
}
.news-items { display: flex; flex-direction: column; }
.news-item {
  display: flex; flex-direction: column; gap: 5px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity .25s;
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-item:hover { opacity: .65; }
.news-meta { display: flex; align-items: center; gap: 10px; }
.news-date {
  font-family: var(--hand); font-size: 14px;
  color: var(--text-lt); white-space: nowrap;
}
.news-cat {
  font-size: 9px; letter-spacing: .18em; font-weight: 500;
  padding: 2px 10px; border-radius: 999px;
  background: var(--sage-lt); color: #5a7a55;
}
.news-title {
  font-size: 14px; font-weight: 500;
  color: var(--text); line-height: 1.65; letter-spacing: .03em;
}

/* ── お知らせ一覧ページ：ページネーション ── */
.news-pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-top: 32px; flex-wrap: wrap;
}
.news-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 34px; padding: 0 8px;
  border: 1.5px solid var(--border); border-radius: 999px;
  font-size: 12px; color: var(--brown-lt); font-weight: 500;
  transition: background .25s, color .25s;
}
.news-pagination .page-numbers.current {
  background: var(--brown); border-color: var(--brown); color: #fff;
}
.news-pagination a.page-numbers:hover {
  background: var(--peach-lt); color: var(--brown);
}
.news-pagination .page-numbers.dots { border: none; }

/* ── お知らせ詳細ページ ── */
.news-detail-title {
  font-size: 22px; font-weight: 700; color: var(--brown);
  line-height: 1.6; letter-spacing: .02em; margin-bottom: 28px;
}
.news-detail-thumb {
  margin-bottom: 28px; border-radius: 12px; overflow: hidden;
}
.news-detail-thumb img { width: 100%; display: block; }
.news-detail-body {
  font-size: 15px; line-height: 2; color: var(--text-mid);
  font-weight: 300; letter-spacing: .02em;
}
.news-detail-body p { margin-bottom: 1.4em; }
.news-detail-body img { max-width: 100%; border-radius: 10px; margin: 1.4em 0; }
.news-detail-body a { color: var(--brown-lt); border-bottom: 1px solid var(--pink); }

/* =============================================
   お問い合わせ
============================================= */
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
/* 情報列 */
.contact-info .sec-head .hand-sub { color: var(--pink); }
.contact-info .sec-head h2 { color: rgba(255,255,255,.88); }
.contact-info .sec-head .dash { background: var(--pink); }

.info-block { margin-bottom: 28px; }
.info-lbl {
  font-size: 9.5px; letter-spacing: .22em;
  color: rgba(255,255,255,.42); margin-bottom: 4px;
  font-weight: 300;
}
.info-val {
  font-size: 18px; font-weight: 700;
  color: #fff; letter-spacing: .04em; font-family: var(--sans);
}
.info-val.sm { font-size: 15px; }
.info-val a:hover { color: var(--pink); }

.hours-tbl { width: 100%; }
.hours-tbl td {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 13px; color: rgba(255,255,255,.7); font-weight: 300;
  letter-spacing: .03em;
}
.hours-tbl td.day { color: rgba(255,255,255,.42); width: 45%; }
.hours-note {
  font-size: 11px; color: rgba(255,255,255,.35);
  margin-top: 10px; line-height: 1.9; font-weight: 300;
}
/* フォーム列 */
.cf { display: flex; flex-direction: column; gap: 15px; }
.cf-row { display: flex; flex-direction: column; gap: 6px; }
.cf-lbl {
  font-size: 11px; letter-spacing: .16em;
  color: rgba(255,255,255,.5); font-weight: 300;
}
.cf-lbl .req { color: var(--pink); margin-left: 2px; }
.cf-in, .cf-ta, .cf-sel {
  padding: 12px 15px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 10px;
  font-size: 14px; color: #fff;
  font-family: var(--sans); outline: none;
  width: 100%; line-height: 1.6;
  transition: border-color .25s, background .25s;
}
.cf-in::placeholder, .cf-ta::placeholder { color: rgba(255,255,255,.25); }
.cf-in:focus, .cf-ta:focus, .cf-sel:focus {
  border-color: var(--pink);
  background: rgba(255,255,255,.14);
}
.cf-ta { min-height: 115px; resize: vertical; }
.cf-sel { -webkit-appearance: none; cursor: pointer; color: rgba(255,255,255,.75); }
.cf-sel option { background: var(--brown); color: #fff; }
.cf-btn {
  align-self: flex-start;
  padding: 13px 36px;
  background: var(--pink);
  color: var(--brown); font-family: var(--sans);
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  border: none; border-radius: 999px; cursor: pointer;
  transition: background .25s, transform .2s;
}
.cf-btn:hover { background: var(--pink-dk); transform: translateY(-1px); }

/* Contact Form 7（ダッシュボードで作成したフォーム）の見た目調整 */
.wpcf7-form { display: flex; flex-direction: column; gap: 15px; }
.wpcf7-form p { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.wpcf7-form label {
  font-size: 11px; letter-spacing: .16em;
  color: rgba(255,255,255,.5); font-weight: 300;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  padding: 12px 15px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 10px;
  font-size: 14px; color: #fff;
  font-family: var(--sans); outline: none;
  width: 100%; line-height: 1.6;
  transition: border-color .25s, background .25s;
}
.wpcf7-form select option { background: var(--brown); color: #fff; }
.wpcf7-form input::placeholder, .wpcf7-form textarea::placeholder { color: rgba(255,255,255,.25); }
.wpcf7-form input:focus, .wpcf7-form textarea:focus, .wpcf7-form select:focus {
  border-color: var(--pink);
  background: rgba(255,255,255,.14);
}
.wpcf7-form textarea { min-height: 115px; resize: vertical; }
.wpcf7-form .wpcf7-submit {
  align-self: flex-start;
  padding: 13px 36px;
  background: var(--pink);
  color: var(--brown); font-family: var(--sans);
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  border: none; border-radius: 999px; cursor: pointer;
  transition: background .25s, transform .2s;
}
.wpcf7-form .wpcf7-submit:hover { background: var(--pink-dk); transform: translateY(-1px); }
.wpcf7-form .wpcf7-not-valid-tip { color: #ffb4b4; font-size: 12px; margin-top: 4px; }
.wpcf7 .wpcf7-response-output {
  color: #fff; border-radius: 10px; margin-top: 16px;
  font-size: 13px; padding: 10px 16px;
}
.wpcf7-form .wpcf7-spinner { margin: 0 0 0 10px; }

/* =============================================
   アクセス
============================================= */
.access-box {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 18px; overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 6px 32px rgba(123,84,72,.08);
}
.access-map {
  height: 100%;
  min-height: 360px;
  position: relative; overflow: hidden;
}
.access-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }
.access-detail {
  background: #fff; padding: 40px 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.a-row .a-lbl { font-size: 9.5px; letter-spacing: .2em; color: var(--text-lt); margin-bottom: 4px; }
.a-row .a-val {
  font-size: 14px; color: var(--text);
  line-height: 1.75; font-weight: 400;
}
.a-note {
  padding: 12px 16px;
  background: var(--peach-lt);
  border-radius: 10px;
  font-size: 12px; color: var(--brown-lt);
  font-weight: 500; line-height: 1.75; letter-spacing: .03em;
}

/* =============================================
   LINE予約セクション
============================================= */
.line-section { background: var(--peach-lt); }
.line-box {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 40px 36px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.line-lead {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 28px;
}
.line-lead strong { color: var(--text); font-weight: 500; }
.line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  border-radius: 12px;
  padding: 16px 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  max-width: 340px;
  width: 100%;
  transition: opacity .2s;
}
.line-btn:hover { opacity: .85; }
.line-btn svg { flex-shrink: 0; }
.line-btn-sub {
  font-size: 11px;
  color: var(--text-lt);
  margin-top: 10px;
}
.line-steps {
  display: flex;
  margin-top: 28px;
  border-top: 1px dashed var(--border);
  padding-top: 24px;
}
.line-step {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  position: relative;
}
.line-step:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -4px;
  top: 6px;
  color: var(--pink);
  font-size: 18px;
}
.line-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--brown);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}
.line-step-txt {
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =============================================
   フッター
============================================= */
.footer {
  background: #2a1c16;
  padding: 56px 0 32px;
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 40px;
  margin-bottom: 44px; flex-wrap: wrap;
}
.footer-logo-wrap { display: flex; flex-direction: column; gap: 4px; }
.footer-logo-name {
  font-size: 18px; font-weight: 700;
  color: rgba(255,255,255,.85); letter-spacing: .06em;
}
.footer-logo-sub {
  font-size: 10px; color: rgba(255,255,255,.3);
  letter-spacing: .2em; font-weight: 300;
}
.footer-desc {
  font-size: 12px; color: rgba(255,255,255,.42);
  line-height: 2; font-weight: 300; margin-top: 12px;
  max-width: 300px;
}
.footer-navs { display: flex; flex-direction: column; gap: 10px; }
.footer-navs a {
  font-size: 12px; color: rgba(255,255,255,.48);
  letter-spacing: .08em; font-weight: 300;
  transition: color .25s;
}
.footer-navs a:hover { color: rgba(255,255,255,.85); }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  text-align: center;
  font-size: 10.5px; color: rgba(255,255,255,.2);
  letter-spacing: .12em;
}

/* =============================================
   レスポンシブ
============================================= */
@media (max-width: 900px) {
  /* ① ハンバーガー切り替え */
  .nav-list, .nav-tel { display: none; }
  .ham { display: flex; }
  .concept-inner { flex-direction: column; }
  .concept-photo { flex: none; width: 100%; }
  .news-layout { grid-template-columns: 1fr; }
  .news-col-l { position: static; }
  .contact-inner { grid-template-columns: 1fr; }
  .access-box { grid-template-columns: 1fr; }
  .access-map { height: 250px; }
  .footer-top { flex-direction: column; gap: 28px; }
}
@media (max-width: 640px) {
  :root { --nav-h: 56px; }
  .section { padding: 52px 0; }
  .fv { height: auto; min-height: 0; max-height: none; padding: 100px 0 60px; }
  .fv-deco { display: none; }
  .fv-info { display: none; }
  .fv-scroll { display: none; }
  .fv-btns { flex-direction: column; align-items: flex-start; }
  .menu-intro { margin-bottom: 24px; }
  .menu-table thead { display: none; }
  .menu-table tbody tr { display: flex; flex-direction: column; gap: 2px; padding: 7px 0; }
  .menu-table tbody tr.m-cat-row { padding: 14px 0 5px; }
  .menu-table td { padding: 0 12px; }
  .m-cat-counsel, .m-cat-sub { margin-top: 2px; }
  .m-price { text-align: left; }
  .cal-cell .cs { display: none; }
  .line-box { padding: 28px 20px; }
  .line-steps { flex-direction: column; gap: 0; }
  .line-step {
    display: flex; align-items: center;
    gap: 12px; text-align: left;
    padding: 8px 0; position: static;
  }
  .line-step:not(:last-child)::after { display: none; }
  .line-step-num { flex-shrink: 0; margin-bottom: 0; }
}
