@charset "UTF-8";

/* ==================================================
   1. 変数定義 
================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Montserrat:wght@700;800;900&family=Oswald:wght@500;600;700&display=swap');

:root {
  /* LPカラーパレット */
  --blue: #1466a8;          /* メインブルー(帯背景) */
  --blue-deep: #15518f;     /* 見出しの濃紺ブルー */
  --blue-sky: #cfe9f6;      /* ヒーロー水色 */
  --blue-pale: #e3eef3;     /* 流れセクション淡色 */
  --blue-hex: #e9f1fa;      /* 淡ブルー */
  --cyan: #29abe2;          /* ラベル・装飾水色 */
  --yellow: #ffe800;        /* キーイエロー（アクセント） */
  --cream: #faf6e4;         /* 料金セクション背景 */
  --pink: #fbe4ec;          /* お客様の声背景 */
  --red: #e8332a;           /* CTA・コンバージョンボタン赤 */
  
  --text-main: #333333;     /* 基本テキスト（LPの黒） */
  --text-light: #888888;    /* サブテキスト（LPのグレー） */
  --bg-base: #FFFFFF;       /* 白（清潔感） */
  --border-color: #cfe9f6;  /* ボーダーもLPの水色に寄せる */
  
  --font-base: 'Noto Sans JP', sans-serif;
  --font-en: 'Montserrat', 'Oswald', sans-serif;
}

/* ==================================================
   2. リセット & ベーススタイル
================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-base);
  color: var(--text-main);
  background-color: var(--bg-base);
  line-height: 1.8;
  font-size: 15px;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: var(--blue); transition: opacity 0.3s ease; }
a:hover { opacity: 0.7; }

/* 英語/数字をLP風のフォントで目立たせるユーティリティ */
.en-font { font-family: var(--font-en); }

/* ==================================================
   3. 全体レイアウト
================================================== */
.page-container { display: flex; flex-direction: column; min-height: 100vh; }
.content-wrapper { max-width: 1100px; margin: 0 auto; padding: 60px 20px; display: flex; gap: 50px; width: 100%; flex: 1; }
.main-content { flex: 1; min-width: 0; }
.sidebar { width: 280px; flex-shrink: 0; }

/* ==================================================
   4. ヘッダー (Header)
================================================== */
.site-header { width: 100%; background: var(--bg-base); border-bottom: 2px solid var(--blue-sky); position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 10px rgba(20, 102, 168, 0.1); }
.header-inner { max-width: 1100px; margin: 0 auto; padding: 8px 20px; display: flex; justify-content: space-between; align-items: center; }
.header-logo-area { display: flex; flex-direction: column; }
.header-catch { font-size: 10px; color: var(--blue-deep); font-weight: bold; margin-bottom: 2px; }
.logo { font-size: 26px; font-weight: 900; font-family: var(--font-en); text-decoration: none; color: var(--blue-deep); letter-spacing: 0.05em; line-height: 1; }
.logo-mark { color: var(--cyan); margin-right: 4px; font-size: 30px; }

/* ロゴ画像（全ページ共通） */
.header-logo-link { display: flex; align-items: center; text-decoration: none; }
.header-logo-img { height: 100px; width: auto; display: block; object-fit: contain; }
.header-logo-text { display: none; flex-direction: column; line-height: 1.2; }
.header-logo-brand { font-size: 24px; font-weight: 900; color: var(--blue-deep); font-family: var(--font-en); letter-spacing: 0.04em; }
.header-logo-sub { font-size: 11px; font-weight: 700; color: var(--cyan); letter-spacing: 0.02em; }

.header-nav ul { display: flex; gap: 24px; list-style: none; }
.header-nav a { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--text-main); transition: color 0.3s ease; }
.header-nav a:hover, .header-nav a.is-current { color: var(--cyan); }

/* ヘッダーのCVボタンはLP風の赤に */
.btn-reservation-top {
  background: var(--red); color: #fff !important; padding: 10px 28px; border-radius: 40px; text-decoration: none; font-size: 14px; font-weight: 900; box-shadow: 0 4px 12px rgba(232, 51, 42, 0.3); transition: transform 0.2s;
}
.btn-reservation-top:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(232, 51, 42, 0.4); }

/* ==================================================
   5. メインビジュアル (スライダー) & ヒーローコピー
================================================== */
/* メインビジュアル スライダー リデザイン */
.main-visual { position: relative; width: 100%; height: calc(100vw * 711 / 1920); max-height: 711px; min-height: 320px; overflow: hidden; background: #0a3d6b; }

/* スライドトラック */
.slider-container { display: flex; width: 100%; height: 100%; transition: transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.slider-container .slide { position: relative; min-width: 100%; width: 100%; height: 100%; flex-shrink: 0; overflow: hidden; }

/* 画像（存在する場合に重なる） */
.slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; }

/* 画像なし時のプレースホルダー */
.slide-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; z-index: 0; }
.slide-placeholder svg { width: 52px; height: 52px; }
.slide-placeholder span { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }

/* グラデーションオーバーレイ（左側を暗くしてテキストを読みやすく） */
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(4,28,60,0.80) 0%, rgba(4,28,60,0.50) 45%, rgba(4,28,60,0.05) 100%); z-index: 2; pointer-events: none; }

/* ヒーローコピー */
.hero-copy { position: absolute; top: 50%; left: 8%; transform: translateY(-50%); z-index: 10; display: flex; flex-direction: column; gap: 16px; max-width: 560px; }
.hero-eyebrow { display: inline-block; background: var(--yellow); color: var(--blue-deep); font-size: 12px; font-weight: 900; padding: 5px 18px; border-radius: 30px; letter-spacing: 0.1em; width: fit-content; }
.hero-heading { font-size: 46px; font-weight: 900; color: #fff; line-height: 1.3; letter-spacing: 0.04em; margin: 0; }
.hero-heading em { font-style: normal; color: var(--cyan); }
.hero-sub { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.88); margin: 0; }
.hero-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-size: 16px; font-weight: 900; padding: 14px 32px; border-radius: 50px; text-decoration: none; width: fit-content; box-shadow: 0 6px 0 #8b1010; transition: transform 0.15s, box-shadow 0.15s; }
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 0 #8b1010; }
.hero-cta span { font-size: 18px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-stats span { background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; }

/* 矢印ボタン */
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 50%; cursor: pointer; z-index: 10; background: rgba(255,255,255,0.18); border: 1.5px solid rgba(255,255,255,0.4); color: #fff; transition: background 0.2s; backdrop-filter: blur(4px); }
.slider-arrow:hover { background: rgba(255,255,255,0.35); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-arrow svg { width: 22px; height: 22px; }

/* ==================================================
   6. 汎用セクション & 見出し (LPトンマナ)
================================================== */
.section { margin-bottom: 80px; }
.section.bg-light-blue { background-color: var(--blue-pale); padding: 60px 40px; border-radius: 16px; }

.main-content h2 { font-size: 28px; text-align: center; margin-bottom: 40px; font-weight: 900; color: var(--blue-deep); position: relative; padding-bottom: 16px; letter-spacing: 0.05em; }
.main-content h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: var(--cyan); border-radius: 2px; }
h3 { font-size: 20px; color: var(--blue-deep); margin-bottom: 16px; font-weight: 900; }

/* ==================================================
   7. 各種コンポーネント
================================================== */

/* 特徴リスト（ポップなタグ風） */
.feature-list { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.feature-item { background: #fff; border: 2px solid var(--cyan); color: var(--blue-deep); padding: 10px 28px; border-radius: 40px; font-weight: 900; font-size: 15px; box-shadow: 0 4px 0 var(--cyan); transition: all 0.2s ease; }
.feature-item:hover { background: var(--cyan); color: #fff; transform: translateY(2px); box-shadow: 0 2px 0 var(--blue-deep); }

/* 特徴セクション リデザイン */
.features-section-new { background: #fff; padding: 80px 20px; }
.feat-eyebrow { text-align: center; font-size: 13px; font-weight: 900; color: var(--cyan); letter-spacing: 0.2em; margin-bottom: 8px; }
.feat-heading { text-align: center; font-size: 30px; font-weight: 900; color: var(--blue-deep); margin-bottom: 12px; }
.feat-heading em { font-style: normal; color: var(--cyan); }
.feat-lead { text-align: center; font-size: 15px; color: var(--gray); margin-bottom: 56px; }

.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1000px; margin: 0 auto; }

.feat-card { background: #fff; border: 1px solid var(--border-color); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(20,102,168,0.08); transition: transform 0.25s, box-shadow 0.25s; }
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(20,102,168,0.14); }

.feat-img-wrap { position: relative; aspect-ratio: 16/9; background: var(--blue-pale); overflow: hidden; }
.feat-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-img-wrap--contain .feat-img { object-fit: contain; background: #fff; }
.feat-img-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--blue); opacity: 0.45; padding: 16px; text-align: center; }
.feat-img-placeholder svg { width: 40px; height: 40px; }
.feat-img-placeholder span { font-size: 12px; font-weight: 700; line-height: 1.5; }
.feat-num-badge { position: absolute; top: 12px; left: 12px; background: var(--blue-deep); color: #fff; font-size: 12px; font-weight: 900; font-family: var(--font-en); padding: 4px 12px; border-radius: 20px; letter-spacing: 0.06em; }

.feat-body { padding: 24px 28px 28px; }
.feat-title { font-size: 20px; font-weight: 900; color: var(--blue-deep); line-height: 1.4; margin-bottom: 12px; }
.feat-desc { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.feat-point { background: var(--blue-pale); color: var(--blue-deep); font-size: 13px; font-weight: 900; padding: 8px 16px; border-radius: 8px; border-left: 4px solid var(--cyan); }

/* 選ばれる理由カード */
.reason-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-top: 24px; overflow: visible; }
.reason-card { position: relative; background: #ffffff; padding: 40px 28px 28px; border-radius: 16px; text-align: center; border: 2px solid var(--border-color); box-shadow: 0 8px 0 var(--blue-pale); transition: transform 0.3s ease; }
.reason-card:hover { transform: translateY(-4px); border-color: var(--cyan); }
.reason-badge { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--blue-deep); font-family: var(--font-en); font-size: 14px; font-weight: 900; padding: 6px 28px; border-radius: 30px; border: 2px solid var(--blue-deep); box-shadow: 0 4px 0 var(--blue-deep); z-index: 5; white-space: nowrap; }
.reason-icon { font-size: 44px; margin-bottom: 16px; }
.reason-title { font-size: 18px; color: var(--blue-deep); margin-bottom: 16px; font-weight: 900; line-height: 1.5; }
.reason-desc { font-size: 14px; color: var(--text-main); font-weight: 500; text-align: left; }

/* 料金プラン（クリーム背景 ＋ 赤のアクセント） */
.price-section { background: var(--cream); padding: 60px 20px; border-radius: 16px; }
.price-list { display: flex; flex-direction: column; gap: 20px; max-width: 600px; margin: 0 auto; align-items: center; }
.price-item { display: flex; justify-content: space-between; align-items: center; padding: 24px 32px; background: #fff; border: 2px solid var(--blue-sky); border-radius: 12px; width: 100%; box-shadow: 0 4px 0 var(--blue-pale); }
.price-item.recommended { transform: scale(1.05); z-index: 1; border: 4px solid var(--red); box-shadow: 0 8px 0 var(--red); position: relative; }
.price-item.recommended::before { content: '人気No.1'; position: absolute; top: -16px; left: 24px; background: var(--red); color: #fff; font-size: 14px; font-weight: 900; padding: 4px 16px; border-radius: 20px; box-shadow: 0 2px 0 var(--blue-deep); }
.plan-info h3 { font-size: 22px; color: var(--blue-deep); margin-bottom: 4px; }
.plan-info p { font-weight: 700; color: var(--text-light); font-size: 13px; }
.plan-price .amount { font-size: 38px; font-weight: 900; color: var(--red); font-family: var(--font-en); }
.plan-price .yen { font-size: 20px; font-weight: bold; color: var(--red); margin-right: 4px; }

/* ご利用の流れ (ポップな矢印と水色枠) */
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flow-item { background: #ffffff; border: 3px solid var(--blue-sky); border-radius: 16px; padding: 24px; text-align: center; position: relative; box-shadow: 0 6px 0 var(--blue-pale); }
@media (min-width: 993px) {
  .flow-item:not(:last-child)::after { content: '▶'; position: absolute; top: 50%; right: -22px; transform: translateY(-50%); font-size: 24px; color: var(--cyan); z-index: 10; }
}
.step-num { display: inline-block; font-size: 14px; font-weight: 900; color: var(--cyan); font-family: var(--font-en); background: var(--blue-hex); padding: 4px 16px; border-radius: 20px; margin-bottom: 12px; }
.step-title { font-size: 16px; font-weight: 900; color: var(--blue-deep); margin-bottom: 16px; }
.step-image-wrap { width: 100%; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; margin-bottom: 16px; border: 2px solid var(--border-color); }
.step-image { width: 100%; height: auto; display: block; border-radius: 12px; margin-bottom: 16px; object-fit: contain; }
.step-desc { font-size: 13px; color: var(--text-main); font-weight: 500; text-align: left; }

/* ご利用者の声 リデザイン */
.voice-section { background: linear-gradient(180deg, #f0f8ff 0%, #fff 100%); padding: 80px 20px; }
.section-eyebrow-voice { text-align: center; font-size: 13px; font-weight: 900; color: var(--cyan); letter-spacing: 0.2em; margin-bottom: 8px; }
.voice-title { text-align: center; font-size: 28px; font-weight: 900; color: var(--blue-deep); margin-bottom: 10px; }
.voice-lead { text-align: center; font-size: 15px; color: var(--gray); margin-bottom: 40px; }

/* 満足度サマリー */
.voice-summary { display: flex; justify-content: center; align-items: center; gap: 0; background: var(--blue-deep); border-radius: 16px; padding: 28px 40px; max-width: 680px; margin: 0 auto 56px; }
.voice-stat { text-align: center; flex: 1; }
.voice-stat-num { display: block; font-size: 40px; font-weight: 900; font-family: var(--font-en); color: var(--yellow); line-height: 1.1; }
.voice-stat-unit { font-size: 18px; }
.voice-stat-label { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.8); margin-top: 4px; }
.voice-stat-div { width: 1px; height: 48px; background: rgba(255,255,255,0.2); margin: 0 8px; }

/* レビューカードグリッド */
.voice-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.voice-card { background: #fff; border: 1px solid var(--border-color); border-radius: 20px; padding: 28px 24px; box-shadow: 0 4px 20px rgba(20,102,168,0.08); display: flex; flex-direction: column; gap: 16px; }
.voice-card-top { flex: 1; }

/* 星評価 */
.voice-stars { font-size: 18px; color: #f5a623; margin-bottom: 12px; letter-spacing: 2px; }

/* コメント */
.voice-comment { font-size: 14px; line-height: 1.8; color: var(--text-main); font-weight: 600; position: relative; padding-left: 20px; }
.voice-comment::before { content: '"'; position: absolute; left: 0; top: -4px; font-size: 28px; color: var(--cyan); font-family: Georgia, serif; line-height: 1; }

/* ユーザー情報 */
.voice-user { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border-color); }
.voice-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--blue-pale); border: 2px solid var(--cyan); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; }
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.voice-avatar-initial { font-size: 18px; font-weight: 900; color: var(--blue); font-family: var(--font-en); }
.voice-user-info { display: flex; flex-direction: column; }
.voice-user-name { font-size: 14px; font-weight: 900; color: var(--blue-deep); }
.voice-user-profile { font-size: 12px; color: var(--gray); }

/* 習慣タグ */
.voice-habits { display: flex; flex-wrap: wrap; gap: 6px; }
.habit-tag { background: var(--blue-pale); color: var(--blue-deep); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }

/* ビフォーアフター */
.voice-ba { display: grid; grid-template-columns: 1fr 24px 1fr; align-items: center; gap: 4px; }
.voice-ba-item { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: var(--blue-pale); }
.voice-ba-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.voice-ba-item.no-img { display: flex; align-items: center; justify-content: center; }
.voice-ba-item.no-img::after { content: '画像準備中'; font-size: 11px; color: var(--gray); }
.ba-label { position: absolute; bottom: 6px; left: 6px; font-size: 10px; font-weight: 900; padding: 2px 8px; border-radius: 4px; }
.ba-label.before { background: rgba(0,0,0,0.5); color: #fff; }
.ba-label.after { background: var(--cyan); color: #fff; }
.voice-ba-arrow { text-align: center; font-size: 18px; color: var(--cyan); font-weight: 900; }

/* トーンアップバッジ */
.voice-tone-up { background: var(--blue-pale); border-radius: 8px; padding: 8px 12px; font-size: 13px; color: var(--gray); text-align: center; }
.voice-tone-up strong { color: var(--blue-deep); font-size: 15px; }

/* ==========================================
   ホワイトニングセクション リデザイン
========================================== */

.whitening-lead {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 48px;
  line-height: 1.8;
}

/* トーンスケールブロック */
.whitening-effect-block {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 48px;
  text-align: center;
}

.tone-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* カラーパレット画像 */
.tone-img-placeholder {
  max-width: 600px;
  margin: 0 auto 32px;
  border-radius: 12px;
  overflow: hidden;
}

.tone-img-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* 効果バッジ */
.effect-claims {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.claim-badge {
  background: #fff;
  border: 2px solid var(--cyan);
  border-radius: 14px;
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 0 var(--blue-pale);
  min-width: 130px;
}

.claim-badge.claim-featured {
  background: var(--yellow);
  border-color: var(--blue-deep);
  box-shadow: 0 4px 0 var(--blue-deep);
  transform: scale(1.05);
}

.claim-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-deep);
  font-family: var(--font-en);
  line-height: 1;
}

.claim-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
}

/* 機器・薬剤 新デザイン */
.equipment-section-new {
  background: var(--blue-pale);
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 48px;
}

.eq-heading {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 32px;
}

.equipment-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eq-feature {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--border-color);
  box-shadow: 0 6px 0 rgba(20, 102, 168, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.eq-feature:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

/* 画像プレースホルダー */
.eq-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--blue-hex);
  border: 2px dashed var(--cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--cyan);
}

.placeholder-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-deep);
  opacity: 0.5;
}

.eq-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.eq-img-placeholder--gel {
  aspect-ratio: 16 / 9;
  border: none;
  background: #f5f5f5;
  padding: 0;
  overflow: hidden;
}
.eq-img-placeholder--gel img {
  object-fit: cover;
  object-position: center top;
}
.eq-img-placeholder--machine {
  background: #fff;
  border: none;
}

.eq-img-placeholder--machine .eq-machine-img {
  object-fit: contain;
  background: #fff;
}

.eq-feature h4 {
  font-size: 16px;
  color: var(--blue-deep);
  font-weight: 900;
  margin-bottom: 14px;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 10px;
  display: inline-block;
}

.eq-feature p {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 500;
  text-align: left;
  line-height: 1.9;
}

/* 監修 新デザイン */
.supervisor-section-new {
  text-align: center;
}

.supervisor-lead {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin: -8px 0 32px;
}

.supervisor-list-new {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.supervisor-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 36px;
  box-shadow: 0 6px 0 var(--blue-pale);
  min-width: 260px;
  transition: transform 0.3s ease;
}

.supervisor-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
}

.supervisor-avatar {
  font-size: 40px;
  width: 68px;
  height: 68px;
  background: var(--blue-hex);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--cyan);
  flex-shrink: 0;
}

.supervisor-info-new {
  text-align: left;
}

.supervisor-role {
  display: inline-block;
  background: var(--cyan);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.supervisor-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--blue-deep);
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 850px) {
  .whitening-effect-block { padding: 32px 20px; }
  .equipment-section-new { padding: 32px 20px; }
  .equipment-features { grid-template-columns: 1fr; }
  .supervisor-list-new { flex-direction: column; align-items: center; }
  .supervisor-card { min-width: 100%; justify-content: center; }
  .effect-claims { gap: 12px; }
  .claim-badge { min-width: 110px; padding: 14px 16px; }
}

/* よくある質問 */
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 24px 0; font-size: 16px; font-weight: 900; color: var(--blue-deep); cursor: pointer; position: relative; border-bottom: 2px solid var(--blue-sky); }
.faq-question::after { content: '＋'; position: absolute; right: 0; color: var(--cyan); font-size: 20px; font-weight: bold; }
.faq-question.active::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 20px 0; color: var(--text-main); font-weight: 500; border-bottom: 2px dashed var(--border-color); }

/* マップ・アクセス */
.map-container { flex: 1; height: 300px; border-radius: 12px; overflow: hidden; border: 4px solid var(--blue-pale); }
.map-container iframe { width: 100%; height: 100%; border: none; }
.address-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.address-info h3 { font-size: 24px; color: var(--blue-deep); }

/* ★ 共通CTAボタン（目立つ赤） */
.cta-section { text-align: center; background: var(--blue-hex); padding: 60px 20px; border-radius: 16px; border: 4px solid var(--cyan); }
.cta-section p { font-size: 20px; font-weight: 900; color: var(--blue-deep); margin-bottom: 24px; }
.btn-reservation {
  display: inline-block; background: var(--red); color: #fff !important; padding: 20px 60px; border-radius: 40px; font-size: 20px; font-weight: 900; text-decoration: none; box-shadow: 0 6px 0 var(--blue-deep); transition: transform 0.2s, box-shadow 0.2s; letter-spacing: 0.05em;
}
.btn-reservation:hover { transform: translateY(4px); box-shadow: 0 2px 0 var(--blue-deep); }

/* フローティングCTA（スマホ用追従ボタン） */
.floating-cta { display: none; }
@media (max-width: 768px) {
  .floating-cta {
    display: block; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 92%; max-width: 400px; background: var(--red); color: #ffffff !important; text-align: center; padding: 20px; border-radius: 40px; font-size: 18px; font-weight: 900; text-decoration: none; box-shadow: 0 6px 0 var(--blue-deep); z-index: 999; border: 2px solid var(--blue-deep);
  }
  .floating-cta:active { transform: translateX(-50%) translateY(4px); box-shadow: 0 2px 0 var(--blue-deep); }
}

/* ==================================================
   8. フッター & サイドバー
================================================== */
.site-footer { background: var(--blue); color: #FFFFFF; padding: 60px 20px 20px; text-align: center; margin-top: auto; border-top: 8px solid var(--cyan); }
.footer-logo { font-size: 32px; font-weight: 900; font-family: var(--font-en); color: #FFFFFF; text-decoration: none; }
.footer-nav ul { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; list-style: none; }
.footer-nav a { color: var(--blue-sky); text-decoration: none; font-size: 14px; font-weight: 700; }
.footer-nav a:hover { color: var(--yellow); }
.footer-legal { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px dashed rgba(255,255,255,0.2); }
.footer-legal a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 12px; font-weight: 700; }
.footer-legal a:hover { color: var(--yellow); }
.copyright { font-size: 12px; color: var(--blue-sky); margin-top: 16px; }

.info-news-box { background: var(--yellow); padding: 24px; border-radius: 12px; margin-bottom: 32px; border: 2px solid var(--blue-deep); box-shadow: 0 4px 0 var(--blue-deep); }
.info-news-box h3 { font-size: 16px; font-family: var(--font-en); color: var(--blue-deep); border-bottom: 2px solid var(--blue-deep); padding-bottom: 8px; margin-bottom: 12px; }
.sidebar-link-group a { display: block; padding: 16px 12px; color: var(--blue-deep); text-decoration: none; font-weight: 900; border-bottom: 2px solid var(--border-color); background: #fff; transition: all 0.2s; }
.sidebar-link-group a:hover, .sidebar-link-group a.is-current { background: var(--cyan); color: #fff; padding-left: 20px; }

/* ==================================================
   9. レスポンシブ (スマホ対応)
================================================== */
@media (max-width: 850px) {
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .header-nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 8px; }
  .header-nav ul { width: max-content; gap: 16px; }
  .content-wrapper { flex-direction: column; padding: 40px 20px; }
  .sidebar { width: 100%; margin-top: 0; }
  .main-visual { min-height: 280px; }
  .hero-copy { left: 5%; right: 5%; max-width: none; align-items: center; text-align: center; }
  .hero-heading { font-size: 30px; }
  .hero-stats { justify-content: center; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(4,28,60,0.60) 0%, rgba(4,28,60,0.45) 100%); }
  .feature-grid { grid-template-columns: 1fr; }
  .reason-cards { grid-template-columns: 1fr; gap: 40px; padding-top: 24px; }
  .flow-steps { grid-template-columns: 1fr; }
  .comment-area { flex-direction: column-reverse; align-items: center; }
  .access-content { flex-direction: column; }
}

/* ==================================================
   10. 予約ページ専用スタイル (.reservation-page) 
================================================== */
.reservation-page .hero { background: var(--blue); color: #fff; padding: 40px 20px; text-align: center; border-bottom: 8px solid var(--cyan); }
.reservation-page .hero-title { font-size: 36px; font-weight: 900; color: #fff; margin-bottom: 8px; text-shadow: 2px 2px 0 var(--blue-deep); }
.reservation-page .hero-lead { font-weight: 700; color: var(--yellow); }

.reservation-page .steps { display: flex; list-style: none; justify-content: center; gap: 40px; margin: 40px 0; border-bottom: 4px solid var(--blue-pale); padding-bottom: 20px; }
.reservation-page .step { color: var(--text-light); font-weight: 900; display: flex; align-items: center; gap: 8px; }
.reservation-page .step.is-active { color: var(--blue-deep); }
.reservation-page .step-num { background: var(--border-color); color: var(--blue-deep); width: 28px; height: 28px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-family: var(--font-en); }
.reservation-page .step.is-active .step-num { background: var(--cyan); color: #fff; }

.reservation-page .panel { display: none; }
.reservation-page .panel.is-active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ==================================================
   ★ 予約メニューカード ＆ アコーディオン決済選択
================================================== */
.menu-card-wrap {
  border: 3px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
  background: #fff;
  transition: all 0.3s ease;
  overflow: hidden; /* アコーディオンを隠すため */
}

/* 選択されたカードの外枠ハイライト */
.menu-card-wrap:has(.menu-card-main input:checked) {
  border-color: var(--cyan);
  box-shadow: 0 6px 0 var(--blue-pale);
}

/* メインメニュー部分（クリック領域） */
.menu-card-main {
  display: flex;
  flex-direction: column;
  padding: 24px;
  cursor: pointer;
  transition: background 0.3s;
}
.menu-card-wrap:has(.menu-card-main input:checked) .menu-card-main {
  background: var(--blue-hex);
}
.menu-card-main input[type="radio"] {
  display: none; /* デフォルトの丸いラジオボタンは隠す */
}

.menu-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.menu-card-name {
  font-weight: 900;
  color: var(--blue-deep);
  font-size: 20px;
}
.menu-card-price {
  color: var(--red);
  font-size: 26px;
  font-weight: 900;
  font-family: var(--font-en);
  line-height: 1;
}
.price-tail {
  font-size: 14px;
  color: var(--text-light);
  font-family: var(--font-base);
  margin-left: 2px;
}
.menu-card-desc {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}

/* アコーディオン：決済方法エリア（初期状態は隠す） */
.payment-options {
  max-height: 0;
  opacity: 0;
  padding: 0 24px;
  background: #ffffff;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

/* メニューが選択されたらアコーディオンを開く */
.menu-card-wrap:has(.menu-card-main input:checked) .payment-options {
  max-height: 300px;
  opacity: 1;
  padding: 20px 24px 24px;
  border-top: 2px dashed var(--cyan);
}

.payment-title {
  font-size: 13px;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 12px;
  text-align: center;
}

/* 決済方法の押しボタン（ピル型） */
.payment-radios {
  display: flex;
  gap: 12px;
}
.payment-pill {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
}
.payment-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.pay-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}
.pay-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-light);
  font-family: var(--font-en);
  line-height: 1;
}

/* 決済方法が選択された時のハイライト */
.payment-pill:has(input:checked) {
  border-color: var(--red);
  background: #fffafa; /* ほんのり赤背景 */
  box-shadow: 0 4px 0 var(--red);
  transform: translateY(-2px);
}
.payment-pill:has(input:checked) .pay-name,
.payment-pill:has(input:checked) .pay-price {
  color: var(--red);
}

@media (max-width: 600px) {
  .payment-radios {
    flex-direction: column; /* スマホでは縦並びに */
  }
}
/* カレンダー・時間枠 (LPのトンマナに合わせたポップな配色) */
.datetime-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; margin-top: 24px; }
@media (max-width: 768px) { .datetime-grid { grid-template-columns: 1fr; gap: 24px; } }
.calendar-wrap, .slot-wrap { background: #ffffff; border: 3px solid var(--blue-pale); border-radius: 16px; padding: 28px; box-shadow: 0 6px 0 var(--blue-pale); }

.cal-month { font-size: 20px; font-weight: 900; color: var(--blue-deep); font-family: var(--font-en); }
.cal-nav { background: var(--blue-hex); border: 2px solid var(--cyan); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; color: var(--blue-deep); font-weight: bold; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 13px; font-weight: 900; color: var(--blue); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--blue-pale); }
.cal-dow span:first-child { color: var(--red); } .cal-dow span:last-child { color: var(--blue); }

.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); row-gap: 12px; column-gap: 8px; text-align: center; }
.cal-day { height: 44px; border-radius: 50%; border: none; cursor: pointer; background: transparent; font-size: 15px; font-weight: 700; color: var(--text-main); font-family: var(--font-en); }
.cal-day.open:hover { background: var(--blue-hex); color: var(--blue-deep); }
.cal-day.closed { color: #ccc; background: #f9f9f9; cursor: not-allowed; }
.cal-day.is-selected { background: var(--cyan) !important; color: #fff !important; box-shadow: 0 4px 0 var(--blue-deep); transform: translateY(-2px); }
.udot { display: block; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; margin: 2px auto 0; }
.cal-day.is-selected .udot { background: #fff; }

.slot-heading { font-size: 16px; font-weight: 900; color: var(--blue-deep); border-left: 6px solid var(--cyan); padding-left: 12px; margin-bottom: 24px; }
.slot-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.slot { padding: 14px 0; border-radius: 8px; border: 2px solid var(--border-color); cursor: pointer; background: #fff; font-size: 16px; font-weight: 900; color: var(--blue-deep); font-family: var(--font-en); }
.slot.open:hover { border-color: var(--cyan); background: var(--blue-hex); }
.slot.is-selected { background: var(--cyan) !important; color: #fff !important; border-color: var(--blue-deep) !important; box-shadow: 0 4px 0 var(--blue-deep); transform: translateY(-2px); }
.slot.full { background: #eee; color: #aaa; border-color: #ddd; cursor: not-allowed; }

/* 予約フォーム (EFO) */
.summary { background: var(--blue-hex); border: 2px solid var(--cyan); padding: 24px; border-radius: 12px; margin-bottom: 40px; }
.summary .row { display: flex; justify-content: space-between; border-bottom: 2px dashed var(--blue-sky); padding: 16px 0; }
.summary dt { font-weight: 900; color: var(--blue); }
.summary dd { font-weight: 900; color: var(--blue-deep); font-size: 18px; }

/* 項目間の余白と、ラベルの横並び（必須バッジのズレ修正）を追加 */
.field { margin-bottom: 32px; }
.field label { display: flex; align-items: center; font-size: 16px; font-weight: 900; color: var(--blue-deep); margin-bottom: 12px; }
.field .req { background: var(--red); color: #fff; font-size: 12px; padding: 4px 12px; border-radius: 20px; margin-left: 12px; }
.field input[type="text"], .field input[type="tel"], .field input[type="email"] { width: 100%; padding: 18px; background: #fff; border: 2px solid var(--border-color); border-radius: 8px; font-size: 16px; font-weight: 700; color: var(--text-main); transition: all 0.2s; }
.field input:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px var(--blue-sky); outline: none; }

/* 「はい/いいえ」を横並びにし、ラジオボタンを表示させる */
.radio-row { display: flex; gap: 16px; }
.radio-row .pill { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px; border: 2px solid var(--border-color); border-radius: 8px; background: #fff; font-weight: 900; color: var(--text-light); cursor: pointer; }
.radio-row .pill input[type="radio"] { width: 20px; height: 20px; accent-color: var(--cyan); cursor: pointer; }
.radio-row .pill:has(input:checked) { border-color: var(--cyan); background: var(--blue-hex); color: var(--blue-deep); box-shadow: 0 4px 0 var(--blue-sky); }

/* 利用規約のチェックボックスとテキストのズレを修正 */
.agree { display: flex; align-items: flex-start; gap: 12px; background: var(--blue-hex); border: 2px solid var(--cyan); padding: 24px; border-radius: 12px; font-weight: 700; color: var(--blue-deep); cursor: pointer; margin-top: 40px; }
.agree input[type="checkbox"] { width: 24px; height: 24px; accent-color: var(--cyan); flex-shrink: 0; cursor: pointer; }

/* CVボタン (次へ進む等) */
.panel-actions { display: flex; justify-content: center; gap: 16px; margin-top: 48px; }
.reservation-page .btn-primary { background: var(--red); color: #fff; padding: 20px 60px; border: 2px solid var(--blue-deep); border-radius: 40px; font-size: 20px; font-weight: 900; cursor: pointer; box-shadow: 0 6px 0 var(--blue-deep); transition: transform 0.2s; }
.reservation-page .btn-primary:hover { transform: translateY(4px); box-shadow: 0 2px 0 var(--blue-deep); }
.btn-ghost { background: #fff; color: var(--blue-deep); border: 2px solid var(--blue-deep); padding: 20px 40px; border-radius: 40px; font-size: 18px; font-weight: 900; cursor: pointer; box-shadow: 0 4px 0 var(--blue-deep); }

/* 完了画面 */
.done-icon { background: var(--yellow); color: var(--blue-deep); width: 100px; height: 100px; border-radius: 50%; font-size: 50px; display: inline-flex; align-items: center; justify-content: center; border: 4px solid var(--blue-deep); margin-bottom: 32px; }
.done-panel .panel-title { font-size: 32px; color: var(--blue-deep); font-weight: 900; }
.done-panel .panel-note { background: var(--blue-hex); border: 2px solid var(--cyan); font-weight: 700; color: var(--blue-deep); }

/* ==================================================
   ★ 回数券ユーザー用ログイン (LP風デザイン)
================================================== */
.coupon-login-box {
  background: var(--cream);
  border: 4px solid var(--yellow);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 6px 0 var(--yellow);
}

.login-box-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-box-desc {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.6;
}

.login-mini-form {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.login-fields {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 300px;
}

.login-field {
  flex: 1;
}

/* 入力フォーム（太枠で目立たせる） */
.login-field input[type="text"],
.login-field input[type="password"] {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}

.login-field input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px var(--blue-sky);
}

/* ログインボタン（押し込める立体ボタン） */
.btn-login {
  background: var(--cyan);
  color: #ffffff;
  padding: 16px 32px;
  border: 2px solid var(--blue-deep);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 0 var(--blue-deep);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-login:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--blue-deep);
}

.login-links {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}

/* 📱スマホ用調整 */
@media (max-width: 768px) {
  .coupon-login-box {
    padding: 24px 20px;
  }
  .login-mini-form {
    flex-direction: column;
    align-items: stretch;
  }
  .login-fields {
    flex-direction: column;
    min-width: 100%;
  }
  .btn-login {
    width: 100%;
  }
}
/* スライダー用ドット補足 */
.slider-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dots .dot { width: 32px; height: 4px; background: rgba(255,255,255,0.35); border-radius: 2px; cursor: pointer; transition: background 0.3s, width 0.3s; }
.slider-dots .dot.active { width: 56px; background: var(--yellow); }

/* ==================================================
   ★ 会員ステータス・残り回数カード (LP版)
================================================== */
.member-status-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; /* この隙間がボーダーになります */
  background: var(--cyan); /* ボーダーの色 */
  border: 3px solid var(--cyan);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 6px 0 var(--blue-pale);
}

.member-status-card .status-item {
  background: #ffffff;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.member-status-card .status-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 900;
}

.member-status-card .status-value {
  font-size: 16px;
  color: var(--blue-deep);
  font-weight: 900;
}

/* 残り回数だけ赤で強調 */
.member-status-card .current-tickets .status-value {
  color: var(--red);
  font-size: 28px;
  font-family: var(--font-en);
  line-height: 1;
}
.member-status-card .current-tickets .status-value span {
  font-size: 14px;
}

/* スマホ用：縦並びにする */
@media (max-width: 768px) {
  .member-status-card {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
   ADDITIONS: reason-section SVG icons
================================================== */
.reason-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--cyan);
  margin-bottom: 8px;
  font-family: var(--font-en);
}
.reason-section h2 { text-align: center; margin-bottom: 40px; }
.reason-em { font-style: normal; color: var(--blue); }

.reason-icon-svg {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.reason-icon-svg svg { width: 30px; height: 30px; }

/* ==================================================
   ADDITIONS: 料金プラン mini-cards
================================================== */
.price-section-new { background: var(--blue-hex); }
.plan-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--cyan);
  margin-bottom: 8px;
  font-family: var(--font-en);
}
.plan-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.plan-lead {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 36px;
}
.plan-cards-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
  padding-top: 36px;
}
.plan-card-mini {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(20,102,168,0.08);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card-mini:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(20,102,168,0.18); }
.plan-popular-wrap {
  position: relative;
  padding-top: 36px;
}
.plan-popular-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  padding: 7px 24px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  font-family: var(--font-en);
  box-shadow: 0 3px 12px rgba(20,102,168,0.3);
}
.plan-card-popular {
  border-color: var(--blue);
  box-shadow: 0 8px 40px rgba(20,102,168,0.22);
}
.plan-card-mini-inner { padding: 24px 20px 22px; text-align: center; }
.plan-badge-mini {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.plan-name-mini { font-size: 18px; font-weight: 900; color: var(--blue-deep); margin-bottom: 4px; }
.plan-sub-mini { font-size: 12px; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }
.plan-price-mini {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue-deep);
  font-family: var(--font-en);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-yen-mini { font-size: 20px; }
.plan-unit-mini { font-size: 12px; color: var(--gray); }
.plan-more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.plan-more-link:hover { opacity: 0.7; }

/* ==================================================
   ADDITIONS: index access section
================================================== */
.idx-access-section { padding: 72px 20px; }
.idx-ac-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--cyan);
  margin-bottom: 8px;
  font-family: var(--font-en);
}
.idx-ac-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 36px;
}
.idx-ac-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: stretch;
}
.idx-ac-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(20,102,168,0.13);
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.idx-ac-map iframe { flex: 1; min-height: 340px; width: 100%; border: none; display: block; }
.idx-ac-info {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(20,102,168,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.idx-ac-store-name {
  background: var(--blue-deep);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  padding: 16px 24px;
  letter-spacing: 0.04em;
}
.idx-ac-rows { flex: 1; padding: 8px 0; }
.idx-ac-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-color);
}
.idx-ac-row:last-child { border-bottom: none; }
.idx-ac-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.idx-ac-icon svg { width: 16px; height: 16px; }
.idx-ac-label { display: block; font-size: 10px; font-weight: 900; color: var(--cyan); margin-bottom: 2px; letter-spacing: 0.06em; }
.idx-ac-val { font-size: 13px; font-weight: 600; color: var(--text-main); line-height: 1.5; }
.idx-ac-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--blue-deep);
  color: #fff;
  text-decoration: none;
  padding: 14px;
  font-size: 13px;
  font-weight: 900;
  transition: background 0.2s;
}
.idx-ac-link:hover { background: var(--blue); }

/* ==================================================
   ADDITIONS: index CTA section
================================================== */
.idx-cta-section {
  background: linear-gradient(150deg, #03132a 0%, #0a2a52 50%, #0e4070 100%);
  padding: 96px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.idx-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(41,171,226,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.idx-cta-inner { max-width: 680px; margin: 0 auto; position: relative; }
.idx-cta-eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--cyan);
  margin-bottom: 16px;
}
.idx-cta-heading {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 12px;
}
.idx-cta-sub {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
}
.idx-cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 24px 8px;
  margin-bottom: 36px;
}
.idx-cta-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.idx-cta-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.ics-num {
  font-size: 26px;
  font-weight: 900;
  font-family: var(--font-en);
  color: var(--yellow);
  line-height: 1;
}
.ics-num small { font-size: 16px; }
.ics-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.idx-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.idx-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #041c3c;
  font-size: 16px;
  font-weight: 900;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 28px rgba(255,232,0,0.35);
}
.idx-cta-btn-primary svg { width: 18px; height: 18px; }
.idx-cta-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.idx-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: background 0.2s, border-color 0.2s;
}
.idx-cta-btn-secondary svg { width: 18px; height: 18px; }
.idx-cta-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.idx-cta-note {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  margin: 0;
  letter-spacing: 0.06em;
}

/* ==================================================
   ADDITIONS: sticky floating CTA
================================================== */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.sticky-cta-btn {
  width: 210px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  border: 1px solid transparent;
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(8, 28, 60, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.sticky-cta-btn:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(8, 28, 60, 0.22);
}
.sticky-cta-btn:focus-visible {
  opacity: 1;
  outline: 3px solid rgba(41, 171, 226, 0.42);
  outline-offset: 3px;
}

/* WEB予約：LINE CTAと同じカード構成で、予約導線はWhityのブルーで区別 */
.sticky-cta-primary {
  background: #ffffff;
  border-color: rgba(41, 171, 226, 0.34);
  color: #12263f;
}
.sticky-cta-primary:hover {
  background: #f7fcff;
  border-color: rgba(41, 171, 226, 0.68);
}
.sticky-cta-reservation-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 5px 12px rgba(20, 102, 168, 0.22);
}
.sticky-cta-reservation-icon {
  width: 24px;
  height: 24px;
  display: block;
}
.sticky-cta-reservation-text,
.sticky-cta-line-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  line-height: 1.15;
}
.sticky-cta-reservation-sub {
  margin-bottom: 3px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.sticky-cta-reservation-main {
  color: #12263f;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.sticky-cta-reservation-arrow,
.sticky-cta-line-arrow {
  margin-left: auto;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
}
.sticky-cta-reservation-arrow { color: var(--cyan); }

/* LINE相談：WEB予約カードと余白・サイズ・影を統一 */
.sticky-cta-line {
  background: #ffffff;
  border-color: rgba(6, 199, 85, 0.22);
  color: #12263f;
}
.sticky-cta-line:hover {
  background: #f8fffb;
  border-color: rgba(6, 199, 85, 0.54);
}
.sticky-cta-line-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #06C755;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  overflow: hidden;
  flex-shrink: 0;
}
.sticky-cta-line-icon {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: cover;
}
.sticky-cta-line-sub {
  margin-bottom: 3px;
  color: #06C755;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.sticky-cta-line-main {
  color: #12263f;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.sticky-cta-line-arrow { color: #06C755; }

/* ==================================================
   ADDITIONS: footer SNS links
================================================== */
.footer-sns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.footer-sns a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-sns a:hover { background: rgba(255,255,255,0.25); color: #fff; }
.footer-sns svg { width: 18px; height: 18px; }

/* ==================================================
   RESPONSIVE additions
================================================== */
@media (max-width: 768px) {
  .plan-cards-mini { grid-template-columns: 1fr; }
  .plan-card-popular { transform: none; }
  .idx-ac-grid { grid-template-columns: 1fr; }
  .idx-ac-map { min-height: 240px; }
  .idx-ac-map iframe { min-height: 240px; }
  .sticky-cta { right: 16px; bottom: 16px; gap: 10px; }
  .sticky-cta-btn { width: 190px; min-height: 60px; gap: 10px; padding: 8px 13px 8px 8px; border-radius: 16px; }
  .sticky-cta-reservation-icon-wrap,
  .sticky-cta-line-icon-wrap { width: 40px; height: 40px; border-radius: 12px; }
  .sticky-cta-reservation-icon { width: 22px; height: 22px; }
  .sticky-cta-line-icon { width: 40px; height: 40px; }
  .sticky-cta-reservation-main,
  .sticky-cta-line-main { font-size: 15px; }
  .sticky-cta-reservation-sub,
  .sticky-cta-line-sub { font-size: 9px; }
  .sticky-cta-reservation-arrow,
  .sticky-cta-line-arrow { font-size: 19px; }
}

/* ==================================================
   MEMBER PAGE (reservation-member.html)
================================================== */

/* ── Header nav ── */
.header-nav-member {
  display: flex;
  align-items: center;
  gap: 16px;
}
.member-welcome {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-hex);
  border: 1.5px solid var(--cyan);
  border-radius: 50px;
  padding: 8px 18px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
}
.member-icon {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
}
.welcome-text strong {
  color: var(--blue-deep);
}
.btn-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  text-decoration: none;
  background: #fff;
  transition: border-color 0.2s, color 0.2s;
}
.btn-logout svg {
  width: 16px;
  height: 16px;
}
.btn-logout:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ── Hero ── */
.member-hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #1a6bb0 100%);
  padding: 56px 20px 52px;
  text-align: center;
  border-bottom: 5px solid var(--cyan);
}
.member-hero-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-deep);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 5px 20px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.member-hero-title {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.member-hero-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ── Main container ── */
.member-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

/* ── Step indicator ── */
.member-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}
.mstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #b0c4d4;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: color 0.3s;
}
.mstep-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e9f1fa;
  border: 2px solid #cfe9f6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.mstep-circle svg {
  width: 22px;
  height: 22px;
  color: #b0c4d4;
  transition: color 0.3s;
}
.mstep-line {
  flex: 1;
  height: 3px;
  background: #cfe9f6;
  max-width: 80px;
  min-width: 40px;
  border-radius: 2px;
  transition: background 0.3s;
}
.mstep-line.is-done {
  background: var(--cyan);
}
.mstep.is-active {
  color: var(--blue-deep);
}
.mstep.is-active .mstep-circle {
  background: var(--cyan);
  border-color: var(--blue-deep);
  box-shadow: 0 4px 12px rgba(41,171,226,0.35);
}
.mstep.is-active .mstep-circle svg {
  color: #fff;
}
.mstep.is-done {
  color: var(--cyan);
}
.mstep.is-done .mstep-circle {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}
.mstep.is-done .mstep-circle svg {
  color: #fff;
}

/* ── Panel ── */
.mpanel {
  display: none;
  animation: fadeIn 0.35s ease;
}
.mpanel.is-active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mpanel-header {
  margin-bottom: 24px;
}
.mpanel-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mpanel-title::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 22px;
  background: var(--cyan);
  border-radius: 3px;
  flex-shrink: 0;
}
.mpanel-note {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
  padding-left: 15px;
}

/* ── Member status card ── */
.member-status-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border: 2px solid var(--cyan);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(41,171,226,0.12);
}
.member-status-card .status-item {
  background: #fff;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-right: 1.5px solid var(--blue-pale);
  position: relative;
}
.member-status-card .status-item:last-child {
  border-right: none;
}
.status-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-hex);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 4px;
}
.status-icon svg {
  width: 20px;
  height: 20px;
}
.status-label {
  font-size: 11px;
  color: var(--gray);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-value {
  font-size: 15px;
  color: var(--blue-deep);
  font-weight: 900;
}
.status-item.current-tickets .status-value {
  font-size: 40px;
  color: var(--cyan);
  font-family: var(--font-en);
  line-height: 1;
  font-weight: 900;
}
.status-item.current-tickets .status-value .unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-left: 4px;
}

/* ── Calendar ── */
.calendar-wrap {
  background: #fff;
  border: 2px solid var(--blue-pale);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(41,171,226,0.07);
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* ── Slot wrap ── */
.slot-wrap {
  background: #fff;
  border: 2px solid var(--blue-pale);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(41,171,226,0.07);
}
.slot-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 900;
  color: var(--blue-deep);
  border-left: 5px solid var(--cyan);
  padding-left: 12px;
  margin-bottom: 20px;
}
.slot-heading svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
}

/* ── Summary ── */
.msummary {
  background: var(--blue-hex);
  border: 2px solid var(--blue-pale);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}
.msummary-row {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1.5px solid var(--blue-pale);
  gap: 16px;
}
.msummary-row:last-child {
  border-bottom: none;
}
.msummary-row.highlight {
  background: #fff;
  border-left: 4px solid var(--cyan);
}
.msummary-row dt {
  font-size: 13px;
  font-weight: 900;
  color: var(--gray);
  min-width: 140px;
  flex-shrink: 0;
}
.msummary-row dd {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
}
.msummary-row.highlight dd strong {
  font-size: 18px;
  color: var(--blue-deep);
}
.member-id {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
  background: var(--blue-pale);
  border-radius: 20px;
  padding: 2px 10px;
}
.ticket-after {
  font-weight: 900;
  color: var(--cyan);
  font-size: 17px;
}
.booking-id {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 900;
  color: var(--blue-deep);
  letter-spacing: 0.08em;
}

/* ── Agree block ── */
.agree-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.agree-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-deep);
  transition: border-color 0.2s;
}
.agree-item:hover {
  border-color: var(--cyan);
}
.agree-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--cyan);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}
.agree-item a {
  color: var(--cyan);
  text-decoration: underline;
}

/* ── Panel actions ── */
.panel-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.panel-actions.center {
  justify-content: center;
}

/* ── Buttons ── */
.mbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.mbtn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.mbtn-primary {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #1a6bb0 100%);
  color: #fff;
  box-shadow: 0 6px 0 rgba(21,81,143,0.4);
}
.mbtn-primary:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 rgba(21,81,143,0.4);
}
.mbtn-ghost {
  background: #fff;
  color: var(--blue-deep);
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 0 var(--blue-pale);
}
.mbtn-ghost:hover {
  border-color: var(--cyan);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--blue-pale);
}

/* ── Done panel ── */
.done-panel {
  text-align: center;
}
.done-visual {
  padding: 48px 0 40px;
}
.done-ring {
  display: inline-flex;
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.done-ring svg {
  width: 100%;
  height: 100%;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
.done-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 10px;
}
.done-lead {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 0;
}
.done-summary {
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: left;
}
.done-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 40px;
  background: var(--blue-hex);
  border: 1.5px solid var(--cyan);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--blue-deep);
  font-weight: 600;
  text-align: left;
}
.done-notice svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .header-nav-member { gap: 10px; }
  .member-welcome { display: none; }
  .member-hero-title { font-size: 26px; }
  .member-steps { gap: 0; }
  .mstep span { font-size: 11px; }
  .mstep-circle { width: 40px; height: 40px; }
  .member-status-card { grid-template-columns: 1fr; }
  .member-status-card .status-item { border-right: none; border-bottom: 1.5px solid var(--blue-pale); }
  .member-status-card .status-item:last-child { border-bottom: none; }
  .msummary-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .msummary-row dt { min-width: auto; }
  .panel-actions { flex-direction: column-reverse; }
  .mbtn { width: 100%; justify-content: center; }
}

/* ==================================================
   PAYMENT COMPARISON (plan.html / index.html)
================================================== */

/* plan.html カード内の支払方法比較 */
.plan-payment-compare {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.04);
  border-radius: 10px;
  width: 100%;
}
.ppc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
}
.ppc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.ppc-web .ppc-label { color: var(--cyan); }
.ppc-web .ppc-price { color: var(--cyan); font-size: 14px; }
.ppc-local .ppc-label { color: var(--gray); }
.ppc-local .ppc-price { color: var(--gray); font-size: 13px; }

/* is-popular カード内は色を反転気味に */
.is-popular .plan-payment-compare {
  background: rgba(255,255,255,0.12);
}
.is-popular .ppc-web .ppc-label,
.is-popular .ppc-web .ppc-price { color: #fff; }
.is-popular .ppc-local .ppc-label,
.is-popular .ppc-local .ppc-price { color: rgba(255,255,255,0.6); }

/* index.html ミニカード内の現地決済表示 */
.plan-local-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  margin-top: 6px;
  padding: 5px 12px;
  background: var(--blue-pale);
  border-radius: 20px;
  display: inline-block;
}


/* Password reset pages */
.reservation-logo-link{display:inline-flex;align-items:center;flex:0 0 auto}
.reservation-logo{width:150px!important;height:auto!important;max-height:56px!important;object-fit:contain;display:block}
.reservation-notice{margin-top:18px;padding:14px 16px;border-radius:10px;font-weight:700;line-height:1.6}.reservation-notice.is-success{background:#eafaf1;border:1px solid #55c98b;color:#12623a}.reservation-notice.is-error{background:#fff0f0;border:1px solid #ea7777;color:#a22525}
@media(max-width:640px){.reservation-logo{width:116px!important;max-height:44px!important}.header-nav{font-size:13px}}



/* ==================================================
   2026-07-02: ご利用の流れ — 実写ビジュアルへ差し替え
================================================== */
.flow-section .step-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0 0 18px;
  border-radius: 12px;
  background: #f5fbfe;
  border: 1px solid #e0edf4;
}
.flow-section .step-image {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
}
/* 施術中の写真はライトと表情が自然に見える位置でトリミング */
.flow-section .flow-item:nth-child(3) .step-image {
  object-position: 54% center;
}
@media (max-width: 850px) {
  .flow-section .step-image-wrap {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ==================================================
   2026-07-02: Sticky CTA size fix
   予約・LINEを同じ幅と固定高さにして、余白が伸びないようにする
================================================== */
:root {
  --sticky-cta-width: 224px;
  --sticky-cta-height: 72px;
}
.sticky-cta {
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  z-index: 9000 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  width: min(var(--sticky-cta-width), calc(100vw - 32px)) !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
.sticky-cta > .sticky-cta-btn,
.sticky-cta > a.sticky-cta-primary,
.sticky-cta > a.sticky-cta-line {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  align-content: center !important;
  justify-content: flex-start !important;
  flex: 0 0 var(--sticky-cta-height) !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: var(--sticky-cta-height) !important;
  min-height: var(--sticky-cta-height) !important;
  max-height: var(--sticky-cta-height) !important;
  margin: 0 !important;
  padding: 8px 14px 8px 8px !important;
  gap: 10px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border-radius: 18px !important;
}
.sticky-cta .sticky-cta-reservation-icon-wrap,
.sticky-cta .sticky-cta-line-icon-wrap {
  box-sizing: border-box !important;
  display: inline-flex !important;
  flex: 0 0 48px !important;
  width: 48px !important;
  min-width: 48px !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  margin: 0 !important;
}
.sticky-cta .sticky-cta-reservation-icon {
  width: 24px !important;
  height: 24px !important;
}
.sticky-cta .sticky-cta-line-icon {
  width: 48px !important;
  height: 48px !important;
  max-width: none !important;
}
.sticky-cta .sticky-cta-reservation-text,
.sticky-cta .sticky-cta-line-text {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 48px !important;
  margin: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}
.sticky-cta .sticky-cta-reservation-sub,
.sticky-cta .sticky-cta-line-sub,
.sticky-cta .sticky-cta-reservation-main,
.sticky-cta .sticky-cta-line-main {
  display: block !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
.sticky-cta .sticky-cta-reservation-sub,
.sticky-cta .sticky-cta-line-sub {
  margin: 0 0 3px !important;
  line-height: 1.1 !important;
}
.sticky-cta .sticky-cta-reservation-main,
.sticky-cta .sticky-cta-line-main {
  margin: 0 !important;
  line-height: 1.12 !important;
}
.sticky-cta .sticky-cta-reservation-arrow,
.sticky-cta .sticky-cta-line-arrow {
  flex: 0 0 auto !important;
  margin: 0 0 0 auto !important;
  line-height: 1 !important;
}

/* Footer logo */
.site-footer .footer-logo {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 176px;
  margin: 0 auto 20px;
  text-decoration: none;
}
.site-footer .footer-logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

@media (max-width: 768px) {
  :root {
    --sticky-cta-width: 202px;
    --sticky-cta-height: 66px;
  }
  .sticky-cta {
    right: 12px !important;
    bottom: 12px !important;
    gap: 8px !important;
    width: min(var(--sticky-cta-width), calc(100vw - 24px)) !important;
  }
  .sticky-cta > .sticky-cta-btn,
  .sticky-cta > a.sticky-cta-primary,
  .sticky-cta > a.sticky-cta-line {
    padding: 7px 12px 7px 7px !important;
    gap: 9px !important;
    border-radius: 16px !important;
  }
  .sticky-cta .sticky-cta-reservation-icon-wrap,
  .sticky-cta .sticky-cta-line-icon-wrap {
    flex-basis: 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    border-radius: 13px !important;
  }
  .sticky-cta .sticky-cta-line-icon {
    width: 44px !important;
    height: 44px !important;
  }
  .sticky-cta .sticky-cta-reservation-text,
  .sticky-cta .sticky-cta-line-text {
    height: 44px !important;
  }
  .sticky-cta .sticky-cta-reservation-sub,
  .sticky-cta .sticky-cta-line-sub {
    font-size: 8px !important;
  }
  .sticky-cta .sticky-cta-reservation-main,
  .sticky-cta .sticky-cta-line-main {
    font-size: 15px !important;
  }
  .site-footer .footer-logo {
    width: 150px;
    margin-bottom: 18px;
  }
}


/* ==================================================
   2026-07-07: MOBILE UX REFINEMENT
   Smartphone readability / tap targets / safe bottom CTA
================================================== */
:root {
  --red: #1e78b2;
  --surface-radius: 12px;
  --surface-shadow: 0 2px 12px rgba(21,81,143,.08);
}
/* Keep the visual language calm across the public site. */
.btn-reservation-top,
.hero-cta,
.btn-reservation,
.idx-cta-btn-primary,
.beauty-cta-reserve-btn,
.form-submit,
.faq-cta .btn-reservation,
.flow-cta .btn-reservation,
.ac-cta-btn {
  background: var(--blue) !important;
  border-radius: var(--surface-radius) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.btn-reservation-top:hover,
.hero-cta:hover,
.btn-reservation:hover,
.idx-cta-btn-primary:hover,
.beauty-cta-reserve-btn:hover,
.form-submit:hover,
.faq-cta .btn-reservation:hover,
.flow-cta .btn-reservation:hover,
.ac-cta-btn:hover {
  transform: none !important;
  box-shadow: none !important;
  opacity: .94 !important;
}
/* Decorative English labels are removed to keep the hierarchy concise. */
.feat-eyebrow,
.reason-eyebrow,
.plan-eyebrow,
.section-eyebrow-voice,
.idx-ac-eyebrow,
.beauty-cta-eyebrow,
.beauty-cta-action-label,
.ac-hero-label,
.ac-section-eyebrow,
.ac-cta-label,
.contact-hero-label,
.faq-hero-label,
.flow-hero-label,
.plan-hero-label,
.section-eyebrow,
.hero-eyebrow {
  display: none !important;
}
[class~="card"],
[class*="-card"],
[class~="panel"],
[class*="-panel"] {
  border-radius: var(--surface-radius) !important;
}
.feat-card,
.reason-card,
.plan-card-mini,
.flow-item,
.voice-card,
.eq-feature,
.idx-ac-info,
.contact-form,
.ac-store-card,
.ac-route-card,
.ac-hours-card,
.faq-item,
.guide-card,
.plan-card,
.beauty-cta-inner {
  box-shadow: none !important;
}

/* The menu trigger is added by script.js only on normal public-site headers. */
.mobile-nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid #cfe0e9;
  background: #fff;
  color: var(--blue-deep);
  border-radius: 10px;
  min-width: 44px;
  min-height: 44px;
  padding: 7px 9px;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav-toggle__bars {
  display: inline-grid;
  gap: 4px;
  width: 18px;
}
.mobile-nav-toggle__bars i {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.site-header.is-nav-open .mobile-nav-toggle__bars i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.site-header.is-nav-open .mobile-nav-toggle__bars i:nth-child(2) { opacity: 0; }
.site-header.is-nav-open .mobile-nav-toggle__bars i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-nav-toggle__label {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .02em;
}

@media (max-width: 767px) {
  html { scroll-padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
  body:has(.sticky-cta) { padding-bottom: calc(86px + env(safe-area-inset-bottom)) !important; }
  body { font-size: 14px; line-height: 1.78; letter-spacing: .02em; overflow-x: hidden; }
  img { max-width: 100%; }

  /* Compact, readable header — logo / menu / booking only. */
  .site-header { border-bottom: 1px solid #d7e7ef !important; box-shadow: none !important; }
  .site-header .header-inner {
    min-height: 64px;
    padding: 7px 16px;
    flex-wrap: nowrap;
    gap: 8px;
    position: relative;
  }
  .site-header .header-logo-link { min-width: 0; margin-right: auto; }
  .site-header .header-logo-img { height: 48px !important; width: auto; max-width: 126px; object-fit: contain; }
  .site-header .header-logo-text { min-width: 0; }
  .site-header .header-logo-brand { font-size: 21px; }
  .site-header .header-logo-sub { display: none; }
  .site-header .header-contact { flex: 0 0 auto; }
  .site-header .btn-reservation-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 11px !important;
    font-size: 12px;
    white-space: nowrap;
  }
  .mobile-nav-toggle { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; flex-direction: column; }
  .site-header .header-nav {
    display: none;
    position: absolute;
    z-index: 101;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 16px 16px;
    background: rgba(255,255,255,.99);
    border-top: 1px solid #edf3f6;
    border-bottom: 1px solid #d7e7ef;
    box-shadow: var(--surface-shadow);
    overflow: visible;
  }
  .site-header.is-nav-open .header-nav { display: block; }
  .site-header .header-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    width: 100%;
    min-width: 0;
    gap: 8px;
    padding: 0;
  }
  .site-header .header-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 9px 8px;
    font-size: 13px;
    text-align: center;
    color: var(--blue-deep);
    background: #f7fbfd;
    border: 1px solid #d6e6ed;
    border-radius: 8px;
  }
  .site-header .header-nav a.is-current { background: #edf6fa; border-color: #93c9de; }

  /* More predictable reading width and vertical rhythm. */
  .content-wrapper { padding: 34px 16px 46px !important; gap: 0 !important; }
  .main-content h2,
  .feat-heading,
  .reason-heading,
  .plan-heading,
  .voice-title,
  .idx-ac-heading { font-size: 24px !important; line-height: 1.45 !important; margin-bottom: 24px !important; }
  .section { margin-bottom: 48px !important; }
  .section.bg-light-blue,
  .price-section,
  .cta-section { padding: 34px 16px !important; border-radius: 0 !important; }
  .features-section-new,
  .reason-section,
  .price-section-new,
  .flow-section,
  .voice-section,
  .whity-whitening-section,
  .idx-access-section { padding-left: 16px !important; padding-right: 16px !important; }
  .feat-grid,
  .reason-cards,
  .plan-cards-mini,
  .voice-cards,
  .idx-ac-grid,
  .ac-map-grid,
  .ac-routes-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .feat-card,
  .reason-card,
  .plan-card-mini,
  .voice-card,
  .idx-ac-info,
  .ac-store-card,
  .ac-route-card,
  .contact-form { border-radius: 12px !important; }
  .feat-body,
  .reason-card,
  .voice-card,
  .ac-route-card { padding: 18px !important; }
  .feat-title,
  .reason-title { font-size: 17px !important; }
  .feat-desc,
  .reason-desc,
  .voice-comment { font-size: 13px !important; line-height: 1.78 !important; }

  /* Long four-step flow becomes easier to scan on a phone. */
  .flow-section .flow-steps { grid-template-columns: 1fr !important; gap: 14px !important; }
  .flow-section .flow-item { padding: 16px !important; text-align: left !important; }
  .flow-section .step-image-wrap { aspect-ratio: 4 / 3 !important; max-width: none !important; margin-bottom: 14px !important; }
  .flow-section .step-image { object-position: center 38% !important; }
  .flow-section .step-title { font-size: 16px !important; text-align: left !important; }
  .flow-section .step-desc { font-size: 13px !important; line-height: 1.8 !important; text-align: left !important; }

  /* Forms and date/time controls: avoid iOS zoom and make taps reliable. */
  input, select, textarea, button { font-size: 16px !important; }
  .field { margin-bottom: 22px !important; }
  .field label { font-size: 14px !important; margin-bottom: 8px !important; }
  .field input[type="text"],
  .field input[type="tel"],
  .field input[type="email"],
  .field select,
  .field textarea { min-height: 48px; padding: 12px 14px !important; }
  .payment-radios { gap: 8px !important; }
  .payment-pill { min-height: 58px; }
  .slot-list { grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 8px !important; }
  .slot { min-height: 48px; padding: 10px 0 !important; }
  .calendar-wrap, .slot-wrap { padding: 18px !important; border-radius: 12px !important; box-shadow: none !important; }

  /* Footer is intentionally compact; links are easy to tap. */
  .site-footer { padding: 36px 16px 26px !important; }
  .site-footer .footer-logo { width: 142px !important; margin-bottom: 16px !important; }
  .footer-nav ul { display: grid !important; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px !important; }
  .footer-nav a { display: block; padding: 9px 6px; font-size: 12px; }
  .footer-legal { margin-top: 22px !important; padding-top: 18px !important; gap: 10px 16px !important; }
  .footer-sns { margin-top: 18px; }

  /* Bottom CTA stays above the iPhone home indicator and never covers content. */
  .sticky-cta {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9000 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    height: auto !important;
    gap: 8px !important;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom)) !important;
    margin: 0 !important;
    background: rgba(255,255,255,.98) !important;
    border: 0 !important;
    border-top: 1px solid #d4e4eb !important;
    border-radius: 0 !important;
    box-shadow: 0 -2px 12px rgba(21,81,143,.08) !important;
    transform: none !important;
  }
  .sticky-cta > .sticky-cta-btn,
  .sticky-cta > a.sticky-cta-primary,
  .sticky-cta > a.sticky-cta-line {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
    margin: 0 !important;
    padding: 8px !important;
    border-radius: 10px !important;
    box-shadow: none !important;
  }
  .sticky-cta-primary { background: var(--blue) !important; color: #fff !important; border: 1px solid var(--blue) !important; }
  .sticky-cta-line { background: #fff !important; color: #2a5a40 !important; border: 1px solid #a7d8b9 !important; }
  .sticky-cta .sticky-cta-reservation-icon-wrap,
  .sticky-cta .sticky-cta-line-icon-wrap,
  .sticky-cta .sticky-cta-reservation-arrow,
  .sticky-cta .sticky-cta-line-arrow,
  .sticky-cta .sticky-cta-reservation-sub,
  .sticky-cta .sticky-cta-line-sub { display: none !important; }
  .sticky-cta .sticky-cta-reservation-text,
  .sticky-cta .sticky-cta-line-text { display: block !important; height: auto !important; overflow: visible !important; }
  .sticky-cta .sticky-cta-reservation-main,
  .sticky-cta .sticky-cta-line-main { display: block !important; color: inherit !important; font-size: 13px !important; font-weight: 900 !important; line-height: 1.2 !important; white-space: nowrap !important; }

  table { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 360px) {
  .site-header .header-logo-img { max-width: 102px; height: 44px !important; }
  .site-header .btn-reservation-top { padding-left: 8px !important; padding-right: 8px !important; font-size: 11px; }
  .mobile-nav-toggle { min-width: 40px; padding-left: 6px; padding-right: 6px; }
  .sticky-cta .sticky-cta-reservation-main,
  .sticky-cta .sticky-cta-line-main { font-size: 12px !important; }
}


/* =========================================================
   FINAL RESPONSIVE / LINE LOGO RESTORE PATCH — 2026-07-08
   - LINE icon is shown in fixed CTA again.
   - Prevents common mobile horizontal overflow.
   - Keeps forms, reservation UI, cards and tables readable on small screens.
   ========================================================= */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
img, svg, video, canvas, iframe {
  max-width: 100%;
}
img {
  height: auto;
}
.container,
.page-container,
.reservation-page .container {
  box-sizing: border-box;
  max-width: min(1120px, calc(100% - 32px));
}
pre, code, table {
  max-width: 100%;
}

/* LINEアイコン復旧：以前のスマホ最適化で非表示にした指定を上書き */
.sticky-cta .sticky-cta-line-icon-wrap,
.sticky-cta-line-icon-wrap {
  display: grid !important;
  place-items: center !important;
  flex: 0 0 32px !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  border-radius: 9px !important;
  overflow: hidden !important;
  background: #06c755 !important;
}
.sticky-cta .sticky-cta-line-icon,
.sticky-cta-line-icon {
  display: block !important;
  width: 32px !important;
  height: 32px !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.sticky-cta-line {
  gap: 8px !important;
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom)) !important;
  }

  .container,
  .page-container,
  .reservation-page .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .site-header,
  .header-inner {
    width: 100% !important;
    max-width: 100% !important;
  }
  .header-inner {
    gap: 8px !important;
  }
  .header-nav,
  .header-nav-member {
    min-width: 0 !important;
  }
  .site-header .logo img,
  .site-header .header-logo-img,
  .footer-logo-img {
    max-width: 150px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* Bottom CTA: LINEロゴを残しつつ、2ボタンを押しやすく */
  .sticky-cta {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9000 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom)) !important;
    margin: 0 !important;
    background: rgba(255,255,255,.98) !important;
    border-radius: 0 !important;
    border-top: 1px solid #d4e4eb !important;
    box-shadow: 0 -2px 12px rgba(21,81,143,.08) !important;
    transform: none !important;
  }
  .sticky-cta > .sticky-cta-btn,
  .sticky-cta > a.sticky-cta-primary,
  .sticky-cta > a.sticky-cta-line {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    margin: 0 !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
    box-shadow: none !important;
  }
  .sticky-cta .sticky-cta-reservation-icon-wrap,
  .sticky-cta .sticky-cta-reservation-arrow,
  .sticky-cta .sticky-cta-line-arrow,
  .sticky-cta .sticky-cta-reservation-sub,
  .sticky-cta .sticky-cta-line-sub {
    display: none !important;
  }
  .sticky-cta .sticky-cta-line-icon-wrap {
    display: grid !important;
    flex: 0 0 28px !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    border-radius: 8px !important;
  }
  .sticky-cta .sticky-cta-line-icon {
    display: block !important;
    width: 28px !important;
    height: 28px !important;
  }
  .sticky-cta .sticky-cta-reservation-text,
  .sticky-cta .sticky-cta-line-text {
    display: block !important;
    min-width: 0 !important;
    overflow: visible !important;
  }
  .sticky-cta .sticky-cta-reservation-main,
  .sticky-cta .sticky-cta-line-main {
    display: block !important;
    color: inherit !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  /* Common grid/cards */
  .features-grid,
  .reason-grid,
  .flow-grid,
  .plan-grid,
  .pricing-grid,
  .voice-grid,
  .access-grid,
  .contact-grid,
  .datetime-grid,
  .dashboard-grid,
  .admin-grid,
  .cards-grid {
    grid-template-columns: 1fr !important;
  }
  .card,
  .panel,
  .menu-card-main,
  .payment-options,
  .summary-card,
  .calendar-wrap,
  .slot-wrap,
  .faq-item,
  .voice-card,
  .access-card,
  .contact-card {
    max-width: 100% !important;
    border-radius: 12px !important;
    box-shadow: none !important;
  }

  /* Reservation UI */
  .reservation-page #step-indicator.steps,
  .reservation-page .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .reservation-page #step-indicator .step,
  .reservation-page .step {
    min-width: 0 !important;
    padding: 9px 6px !important;
    font-size: 12px !important;
  }
  .payment-radios,
  .payment-options,
  .form-grid,
  .member-form-grid {
    grid-template-columns: 1fr !important;
  }
  input, select, textarea, button {
    max-width: 100% !important;
  }
  .slot-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  /* Long text / tables */
  .table-wrap,
  .admin-table-wrap,
  .ledger-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Images in content */
  .flow-photo,
  .step img,
  .voice-ba img,
  .hero-img,
  .main-visual img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  /* BAR Tnb限定ページ */
  .bartnb-page main.container {
    padding-top: 16px !important;
  }
  .bartnb-page .panel {
    overflow: hidden !important;
  }
}

@media (max-width: 380px) {
  .sticky-cta .sticky-cta-reservation-main,
  .sticky-cta .sticky-cta-line-main {
    font-size: 12px !important;
  }
  .sticky-cta .sticky-cta-line-icon-wrap {
    flex-basis: 24px !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
  }
  .sticky-cta .sticky-cta-line-icon {
    width: 24px !important;
    height: 24px !important;
  }
}

/* =========================================================
   DESKTOP PAGE CENTERING FIX — 2026-07-11
   Header-linked subpages were constrained by max-width but left-aligned.
   Keep their main page wrapper centered on desktop without changing mobile.
   ========================================================= */
@media (min-width: 768px) {
  .page-container {
    width: 100% !important;
    max-width: min(1120px, calc(100% - 32px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ==================================================
   2026-07-24: HP共通 WEB予約ボタン
   LP・WEB予約システムは対象外
================================================== */
html body:not(.reservation-page) .btn-reservation-top,
html body:not(.reservation-page) .hero-cta,
html body:not(.reservation-page) .btn-reservation,
html body:not(.reservation-page) .idx-cta-btn-primary,
html body:not(.reservation-page) .beauty-cta-reserve-btn,
html body:not(.reservation-page) .faq-cta .btn-reservation,
html body:not(.reservation-page) .flow-cta .btn-reservation,
html body:not(.reservation-page) .ac-cta-btn,
html body:not(.reservation-page) .mobile-side-menu__reservation,
html body:not(.reservation-page) .sticky-cta-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .55em !important;
  min-height: 50px !important;
  padding: 0 30px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #29abe2 !important;
  background-image: none !important;
  color: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
  font-family: var(--font-base) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  transform: none !important;
  transition: background-color .2s ease, opacity .2s ease !important;
}

html body:not(.reservation-page) .btn-reservation-top::before,
html body:not(.reservation-page) .hero-cta::before,
html body:not(.reservation-page) .btn-reservation::before,
html body:not(.reservation-page) .idx-cta-btn-primary::before,
html body:not(.reservation-page) .beauty-cta-reserve-btn::before,
html body:not(.reservation-page) .faq-cta .btn-reservation::before,
html body:not(.reservation-page) .flow-cta .btn-reservation::before,
html body:not(.reservation-page) .ac-cta-btn::before,
html body:not(.reservation-page) .mobile-side-menu__reservation::before {
  content: none !important;
  display: none !important;
}

html body:not(.reservation-page) .btn-reservation-top::after,
html body:not(.reservation-page) .hero-cta::after,
html body:not(.reservation-page) .btn-reservation::after,
html body:not(.reservation-page) .idx-cta-btn-primary::after,
html body:not(.reservation-page) .beauty-cta-reserve-btn::after,
html body:not(.reservation-page) .faq-cta .btn-reservation::after,
html body:not(.reservation-page) .flow-cta .btn-reservation::after,
html body:not(.reservation-page) .ac-cta-btn::after,
html body:not(.reservation-page) .mobile-side-menu__reservation::after,
html body:not(.reservation-page) .sticky-cta-primary::after {
  content: "»" !important;
  display: inline-block !important;
  margin-left: .05em !important;
  color: currentColor !important;
  font-size: 1.2em !important;
  font-weight: 700 !important;
  letter-spacing: -.12em !important;
  line-height: 1 !important;
  transform: translateY(-.03em) !important;
}

html body:not(.reservation-page) .btn-reservation-top:hover,
html body:not(.reservation-page) .hero-cta:hover,
html body:not(.reservation-page) .btn-reservation:hover,
html body:not(.reservation-page) .idx-cta-btn-primary:hover,
html body:not(.reservation-page) .beauty-cta-reserve-btn:hover,
html body:not(.reservation-page) .faq-cta .btn-reservation:hover,
html body:not(.reservation-page) .flow-cta .btn-reservation:hover,
html body:not(.reservation-page) .ac-cta-btn:hover,
html body:not(.reservation-page) .mobile-side-menu__reservation:hover,
html body:not(.reservation-page) .sticky-cta-primary:hover {
  background: #1d98cc !important;
  background-image: none !important;
  color: #fff !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
}

html body:not(.reservation-page) .site-header .btn-reservation-top {
  min-width: 126px !important;
  height: 50px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
}

html body:not(.reservation-page) .sticky-cta-primary {
  width: 100% !important;
  min-width: 0 !important;
}

html body:not(.reservation-page) .sticky-cta-primary
.sticky-cta-reservation-icon-wrap,
html body:not(.reservation-page) .sticky-cta-primary
.sticky-cta-reservation-sub,
html body:not(.reservation-page) .sticky-cta-primary
.sticky-cta-reservation-arrow {
  display: none !important;
}

html body:not(.reservation-page) .sticky-cta-primary
.sticky-cta-reservation-text,
html body:not(.reservation-page) .sticky-cta-primary
.sticky-cta-reservation-main {
  display: block !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  color: inherit !important;
  font-family: var(--font-base) !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  white-space: nowrap !important;
}

@media (max-width: 767px) {
  html body:not(.reservation-page) .site-header .btn-reservation-top {
    min-width: 104px !important;
    height: 46px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
  }

  html body:not(.reservation-page) .btn-reservation,
  html body:not(.reservation-page) .hero-cta,
  html body:not(.reservation-page) .idx-cta-btn-primary,
  html body:not(.reservation-page) .beauty-cta-reserve-btn,
  html body:not(.reservation-page) .faq-cta .btn-reservation,
  html body:not(.reservation-page) .flow-cta .btn-reservation,
  html body:not(.reservation-page) .ac-cta-btn {
    width: min(290px, 100%) !important;
    min-width: 0 !important;
    min-height: 52px !important;
    padding: 0 24px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 390px) {
  html body:not(.reservation-page) .site-header .btn-reservation-top {
    min-width: 94px !important;
    height: 44px !important;
    padding: 0 13px !important;
    font-size: 12px !important;
  }
}

