/* カーショップわらび 仮ページ共通スタイル
   リッチメニュー画像と同じ配色（濃紺 × アンバー）で揃えている。
   LINEのアプリ内ブラウザで開かれる前提のモバイルファースト。 */

:root {
  --bg-top: #1B4166;
  --bg-mid: #102b45;
  --bg-bottom: #0A1C2E;
  --card: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.14);
  --text: #E8EEF4;
  --muted: #9FB3C8;
  --accent: #FFB13B;
  --sat: #7FB8FF;
  --sun: #FF8A8A;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 0 48px;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 55%, var(--bg-bottom) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Noto Sans JP', 'Yu Gothic UI', Meiryo, sans-serif;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

.wrap { max-width: 560px; margin: 0 auto; padding: 0 16px; }

header {
  padding: 28px 0 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.shop { font-size: 13px; letter-spacing: 3px; color: var(--accent); font-weight: 600; }
h1 { font-size: 24px; margin: 6px 0 4px; font-weight: 700; }
.en { font-size: 11px; letter-spacing: 4px; color: var(--muted); }

section { margin-bottom: 28px; }
h2 {
  font-size: 15px;
  margin: 0 0 12px;
  padding-left: 10px;
  border-left: 3px solid var(--accent);
  font-weight: 700;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.note { font-size: 13px; color: var(--muted); margin: 6px 0 0; }
.note li { margin-bottom: 4px; }
ul.note { padding-left: 1.2em; }

/* 横に溢れる表は、ページ全体ではなく表の中だけをスクロールさせる */
.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table { border-collapse: collapse; width: 100%; font-size: 14px; }
th, td { padding: 10px 8px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--muted); font-weight: 600; font-size: 12px; white-space: nowrap; }
td.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
td.price { text-align: right; white-space: nowrap; font-weight: 700; font-variant-numeric: tabular-nums; }

.rate {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 177, 59, 0.1);
  border: 1px solid rgba(255, 177, 59, 0.35);
  border-radius: 12px;
}
.rate .label { font-size: 13px; color: var(--muted); }
.rate .value { font-size: 28px; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.rate .unit { font-size: 13px; color: var(--accent); }

footer {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
.demo {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px dashed rgba(255, 177, 59, 0.5);
  border-radius: 8px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.6;
}
