/* =============================================
   menespark - style.css
   SP基準 / C案カラー：ブラック×ゴールド
   PC対応は @media (min-width: 768px) で分岐
   ============================================= */
:root {
    --bg-base: #0d0a0c;
    --bg-surface: #16151c;
    /* --bg-card: #1c1b23; */
    --bg-card: linear-gradient(180deg, var(--shop-bg-card) 0%, var(--shop-bg-card-alt) 100%);
    --bg-card-hover: #22212b;
    --bg-alt: #13121a;

    --ap-panel: #121416;
    /* パネルカラーv2 */
    --ap-panel-v2:#1f1f24;
    /* パネルの中で少しだけ色を落とす */
    --ap-panel-dwn: #101215;
    /* パネルの中で大きく色を落とす */
    --ap-panel-2: #0d0a0c;

    /* ライン関係 */
    --gold-border: rgba(201, 168, 108, 0.25);
    --white-border: rgba(255, 255, 255, 0.8);
     /* メイン */
    --ap-line: rgba(255, 255, 255, 0.2);
    --ap-line-soft: rgba(255, 255, 255, 0.1);
     /* 薄い */
    --shop-border: #2c2c33;
    /* 角丸関係 */
    --ap-radius-mini: 4px;
    --ap-radius: 8px;
    --ap-radius-pill: 999px;

    /* 基本文字色は3段階。
       text  = 主役（見出し・店名・セラピスト名）
       dim   = 読ませたい補助情報（エリア・リード文・本文）
       muted = 読み飛ばしてよい付随情報（件数・日付・単位・ラベル） */
    --ap-text: #f2eee6;
    --text-primary: #f2eee6;
    --ap-dim: #d5d0c6;
    --shop-text-dim: #d5d0c6;
    --ap-muted: #a49d92;

    /* ゴールド文字色は2段階*/
    --gold: #c9a86c;
    --gold-light: #e8d5a8;

  /* basecssからカラーコピー*/
    --ap-panel-red: rgba(20, 15, 18, 0.78);
    --ap-line: rgba(255, 255, 255, 0.2);
    --ap-line-soft: rgba(255, 255, 255, 0.1);
    --ap-gold: #c9a86c;
    --ap-gold-light: #e3cb98;
    --ap-gold-line: rgba(201, 168, 108, 0.3);
    --ap-pink: #f5308b;
    --ap-pink-light: #ff5ca6;
    --ap-red-point: #ce3d52;
    --ap-pink-line: rgba(245, 48, 139, 0.35);
    --accent-ore: #fa8700;


    /* お店ページ用 */
    --shop-gold: #c9a86c;
    --shop-gold-soft: #d9bd87;
    --shop-gold-dim: #8a7548;
    --shop-bg: #0e0e10;
    --shop-bg-card: #18181c;
    --shop-bg-card-alt: #1f1f24;
    --shop-border: #2c2c33;
    --shop-text: #e8e6e1;
    --shop-text-mute: #7a7770;
    --shop-radius: 8px;
    --shop-radius-lg: 12px;

    --text-secondary: #9a8f78;
    --text-muted: #a8a59f;
    --text-baseblack: #555;
    --star-on: #c9a86c;
    --star-off: #3a3830;
    --accent-red: #e05c5c;
    --accent-geen: #2ecc71;
    --accent-blue: #5b9bd5;
    /* --accent-ore: #F60; */
    --accent-ore: #fa8700;

    /* --site-header-h: 186px; */
    --site-header-h: 82px;
    /* --font-base: 'Noto Sans JP', sans-serif; */
    --font-base: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    --font-deco: 'Cormorant Garamond', serif;
    --header-h: 54px;

    /* =========================================
      新カラーデザイン
       ========================================= */
      --lp-gold-line: rgba(201, 168, 108, 0.3);
      --lp-gold-light: #e3cb98;

    /* =========================================
       最新割引カード（クーポン / タイムセール / イベント）
         deep = ヘッダーの濃い色
         pale = 割引ブロックの薄い背景
         on   = 割引の数字に使う明るい文字色
         line = 枠線
       ========================================= */
    --promo-cpn-deep: #b02c53;
    --promo-cpn-pale: rgba(194, 56, 95, 0.16);
    --promo-cpn-on: #ff9fbb;
    --promo-cpn-line: rgba(194, 56, 95, 0.5);
    --promo-cpn-dark: #7d5612;
    --promo-cpn-edge: rgba(247, 223, 168, 0.4);

    --promo-ts-deep: #e0701f;
    --promo-ts-pale: rgba(238, 138, 68, 0.16);
    --promo-ts-on: #ffd0a6;
    --promo-ts-line: rgba(238, 138, 68, 0.5);
    --promo-ts-dark: #9d4c13;
    --promo-ts-edge: rgba(255, 208, 166, 0.4);

    --promo-ev-deep: #3f6fb5;
    --promo-ev-pale: rgba(90, 141, 214, 0.16);
    --promo-ev-on: #cfe0ff;
    --promo-ev-line: rgba(90, 141, 214, 0.5);
    --promo-ev-dark: #2a4c80;
    --promo-ev-edge: rgba(207, 224, 255, 0.4);
}

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

html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}


body {
  background: var(--bg-base);
  color: var(--text-primary);
  padding-top: var(--site-header-h);
  line-height: 1.7;
  min-height: 100vh;
  font-size: 1.4rem;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Noto Sans JP",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
  display: flex;
  flex-direction: column;
}
html, body {
    overflow-x: clip;
}


a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

@media (min-width: 768px) {
  :root {
    --site-header-h: 186px;
  }
}

/* =============================================
    キャンセル系
   ============================================= */
ul,
li{
    list-style: none;
}
/* =============================================
    共通パーツ
   ============================================= */
.text-c{
  text-align: center;
}

/* カード */
.shop_card_d{
    background: var(--bg-card);
    background: linear-gradient(180deg, var(--shop-bg-card) 0%, var(--shop-bg-card-alt) 100%);
    border: 1px solid var(--shop-border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.thera_card_d{
    overflow: hidden;
    text-decoration: none;
    position: relative;
    color: inherit;
    background: var(--bg-card);
    border: 1px solid var(--shop-border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s, background 0.2s;
}
.shop_card_w{
  background: #fff;
}
.thera_card_w{
  background: #fff;
}
.shop_card_d:hover{
  border-color: var(--gold);
  background: var(--bg-card-hover);
}
.thera_card_d:hover{
  border-color: var(--gold);
  background: var(--bg-card-hover);
}

.thera-card__thumb{
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  background: var(--bg-surface);
  overflow: hidden;
}
.thera-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.thera-card__thumb:hover img {
    transform: scale(1.04);
}


.thera_card_d .data{
  position: absolute;
  width: 100%;
  padding: 8px 10px;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.thera_card_d .data .trea_data{
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.thera_card_d .shop_data{
  padding: 10px;
}

/* カード内パーツ */
/* ===== カード内 名前（店名・セラピスト名 共通） =====
 * 使い方: ベース + サイズ + 行数 を組み合わせる
 * 例) <div class="card_name card_name--14 card_name--2line">…</div>
 */

/* ベース（色・行高・省略表示の共通仕掛け） */
.card_name {
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 行数（流動的な文字数をここで制御） */
.card_name--1line { -webkit-line-clamp: 1; line-clamp: 1; }
.card_name--2line { -webkit-line-clamp: 2; line-clamp: 2; }

/* サイズ（太さも各サイズの既存仕様を踏襲） */
.card_name--11 { font-size: 1.1rem; font-weight: 300; } /* normal */
.card_name--12 { font-size: 1.2rem; font-weight: 400; } /* normal */
.card_name--13 { font-size: 1.3rem; font-weight: 400; } /* normal */
.card_name--14 { font-size: 1.4rem; font-weight: 500; } /* 中間=medium */
.card_name--15 { font-size: 1.5rem; font-weight: 700; } /* bold */
.card_name--16 { font-size: 1.6rem; font-weight: 700; } /* bold */

/* ===== カード内サブデータ 共通 ===== */

/* ベース（色・省略表示の共通仕掛け／数値主体なので nowrap 固定でOK） */
.card_sub {
    color: var(--shop-text-dim);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* サイズ（1.0〜1.4rem） */
.card_sub--10 { font-size: 1.0rem; }
.card_sub--11 { font-size: 1.1rem; }
.card_sub--12 { font-size: 1.2rem; }
.card_sub--13 { font-size: 1.3rem; }
.card_sub--14 { font-size: 1.4rem; }

/* 明るい文字色にしたいとき（年齢など本文寄りのもの） */
.card_sub--primary {
  color: var(--text-primary);
}
.card_sub--goid {
  color: var(--gold);
}

/* 数字を等幅にしたいとき（スリーサイズ・料金など） */
.card_sub--num {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.2px;
}

/* バッジ見た目（業種・営業タイプなど囲みたいもの） */
.card_sub--badge {
    justify-self: start;
    align-self: start;
    display: inline-block;
    padding: 1px 8px;
    border-radius: 3px;
    border: 1px solid var(--lp-gold-line);
    background: rgba(201, 168, 108, 0.12);
    color: var(--lp-gold-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 767px) {
.thera_card_d .data{
  padding: 5px 10px;
}
}


@media (min-width: 767px) {
  .pc-none{
    display: none;
  }
}

@media (max-width: 767px) {
  .sp-none{
    display: none;
  }
}

/* =============================================
   menespark - form.css
   共通フォームパーツ
   - SP基準 / iPhoneフォーカスズーム回避
   - input / textarea / select / radio / checkbox / button
   ============================================= */

/* ---------- 基本ラッパー ---------- */
.form {
  width: 100%;
}

.form-group {
  margin-bottom: 18px;
}

.form-group--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.form-label {
  display: block;
  font-size: 1.2rem;
  color: var(--white-transparent07);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-label--required::after {
  content: '必須';
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  background: rgba(224, 92, 92, 0.15);
  border: 0.5px solid rgba(224, 92, 92, 0.5);
  color: #e08080;
  font-size: 1rem;
  border-radius: 3px;
  vertical-align: middle;
}

.form-help {
  display: block;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.form-error {
  display: block;
  font-size: 1.1rem;
  color: #e08080;
  margin-top: 5px;
}

/* ---------- input / textarea / select 共通 ----------
   ※iPhoneズーム回避のテクニック：
     ・実際のfont-sizeは16px(1.6rem)で出力
     ・transform: scale(0.875) で見た目を14px相当に縮小
     ・transform-originとwidth補正で見た目の幅は変えない
   これにより、フォーカス時もズームが発動しない。
============================================= */
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  border-radius: var(--ap-radius);
  background: var(--ap-panel-v2);
  border: 1px solid var(--ap-line);
  font-size: 1.4rem;
  display: block;
  padding: 11px 14px;
  color: #fff;
  font-family: inherit;
  line-height: 1.5;
  letter-spacing: 0.3px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
/* iOS: 空の date input が潰れる対策 */
.form-input[type="date"] {
  min-height: 50px;        /* text input と同じ見た目の高さに合わせる */
}

/* 値が空のときプレースホルダ風に色を薄く（任意） */
.form-input[type="date"]:not(:focus):in-range::-webkit-datetime-edit {
  color: var(--text-muted);
}
.form-input[type="date"] {
  min-height: 50px;
  position: relative;
}
.form-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.6);
  cursor: pointer;
  opacity: 0.85;
  width: 18px;
  height: 18px;
}
/* 空のときだけプレースホルダ表示 */
.form-input[type="date"].is-empty::before {
  content: attr(data-placeholder);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* 空のとき、ネイティブの「年/月/日」表示を隠す（webkit） */
.form-input[type="date"].is-empty::-webkit-datetime-edit {
  opacity: 0;
}
/* date input のカレンダーアイコンを白に */
.form-input[type="date"]::-webkit-calendar-picker-indicator {
  /* 黒アイコンを白へ反転（webkit: Safari/Chrome） */
  filter: invert(1) brightness(1.6);
  cursor: pointer;
  opacity: 0.85;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}
/* scale縮小により高さも縮むので、ラッパー側で高さを取り戻すアプローチも考えたが、
   フィールド単体で完結させるため margin-bottom で吸収する */
.form-input,
.form-select {
  /* scale縮小で高さが0.875倍になる分を補正 */
  margin-bottom: -6px;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: -16px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: rgba(201, 168, 108, 0.45);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.12);
}

.form-input:disabled,
.form-textarea:disabled,
.form-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- select 矢印（appearance: none分を独自描画） ---------- */
.form-select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c9a86c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ---------- input-wrap (アイコン付きinput用) ---------- */
.form-input-wrap {
  position: relative;
}

.form-input-toggle {
  position: absolute;
  /* scaleしたinput内でも見た目が崩れないよう、ラッパー基準で配置 */
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  z-index: 2;
}

.form-input-toggle:hover {
  color: var(--gold);
  background: var(--gold-pale);
}

.form-input-toggle.is-active {
  color: var(--gold);
}

/* ---------- ラジオボタン ---------- */
.form-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  padding: 6px 0;
}

.form-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.form-radio__box {
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  background: var(--bg-card);
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.form-radio__box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease;
}

.form-radio input[type="radio"]:checked+.form-radio__box {
  border-color: var(--gold);
}

.form-radio input[type="radio"]:checked+.form-radio__box::after {
  transform: translate(-50%, -50%) scale(1);
}

.form-radio input[type="radio"]:focus-visible+.form-radio__box {
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
}

.form-radio__label {
  font-size: 1.4rem;
  color: var(--text-primary);
}

/* ---------- チェックボックス ---------- */
.form-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  padding: 6px 0;
}

.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.form-checkbox__box {
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  background: var(--bg-card);
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.form-checkbox__box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--bg-base);
  border-bottom: 1.5px solid var(--bg-base);
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}

.form-checkbox input[type="checkbox"]:checked+.form-checkbox__box {
  background: var(--gold);
  border-color: var(--gold);
}

.form-checkbox input[type="checkbox"]:checked+.form-checkbox__box::after {
  transform: rotate(45deg) scale(1);
}

.form-checkbox input[type="checkbox"]:focus-visible+.form-checkbox__box {
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
}

.form-checkbox__label {
  font-size: 1.3rem;
  color: var(--text-primary);
}

/* ---------- ラジオ・チェックのグループ ---------- */
.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.form-options--vertical {
  flex-direction: column;
  gap: 4px;
}

/* ---------- ボタン ---------- */
.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 28px;
  font-size: 1.4rem;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--ap-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
  /* iOSのデフォルトスタイルを無効化 */
  -webkit-appearance: none;
  appearance: none;
}

.form-btn--primary {
  background: var(--gold);
  color: var(--bg-base);
  font-weight: 600;
}

.form-btn--primary:hover {
  opacity: 0.85;
}

.form-btn--secondary {
  background: transparent;
  border-color: var(--gold-border);
  color: var(--gold);
}

.form-btn--secondary:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}

.form-btn--ghost {
  background: transparent;
  color: var(--text-secondary);
}

.form-btn--ghost:hover {
  color: var(--gold);
}

.form-btn--danger {
  background: transparent;
  border-color: rgba(224, 92, 92, 0.4);
  color: #e08080;
}

.form-btn--danger:hover {
  background: rgba(224, 92, 92, 0.1);
  border-color: #e08080;
}

.form-btn--block {
  display: flex;
  width: 100%;
}

.form-btn--sm {
  min-height: 36px;
  padding: 8px 18px;
  font-size: 1.2rem;
}

.form-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ============================================================
   共通: 予約ボタン（ピンク〜赤・アクセント）
   全ページ共通。class="mp-btn-reserve" で使用
   ============================================================ */
.mp-btn-reserve {
    align-self: center;
    display: block;
    padding: 8px 20px;
    font-size: 1.3rem;
    font-weight: 500;
    background: #F95A6B;
    background: linear-gradient(to bottom, #AD7EDB 0%, #8A5DB7 75%, #7F51AC 100%);
    border: 1px solid #B386E0;

    background: linear-gradient(to bottom, #FF9BA2 0%, #F95A6B 75%, #F85164 100%);
    border: 1px solid #DA949B;
    border-radius: 4px;
    color: #FFFFFF !important;
    border: none;
    text-align: center;
    border-radius: var(--shop-radius);
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    cursor: pointer;
}
.mp-btn-reserve:hover {
  opacity: 0.7;
}
.mp-btn-reserve:active {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .mp-btn-reserve {
    font-size: 1.3rem;
  }
}
/* ---------- フォーム下のメタ行(エラー + カウント) ----------

============================================= */
.form-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-height: 1.8rem;
  /* エラーが無くても高さを確保 → 表示時にズレない */
  margin-top: 10px;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* エラー文(常に存在、空テキスト時は何も見えない) */
.form-meta__error {
  flex: 1;
  color: #e08080;
  letter-spacing: 0.2px;
  word-break: break-word;
}

/* テキストカウント */
.form-meta__count {
  flex-shrink: 0;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  /* 数字幅を揃える(0→1で幅がずれない) */
}

.form-meta__count[data-count-state="warn"] {
  color: #d9b97a;
}

.form-meta__count[data-count-state="over"] {
  color: #e08080;
  font-weight: 600;
}

/* ---------- 入力欄のエラー状態 ---------- */
.form-input.is-invalid,
.form-textarea.is-invalid,
.form-select.is-invalid {
  border-color: rgba(224, 92, 92, 0.7);
}

.form-input.is-invalid:focus,
.form-textarea.is-invalid:focus,
.form-select.is-invalid:focus {
  border-color: #e08080;
  box-shadow: 0 0 0 3px rgba(224, 92, 92, 0.15);
}

/* ---------- PC ---------- */
@media (min-width: 768px) {
  .form-label {
    font-size: 1.3rem;
  }

  .form-checkbox__label,
  .form-radio__label {
    font-size: 1.4rem;
  }
}

/* =============================================
   menespark - toast.css
   上部から降りてくるトースト通知
   - JS呼び出し: Toast.success('保存しました') など
   - PHP連携用: <div class="toast-init" data-type="error" data-message="...">
   ============================================= */

/* ---------- コンテナ ----------
   画面上部に固定。複数トーストを縦に積めるよう flex column。
*/
.toast-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  pointer-events: none;
  /* iOSのノッチ対応 */
  padding-top: calc(12px + env(safe-area-inset-top));
}

/* ---------- トースト本体 ---------- */
.toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-md);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  font-size: 1.3rem;
  line-height: 1.5;
  pointer-events: auto;
  /* 初期: 上に隠れている */
  transform: translateY(-120%);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.25s ease;
}

/* 表示中 */
.toast.is-show {
  transform: translateY(0);
  opacity: 1;
}

/* 消える時: 少し上に消えていく + フェードアウト */
.toast.is-hide {
  transform: translateY(-20%);
  opacity: 0;
}


/* ===== メンバー用のトーストアラート　口コミ投稿時に使用 ===== */
.mp-alert { display: flex; align-items: center; gap: 10px; padding: 12px 16px; margin: 0 0 16px; border-radius: var(--radius-md); font-size: 1.3rem; border: 0.5px solid transparent; animation: mpAlertIn 0.3s ease; }
@keyframes mpAlertIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.mp-alert--success { background: rgba(46,204,113,0.12); border-color: rgba(46,204,113,0.4); color: #5aad7a; }
.mp-alert--error { background: rgba(224,92,92,0.12); border-color: rgba(224,92,92,0.4); color: var(--accent-red); }
.mp-alert--warning { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.4); color: #f59e0b; }
.mp-alert--info { background: var(--gold-pale); border-color: var(--gold-border); color: var(--gold); }
.mp-alert__icon { font-size: 1.4rem; font-weight: 700; flex-shrink: 0; }
.mp-alert__msg { flex: 1; }
.mp-alert__close { background: none; border: none; color: inherit; opacity: 0.6; cursor: pointer; font-size: 1.2rem; padding: 2px 4px; flex-shrink: 0; transition: opacity 0.2s; }
.mp-alert__close:hover { opacity: 1; }

/* ===== JS動的トースト ===== */
#mpAlertStack { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; align-items: center; gap: 8px; pointer-events: none; width: calc(100% - 32px); max-width: 420px; }
.mp-toast { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 14px; background: var(--bg-card); border: 0.5px solid var(--gold-border); border-radius: var(--radius-4); box-shadow: 0 8px 24px rgba(0,0,0,0.4); font-size: 1.3rem; color: var(--text-primary); pointer-events: auto; opacity: 0; transform: translateY(-12px); transition: opacity 0.3s ease, transform 0.3s ease; }
.mp-toast.is-show { opacity: 1; transform: translateY(0); }
.mp-toast.is-hide { opacity: 0; transform: translateY(-8px); }
.mp-toast--success { border-color: rgba(46,204,113,1); }
.mp-toast--error { border-color: rgba(224,92,92,1); }
.mp-toast--warning { border-color: rgba(245,158,11,1); }
.mp-toast__icon { font-size: 1.5rem; font-weight: 700; flex-shrink: 0; }
.mp-toast--success .mp-toast__icon { color: #5aad7a; }
.mp-toast--error .mp-toast__icon { color: var(--accent-red); }
.mp-toast--warning .mp-toast__icon { color: #f59e0b; }
.mp-toast--info .mp-toast__icon { color: var(--gold); }
.mp-toast__msg { flex: 1; }

/* ===== 確認ダイアログ ===== */
.mp-confirm { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 16px; }
.mp-confirm__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.mp-confirm__box { position: relative; background: var(--bg-card); border: 0.5px solid var(--gold-border); border-radius: var(--radius-lg); padding: 24px 20px 20px; width: 100%; max-width: 320px; box-shadow: 0 16px 40px rgba(0,0,0,0.5); animation: mpConfirmIn 0.2s ease; }
@keyframes mpConfirmIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.mp-confirm__msg { font-size: 1.4rem; color: var(--text-primary); text-align: center; line-height: 1.7; margin-bottom: 20px; }
.mp-confirm__btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mp-confirm__btn { padding: 10px; border-radius: var(--radius-pill); font-size: 1.3rem; font-weight: 500; font-family: inherit; cursor: pointer; transition: opacity 0.2s; }
.mp-confirm__btn--cancel { background: transparent; border: 0.5px solid var(--gold-border); color: var(--text-secondary); }
.mp-confirm__btn--cancel:hover { background: var(--gold-pale); }
.mp-confirm__btn--ok { background: var(--gold); border: none; color: var(--bg-base); }
.mp-confirm__btn--ok:hover { opacity: 0.85; }
.mp-confirm__btn--ok.is-danger { background: var(--accent-red); }

/* ---------- アイコン ---------- */
.toast__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-top: 1px;
}

/* ---------- 本文 ---------- */
.toast__body {
  flex: 1;
  min-width: 0;
}

.toast__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}

.toast__message {
  font-size: 1.25rem;
  color: var(--text-primary);
  word-break: break-word;
}

/* タイトルなしの場合は message を主役に */
.toast:not(:has(.toast__title)) .toast__message {
  font-size: 1.3rem;
}

/* ---------- 閉じるボタン ---------- */
.toast__close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  padding: 0;
  margin-top: -1px;
}

.toast__close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.toast__close svg {
  display: block;
}

/* ---------- プログレスバー（自動消滅まで） ---------- */
.toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  opacity: 0.4;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  /* JSで width を 100% → 0% に animate */
  width: 100%;
  transition: width linear;
}

.toast {
  position: relative;
  overflow: hidden;
}

/* ---------- バリアント ---------- */

/* 成功（緑系） */
.toast--success {
  border-color: rgba(90, 173, 122, 0.5);
  background: linear-gradient(180deg, rgba(90, 173, 122, 0.08), rgba(28, 27, 35, 0.95));
  color: #7ac598;
}

.toast--success .toast__icon {
  background: rgba(90, 173, 122, 0.2);
  color: #7ac598;
}

.toast--success .toast__title {
  color: #9ed5b0;
}

.toast--success .toast__message {
  color: var(--text-primary);
}

/* エラー（赤系） */
.toast--error {
  border-color: rgba(224, 92, 92, 0.55);
  background: linear-gradient(180deg, rgba(224, 92, 92, 0.08), rgba(28, 27, 35, 0.95));
  color: #e08080;
}

.toast--error .toast__icon {
  background: rgba(224, 92, 92, 0.22);
  color: #e08080;
}

.toast--error .toast__title {
  color: #f0a0a0;
}

.toast--error .toast__message {
  color: var(--text-primary);
}

/* 警告（オレンジ系） */
.toast--warning {
  border-color: rgba(224, 154, 60, 0.55);
  background: linear-gradient(180deg, rgba(224, 154, 60, 0.08), rgba(28, 27, 35, 0.95));
  color: #e0b070;
}

.toast--warning .toast__icon {
  background: rgba(224, 154, 60, 0.22);
  color: #e0b070;
}

.toast--warning .toast__title {
  color: #f0c890;
}

.toast--warning .toast__message {
  color: var(--text-primary);
}

/* 情報（ゴールド系） */
.toast--info {
  border-color: var(--gold-border);
  background: linear-gradient(180deg, rgba(201, 168, 108, 0.08), rgba(28, 27, 35, 0.95));
  color: var(--gold);
}

.toast--info .toast__icon {
  background: rgba(201, 168, 108, 0.2);
  color: var(--gold);
}

.toast--info .toast__title {
  color: var(--gold-light);
}

.toast--info .toast__message {
  color: var(--text-primary);
}

/* ---------- PC ---------- */
@media (min-width: 768px) {
  .toast-container {
    padding-top: calc(20px + env(safe-area-inset-top));
  }

  .toast {
    max-width: 440px;
    padding: 14px 16px;
  }

  .toast__title {
    font-size: 1.4rem;
  }

  .toast__message {
    font-size: 1.3rem;
  }
}

/* ---------- 動きが苦手なユーザー向け ---------- */
@media (prefers-reduced-motion: reduce) {
  .toast {
    transition: opacity 0.2s ease;
    transform: none;
  }

  .toast.is-show {
    transform: none;
  }

  .toast.is-hide {
    transform: none;
  }

  .toast__progress {
    display: none;
  }
}





/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold-border);
  z-index: 100;
  overflow: hidden;
}
/* トップページ用：ヘッダー直下サイト説明帯（SPのみ） */
.site-intro--header {
  display: none;
}          /* PCでは非表示 */

@media (max-width: 767.98px) {
  .site-intro--header {
    display: block;
  }
}
/* ブロックリンク */
.area_block_link {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
}

.area_block_link_catch {
  font-size: 1rem;
  font-weight: normal;
  color: var(--white-transparent07);
}

.area_block_link a {
  position: relative;
  display: inline-block;
  padding: 4px 2px;
  transition: color 0.3s ease;
}

.area_block_link a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.area_block_link a:hover {
  color: var(--gold);
}

.area_block_link a:hover::after {
  transform: scaleX(1);
}

/* 外側: 表示制御 */
.break_none {
  display: none;
}

@media (min-width: 768px) {
  .break_none {
    display: block;
  }
}

/* 内側: レイアウト */
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 1.4rem;
}

.header__logo {
  display: flex;
  align-items: baseline;
}

.logo-menes {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.logo-park {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ロゴ横のキャラクター */
.header__logo {
    align-items: center;
    gap: 6px;
}

.header__logo-char {
    flex-shrink: 0;
    width: auto;
    height: 28px;
    display: block;
}

@media (min-width: 768px) {
    .header__logo-char {
        height: 32px;
    }
}

.logo-hyphen {
  display: inline-block;
  transform: scaleX(0.65);
  letter-spacing: 0;
  margin: 0 -0.12em;
}

.header__block-name {
  font-size: 1.2rem;
  color: #fff;
  background: var(--gold);
  color: var(--bg-base);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.header__nav-link {
  display: none;
  color: #fff;
  font-size: 1.2rem;
  padding: 5px 15px;
  /* border: 2px solid var(--gold-border); */
  border-radius: var(--radius-pill);
  transition: color 0.2s, border-color 0.2s;
}

.header__nav-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.header__menu-btn {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.header__menu-btn span {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}
/* 三本線ボタンの未読バッジ（メッセージ） */
.header__menu-btn { position: relative; }
.header__menu-btn span.header__menu-badge {
  width: auto;
  position: absolute;
  top: 0;
  right: -6px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 999px;
  background: #e0483d !important;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
  border: 1.5px solid var(--bg-base, #0f0f14);
  box-sizing: border-box;
}
.header__menu-btn.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ヘッダー: ログイン中のユーザー表示 */
.header__user {
  display: inline-flex;
  /* ← SPでも表示する */
  align-items: center;
  gap: 8px;
  padding: 4px;
  /* ← SPはアイコンのみなのでpadding小さく */
  /* border: 2px solid var(--gold-border); */
  /* border-radius: var(--radius-pill); */
  color: var(--text-primary);
  font-size: 1.2rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.header__user:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.header__user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 168, 108, 0.22);
  border: 1px solid var(--gold);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.header__user-avatar--img {
  padding: 0;
  overflow: hidden;
}
.header__user-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.header__user-name {
  display: none;
  /* ← SPでは名前は非表示 */
  color: var(--text-primary);
  letter-spacing: 0.3px;
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* ヘッダーのアバター：未読バッジ */
.header__user {
  position: relative; display: inline-flex;
}

.header__user-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 1.6rem;
  height: 1.6rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: var(--accent-red, #e05c5c);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--bg-base, #14110d);
}
/* PC */
@media (min-width: 768px) {
  .header__nav-link {
    display: inline-flex;
    align-items: center;
  }

  .header__user {
    padding: 4px;
    /* PCは名前のぶんpadding復活 */
  }

  .header__user-name {
    display: inline;
    /* ← PCで名前表示 */
  }
}


  /* ドロワー */
.drawer {
  position: fixed;
  top: 0;          /* ← 0に変更 */
  right: 0;
  width: 240px;
  height: 100vh;   /* ← calc削除してfull height */
  background: var(--bg-surface);
  border-left: 0.5px solid var(--gold-border);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  padding-top: 0;  /* JSで制御 */
  padding-bottom: 46px;
  padding-left: 0;
  padding-right: 0;
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__nav {
  display: flex;
  flex-direction: column;
}

.drawer__link {
  padding: 13px 24px;
  font-size: 1.4rem;
  border-bottom: 0.5px solid rgba(201, 168, 108, 0.06);
  transition: color 0.2s, background 0.2s;
}
/* ドロワー内リンクの未読バッジ（メッセージ） */
.drawer__link {
  position: relative;
}
.drawer__link-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  height: 1.6rem;
  padding: 0 0.4rem;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--accent-red, #e05c5c);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
}
.drawer__link:hover {
  color: var(--gold);
  background: var(--gold-pale);
}

.drawer__link--area {
  font-size: 1.2rem;
  padding-left: 32px;
  color: #fff;
}

.drawer__divider {
  margin: 8px 0;
}

.drawer__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
}

.drawer__overlay.is-open {
  display: block;
}


.drawer__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(201, 168, 108, 0.08);
  border-bottom: 0.5px solid rgba(201, 168, 108, 0.15);
  margin-bottom: 4px;
}

.drawer__user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 108, 0.2);
  border: 1.5px solid rgba(201, 168, 108, 0.4);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.drawer__user-avatar--img {
    padding: 0;
    overflow: hidden;
}
.drawer__user-avatar--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.drawer__user-name {
  font-size: 1.4rem;
  font-weight: 500;
  color: #f0ece0;
}


.drawer__link--logout {
  color: #e05c5c !important;
}

/* ---------- ドロワー: スクロールバー非表示 ---------- */
html.is-drawer-open {
  overflow: hidden;
}
.drawer {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
}

.drawer::-webkit-scrollbar {
  display: none;
}

/* ---------- ドロワー: ログイン / 新規登録（縦並びメニュー） ---------- */
.drawer__link--auth {
  color: var(--gold) !important;
}

/* ---------- ドロワー: アコーディオン（主要エリア） ---------- */
.drawer__acc {
  border-bottom: 0.5px solid rgba(201, 168, 108, 0.06);
}

.drawer__acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 24px;
  font-size: 1.4rem;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: color 0.2s, background 0.2s;
}

.drawer__acc-head::-webkit-details-marker {
  display: none;
}

.drawer__acc-head::marker {
  content: '';
}

.drawer__acc-head:hover {
  color: var(--gold);
  background: var(--gold-pale);
}

.drawer__acc-arrow {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform 0.25s, color 0.2s;
}

.drawer__acc[open] .drawer__acc-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}

.drawer__acc-body {
  display: flex;
  flex-direction: column;
  padding: 4px 0 8px;
  background: rgba(0, 0, 0, 0.18);
}

.drawer__acc-body .drawer__link {
  padding-top: 9px;
  padding-bottom: 9px;
  border-bottom: none;
}


/* パンくず */
/* ---------- 全体ラッパー ---------- */
.global-nav-block {
  background: rgba(15, 15, 20, 0.6);
  border-top: 0.5px solid rgba(201, 168, 108, 0.12);
}

/* ---------- パンくず（SP基準） ---------- */
.breadcrumb {
  font-size: 1rem;
  /* SPでは小さめ */
  padding: 6px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.breadcrumb::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}


.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.breadcrumb__link {
  color: rgba(201, 168, 108, 0.7);
  text-decoration: none;
  transition: color .15s;
}

.breadcrumb__link:hover {
  color: var(--gold);
  text-decoration: underline;
}

.breadcrumb__sep {
  color: var(--shop-text-dim);
  margin: 0 4px;
  font-size: 1rem;
}

.breadcrumb__current {
      color: var(--shop-text-dim);
}

/* テーブルリセット */

table {
  border-collapse: collapse;
  /* 枠線の重複を解消 */
  border-spacing: 0;
  /* セル間の余白をリセット */
}

th,
tr,
td {
  border: none;
  /* 枠線をリセット */
  padding: 0;
  /* 内側の余白をリセット */
  text-align: left;
  /* 文字の配置をリセット */
  font-weight: normal;
  /* th の太字をリセット */
  vertical-align: middle;
  /* 縦方向の配置をリセット */
}

/* ---------- フッター ---------- */
.footer {
  background: var(--bg-surface);
  border-top: 0.5px solid var(--gold-border);
  padding: 40px 16px 32px;
  text-align: center;
  margin-top: auto;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.footer__catch {
  color: var(--white-transparent07);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 16px;
  margin-bottom: 8px;
}

.footer__nav a {
  color: var(--white-transparent07);
  font-size: 1.2rem;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__nav--area a {
  font-size: 1.1rem;
}

.footer__nav--sub a {
  font-size: 1.1rem;
  color: var(--white-transparent07);
}

.footer__copy {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 20px;
}


/* ==========================================
   PC版 ( min-width: 768px )
   ========================================== */

@media (min-width: 768px) {

  /* PC: パンくずをひとまわり大きく、パディング広め */
  .breadcrumb {
    font-size: 1.2rem;
    padding: 8px 16px;
    border-bottom: 0.5px solid rgba(201, 168, 108, 0.08);
  }

  .breadcrumb__sep {
    margin: 0 8px;
  }

  .header__nav-link {
    display: inline-flex;
  }

  .header__menu-btn {
    display: flex;
  }

  .hero {
    padding: 80px 16px 64px;
  }

  .hero__title {
    font-size: 52px;
  }

  .ts-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .circle-therapist-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .diary-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }

  .therapist-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .shop-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .shop-card__img-placeholder {
    width: 80px;
    height: 80px;
  }

  .coupon-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .review-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }

  .ranking-genre-wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .shop-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .coupon-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-list {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* ===== トップへ戻る矢印（全ページ共通） ===== */
.to-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 15, 20, 0.92);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, border-color .2s, background .2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
}

.to-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top-btn:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

/* SP（〜1569px）：右下・カードの上 */
@media (max-width: 1569.98px) {
  .to-top-btn {
    right: 12px;
    bottom: calc(124px + env(safe-area-inset-bottom)); /* ← カードより上に */
    z-index: 86;                                        /* ← ピーク(85)より前面 */
  }
}

/* PC（1570px〜）：右レールと同じ右端ラインの一番下あたり */
@media (min-width: 1570px) {
  .to-top-btn {
    left: calc(50% + 600px + 24px + 68px);        /* 右レール左端 + (幅180/2 - 44/2)=68 で中央合わせ */
    bottom: 40px;
    z-index: 70;
  }
}
/* =============================================
   グローバルナビ（PC専用） & ボトムナビ（SP専用）
   既存 style.css に追記する
   ============================================= */

/* ---------- PC用 グローバルナビ ----------
   SPではデフォルト非表示。
*/
.global-nav {
  display: none;
}

.global-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: stretch;
  gap: 0px;
}

.global-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 14px 15px;
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.global-nav__item::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.global-nav__item:hover {
  color: var(--gold);
  background: rgba(201, 168, 108, 0.04);
}

.global-nav__item:hover::after,
.global-nav__item.is-active::after {
  transform: scaleX(1);
}

.global-nav__item.is-active {
  color: var(--gold);
  font-weight: bold;
}

.global-nav__icon {
  font-size: 1.4rem;
  line-height: 1;
}

.global-nav__label {
  font-size: 1.3rem;
}

/* ---------- SP用 固定ボトムナビ ---------- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(15, 15, 20, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 0.5px solid var(--gold-border);
  display: flex;
  align-items: stretch;
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 2px;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.bottom-nav__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.bottom-nav__item.is-active {
  color: var(--gold);
}

.bottom-nav__item.is-active::before {
  transform: scaleX(1);
}

.bottom-nav__item:active {
  background: rgba(201, 168, 108, 0.06);
}

.bottom-nav__icon {
  font-size: 2rem;
  line-height: 1;
}

.bottom-nav__label {
  font-size: 1rem;
  letter-spacing: 0.3px;
  font-weight: 400;
}

/* SP時はボトムナビ分の余白を取る */
body {
  padding-bottom: calc(60px + env(safe-area-inset-bottom));
}
/* SPでしかもトップページのみパンくずがないのでスペースを削除 */
.is-top{
        padding-top: 102px;
   }

/* ---------- レスポンシブ切替 ---------- */
@media (min-width: 768px) {

  /* PC: グローバルナビを表示 */
  .global-nav {
    display: block;
  }

  /* PC: ボトムナビは非表示 */
  .bottom-nav {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
    body.is-top {
    padding-top: 60px;
  }
}



/* =============================================
   検索ページ用CSS
   assets/style.css の末尾に追記してください
   ============================================= */

/* ---------- 検索ページ全体 ---------- */
.search-page {
  margin-top: var(--header-h);
  min-height: 100vh;
}

/* ---------- 検索バー ---------- */
.search-bar-wrap {
  background: var(--bg-surface);
  border-bottom: 0.5px solid var(--gold-border);
  padding: 10px 16px;
  position: sticky;
  top: var(--header-h);
  z-index: 80;
}

.search-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-pill);
  padding: 9px 14px;
  cursor: pointer;
  min-height: 44px;
  transition: border-color .2s;
}

.search-bar:hover {
  border-color: var(--gold);
}

.search-bar__icon {
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-bar__placeholder {
  color: var(--text-muted);
  font-size: 13px;
  flex: 1;
}

.search-bar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex: 1;
}

.search-bar__tag {
  background: var(--gold-pale);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.search-bar__tag--status {
  background: rgba(90, 173, 122, 0.15);
  border: 0.5px solid rgba(90, 173, 122, 0.4);
  color: #5aad7a;
}

.search-bar__filter-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
  font-size: 13px;
  flex-shrink: 0;
  padding: 4px 10px;
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-pill);
  transition: color .2s, border-color .2s;
}

.search-bar__filter-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.search-bar__filter-count {
  background: var(--gold);
  color: var(--bg-base);
  font-size: 10px;
  font-weight: 500;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .search-bar__filter-btn {
    display: none;
  }
}

/* ---------- 2カラムレイアウト ---------- */
.search-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .search-layout {
    grid-template-columns: 268px 1fr;
    gap: 24px;
    padding: 24px 16px;
    align-items: start;
  }
}

/* ---------- サイドバー ---------- */
.search-sidebar {
  display: none;
}

@media (min-width: 768px) {
  .search-sidebar {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 60px);
    max-height: calc(100vh - var(--header-h) - 80px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-border) transparent;
  }

  .search-sidebar::-webkit-scrollbar {
    width: 3px;
  }

  .search-sidebar::-webkit-scrollbar-thumb {
    background: var(--gold-border);
    border-radius: 2px;
  }
}

/* ---------- アコーディオンカード ---------- */
.acc-card {
  background: var(--bg-surface);
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 8px;
}

.acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  user-select: none;
  transition: background .15s;
}

.acc-head:hover {
  background: var(--gold-pale);
}

.acc-head__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.acc-head__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.acc-head__badge {
  background: var(--gold);
  color: var(--bg-base);
  font-size: 10px;
  font-weight: 500;
  padding: 1px 7px;
  border-radius: var(--radius-pill);
}

.acc-head__badge--status {
  background: #5aad7a;
}

.acc-head__arrow {
  font-size: 11px;
  color: var(--text-muted);
  transition: transform .25s;
}

.acc-card.is-open .acc-head__arrow {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-card.is-open .acc-body {
  max-height: 800px;
}

.acc-body__inner {
  padding: 0 14px 14px;
}

/* ---------- エリア2段階 ---------- */
.area-pref-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.area-pref-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 4px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .15s;
}

.area-pref-row:hover {
  background: var(--gold-pale);
}

.area-pref-label {
  font-size: 13px;
  color: var(--text-secondary);
  flex: 1;
}

.area-pref-toggle {
  font-size: 10px;
  color: var(--text-muted);
  padding: 2px 4px;
  transition: transform .25s;
  flex-shrink: 0;
}

.area-pref-item.sub-open .area-pref-toggle {
  transform: rotate(180deg);
  color: var(--gold);
}

.area-sub-list {
  margin-left: 24px;
  margin-top: 2px;
  margin-bottom: 4px;
  padding: 8px 10px;
  background: rgba(201, 168, 108, 0.05);
  border-left: 1.5px solid var(--gold-border);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: none;
  flex-direction: column;
  gap: 2px;
}

.area-pref-item.sub-open .area-sub-list {
  display: flex;
}

.area-sub-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 4px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .15s;
}

.area-sub-row:hover {
  background: var(--gold-pale);
}

.area-sub-row input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.check-box--sm {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background .15s, border-color .15s;
}

.area-sub-row input:checked+.check-box--sm {
  background: var(--gold);
  border-color: var(--gold);
}

.area-sub-row input:checked+.check-box--sm::after {
  content: '';
  display: block;
  width: 3px;
  height: 6px;
  border: 1.5px solid var(--bg-base);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.area-sub-label {
  font-size: 12px;
  color: var(--text-secondary);
}

.area-sub-row input:checked~.area-sub-label {
  color: var(--text-primary);
}

/* ---------- ステータス選択 ---------- */
.status-check-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.status-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 0.5px solid var(--gold-border);
  background: var(--bg-card);
  transition: all .15s;
}

.status-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.status-check:hover {
  border-color: #5aad7a;
  background: rgba(90, 173, 122, 0.15);
}

.status-check.is-checked {
  border-color: #5aad7a;
  background: rgba(90, 173, 122, 0.15);
}

.status-check__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  transition: background .15s;
}

.status-check.is-checked .status-check__dot {
  background: #5aad7a;
}

.status-check__label {
  font-size: 13px;
  color: var(--text-secondary);
  flex: 1;
}

.status-check.is-checked .status-check__label {
  color: #5aad7a;
}

/* ---------- チェックリスト ---------- */
.filter-check-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .15s;
}

.filter-check:hover {
  background: var(--gold-pale);
}

.filter-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-check .check-box {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid var(--white-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
  position: relative;
}

.filter-check input:checked+.check-box {
  background: var(--gold);
  border-color: var(--gold);
}

.filter-check input:checked+.check-box::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  border: 1.5px solid var(--bg-base);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.filter-check__label {
  font-size: 1.4rem;
  color: var(--white-transparent09);
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.filter-check input:checked~.filter-check__label {
  color: var(--text-primary);
}

.filter-check__icon {
  font-size: 13px;
}

/* ---------- フィルターボタン ---------- */
.filter-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.filter-submit-btn {
  width: 100%;
  padding: 11px;
  background: var(--gold);
  color: var(--bg-base);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font-base);
  border: none;
  transition: opacity .2s;
}

.filter-submit-btn:hover {
  opacity: .85;
}

.filter-reset-btn {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding: 6px;
}

.filter-reset-btn:hover {
  color: var(--gold);
}

/* ---------- 検索結果ヘッダー ---------- */
.search-main {
  padding: 16px 0;
}

@media (min-width: 768px) {
  .search-main {
    padding: 0;
  }
}

.search-result-head {
  margin-bottom: 16px;
  padding: 0 0 12px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.search-result-count {
  font-size: 13px;
  color: var(--text-secondary);
}

.search-result-count__labels {
  color: var(--gold);
  font-weight: 500;
}

.search-result-count__num {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 2px;
}

/* ---------- 検索結果なし ---------- */
.search-empty {
  text-align: center;
  padding: 60px 16px;
}

.search-empty__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.search-empty__title {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.search-empty__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ---------- 店舗カード ---------- */
.shop-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shop-card {
  background: var(--bg-card);
  border: 0.5px solid rgba(201, 168, 108, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s;
}

.shop-card:hover {
  border-color: var(--gold-border);
}

/* カードヘッダー */
.shop-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
      border-bottom: 1px solid var(--shop-border);
}

.shop-card__logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 0.5px solid var(--gold-border);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-deco);
  font-size: 18px;
  color: var(--gold);
}

.shop-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card__info {
  flex: 1;
  min-width: 0;
}
.shop-card__name {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.shop-card__sub {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.shop-card__genre-tag {
  font-size: 10px;
  background: var(--gold-pale);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
  padding: 1px 7px;
  border-radius: var(--radius-pill);
}

.shop-card__status-tag {
  font-size: 10px;
  background: rgba(90, 173, 122, 0.15);
  border: 0.5px solid rgba(90, 173, 122, 0.4);
  color: #5aad7a;
  padding: 1px 7px;
  border-radius: var(--radius-pill);
}

.shop-card__head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.shop-card__hours {
  font-size: 11px;
  color: var(--text-secondary);
}

.shop-card__new-badge {
  font-size: 9px;
  background: #e05c5c;
  color: #fff;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}

/* カード本体（左右） */
.shop-card__body {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  gap: 10px;
}

@media (min-width: 540px) {
  .shop-card__body {
    grid-template-columns: 2fr 3fr;
  }
}

/* 写真グリッド */
.shop-card__photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 540px) {
  .shop-card__photos {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

.shop-card__photo {
  aspect-ratio: 3/4;
  background: var(--bg-surface);
  overflow: hidden;
  position: relative;
}

.shop-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.shop-card:hover .shop-card__photo img {
  transform: scale(1.04);
}

.shop-card__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 9px;
}

.shop-card__photo-badge {
  position: absolute;
  bottom: 3px;
  left: 3px;
  font-size: 8px;
  font-weight: 500;
  padding: 1px 5px;
  border-radius: 3px;
  line-height: 1.4;
}

.shop-card__photo-badge--now {
  background: var(--gold);
  color: var(--bg-base);
}

.shop-card__photo-badge--new {
  background: #e05c5c;
  color: #fff;
}

/* 詳細 */
.shop-card__detail {
  padding: 0 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-card__stats {
  display: flex;
  gap: 12px;
}

.shop-card__stat {
  text-align: center;
}

.shop-card__desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}


/* タイムサービスバナー（赤） */
.shop-card__timebanner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  margin: 0 14px 8px;
  background: #6b1212;
  border: 1px solid #c04040;
  border-radius: var(--radius-sm);
}

.shop-card__timebanner-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: #ffb3b3;
  background: rgba(255, 255, 255, 0.12);
  padding: 1px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 3px;
}

.shop-card__timebanner-orig {
  font-size: 11px;
  color: #ffaaaa;
  text-decoration: line-through;
  display: block;
}

.shop-card__timebanner-right {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.shop-card__timebanner-price {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.shop-card__timebanner-arrow {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

/* クーポンバナー（ゴールド） */
.shop-card__couponbanner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  margin: 0 14px 10px;
  background: #3d2e00;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
}

.shop-card__couponbanner-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: var(--gold-light);
  background: rgba(201, 168, 108, 0.2);
  padding: 1px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 3px;
}

.shop-card__couponbanner-title {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  display: block;
}

.shop-card__couponbanner-expire {
  font-size: 10px;
  color: var(--gold);
  display: block;
  margin-top: 1px;
}

.shop-card__couponbanner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.shop-card__couponbanner-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
}

.shop-card__couponbanner-more {
  font-size: 10px;
  color: var(--gold);
}

/* アクションボタン行 */
.shop-card__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid rgba(255, 255, 255, 0.04);
}

.shop-card__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 11px 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background .15s, color .15s;
  border-right: 0.5px solid rgba(255, 255, 255, 0.04);
}

.shop-card__action-btn:last-child {
  border-right: none;
}

.shop-card__action-btn:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

.shop-card__action-btn--primary {
  color: var(--gold);
}

.shop-card__action-btn--reserve {
  background: rgba(90, 173, 122, 0.08);
  color: #5aad7a;
}

.shop-card__action-btn--reserve:hover {
  background: rgba(90, 173, 122, 0.15);
}

.shop-card__action-icon {
  font-size: 13px;
}

/* ---------- セラピスト検索グリッド ---------- */
.therapist-search-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 540px) {
  .therapist-search-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .therapist-search-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.therapist-search-card {
  display: block;
  background: var(--bg-card);
  border: 0.5px solid rgba(201, 168, 108, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}

.therapist-search-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.therapist-search-card__thumb {
  position: relative;
  aspect-ratio: 2/3;
  background: var(--bg-surface);
  overflow: hidden;
}

.therapist-search-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.therapist-search-card:hover .therapist-search-card__thumb img {
  transform: scale(1.04);
}

.therapist-search-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 11px;
}

.therapist-search-card__badge {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 9px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}

.therapist-search-card__badge--new {
  background: #e05c5c;
  color: #fff;
}

.therapist-search-card__body {
  padding: 8px 10px;
}

.therapist-search-card__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.therapist-search-card__shop {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.therapist-search-card__specs {
  display: flex;
  gap: 6px;
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.therapist-search-card__area {
  font-size: 11px;
  color: var(--text-muted);
}

/* ---------- ページネーション ---------- */
.search-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.search-pagination__btn {
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13px;
  padding: 0 10px;
  transition: color .2s, background .2s, border-color .2s;
}

.search-pagination__btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-pale);
}

.search-pagination__btn.is-active {
  background: var(--gold);
  color: var(--bg-base);
  border-color: var(--gold);
  font-weight: 500;
}

/* ---------- SPフィルターモーダル ---------- */
.filter-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.filter-modal.is-open {
  display: block;
}

.filter-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.filter-modal__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-top: 0.5px solid var(--gold-border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-modal.is-open .filter-modal__panel {
  transform: translateY(0);
}

.filter-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 0.5px solid var(--gold-border);
  flex-shrink: 0;
}

.filter-modal__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.filter-modal__close {
  color: var(--text-muted);
  font-size: 18px;
  padding: 4px 8px;
  line-height: 1;
  transition: color .2s;
}

.filter-modal__close:hover {
  color: var(--gold);
}

.filter-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
  scrollbar-width: none;
}

.filter-modal__body::-webkit-scrollbar {
  display: none;
}

.filter-modal__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-top: 0.5px solid var(--gold-border);
  background: var(--bg-alt);
  flex-shrink: 0;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
}

.filter-modal__reset {
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 16px;
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  transition: color .2s;
}

.filter-modal__reset:hover {
  color: var(--gold);
}

.filter-modal__apply {
  flex: 1;
  padding: 12px;
  background: var(--gold);
  color: var(--bg-base);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  text-align: center;
  cursor: pointer;
  font-family: var(--font-base);
  border: none;
  transition: opacity .2s;
}

.filter-modal__apply:hover {
  opacity: .85;
}

/* ---------- 検索バー キーワード入力 ---------- */
.search-bar-form {
  width: 100%;
}

.search-bar__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-base);
  font-size: 13px;
  color: var(--text-primary);
  min-width: 0;
}

.search-bar__input::placeholder {
  color: var(--text-muted);
}

.search-bar__submit-btn {
  flex-shrink: 0;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--bg-base);
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  font-family: var(--font-base);
  transition: opacity .2s;
}

.search-bar__submit-btn:hover {
  opacity: .85;
}

/* ---------- キーワードクリアボタン ---------- */
.search-bar__clear-btn {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-muted);
  color: var(--bg-base);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  line-height: 1;
}

.search-bar__clear-btn:hover {
  background: var(--text-secondary);
}

/* ---------- area pref check ---------- */
.area-pref-check {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}

.area-pref-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.area-pref-row {
  cursor: pointer;
}

.area-pref-check .check-box {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
  position: relative;
}

.area-pref-check input:checked+.check-box {
  background: var(--gold);
  border-color: var(--gold);
}

.area-pref-check input:checked+.check-box::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  border: 1.5px solid var(--bg-base);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

/* ============================================================
   お店個別ページ用CSS (style.cssに追記)
   ============================================================ */

/* ===== HERO ===== */
.shop-hero {
  margin-top: var(--header-h);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: var(--bg-surface);
}

.shop-hero__img {
  width: 100%;
}

.shop-hero__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== 店舗情報バー ===== */
.shop-identity {
  background: var(--bg-surface);
  border-bottom: 0.5px solid var(--gold-border);
}

.shop-identity__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-identity__left {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex: 1;
}

.shop-identity__logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  border: 0.5px solid var(--gold-border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-deco);
}

.shop-identity__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 6px;
}

.si-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.si-badge--pr {
  background: var(--gold);
  color: var(--bg-base);
}

.si-badge--open {
  background: rgba(90, 173, 122, 0.2);
  border: 0.5px solid rgba(90, 173, 122, 0.5);
  color: #5aad7a;
}

.si-badge--closed {
  background: rgba(90, 90, 90, 0.2);
  border: 0.5px solid rgba(90, 90, 90, 0.4);
  color: var(--text-muted);
}

.si-badge--vacancy-now {
  background: rgba(90, 173, 122, 0.25);
  border: 0.5px solid rgba(90, 173, 122, 0.6);
  color: #5aad7a;
  font-weight: 700;
}

.shop-identity__name {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.shop-identity__sub {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  line-height: 1.6;
}

.shop-identity__meta {
  display: flex;
  align-items: center;
  gap: 5px;
}

.shop-identity__stars {
  color: var(--gold);
  font-size: 13px;
}

.shop-identity__score {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
}

.shop-identity__review-count {
  font-size: 11px;
  color: var(--text-muted);
}

.shop-identity__sns {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-top: 4px;
}

.sns-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(201, 168, 108, 0.2);
  transition: all 0.2s;
  flex-shrink: 0;
}

.sns-icon svg {
  width: 15px;
  height: 15px;
}

.sns-icon:hover {
  border-color: var(--gold);
  transform: scale(1.1);
}

.sns-icon--x {
  color: #e8e0d0;
}

.sns-icon--instagram {
  color: #E1306C;
}

.sns-icon--line {
  color: #06C755;
}

@media(min-width:768px) {
  .shop-identity__inner {
    flex-direction: row;
    align-items: center;
    padding: 20px 40px;
  }

  .shop-identity__logo {
    width: 88px;
    height: 88px;
  }

  .shop-identity__name {
    font-size: 22px;
  }

  .shop-identity__sns {
    margin-left: auto;
    flex-shrink: 0;
  }
}

/* ===== タブ ===== */
.shop-tabs {
  background: var(--bg-surface);
  border-bottom: 0.5px solid var(--gold-border);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
}

.shop-tabs.is-sticky {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.shop-tabs__shop-name {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.25s, opacity 0.25s;
}

.shop-tabs__shop-name.is-visible {
  height: 32px;
  opacity: 1;
}

.shop-tabs__open-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5aad7a;
  flex-shrink: 0;
}

.shop-tabs__vacancy {
  font-size: 10px;
  font-weight: 500;
  padding: 1px 8px;
  border-radius: var(--radius-pill);
  margin-left: 4px;
  background: rgba(90, 173, 122, 0.2);
  color: #5aad7a;
  border: 0.5px solid rgba(90, 173, 122, 0.4);
}

.shop-tabs__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
}

.shop-tabs__inner::-webkit-scrollbar {
  display: none;
}

.shop-tab {
  flex-shrink: 0;
  padding: 11px 14px;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.shop-tab:hover {
  color: var(--text-secondary);
}

.shop-tab.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.shop-tab-reserve {
  flex-shrink: 0;
  margin-left: 8px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--bg-base);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  align-self: center;
  transition: opacity 0.2s;
  border-bottom: none !important;
}

.shop-tab-reserve:hover {
  opacity: 0.85;
}

/* ===== 2カラムレイアウト ===== */
.shop-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.shop-layout__inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media(min-width:960px) {
  .shop-layout__inner {
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
  }
}

/* ===== セクション共通 ===== */
.shop-section {
  padding: 28px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
}

.shop-section:last-child {
  border-bottom: none;
}

.shop-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.shop-section__title {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-section__title::before {
  content: '';
  display: block;
  width: 2px;
  height: 16px;
  background: var(--gold);
  border-radius: 1px;
  flex-shrink: 0;
}

.shop-section__more {
  font-size: 12px;
  color: var(--gold);
}


/* ===== クイックニュース ===== */
.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
}

.news-item:last-child {
  border-bottom: none;
}

.news-item__dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.news-item__title {
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 4px;
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-item__cat {
  background: var(--gold-pale);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
  font-size: 11px;
  padding: 1px 8px;
  border-radius: var(--radius-pill);
}

.news-item__date {
  color: var(--text-muted);
  font-size: 11px;
}

/* ===== 即ひめ ===== */
.circle-therapist-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.circle-therapist-card {
  text-align: center;
  display: block;
  transition: opacity 0.2s;
}

.circle-therapist-card:hover {
  opacity: 0.8;
}

.circle-therapist-card__avatar {
  position: relative;
  margin-bottom: 10px;
}

.circle-therapist-card__img {
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid rgba(201, 168, 108, 0.3);
  overflow: hidden;
  margin: 0 auto;
}

.circle-therapist-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.circle-therapist-card__now-badge {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-base);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.circle-therapist-card__name {
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 2px;
}

.circle-therapist-card__shop {
  color: var(--text-muted);
  font-size: 11px;
}

/* ===== 週間出勤予定 ===== */
.week-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.week-tabs::-webkit-scrollbar {
  display: none;
}

.week-tab {
  flex-shrink: 0;
  min-width: 54px;
  padding: 7px 10px;
  background: var(--bg-card);
  border: 0.5px solid rgba(201, 168, 108, 0.15);
  border-radius: var(--radius-pill);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-base);
}

.week-tab.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.week-tab__today {
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.week-tab.is-active .week-tab__today,
.week-tab.is-active .week-tab__dow {
  color: var(--bg-base);
}

.week-tab:not(.is-active) .week-tab__today {
  color: var(--gold);
}

.week-tab__md {
  display: block;
  font-size: 13px;
  color: var(--text-primary);
}

.week-tab__dow {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 1px;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

@media(min-width:600px) {
  .week-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(min-width:960px) {
  .week-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.week-card {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.week-card__img {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  overflow: hidden;
}

.week-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}

.week-card:hover .week-card__img img {
  transform: scale(1.04);
}

.week-card--off .week-card__img img {
  opacity: 0.25;
  filter: grayscale(1);
}

.week-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0) 100%);
  padding: 20px 8px 8px;
}

.week-card__time {
  font-size: 10px;
  color: var(--gold);
  margin-bottom: 2px;
  min-height: 14px;
}

.week-card__name {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}

.week-card__spec {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin-bottom: 1px;
}

.week-card__age {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.week-card__badge {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 9px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}

.week-card__badge--new {
  background: #e05c5c;
  color: #fff;
}

.week-card__badge--working {
  background: var(--gold);
  color: var(--bg-base);
}

/* ===== 料金システム ===== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media(min-width:640px) {
  .course-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.course-card {
  position: relative;
  background: var(--bg-card);
  border: 0.5px solid rgba(201, 168, 108, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  transition: border-color 0.2s;
}

.course-card:hover {
  border-color: var(--gold-border);
}

.course-card--popular {
  border-color: var(--gold-border);
  background: rgba(201, 168, 108, 0.06);
}

.course-card__popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-base);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.course-card__time {
  font-family: var(--font-deco);
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.course-card__time span {
  font-size: 14px;
  font-family: var(--font-base);
}

.course-card__name {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 6px 0 4px;
}

.course-card__price {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.course-card__price span {
  font-size: 12px;
  color: var(--text-muted);
}

.course-card__desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== クーポン＆タイムサービス ===== */
.ticket-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media(min-width:640px) {
  .ticket-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.ticket-col__label {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 0.5px solid var(--gold-border);
}

.ticket-empty {
  font-size: 12px;
  color: var(--text-muted);
  padding: 12px 0;
}

.ticket--coupon {
  margin-bottom: 10px;
}

.ticket__body {
  position: relative;
  background: var(--bg-card);
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 14px 16px 10px;
  overflow: visible;
}

.ticket__corner {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--bg-base);
  border-radius: 50%;
}

.ticket__corner--tl {
  top: -5px;
  left: -5px;
}

.ticket__corner--tr {
  top: -5px;
  right: -5px;
}

.ticket__corner--bl {
  bottom: -5px;
  left: -5px;
}

.ticket__corner--br {
  bottom: -5px;
  right: -5px;
}

.ticket__tag {
  display: inline-block;
  background: var(--gold-pale);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
  font-size: 10px;
  padding: 1px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 6px;
  width: fit-content;
}

.ticket__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.ticket__shop {
  font-size: 11px;
  color: var(--text-muted);
}

.ticket__divider-h {
  position: relative;
  display: flex;
  align-items: center;
  margin: 10px -16px;
  height: 1px;
}

.ticket__notch-h {
  width: 10px;
  height: 20px;
  background: var(--bg-base);
  border-radius: 0 10px 10px 0;
  flex-shrink: 0;
}

.ticket__notch-h--right {
  border-radius: 10px 0 0 10px;
}

.ticket__dashes {
  flex: 1;
  border-top: 1.5px dashed rgba(201, 168, 108, 0.3);
}

.ticket__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.ticket__expire-label {
  font-size: 10px;
  color: var(--text-muted);
}

.ticket__expire {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
}

.ticket__use-btn {
  background: var(--gold);
  color: var(--bg-base);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
}

.ticket--time {
  margin-bottom: 10px;
}

.ticket--ended {
  opacity: 0.4;
  filter: grayscale(1);
}

.ticket__body--time {
  display: flex;
  align-items: stretch;
  position: relative;
  background: var(--bg-card);
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 90px;
}

.ticket__time-img {
  width: 80px;
  flex-shrink: 0;
  overflow: hidden;
}

.ticket__time-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ticket__time-divider {
  width: 16px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-alt);
  position: relative;
}

.ticket__notch-v {
  width: 16px;
  height: 8px;
  background: var(--bg-base);
  flex-shrink: 0;
}

.ticket__notch-v--top {
  border-radius: 0 0 8px 8px;
}

.ticket__notch-v--bottom {
  border-radius: 8px 8px 0 0;
}

.ticket__dashes-v {
  flex: 1;
  border-left: 1.5px dashed rgba(201, 168, 108, 0.3);
  margin: 2px 0;
}

.ticket__time-info {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.ticket__therapist-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.ticket__course {
  font-size: 11px;
  color: var(--text-secondary);
}

.ticket__price {
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
}

.ticket__status {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.ticket__status--active {
  background: rgba(90, 173, 122, 0.18);
  color: #5aad7a;
  border: 0.5px solid rgba(90, 173, 122, 0.4);
}

.ticket__status--ended {
  background: rgba(90, 90, 90, 0.2);
  color: var(--text-muted);
}

/* ===== 写メ日記 ===== */
.diary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

@media(min-width:768px) {
  .diary-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }
}

.diary-cell {
  aspect-ratio: 1/1;
  display: block;
  overflow: hidden;
}

.diary-cell__img {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  transition: opacity 0.2s;
}

.diary-cell:hover .diary-cell__img {
  opacity: 0.8;
}

/* ===== 口コミ ===== */
.shop-review-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.shop-review-summary__score {
  font-family: var(--font-deco);
  font-size: 48px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.shop-review-summary__right {
  flex: 1;
}

.shop-review-summary__stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 8px;
}

.shop-review-summary__bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-review-bar {
  display: flex;
  align-items: center;
  gap: 6px;
}

.shop-review-bar__label {
  font-size: 11px;
  color: var(--text-muted);
  min-width: 10px;
}

.shop-review-bar__track {
  flex: 1;
  height: 4px;
  background: var(--bg-surface);
  border-radius: 2px;
  overflow: hidden;
}

.shop-review-bar__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
}

.review-list--vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.review-card {
  background: var(--bg-card);
  border: 0.5px solid rgba(201, 168, 108, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.review-card:hover {
  border-color: var(--gold-border);
}

.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.review-card__shop {
  color: var(--text-primary);
  font-size: 13px;
}

.review-card__area {
  color: var(--text-muted);
  font-size: 12px;
  margin-left: 4px;
}

.review-card__stars {
  display: flex;
  gap: 1px;
}

.star {
  color: var(--star-off);
  font-size: 13px;
}

.star--on {
  color: var(--star-on);
}

.review-card__text {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.review-card__date {
  color: var(--text-muted);
  font-size: 11px;
}

/* ===== Q&A ===== */
.shop-qa-list {
  display: flex;
  flex-direction: column;
}

.shop-qa-item {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
  padding: 14px 0;
}

.shop-qa-item:last-child {
  border-bottom: none;
}

.shop-qa-item__q,
.shop-qa-item__a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.shop-qa-item__q {
  margin-bottom: 8px;
}

.shop-qa-item__qlabel,
.shop-qa-item__alabel {
  font-family: var(--font-deco);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  flex-shrink: 0;
}

.shop-qa-item__qlabel {
  color: var(--gold);
}

.shop-qa-item__alabel {
  color: var(--text-muted);
}

.shop-qa-item__q span:last-child {
  font-size: 14px;
  color: var(--text-primary);
  padding-top: 2px;
}

.shop-qa-item__a {
  color: var(--text-secondary);
  font-size: 13px;
}

.shop-qa-item__a span:last-child {
  padding-top: 2px;
  line-height: 1.7;
}

/* ===== 店舗詳細テーブル ===== */
.shop-info-table {
  display: flex;
  flex-direction: column;
}

.shop-info-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
  font-size: 13px;
}

.shop-info-row:last-child {
  border-bottom: none;
}

.shop-info-label {
  color: var(--text-muted);
}

.shop-info-value {
  color: var(--text-primary);
  line-height: 1.6;
}

.shop-tag {
  display: inline-block;
  background: var(--gold-pale);
  border: 0.5px solid var(--gold-border);
  color: #e8d5a8;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin: 2px 3px 2px 0;
}

.shop-map-placeholder {
  width: 100%;
  height: 200px;
  background: var(--bg-card);
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-map-placeholder__inner {
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== 予約ブロック ===== */
.reserve-block {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 16px;
  background: var(--bg-card);
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-md);
}

.reserve-block--review {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reserve-block__catch {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  width: 100%;
}

.reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.reserve-btn:hover {
  opacity: 0.85;
}

.reserve-btn--tel {
  background: var(--gold);
  color: var(--bg-base);
}

.reserve-btn--line {
  background: #06C755;
  color: #fff;
}

.reserve-btn--form {
  background: var(--bg-surface);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
}

/* ===== サイドバー ===== */
.shop-layout__sidebar {
  display: none;
}

@media(min-width:960px) {
  .shop-layout__sidebar {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 50px);
    max-height: calc(100vh - var(--header-h) - 60px);
    overflow-y: auto;
    scrollbar-width: none;
  }

  .shop-layout__sidebar::-webkit-scrollbar {
    display: none;
  }
}

.shop-sidebar-box {
  background: var(--bg-card);
  border: 0.5px solid rgba(201, 168, 108, 0.12);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
}

.shop-sidebar-box--identity {
  border-color: var(--gold-border);
}

.shop-sidebar-box__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-sidebar-box__badge {
  background: rgba(90, 173, 122, 0.18);
  border: 0.5px solid rgba(90, 173, 122, 0.4);
  color: #5aad7a;
  font-size: 10px;
  padding: 1px 7px;
  border-radius: var(--radius-pill);
}

.sidebar-vacancy {
  margin-bottom: 12px;
}

.sidebar-vacancy__badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
}

.sidebar-vacancy__badge--now {
  background: rgba(90, 173, 122, 0.15);
  border: 0.5px solid rgba(90, 173, 122, 0.4);
  color: #5aad7a;
}

.sidebar-vacancy__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.sidebar-shop-identity {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.sidebar-shop-identity__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 0.5px solid var(--gold-border);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  font-family: var(--font-deco);
}

.sidebar-shop-identity__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.sidebar-shop-identity__area {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.sidebar-shop-identity__stars {
  color: var(--gold);
  font-size: 12px;
}

.sidebar-reserve {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.shop-reserve-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  transition: opacity 0.2s;
}

.shop-reserve-btn:hover {
  opacity: 0.8;
}

.shop-reserve-btn__icon {
  font-size: 16px;
}

.shop-reserve-btn--tel {
  background: var(--gold);
  color: var(--bg-base);
  font-weight: 500;
}

.shop-reserve-btn--line {
  background: #06C755;
  color: #fff;
  font-weight: 500;
}

.shop-reserve-btn--form {
  background: var(--bg-surface);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
}

.shop-sidebar-hours {
  padding-top: 12px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.shop-sidebar-hours__row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  padding: 3px 0;
}

.sidebar-sns {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.shop-sidebar-therapists {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-sidebar-therapist {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.shop-sidebar-therapist:hover {
  background: var(--bg-card-hover);
}

.shop-sidebar-therapist__img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(201, 168, 108, 0.3);
}

.shop-sidebar-therapist__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-sidebar-therapist__info {
  flex: 1;
}

.shop-sidebar-therapist__name {
  font-size: 13px;
  color: var(--text-primary);
}

.shop-sidebar-therapist__age {
  font-size: 11px;
  color: var(--text-muted);
}

.shop-sidebar-therapist__badge {
  font-size: 10px;
  background: rgba(201, 168, 108, 0.15);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.shop-sidebar-more {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s;
}

.shop-sidebar-more:hover {
  color: var(--gold);
}

.shop-reserve-btn--reserve-now {
  background: var(--gold);
  color: var(--bg-base);
  font-weight: 700;
  font-size: 15px;
  justify-content: center;
  margin-bottom: 8px;
}

/* ============================================================
   セラピスト個別ページ用CSS (style.cssに追記)
   ============================================================ */

/* ===== メインレイアウト ===== */
.therapist-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 0;
}

.therapist-layout__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media(min-width:960px) {
  .therapist-layout__inner {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}

/* ===== プロフィール上部 ===== */
.therapist-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

@media(min-width:640px) {
  .therapist-profile {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* 画像ギャラリー */
.therapist-gallery__main {
  aspect-ratio: 2/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: 8px;
  cursor: pointer;
}

.therapist-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.therapist-gallery__main:hover img {
  transform: scale(1.02);
}

.therapist-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.therapist-gallery__thumb {
  aspect-ratio: 2/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color 0.2s;
}

.therapist-gallery__thumb.is-active {
  border-color: var(--gold);
}

.therapist-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}

.therapist-gallery__thumb:hover img {
  opacity: 0.8;
}

/* プロフィール情報 */
.therapist-info__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.t-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.t-badge--working {
  background: rgba(90, 173, 122, 0.2);
  border: 0.5px solid rgba(90, 173, 122, 0.5);
  color: #5aad7a;
}

.t-badge--new {
  background: #e05c5c;
  color: #fff;
}

.t-badge--shop {
  background: var(--gold-pale);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
}

.therapist-info__name {
  font-family: var(--font-deco);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.therapist-info__shop {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.therapist-info__shop a {
  color: var(--gold);
}

/* スペック表 */
.therapist-spec {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.therapist-spec__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
  font-size: 13px;
}

.therapist-spec__row:last-child {
  border-bottom: none;
}

.therapist-spec__label {
  color: var(--text-muted);
}

.therapist-spec__value {
  color: var(--text-primary);
}

/* 特徴タグ */
.therapist-tags {
  margin-bottom: 16px;
}

.therapist-tags__label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.therapist-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.therapist-tag {
  display: inline-block;
  background: var(--gold-pale);
  border: 0.5px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* 予約ボタン */
.therapist-reserve {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
  width: 100%;
}

.reserve-btn:hover {
  opacity: 0.85;
}

.reserve-btn--tel {
  background: var(--gold);
  color: var(--bg-base);
}

.reserve-btn--line {
  background: #06C755;
  color: #fff;
}

.reserve-btn--form {
  background: var(--bg-surface);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
}

/* ===== セクション共通 ===== */
.therapist-section {
  padding: 28px 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.04);
}

.therapist-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.therapist-section__title {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.therapist-section__title::before {
  content: '';
  display: block;
  width: 2px;
  height: 16px;
  background: var(--gold);
  border-radius: 1px;
  flex-shrink: 0;
}

.therapist-section__more {
  font-size: 12px;
  color: var(--gold);
}

/* ===== セラピストコメント ===== */
.therapist-comment {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.therapist-comment__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold-border);
}

.therapist-comment__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapist-comment__bubble {
  flex: 1;
  background: var(--bg-card);
  border: 0.5px solid var(--gold-border);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 14px 16px;
  position: relative;
}

.therapist-comment__bubble::before {
  content: '';
  position: absolute;
  top: 16px;
  left: -8px;
  border: 8px solid transparent;
  border-right-color: var(--gold-border);
  border-left: none;
}

.therapist-comment__bubble::after {
  content: '';
  position: absolute;
  top: 17px;
  left: -6px;
  border: 7px solid transparent;
  border-right-color: var(--bg-card);
  border-left: none;
}

.therapist-comment__name {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.therapist-comment__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.therapist-comment__date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== お店からのメッセージ ===== */
.shop-message {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 0.5px solid rgba(201, 168, 108, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
}

.shop-message__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  border: 0.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-deco);
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}

.shop-message__shop-name {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.shop-message__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== 写メ日記（therapist用：縦長） ===== */
.therapist-section .diary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

@media(min-width:640px) {
  .therapist-section .diary-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }
}

.diary-cell {
  aspect-ratio: 2/3;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.diary-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s, transform 0.3s;
}

.diary-cell:hover img {
  opacity: 0.85;
  transform: scale(1.03);
}

/* ===== シフト・予約 ===== */
.shift-week-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.shift-week-tabs::-webkit-scrollbar {
  display: none;
}

.shift-week-tab {
  flex-shrink: 0;
  min-width: 54px;
  padding: 7px 10px;
  background: var(--bg-card);
  border: 0.5px solid rgba(201, 168, 108, 0.15);
  border-radius: var(--radius-pill);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-base);
}

.shift-week-tab.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.shift-week-tab__today {
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.shift-week-tab.is-active .shift-week-tab__today,
.shift-week-tab.is-active .shift-week-tab__dow {
  color: var(--bg-base);
}

.shift-week-tab:not(.is-active) .shift-week-tab__today {
  color: var(--gold);
}

.shift-week-tab__md {
  display: block;
  font-size: 13px;
  color: var(--text-primary);
}

.shift-week-tab__dow {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 1px;
}

.shift-status {
  padding: 20px;
  background: var(--bg-card);
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-md);
  text-align: center;
}

.shift-status--working {
  border-color: rgba(90, 173, 122, 0.5);
}

.shift-status__icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.shift-status__time {
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: var(--font-deco);
}

.shift-status__label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.shift-status--off .shift-status__time {
  font-size: 16px;
  color: var(--text-muted);
}

.shift-reserve-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 300px;
  margin: 0 auto;
}

/* ===== 他のセラピスト ===== */
.other-therapists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media(min-width:640px) {
  .other-therapists-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.other-therapist-card {
  display: block;
  text-align: center;
}

.other-therapist-card__img {
  aspect-ratio: 2/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: 8px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s;
}

.other-therapist-card:hover .other-therapist-card__img {
  border-color: var(--gold-border);
}

.other-therapist-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-therapist-card__name {
  font-size: 12px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.other-therapist-card__age {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== サイドバー ===== */
.therapist-layout__sidebar {
  display: none;
}

@media(min-width:960px) {
  .therapist-layout__sidebar {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 16px);
    max-height: calc(100vh - var(--header-h) - 32px);
    overflow-y: auto;
    scrollbar-width: none;
  }

  .therapist-layout__sidebar::-webkit-scrollbar {
    display: none;
  }
}

/* ===== SP固定予約バー ===== */
.sp-reserve-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--bg-surface);
  border-top: 0.5px solid var(--gold-border);
  z-index: 80;
  padding: 0 16px;
  gap: 10px;
  align-items: center;
}

@media(min-width:960px) {
  .sp-reserve-bar {
    display: none;
  }
}

.sp-reserve-bar__fav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 64px;
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 10px;
}

.sp-reserve-bar__fav-icon {
  font-size: 20px;
  line-height: 1;
}

.sp-reserve-bar__fav.is-active .sp-reserve-bar__fav-icon {
  color: #e05c5c;
}

.sp-reserve-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg-base);
  border-radius: var(--radius-pill);
  height: 40px;
  font-size: 14px;
  font-weight: 700;
}

/* ============================================================
   サブページ共通 (course/review/diary等)
   ============================================================ */

/* 店舗ミニヘッダー（固定） */
.subpage-shop-header {
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  background: var(--bg-surface);
  border-bottom: 0.5px solid var(--gold-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.subpage-shop-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.subpage-shop-header__logo {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 0.5px solid var(--gold-border);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-deco);
  font-size: 16px;
  color: var(--gold);
}

.subpage-shop-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-shop-header__info {
  flex: 1;
  min-width: 0;
}

.subpage-shop-header__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}

.subpage-shop-header__tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.subpage-shop-header__tabs::-webkit-scrollbar {
  display: none;
}

.subpage-tab {
  flex-shrink: 0;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.subpage-tab:hover {
  color: var(--text-secondary);
}

.subpage-tab.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* 2カラムレイアウト */
.subpage-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.subpage-layout__inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .subpage-layout__inner {
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
  }
}

/* サイドバー（固定） */
.subpage-layout__sidebar {
  display: none;
}

@media (min-width: 960px) {
  .subpage-layout__sidebar {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 72px);
    /* ヘッダー+subpage-shop-header分 */
    max-height: calc(100vh - var(--header-h) - 88px);
    overflow-y: auto;
    scrollbar-width: none;
  }

  .subpage-layout__sidebar::-webkit-scrollbar {
    display: none;
  }
}

/* サイドナビ */
.subpage-sidenav {
  display: flex;
  flex-direction: column;
}

.subpage-sidenav__item {
  padding: 10px 8px;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s, background 0.2s;
  border-radius: var(--radius-sm);
}

.subpage-sidenav__item:last-child {
  border-bottom: none;
}

.subpage-sidenav__item:hover {
  color: var(--gold);
  background: var(--gold-pale);
}

/* オプションリスト */
.option-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
  gap: 12px;
}

.option-item:last-child {
  border-bottom: none;
}

.option-item__name {
  font-size: 14px;
  color: var(--text-primary);
  flex: 1;
}

.option-item__price {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}

.option-item__desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* フルサイズコースグリッド */
.course-grid--full {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .course-grid--full {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .course-grid--full {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 日記グリッド（フル） */
.diary-grid--full {
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

@media (min-width: 640px) {
  .diary-grid--full {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }
}

@media (min-width: 960px) {
  .diary-grid--full {
    grid-template-columns: repeat(5, 1fr);
  }
}

.diary-cell__info {
  padding: 6px 8px;
  background: var(--bg-card);
  border-top: 0.5px solid rgba(255, 255, 255, 0.04);
}

.diary-cell__therapist {
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 2px;
}

.diary-cell__title {
  font-size: 12px;
  color: var(--text-primary);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.diary-cell__date {
  font-size: 10px;
  color: var(--text-muted);
}

/* 日記絞り込みタブ */
.diary-filter-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.diary-filter-tabs::-webkit-scrollbar {
  display: none;
}

.diary-filter-tab {
  flex-shrink: 0;
  padding: 5px 14px;
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.diary-filter-tab:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.diary-filter-tab.is-active {
  background: var(--gold);
  color: var(--bg-base);
  border-color: var(--gold);
}

/* ページネーション */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pagination__btn {
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13px;
  padding: 0 10px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.pagination__btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-pale);
}

.pagination__btn--active {
  background: var(--gold);
  color: var(--bg-base);
  border-color: var(--gold);
  font-weight: 500;
}

/* 空メッセージ */
.empty-msg {
  color: var(--text-muted);
  font-size: 13px;
  padding: 20px 0;
}

/* 口コミバーカウント */
.shop-review-bar__count {
  font-size: 11px;
  color: var(--text-muted);
  min-width: 20px;
  text-align: right;
}

/* ============================================================
   コースページ カテゴリリスト型 (style.cssに追記)
   ============================================================ */

/* カテゴリブロック */
.course-category {
  margin-bottom: 24px;
}

.course-category:last-child {
  margin-bottom: 0;
}

/* カテゴリ名見出し */
.course-category__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  padding: 6px 0 8px;
  margin-bottom: 2px;
  border-bottom: 0.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-category__name::before {
  content: '';
  display: block;
  width: 2px;
  height: 14px;
  background: var(--gold);
  border-radius: 1px;
  flex-shrink: 0;
}

/* コースリスト */
.course-list {
  display: flex;
  flex-direction: column;
}

/* コース1行 */
.course-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 8px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
  gap: 12px;
  transition: background 0.15s;
}

.course-list__item:last-child {
  border-bottom: none;
}

.course-list__item:hover {
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
}

/* 通常型：時間表示 */
.course-list__duration {
  font-family: var(--font-deco);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
  min-width: 80px;
}

.course-list__min {
  font-family: var(--font-base);
  font-size: 13px;
  color: var(--text-secondary);
  margin-left: 2px;
}

/* オプション型：ラベル表示 */
.course-list__label {
  font-size: 14px;
  color: var(--text-primary);
  flex: 1;
}

/* 料金 */
.course-list__price {
  font-size: 17px;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.course-list__from {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 1px;
}

.week-card__badge--pickup {
  background: var(--gold);
  color: var(--bg-base);
}


/* PRバナーコントロール---------------- */
.prbanner-slot {
    position: relative;
    width: 100%;
    margin: 1.6rem auto;
}

/* 単一表示（通常フロー） */
.prbanner-slot__item {
    width: 100%;
}

.prbanner__link,
.prbanner__pic,
.prbanner__img {
    display: block;
    width: 100%;
    height: auto;          /* 登録サイズの比率そのまま（正方形/横長OK） */
}

/* 複数枚：重ねてフェード切り替え */
.prbanner-slot.is-multi {
    /* 1枚目を基準に高さを確保（重ねてもレイアウトが潰れないように） */
    display: grid;
}
.prbanner-slot.is-multi .prbanner-slot__item {
    grid-area: 1 / 1;       /* 全アイテムを同じセルに重ねる */
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}
.prbanner-slot.is-multi .prbanner-slot__item.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* PC/SP出し分けは <picture> の <source media> が担当。
   画像が無い側は表示されない（renderHtmlでimg src自動選択）
   */

/* トップページ中段と下段 */
/* スロットルtop_1 top_2*/
   .banner_pr_top{
      width: 760px;
      margin: 0 auto;
   }
  /* ドロワーメニュー下段 */
  /* スロットルdrawer_1*/
  .banner_pr_drawer{
    width: 100%;
    max-height: 250px;
    padding: 0 5px;
  }
  /* メンバー管理画面の右バナー */
  /* スロットルmember_slide*/
    .ma-prbanner {
      padding-top: 24px;
        display: flex;
        flex-direction: column;   /* PC: 縦並び */
        gap: 12px;
    }
    .ma-prbanner__item {
        width: 100%;
    }
    .ma-prbanner__item .prbanner__img,
    .ma-prbanner__item img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 8px;
    }


  @media (max-width: 767.98px) {
    .banner_pr_top{
      width: 100%;
      padding: 0 10px;
   }
  .banner_pr_drawer{
      width: 100%;
      max-height: 250px;
    }
    .ma-prbanner {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;          /* Firefox */
    }
    .ma-prbanner::-webkit-scrollbar {
        display: none;                  /* Chrome/Safari */
    }
    .ma-prbanner__item {
        flex: 0 0 85%;                  /* 次のバナーをチラ見せ */
        scroll-snap-align: start;
    }
}

/* 共通ナビ 未読バッジ（メッセージ）: PCサイド・SPボトム共通（全ページ共通のためassetsに配置） */
.mp-nav__icon,
.mp-bottom-nav__icon {
  position: relative;
}
.mp-nav-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: #e0483d;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  box-sizing: border-box;
}


/* 404ページ */

.static-page{
    max-width: 1200px;
    margin: 40px auto;
}
.static-page__title{
  margin-bottom: 10px;
}

.static-page p{
  margin-bottom: 30px;
}

.static-page h2{
  margin-bottom: 10px;
}
  @media (max-width: 767.98px) {
   .static-page{
    width: 100%;
    padding: 10px;
    text-align: left;
   }
   .static-page__title{
    font-size: 1.6rem;
  }
  .static-page p{
   font-size: 1.4rem;
  }
  .static-page h2{
   font-size: 1.6rem;
  }
}
/* ============================================================
   お気に入り星（共通） セラピストカードとお店カードで使用
   ------------------------------------------------------------
   /assets/style.css の末尾に追記する。
   星は全ページ・全カードで同じものを使うので、
   ここ1箇所だけに定義する（カード側のCSSには書かない）。

   マークアップ: templates_parts/fav-star.php
   挙動        : /assets/shop-fav.js

   置き場所の前提: カードのルート要素が position: relative であること。
   .ap-thcard / .ap-shcard はどちらも relative なのでそのまま乗る。
   ============================================================ */
.ap-fav {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    padding: 0;
    border: 1px solid var(--shop-gold-dim);
    border-radius: 50% !important;
    background: rgba(15, 15, 20, .72);
    cursor: pointer;
    overflow: visible;
    transition: border-color .2s, background .2s;
}

.ap-fav i {
    color: var(--shop-gold);
    font-size: 1.7rem;
    line-height: 1;
    transition: color .2s, transform .35s cubic-bezier(.2, 1.6, .4, 1);
}

@media (hover: hover) {

    .ap-fav:hover {
        border-color: var(--shop-gold);
        background: rgba(15, 15, 20, .88);
    }
}

/* 登録済み: 金地に黒抜き */
.ap-fav.is-on {
    border-color: var(--shop-gold);
    background: linear-gradient(135deg, #c9a86c 0%, #e2c98a 50%, #c9a86c 100%);
}

.ap-fav.is-on i {
    color: #1a1611;
}

/* 通信中は二度押しさせない */
.ap-fav[data-busy="1"] {
    opacity: .6;
    pointer-events: none;
}

/* 押した瞬間に一度だけ弾ませる */
/* 押した瞬間に一度だけ弾ませる。
   リングは ::after で出す。星本体とは別の要素にすることで、
   星が縮んで戻るあいだもリングだけ広がり続けられる。 */
.ap-fav::after {
    content: "";
    position: absolute;
    inset: -3px;
    border: 2px solid var(--shop-gold);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.ap-fav.is-pop {
    animation: apFavPop .4s cubic-bezier(.2, 1.4, .35, 1);
}

.ap-fav.is-pop i {
    transform: scale(1.45) rotate(-8deg);
}

.ap-fav.is-pop::after {
    animation: apFavRing .6s ease-out;
}

@keyframes apFavPop {

    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 168, 108, .5);
    }

    45% {
        transform: scale(1.12);
        box-shadow: 0 0 12px 3px rgba(201, 168, 108, .45);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 168, 108, 0);
    }
}

@keyframes apFavRing {

    0% {
        opacity: .9;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(2.1);
    }
}

/* お店詳細のハート（.shop-actions__btn--fav など）は
   自前のボタンデザインを持っているので、この星は使わない。
   状態クラス(is-on)だけ共通で付くようにしてある。 */


/* ------------------------------------------------------------
   お気に入りを外したカードをその場で消す
   ------------------------------------------------------------
   カード側に data-fav-card="shop-12" / "therapist-34" が付いている
   ものだけが対象。お店カード・セラピストカードで共通。
   時間は shop-fav.js の REMOVE_MS と合わせること。
   ------------------------------------------------------------ */
[data-fav-card].is-removing {
    animation: apFavRemove .4s ease forwards;
    pointer-events: none;
}

[data-fav-card].is-removed {
    display: none;
}

@keyframes apFavRemove {

    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(.92);
    }
}

@media (max-width: 767.98px) {

    .ap-fav {
        width: 3rem;
        height: 3rem;
    }

    .ap-fav i {
        font-size: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ap-fav.is-pop,
    .ap-fav.is-pop i,
    [data-fav-card].is-removing {
        animation: none;
        transform: none;
    }
}