/*
Theme Name: Mivue
Description: ビジュアルファーストの店舗向けWordPressテーマ。私の視点で魅せる場所。
Version: 1.0
Author: CIT
Text Domain: mivue
*/

/* ===== 変数 ===== */
:root {
  --gold: #c9a96e;
  --gold-light: #e8b86d;
  --dark: #1a1a1a;
  --dark-2: #2d2d2d;
  --gray-bg: #fafaf8;
  --border: #efefec;
  --text: #333;
  --muted: #999;
  --max-w: 480px;
}

/* ===== リセット ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Noto Sans JP', sans-serif;
  background: var(--gray-bg);
  color: var(--text);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===== ヘッダー ===== */
.mivue-header {
  background: #fff;
  padding: 12px 16px 10px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.header-left { display: flex; align-items: center; gap: 8px; }
.store-logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--dark-2), #555);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; overflow: hidden; color: #fff; font-weight: 800;
}
.store-logo img { width: 100%; height: 100%; object-fit: cover; }
.store-name { font-size: 15px; font-weight: 800; color: var(--dark); letter-spacing: -0.3px; }
.store-name small { display: block; font-size: 8px; font-weight: 400; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-right svg { width: 21px; height: 21px; fill: none; stroke: #333; stroke-width: 1.8; stroke-linecap: round; }
.hamburger-btn { background: none; border: none; padding: 2px; display: flex; flex-direction: column; gap: 5px; }
.hamburger-btn span { display: block; width: 20px; height: 2px; background: #333; border-radius: 2px; }

/* ===== ドロワー ===== */
.drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 100; backdrop-filter: blur(2px); }
.drawer-overlay.open { display: block; }
.drawer {
  position: fixed; top: 0; right: 0; width: 260px; max-width: 80vw; height: 100%;
  background: #fff; z-index: 101; transform: translateX(100%);
  transition: transform 0.28s ease; display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 16px 16px 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.drawer-store { display: flex; align-items: center; gap: 8px; }
.drawer-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--dark-2), #555);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; overflow: hidden; color: #fff; font-weight: 800;
}
.drawer-icon img { width: 100%; height: 100%; object-fit: cover; }
.drawer-store-name { font-size: 13px; font-weight: 800; color: var(--dark); }
.drawer-close { background: none; border: none; font-size: 18px; color: #aaa; line-height: 1; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 0; }
.drawer-section { padding: 14px 20px 6px; font-size: 9px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.drawer-item { display: flex; align-items: center; gap: 12px; padding: 12px 20px; font-size: 13px; font-weight: 500; color: #333; }
.drawer-item svg { width: 18px; height: 18px; fill: none; stroke: #888; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.drawer-divider { height: 1px; background: #f0f0ec; margin: 8px 20px; }
.drawer-foot { padding: 16px 20px; border-top: 1px solid var(--border); }
.drawer-reserve {
  display: block; width: 100%; background: var(--dark); color: #fff;
  border: none; border-radius: 8px; padding: 12px;
  font-size: 13px; font-weight: 700; text-align: center;
}

/* ===== ヒーロー ===== */
.hero { position: relative; height: 240px; background: linear-gradient(160deg, var(--dark-2), #555); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.65) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 24px; text-align: center;
}
.hero-catch { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -0.5px; line-height: 1.25; margin-bottom: 6px; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero-catch em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 10px; color: rgba(255,255,255,0.7); letter-spacing: 0.8px; }

/* ===== 今日の状態バー ===== */
.today-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 10px 16px; display: flex; align-items: center; gap: 8px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.status-dot.open { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); animation: pdot 2s ease infinite; }
.status-dot.closed { background: #ef4444; }
@keyframes pdot { 0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); } 50% { box-shadow: 0 0 0 5px rgba(34,197,94,0.07); } }
.today-status-text { font-size: 12px; font-weight: 700; color: var(--dark); flex-shrink: 0; }
.today-hours { font-size: 11px; color: var(--muted); flex-shrink: 0; }
.today-sep { width: 1px; height: 14px; background: #e8e8e4; flex-shrink: 0; margin: 0 2px; }
.today-msg { font-size: 11px; color: #555; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.today-msg strong { color: var(--dark); font-weight: 700; }

/* ===== タブバー ===== */
.tab-bar {
  display: flex; background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: 57px; z-index: 40;
}
.tab-btn {
  flex: 1; background: none; border: none; padding: 13px 0 11px;
  font-size: 13px; font-weight: 600; color: #bbb;
  position: relative; letter-spacing: 0.2px; transition: color 0.15s;
}
.tab-btn::after {
  content: ''; position: absolute; bottom: -1px; left: 20%; right: 20%;
  height: 2px; background: var(--dark); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.2s ease;
}
.tab-btn.active { color: var(--dark); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-badge {
  display: inline-block; background: #f0f0ec; color: #aaa;
  font-size: 9px; font-weight: 700; border-radius: 7px;
  padding: 1px 6px; margin-left: 5px; vertical-align: middle;
}
.tab-btn.active .tab-badge { background: var(--dark); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== フィルターチップ ===== */
.filter-wrap { padding: 12px 16px 10px; background: var(--gray-bg); border-bottom: 1px solid var(--border); }
.filter-scroll { display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0; background: transparent; border: 1px solid #d8d8d8;
  border-radius: 20px; padding: 5px 14px; font-size: 11px; font-weight: 400;
  color: #888; white-space: nowrap;
}
.filter-chip.active { background: var(--dark); border-color: var(--dark); color: #fff; font-weight: 600; }

/* ===== ギャラリーグリッド ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.gallery-item { aspect-ratio: 1; position: relative; overflow: hidden; cursor: pointer; background: #ddd; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.2s; }
.gallery-item:active img { transform: scale(0.97); }
.gallery-no-image { width: 100%; height: 100%; background: linear-gradient(160deg, #667eea, #764ba2); }
.gallery-new { position: absolute; top: 7px; right: 7px; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 2px rgba(201,169,110,0.25); }

/* ===== ひとことフィード ===== */
.feed-list { padding: 0 16px; }
.feed-post { padding: 16px 0; border-bottom: 1px solid #f0f0ec; display: flex; gap: 11px; }
.feed-post:last-child { border-bottom: none; }
.feed-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; overflow: hidden; background: linear-gradient(135deg, #667eea, #764ba2); }
.feed-avatar img { width: 100%; height: 100%; object-fit: cover; }
.feed-body { flex: 1; min-width: 0; }
.feed-header { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; flex-wrap: wrap; }
.feed-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.feed-role { font-size: 10px; color: #aaa; }
.feed-time { font-size: 10px; color: #ccc; margin-left: auto; flex-shrink: 0; }
.feed-text { font-size: 13px; color: #2a2a2a; line-height: 1.7; margin-bottom: 10px; }
.feed-thumb { width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; margin-bottom: 10px; }
.feed-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ===== フローティングCTA ===== */
.floating-cta { position: sticky; bottom: 68px; display: flex; justify-content: flex-end; padding: 0 16px 8px; pointer-events: none; z-index: 40; }
.floating-btn {
  pointer-events: all; background: var(--dark); color: #fff;
  border: none; border-radius: 50px; padding: 12px 18px;
  font-size: 13px; font-weight: 700; box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  display: flex; align-items: center; gap: 6px;
}
.floating-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pls 1.5s ease infinite; }
@keyframes pls { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.3);} }

/* ===== 下部ナビ ===== */
.bottom-nav {
  background: #fff; border-top: 1px solid var(--border);
  display: flex; height: 60px;
  position: sticky; bottom: 0; z-index: 50;
}
.nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: #bbb; font-size: 9px; }
.nav-item.active { color: var(--dark); }
.nav-item svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-center-wrap { width: 44px; height: 44px; background: var(--dark); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-top: -8px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.nav-center-wrap svg { stroke: #fff; }

/* ===== ボトムシート ===== */
.sheet-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200; backdrop-filter: blur(4px); }
.sheet-overlay.open { display: block; }
.sheet {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--max-w); background: #fff;
  border-radius: 20px 20px 0 0; max-height: 88vh;
  display: none; flex-direction: column; overflow: hidden;
  animation: sheetIn 0.25s ease; z-index: 201;
}
.sheet.open { display: flex; }
@keyframes sheetIn { from{transform:translateX(-50%) translateY(40px);opacity:0;} to{transform:translateX(-50%) translateY(0);opacity:1;} }
.sheet-handle-bar { padding: 12px 0 0; display: flex; justify-content: center; flex-shrink: 0; }
.sheet-handle { width: 36px; height: 4px; background: #ddd; border-radius: 2px; }
.sheet-photo { width: 100%; aspect-ratio: 1; flex-shrink: 0; position: relative; background: #eee; }
.sheet-photo img { width: 100%; height: 100%; object-fit: cover; }
.sheet-close { position: absolute; top: 12px; left: 12px; width: 30px; height: 30px; background: rgba(0,0,0,0.45); border: none; border-radius: 50%; color: #fff; font-size: 14px; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); z-index: 1; }
.sheet-body { padding: 20px 20px 40px; overflow-y: auto; flex: 1; }
.sheet-cat { font-size: 9px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.sheet-title { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 14px; }
.sheet-story { font-size: 13px; color: #555; line-height: 1.85; margin-bottom: 18px; }
.sheet-staff { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; padding: 10px 12px; background: var(--gray-bg); border-radius: 9px; }
.sheet-staff-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,#667eea,#764ba2); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; overflow: hidden; }
.sheet-staff-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sheet-staff-name { font-size: 12px; font-weight: 700; }
.sheet-staff-role { font-size: 10px; color: #aaa; }
.sheet-divider { height: 1px; background: #f0f0ec; margin-bottom: 16px; }
.sheet-price-label { font-size: 9px; font-weight: 700; color: #bbb; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.sheet-price-list { list-style: none; margin-bottom: 20px; }
.sheet-price-item { display: flex; justify-content: space-between; padding: 8px 0; font-size: 12px; color: #444; border-bottom: 1px solid #f5f5f2; }
.sheet-price-item:last-child { border-bottom: none; }
.sheet-price-val { font-weight: 700; color: var(--dark); }
.sheet-btn-reserve {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; background: var(--dark); color: #fff;
  border: none; border-radius: 10px; padding: 14px;
  font-size: 14px; font-weight: 700; margin-bottom: 8px; text-align: center;
}
.btn-pulse { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pls 1.5s ease infinite; }
.sheet-btn-row { display: flex; gap: 8px; }
.sheet-btn-sub { flex: 1; background: #f5f5f2; border: none; border-radius: 8px; padding: 11px; font-size: 12px; font-weight: 600; color: #444; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ===== ハイライトパネル ===== */
.hl-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200; backdrop-filter: blur(4px); }
.hl-overlay.open { display: block; }
.hl-panel {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--max-w); background: #fff;
  border-radius: 20px 20px 0 0; max-height: 75vh;
  display: none; flex-direction: column; overflow: hidden;
  animation: sheetIn 0.25s ease; z-index: 201;
}
.hl-panel.open { display: flex; }
.hl-panel-handle-bar { padding: 12px 0 0; display: flex; justify-content: center; flex-shrink: 0; }
.hl-panel-handle { width: 36px; height: 4px; background: #ddd; border-radius: 2px; }
.hl-panel-head { padding: 10px 16px 12px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.hl-panel-title { font-size: 15px; font-weight: 800; color: var(--dark); }
.hl-panel-meta { font-size: 10px; color: #aaa; margin-top: 2px; }
.hl-panel-close { background: none; border: none; font-size: 20px; color: #ccc; line-height: 1; padding: 4px; }
.hl-panel-body { overflow-y: auto; padding: 14px 16px 32px; }
.hl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.hl-card { border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 9/16; box-shadow: 0 2px 10px rgba(0,0,0,0.12); background: #ddd; cursor: pointer; }
.hl-card img { width: 100%; height: 100%; object-fit: cover; }
.hl-card-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 10px; }
.hl-card-badge { font-size: 8px; font-weight: 700; color: #fff; background: var(--gold); border-radius: 6px; padding: 2px 7px; align-self: flex-start; margin-bottom: 5px; }
.hl-card-title { font-size: 11px; font-weight: 700; color: #fff; line-height: 1.4; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }

/* ===== グローバルナビ（デスクトップ専用） ===== */
.global-nav { display: none; }

/* ===== フッター ===== */
.mivue-footer { display: none; }

/* ===== デスクトップ（768px以上） ===== */
@media (min-width: 768px) {
  body { max-width: 100%; }

  /* モバイルヘッダー非表示 → グローバルナビ表示 */
  .mivue-header { display: none; }
  .drawer-overlay, .drawer { display: none !important; }

  .global-nav {
    display: block;
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 200;
  }
  .global-nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    height: 64px; display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; }
  .nav-logo-icon {
    width: 38px; height: 38px; background: linear-gradient(135deg, var(--dark-2), #555);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; overflow: hidden; color: #fff; font-weight: 800;
  }
  .nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
  .nav-logo-text { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--dark); }
  .nav-logo-text small { display: block; font-size: 9px; font-weight: 400; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a { font-size: 13px; color: #555; text-decoration: none; font-weight: 500; }
  .nav-links a:hover { color: var(--dark); }
  .nav-cta {
    background: var(--dark); color: #fff; border: none; border-radius: 8px;
    padding: 10px 20px; font-size: 13px; font-weight: 700;
    display: flex; align-items: center; gap: 6px; text-decoration: none;
  }
  .nav-cta-accent { color: var(--gold); }

  /* ヒーロー */
  .hero { height: 80vh; }
  .hero-catch { font-size: 56px; letter-spacing: -1.5px; }
  .hero-sub { font-size: 14px; margin-bottom: 40px; }

  /* 今日の状態バー */
  .today-bar { padding: 12px 32px; gap: 24px; }

  /* コンテンツゾーン（front-page.phpのラッパー） */
  .content-zone {
    max-width: 1200px; margin: 0 auto; padding: 32px 32px 80px;
  }

  /* タブバー */
  .tab-bar {
    position: static; border-bottom: 1px solid var(--border);
    padding: 0; background: transparent; margin-bottom: 32px;
    max-width: 1200px; margin: 0 auto 32px;
  }
  .tab-btn {
    padding: 0 4px 14px; margin-right: 32px; flex: none;
    font-size: 15px;
  }

  /* フィルター */
  .filter-wrap { padding: 0 0 24px; background: transparent; border: none; }
  .filter-scroll { flex-wrap: wrap; overflow: visible; }
  .filter-chip { padding: 7px 18px; font-size: 13px; }

  /* ギャラリー */
  .gallery-grid { grid-template-columns: repeat(5, 1fr); gap: 3px; }
  .gallery-item img { transition: transform 0.4s ease; }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-item:active img { transform: scale(1.05); }

  /* ひとことフィード */
  .feed-list { padding: 0; max-width: 680px; }
  .feed-text { font-size: 15px; }

  /* フローティングCTA・ボトムナビ非表示 */
  .floating-cta { display: none; }
  .bottom-nav { display: none; }

  /* ハイライトパネル */
  .hl-panel { max-width: 520px; }

  /* フッター */
  .mivue-footer {
    display: block;
    background: var(--dark);
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 40px 32px;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
  }
  .footer-logo { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 8px; }
  .footer-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.8; }
  .footer-col-title { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; font-size: 12px; color: rgba(255,255,255,0.5); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 32px; max-width: 1200px; margin: 0 auto;
    font-size: 11px; color: rgba(255,255,255,0.2);
    display: flex; justify-content: space-between;
  }

  /* デスクトップモーダル */
  .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 300; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
  .modal-overlay.open { display: flex; }
  .modal {
    background: #fff; border-radius: 4px;
    width: 900px; max-width: 92vw; max-height: 90vh;
    display: grid; grid-template-columns: 1.1fr 1fr;
    overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    animation: modalIn 0.22s ease;
  }
  @keyframes modalIn { from{transform:scale(0.96) translateY(12px);opacity:0;} to{transform:scale(1) translateY(0);opacity:1;} }
  .modal-photo { position: relative; min-height: 540px; background: #eee; }
  .modal-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
  .modal-close {
    position: absolute; top: 14px; left: 14px; width: 32px; height: 32px;
    background: rgba(0,0,0,0.45); border: none; border-radius: 50%;
    color: #fff; font-size: 15px; cursor: pointer; display: flex;
    align-items: center; justify-content: center; backdrop-filter: blur(4px); z-index: 1;
  }
  .modal-detail { padding: 40px 36px 32px; display: flex; flex-direction: column; overflow-y: auto; }
  .modal-store { font-size: 10px; color: #bbb; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
  .modal-cat { font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
  .modal-title { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.25; margin-bottom: 20px; }
  .modal-story { font-size: 14px; color: #555; line-height: 1.9; margin-bottom: 28px; }
  .modal-staff { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
  .modal-staff-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#667eea,#764ba2); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; overflow: hidden; }
  .modal-staff-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .modal-staff-name { font-size: 13px; font-weight: 700; }
  .modal-staff-role { font-size: 11px; color: #aaa; margin-top: 1px; }
  .modal-divider { height: 1px; background: #f0f0ec; margin-bottom: 24px; }
  .modal-price-label { font-size: 10px; font-weight: 700; color: #bbb; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
  .modal-price-list { list-style: none; margin-bottom: 28px; }
  .modal-price-item { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; border-bottom: 1px solid #f5f5f2; color: #444; }
  .modal-price-item:last-child { border-bottom: none; }
  .modal-price-val { font-weight: 700; color: var(--dark); }
  .modal-cta { margin-top: auto; }
  .modal-btn-reserve {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; background: var(--dark); color: #fff; border: none;
    border-radius: 10px; padding: 15px; font-size: 14px; font-weight: 700;
    cursor: pointer; margin-bottom: 8px; text-decoration: none; text-align: center;
  }
  .modal-btn-row { display: flex; gap: 8px; }
  .modal-btn-sub { flex: 1; background: #f5f5f2; border: none; border-radius: 8px; padding: 11px; font-size: 12px; font-weight: 600; color: #444; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px; text-decoration: none; }

  /* bottom sheetはデスクトップで非表示 */
  .sheet-overlay, .sheet { display: none !important; }
}

/* ===== カルーセル ===== */
.car-wrap {
  position: relative; width: 100%; height: 100%; overflow: hidden;
}
.car-track {
  display: flex; height: 100%;
  transition: transform .3s ease;
  will-change: transform;
}
.car-track img {
  min-width: 100%; height: 100%; object-fit: cover; flex-shrink: 0;
}
.car-prev, .car-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45); color: #fff; border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 3;
}
.car-prev { left: 10px; }
.car-next { right: 10px; }
.car-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 3;
}
.car-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: background .2s;
}
.car-dot.active { background: #fff; }
