/* ================================
   D.HACK 週刊フードデリバリー — Light Theme
   ================================ */

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

:root {
  --orange:       #f97316;
  --orange-light: #fff7ed;
  --orange-dark:  #ea6c00;
  --green:        #16a34a;
  --green-light:  #f0fdf4;
  --navy:         #1e3a5f;
  --navy-light:   #e8eef5;
  --text:         #1a1a2e;
  --muted:        #6b7280;
  --bg:           #f8f7f4;
  --surface:      #ffffff;
  --border:       #e8e4dd;
  --r:            12px;
}

body {
  background: var(--bg);
  min-height: 100vh;
  color: var(--text);
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }

/* ── ヘッダー ── */
.site-header {
  background: var(--surface);
  border-bottom: 2px solid var(--orange);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.header-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -1px;
}
.logo:hover { color: var(--orange); }
.logo-d { color: var(--orange); }
.logo-text-group { display: flex; flex-direction: column; gap: 0; margin-left: 6px; line-height: 1.15; width: max-content; }
.logo-sub { font-size: .72rem; color: var(--muted); font-weight: 400; letter-spacing: 0; }

.gnav { margin-left: auto; display: flex; gap: 16px; }
.gnav a { color: var(--muted); font-size: .9rem; font-weight: 600; }
.gnav a:hover { color: var(--orange); }

/* ── ページ共通 ── */
.page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 16px 16px 60px;
  position: relative;
}

/* パンくず */
.breadcrumb {
  font-size: .85rem;
  color: var(--muted);
  padding: 10px 0 6px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }

/* ── セクションカード ── */
.section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.section-card h2 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.section-label {
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ── ファーストビュー（地域ページ） ── */
.firstview {
  background: linear-gradient(135deg, var(--navy) 0%, #2d5491 100%);
  color: #fff;
  padding: 36px 20px 32px;
  text-align: center;
}

.fv-area-label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fv-headline {
  font-size: clamp(1.4rem, 5.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 8px;
}

.fv-subline {
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
}

/* 4枚カード */
.fv-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.fv-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
}

.fv-card-label {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
  font-weight: 600;
}

.fv-card-value {
  display: block;
  font-size: clamp(1.3rem, 5vw, 1.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.fv-card.accent-orange { border-color: var(--orange); }
.fv-card.accent-orange .fv-card-value { color: #fbbf24; }
.fv-card.accent-green { border-color: #4ade80; }
.fv-card.accent-green .fv-card-value { color: #4ade80; }

/* ボタン */
.fv-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}

.btn-primary {
  display: block;
  background: var(--orange);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  padding: 16px 24px;
  border-radius: 10px;
  text-align: center;
  letter-spacing: .04em;
  transition: background .2s, transform .1s;
  box-shadow: 0 3px 10px rgba(249,115,22,.35);
}
.btn-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-1px); }

.btn-secondary {
  display: block;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid rgba(255,255,255,.5);
  transition: background .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ── ハックル君 ── */
.hackle-box {
  background: var(--surface);
  border: 2px solid var(--orange);
  border-radius: var(--r);
  padding: 18px 20px;
  margin: 14px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hackle-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
}

.hackle-body { flex: 1; }

.hackle-name {
  font-size: .78rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.hackle-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.65;
}

/* ── 時間帯別カード ── */
.timeslot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.timeslot-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
}

.timeslot-label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
}

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

.timeslot-bar {
  width: 18px;
  height: 28px;
  border-radius: 4px;
  background: var(--border);
}

.timeslot-bar.active { background: var(--orange); }
.timeslot-bar.active-green { background: var(--green); }

.timeslot-note {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}

.timeslot-item.level-high { border-color: var(--orange); background: var(--orange-light); }
.timeslot-item.level-high .timeslot-label { color: var(--orange-dark); }
.timeslot-item.level-mid  { border-color: #fbbf24; background: #fffbeb; }
.timeslot-item.level-low  { background: var(--bg); }

/* ── サービス別特徴 ── */
.platform-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.platform-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.platform-badge {
  flex-shrink: 0;
  font-size: .78rem;
  font-weight: 900;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  letter-spacing: .04em;
  white-space: nowrap;
}

.platform-badge.uber  { background: #000; }
.platform-badge.demae { background: #e50012; }
.platform-badge.wolt  { background: #009de0; }
.platform-badge.menu  { background: #00a950; }
.platform-badge.rnow  { background: #ff6b00; }

.platform-feature {
  font-size: .93rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}

/* ── 今週の配達状況カード ── */
.service-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 4px;
}
@media (min-width: 600px) {
  .service-status-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-status-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--border);
  border-radius: 10px;
  padding: 14px 12px;
}
.service-status-card.online-high { border-top-color: var(--navy); }
.service-status-card.online-mid  { border-top-color: #94a3b8; }
.service-status-card.online-low  { border-top-color: #cbd5e1; }

.service-status-name {
  font-size: .9rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.service-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  margin-bottom: 5px;
}
.service-status-row-label { color: var(--muted); }
.service-status-row-value { font-weight: 700; color: var(--text); }

.service-status-comment {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  line-height: 1.55;
}

/* ── 登録前チェック ── */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.checklist li {
  background: var(--green-light);
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  padding-left: 44px;
  position: relative;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 900;
}

/* ── CTA（登録導線） ── */
.cta-section {
  background: var(--orange-light);
  border: 2px solid var(--orange);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  margin-bottom: 14px;
}

.cta-headline {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.cta-sub {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-cta-primary {
  display: block;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(249,115,22,.3);
  transition: background .2s;
}
.btn-cta-primary:hover { background: var(--orange-dark); color: #fff; }

.btn-cta-secondary {
  display: block;
  background: var(--surface);
  color: var(--navy);
  font-size: .95rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid var(--border);
  transition: border-color .2s;
}
.btn-cta-secondary:hover { border-color: var(--navy); color: var(--navy); }

/* ── 待機場所 ── */
.jizo-list { list-style: none; }
.jizo-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  font-weight: 600;
}
.jizo-list li:last-child { border-bottom: none; }
.spot-note { font-size: .85rem; color: var(--muted); font-weight: 400; margin-left: 6px; }

/* ── 方面別待機グループ（広域エリア用） ── */
.jizo-groups { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.jizo-group { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.jizo-group-summary { padding: 12px 14px; font-weight: 700; font-size: .95rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; background: var(--bg); }
.jizo-group-summary::-webkit-details-marker { display: none; }
.jizo-group-summary::after { content: '▶'; font-size: .65rem; color: var(--muted); transition: transform .2s; }
.jizo-group[open] > .jizo-group-summary::after { transform: rotate(90deg); }
.jizo-group-body { padding: 12px 14px; border-top: 1px solid var(--border); }
.jizo-group-spots { list-style: none; display: flex; flex-direction: column; gap: 6px; margin: 0 0 8px; }
.jizo-group-spots li { font-size: .9rem; font-weight: 600; padding-left: 18px; position: relative; }
.jizo-group-spots li::before { content: '📍'; font-size: .75rem; position: absolute; left: 0; top: 2px; }
.jizo-group-note { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── 稼ぎ指標グリッド（メトリクス） ── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 500px) {
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
}

.metrics-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
}

.platform-name  { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.metrics-icon   { display: block; font-size: 1.6rem; line-height: 1; }
.metrics-label  { display: block; font-size: .82rem; color: var(--muted); margin-top: 3px; }

.metrics-item.online-high .metrics-icon { color: var(--navy); }
.metrics-item.online-mid  .metrics-icon { color: var(--muted); }
.metrics-item.online-low  .metrics-icon { color: #d1d5db; }

.metrics-item.comp-low  { border-color: #86efac; background: var(--green-light); }
.metrics-item.comp-mid  { border-color: #fde68a; background: #fffbeb; }
.metrics-item.comp-high { border-color: #fca5a5; background: #fef2f2; }

.metrics-item.comp-low  .metrics-icon { color: var(--green); }
.metrics-item.comp-mid  .metrics-icon { color: #d97706; }
.metrics-item.comp-high .metrics-icon { color: #dc2626; }

/* ── キャンペーン ── */
.campaign-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.campaign-item {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .93rem;
  line-height: 1.65;
}
.campaign-item.national-item {
  background: var(--navy-light);
  border-color: #bfdbfe;
}

.badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}
.badge.nat { background: var(--navy); color: #fff; }

.period { font-size: .82rem; color: var(--muted); margin-left: 6px; }

/* ── 立ち回り ── */
.tachimawari-text { font-size: .95rem; line-height: 1.85; }
.source-note { font-size: .82rem; color: var(--muted); margin-top: 8px; }

/* ── 話題クチコミ ── */
.trending-list { list-style: none; }
.trending-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.trending-item:last-child { border-bottom: none; }
.trending-tags { margin-bottom: 8px; }
.trending-text { font-size: .95rem; line-height: 1.75; color: var(--text); }
.summary-text  { font-size: .95rem; line-height: 1.85; }

.platform-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  padding: 3px 8px; border-radius: 3px;
  background: var(--orange); color: #fff; margin-right: 4px;
}
.area-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  padding: 3px 8px; border-radius: 3px;
  background: var(--navy-light);
  border: 1px solid #93c5fd;
  color: var(--navy); margin-right: 4px;
}

/* ── 今号の読みどころ ── */
.highlights-card { border-color: #bfdbfe; background: var(--navy-light); }
.highlights-header {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
}
.highlights-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.highlight-item  { display: flex; gap: 18px; align-items: flex-start; }
.highlight-num {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(30,58,95,.2);
  min-width: 44px;
  letter-spacing: -0.02em;
}
.highlight-label { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: .05em; }
.highlight-text  { font-size: .95rem; line-height: 1.7; color: var(--text); }

/* ── ヒーロー（トップページ） ── */
.hero {
  background: var(--navy);
  padding: 52px 24px 48px;
  text-align: center;
  margin-bottom: 8px;
}
.hero-issue {
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-brand  { display: inline-block; }
.hero-title-wrap { position: relative; }
.hero-compare { display: flex; flex-direction: column; gap: 4px; }
.hero-compare-row { display: flex; align-items: baseline; gap: 10px; }
.hero-compare-no { font-size: clamp(.75rem, 2vw, 1rem); color: rgba(255,255,255,.4); font-weight: 400; min-width: 1.4em; }
.hero-l-sup { font-size: .42em; vertical-align: .7em; font-weight: 900; color: #fff; }
.hero-l-thin { font-weight: 300; color: rgba(255,255,255,.45); }
.hero-l-boot { height: .844em; width: auto; vertical-align: 0; margin-left: -.04em; transform: translate(-10px, 3px); }
.hero-k { -webkit-text-stroke: 10px var(--navy); paint-order: stroke fill; position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(4rem, 19vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: .92;
  color: #fff;
}
.hero-title .d { color: var(--orange); }
.hero-reading-above { position: absolute; bottom: 100%; margin-bottom: -13px; left: clamp(5rem, 20vw, 9.6rem); font-size: clamp(.75rem, 2vw, 1rem); font-weight: 400; letter-spacing: 2.8em; color: rgba(255,255,255,.55); line-height: 1; white-space: nowrap; }
.logo-reading { font-size: .72rem; font-weight: 400; letter-spacing: 0; color: var(--muted); }
.hero-series {
  display: block;
  width: 100%;
  font-size: clamp(1.05rem, 5vw, 2.1rem);
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-top: 0;
  text-align: justify;
  text-align-last: justify;
  letter-spacing: 0;
}
.hero-tagline {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: rgba(255,255,255,.45);
  margin-top: 26px;
  letter-spacing: .18em;
}
.hero-coverlines {
  list-style: none;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.hero-coverlines li {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.55;
}
.hero-coverlines li::before { content: '▶ '; color: var(--orange); font-size: .7rem; }

/* ── クジラ情報 ── */
.kujira-card { border-color: #bfdbfe; }
.kujira-base {
  background: var(--navy-light);
  border: 1px solid #93c5fd;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 14px;
}
.kujira-base h3,
.kujira-weekly h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.kujira-base p  { font-size: .93rem; line-height: 1.75; }
.kujira-time    { margin-top: 8px; font-size: .9rem; color: #d97706; }
.kujira-spots   { list-style: none; margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.kujira-spots li {
  font-size: .88rem;
  padding: 6px 10px;
  background: var(--bg);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.kujira-weekly { margin-top: 4px; }
.kujira-sightings { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.kujira-sightings li {
  background: var(--green-light);
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: .9rem;
}
.kujira-amount { font-size: 1.2rem; font-weight: 900; color: var(--green); }
.kujira-time-badge {
  background: #fef9c3;
  border: 1px solid #fde047;
  color: #854d0e;
  font-size: .78rem; font-weight: 700;
  padding: 3px 9px; border-radius: 4px;
}
.kujira-spot  { color: var(--muted); font-size: .88rem; }
.kujira-note  { font-size: .85rem; color: var(--muted); width: 100%; }
.kujira-note-base { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.kujira-info-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.kujira-info-row:last-of-type { border-bottom: none; }
.kujira-info-label {
  flex-shrink: 0;
  width: 90px;
  font-size: .82rem;
  color: var(--muted);
}
.kujira-info-value { font-weight: 700; color: var(--text); }
.kujira-weekly-comment {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--orange-light);
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text);
}
.kujira-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.kujira-type-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.kujira-type-card.active {
  border-color: var(--orange);
  background: var(--orange-light);
}
.kujira-type-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.kujira-type-desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── 都道府県グリッド ── */
.pref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.pref-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  transition: background .2s, box-shadow .2s, transform .15s;
}
.pref-card:hover {
  background: var(--orange-light);
  border-color: var(--orange);
  box-shadow: 0 2px 10px rgba(249,115,22,.15);
  transform: translateY(-2px);
  color: var(--orange-dark);
}

/* ── エリアカード ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.area-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  transition: background .2s, box-shadow .2s, transform .15s;
}
.area-card:hover {
  background: var(--orange-light);
  border-color: var(--orange);
  box-shadow: 0 2px 10px rgba(249,115,22,.15);
  transform: translateY(-2px);
  color: var(--orange-dark);
}
.area-card-platforms {
  font-size: .82rem;
  color: var(--muted);
  font-weight: normal;
  margin-top: 4px;
}

/* ── no-weekly ── */
.no-weekly {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  text-align: center;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ── アーカイブバッジ ── */
.archive-badge { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.archive-badge a { color: var(--orange); }

/* ── 前週データバナー ── */
.stale-banner { background: var(--bg); border: 1px solid var(--border); border-left: 3px solid var(--orange); border-radius: 6px; padding: 10px 14px; font-size: .85rem; color: var(--muted); margin-bottom: 20px; }

.update-info { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }

/* ── バックナンバー ── */
.backnumber-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.backnumber-list li a {
  display: block;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .93rem;
  color: var(--navy);
  transition: background .2s, color .15s;
}
.backnumber-list li a:hover {
  background: var(--orange-light);
  color: var(--orange-dark);
  border-color: var(--orange);
}

/* ── 稼ぎリスト ── */
.earnings-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.earnings-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.earnings-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green));
}
.earnings-item dt { font-size: .82rem; color: var(--muted); margin-bottom: 6px; }
.earnings-item dd { font-size: 1.25rem; font-weight: 900; color: var(--navy); }

.earnings-note {
  margin-top: 12px;
  font-size: .88rem;
  background: var(--orange-light);
  border: 1px solid #fed7aa;
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--text);
}

/* ── クエスト表 ── */
.quest-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.quest-table th {
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 8px 12px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.quest-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
}
.quest-table tr:last-child td { border-bottom: none; }
.quest-table td:nth-child(2) { color: var(--orange-dark); font-weight: 700; }

/* ── クエスト報告（quest_reports） ── */
.quest-report-block { }
.quest-next-week { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.quest-report-heading { font-size: .85rem; font-weight: 900; color: var(--navy); letter-spacing: .04em; margin-bottom: 8px; padding-left: 8px; border-left: 3px solid var(--orange); }
.quest-status-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.quest-badge { font-size: .8rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.quest-badge.reported { background: #dcfce7; color: #166534; }
.quest-badge.sparse { background: #fef9c3; color: #854d0e; }
.quest-badge.none { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }
.quest-badge.unknown { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }
.quest-confidence { font-size: .8rem; color: var(--muted); }
.quest-summary { font-size: .9rem; line-height: 1.7; margin: 4px 0 10px; }
.quest-platforms { display: flex; flex-direction: column; gap: 8px; }
.quest-platform-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 8px 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; }
.quest-range { font-size: .88rem; font-weight: 700; color: var(--orange-dark); }
.quest-types { font-size: .8rem; color: var(--muted); }
.quest-note-small { font-size: .8rem; color: var(--muted); margin: 4px 0 0; width: 100%; line-height: 1.6; }

.national-sep {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.national-label { font-size: .88rem; color: var(--muted); margin-bottom: 8px; }

/* ── no-data ── */
.no-data { color: var(--muted); font-size: .9rem; }
.last-updated { font-size: .78rem; color: var(--muted); margin-top: 8px; }
.metrics-note-small { font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.ref-badge { display:inline-block; margin-left:8px; font-size:.75rem; color:var(--muted); background:var(--bg); border:1px solid var(--border); border-radius:4px; padding:1px 6px; vertical-align:middle; }
.no-data-notice { background:#fffbeb; border:1px solid #fde68a; border-left:3px solid #f59e0b; border-radius:6px; padding:10px 14px; font-size:.88rem; color:#92400e; margin-bottom:12px; line-height:1.6; }
.ref-region-note { font-size:.82rem; color:var(--muted); background:var(--bg); border:1px solid var(--border); border-radius:4px; padding:6px 10px; margin-bottom:10px; }
.sample-note { font-size: .85rem; color: var(--muted); margin-bottom: 12px; }

/* ── レスポンシブ（スマホ） ── */
@media (max-width: 599px) {
  .hero         { padding: 36px 16px 32px; }
  .firstview    { padding: 28px 16px 24px; }
  .section-card { padding: 16px; margin-bottom: 10px; }
  .metrics-item { padding: 10px 6px; }
  .campaign-item { padding: 10px 12px; }
  .kujira-base   { padding: 12px; }
  .kujira-sightings li { padding: 10px 12px; }
  .backnumber-list li a { padding: 10px 12px; }
  .page-wrap { padding: 12px 12px 40px; }

  .fv-cards    { gap: 8px; }
  .fv-card     { padding: 14px 10px; }
  .fv-card-value { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .btn-primary { font-size: .98rem; padding: 15px 20px; }
  .btn-secondary { font-size: .92rem; padding: 13px 18px; }
  .hackle-box  { padding: 14px 16px; gap: 12px; }
  .hackle-icon { width: 44px; height: 44px; font-size: 1.4rem; }
  .hackle-text { font-size: .95rem; }
  .timeslot-grid { gap: 8px; }
  .timeslot-item { padding: 13px 10px; }

  .hero-issue   { margin-bottom: 14px; }
  .hero-tagline { margin-top: 18px; }
  .hero-coverlines { margin-top: 14px; }
  .update-info  { margin-bottom: 10px; }
  .section-card h2 { margin-bottom: 12px; padding-bottom: 8px; }
  .highlights-header { margin-bottom: 14px; }
  .highlight-item { gap: 12px; }
  .trending-item { padding: 12px 0; }
  .highlight-num { min-width: 36px; }
}

/* ── フッター ── */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--orange);
  text-align: center;
  padding: 28px 16px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  margin-top: 40px;
}
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--orange); }
.site-footer .tagline { color: rgba(255,255,255,.85); margin-bottom: 4px; }
