:root {
  --bg: #050504;
  --panel: rgba(255, 255, 255, .045);
  --panel-strong: rgba(212, 175, 55, .11);
  --gold: #d4af37;
  --gold-soft: #ead889;
  --ink: #f4efd9;
  --muted: #aaa184;
  --line: rgba(212, 175, 55, .24);
  --green: #163b2a;
  --green-soft: #8fd0a6;
  --red: #bc2c23;
  --charcoal: #0a0a08;
  --shadow: 0 18px 60px rgba(0, 0, 0, .36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 48% -12%, rgba(212, 175, 55, .19), transparent 28rem),
    linear-gradient(120deg, #050504 0%, #07110e 54%, #110b07 100%);
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", Meiryo, system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .14;
  background-image:
    linear-gradient(rgba(212, 175, 55, .2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, .16) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(212, 175, 55, .18);
  background: rgba(5, 5, 4, .86);
  backdrop-filter: blur(16px);
}

.topbar-inner,
.shell,
.page-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, .58);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(234, 216, 137, .23), rgba(212, 175, 55, .06) 58%, rgba(0, 0, 0, .24)),
    #090807;
  color: var(--gold-soft);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  line-height: 1;
  box-shadow: 0 0 26px rgba(212, 175, 55, .18);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-title {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.1;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(212, 175, 55, .28);
  background: rgba(212, 175, 55, .08);
  color: var(--gold-soft);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 175, 55, .32);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: var(--gold-soft);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.mobile-drawer {
  display: none;
}

.shell {
  padding: 28px 0 72px;
}

.app-hero {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(320px, .62fr);
  align-items: stretch;
  gap: 18px;
  margin-bottom: 22px;
}

.hero-copy,
.side-panel,
.section-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  box-shadow: var(--shadow);
}

.hero-copy {
  min-height: 210px;
  display: grid;
  align-content: end;
  overflow: hidden;
  position: relative;
  padding: 28px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(5, 5, 4, .72) 0%, rgba(5, 5, 4, .45) 54%, rgba(188, 44, 35, .11) 100%),
    radial-gradient(circle at 78% 16%, rgba(234, 216, 137, .2), transparent 18rem);
}

.hero-copy::after {
  content: "神";
  position: absolute;
  right: 22px;
  bottom: -26px;
  color: rgba(212, 175, 55, .13);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 178px;
  line-height: .8;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 30px;
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(212, 175, 55, .07);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-top: 16px;
  font-size: 44px;
  line-height: 1.12;
}

h1 span {
  color: var(--gold);
}

.lead {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.side-panel {
  padding: 18px;
}

.metric-grid {
  display: grid;
  gap: 10px;
}

.metric {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(212, 175, 55, .16);
  border-radius: 8px;
  padding: 12px;
  background: rgba(0, 0, 0, .18);
}

.metric strong {
  color: var(--gold-soft);
  font-size: 22px;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.section-panel {
  margin-top: 18px;
  padding: 22px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-title {
  display: grid;
  gap: 6px;
}

.section-title p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.section-title h2 {
  font-size: 28px;
  line-height: 1.25;
}

.section-note {
  max-width: 560px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.toolbar,
.date-tabs,
.geo-bar,
.search-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.toolbar {
  justify-content: space-between;
  margin-bottom: 12px;
}

.today-summary {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(212, 175, 55, .22);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, .2);
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  line-height: 1.5;
}

.today-summary strong,
.today-summary b {
  color: var(--gold-soft);
}

.date-tabs,
.geo-bar {
  min-width: 0;
}

.tab-btn,
.icon-btn,
.text-btn {
  min-height: 36px;
  border: 1px solid rgba(212, 175, 55, .27);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: var(--gold-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.tab-btn {
  padding: 7px 12px;
}

.tab-btn[aria-selected="true"] {
  border-color: rgba(234, 216, 137, .72);
  background: var(--gold);
  color: #090804;
}

.icon-btn {
  width: 36px;
  display: grid;
  place-items: center;
  padding: 0;
}

.text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
}

.text-btn.primary {
  border-color: rgba(234, 216, 137, .74);
  background: var(--gold);
  color: #090804;
}

.text-btn.ghost {
  background: rgba(0, 0, 0, .14);
}

.status-line {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.rank-list {
  display: grid;
  gap: 10px;
}

.rank-list.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rank-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .2);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .26);
}

.rank-card.rank-one {
  border-left: 4px solid var(--gold);
  background: var(--panel-strong);
}

.rank-main {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 14px 14px 8px;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.rank-no {
  min-width: 42px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 8px;
  background: rgba(0, 0, 0, .24);
  color: var(--gold-soft);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  font-weight: 800;
}

.rank-one .rank-no {
  border-color: rgba(234, 216, 137, .7);
  background: rgba(212, 175, 55, .16);
}

.store-block {
  min-width: 0;
}

.store-name {
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-meta {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.distance-chip {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.caret {
  color: var(--gold-soft);
  font-size: 14px;
  line-height: 1;
}

.reason-line {
  overflow: hidden;
  margin: 0;
  padding: 0 14px 13px 66px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-card[aria-expanded="true"] .reason-line {
  white-space: normal;
}

.expanded-panel {
  display: none;
  border-top: 1px dashed rgba(212, 175, 55, .22);
  margin: 0 14px 14px;
  padding-top: 12px;
}

.rank-card[aria-expanded="true"] .expanded-panel {
  display: block;
}

.expanded-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .65fr);
  gap: 14px;
}

.mini-title {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, .2);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(212, 175, 55, .07);
  color: var(--gold-soft);
  font-size: 12px;
  line-height: 1.25;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.check-list li::before {
  content: "・";
  color: var(--gold);
  margin-right: 2px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.sign-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.sign-mark {
  width: 34px;
  height: 38px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 93% 14%, 86% 64%, 50% 100%, 14% 64%, 7% 14%);
  border: 1px solid rgba(234, 216, 137, .52);
  background: linear-gradient(180deg, #19140b, #080705);
  color: var(--gold-soft);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 0 18px rgba(212, 175, 55, .16);
}

.sign-mark[data-sign="SSS"] {
  width: 42px;
  color: #fff0bd;
  background: linear-gradient(180deg, #38290e, #0b0805);
}

.sign-mark[data-sign="SS"],
.sign-mark[data-sign="S"] {
  color: #f5de8b;
}

.sign-mark[data-sign="A"] {
  color: #bfe9cb;
  border-color: rgba(143, 208, 166, .55);
  background: linear-gradient(180deg, #123721, #06100b);
}

.sign-mark[data-sign="B"] {
  color: #8fd0a6;
  border-color: rgba(143, 208, 166, .4);
  background: linear-gradient(180deg, #10291c, #050b08);
}

.sign-mark[data-sign="C"] {
  color: #b5bec6;
  border-color: rgba(181, 190, 198, .36);
  background: linear-gradient(180deg, #15191d, #07090b);
}

.store-sign-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(212, 175, 55, .24);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 24% 28%, rgba(234, 216, 137, .18), transparent 12rem),
    rgba(0, 0, 0, .2);
}

.store-sign-hero .sign-mark {
  width: 76px;
  height: 86px;
  font-size: 22px;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, .24));
}

.store-sign-hero[data-sign="SSS"] .sign-mark {
  width: 88px;
  font-size: 23px;
}

.store-sign-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.store-sign-hero strong {
  display: block;
  margin-top: 5px;
  color: var(--gold-soft);
  font-size: 22px;
  line-height: 1.25;
}

.store-sign-hero.pending {
  display: grid;
  gap: 8px;
}

.pending-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(212, 175, 55, .2);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.search-input {
  width: min(100%, 520px);
  min-height: 42px;
  border: 1px solid rgba(212, 175, 55, .34);
  border-radius: 999px;
  outline: none;
  padding: 9px 15px;
  background: rgba(255, 255, 255, .045);
  color: var(--ink);
}

.search-input::placeholder {
  color: rgba(170, 161, 132, .76);
}

.area-grid,
.machine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.area-link,
.machine-card {
  min-height: 142px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  border: 1px solid rgba(212, 175, 55, .2);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, .035);
}

.area-link:hover,
.machine-card:hover,
.area-link:focus-visible,
.machine-card:focus-visible {
  border-color: rgba(234, 216, 137, .56);
  background: rgba(212, 175, 55, .075);
  outline: none;
}

.area-link h3,
.machine-card h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.area-link p,
.machine-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.empty-state {
  border: 1px solid rgba(212, 175, 55, .18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(0, 0, 0, .18);
  color: var(--muted);
  line-height: 1.7;
}

.calendar-list {
  display: grid;
  gap: 8px;
}

.calendar-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(212, 175, 55, .16);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, .18);
}

.calendar-row.today {
  border-color: rgba(234, 216, 137, .48);
  background: rgba(212, 175, 55, .075);
}

.calendar-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 8px;
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
}

.today-pill {
  border-color: rgba(234, 216, 137, .62);
  background: var(--gold);
  color: #090804;
}

.calendar-main {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.store-checklist {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-grid,
.faq-grid,
.listing-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.plan-card,
.faq-card,
.benefit-card,
.principle-card {
  border: 1px solid rgba(212, 175, 55, .2);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, .035);
}

.plan-card h3,
.faq-card h3,
.benefit-card h3 {
  color: var(--ink);
  font-size: 20px;
}

.plan-card p,
.faq-card p,
.benefit-card p,
.principle-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.principle-card {
  border-color: rgba(234, 216, 137, .5);
  background: rgba(212, 175, 55, .075);
}

.principle-card strong {
  color: var(--gold-soft);
  font-size: 18px;
  line-height: 1.55;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(212, 175, 55, .18);
  border-radius: 8px;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(0, 0, 0, .16);
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid rgba(212, 175, 55, .14);
  padding: 14px;
  vertical-align: top;
  text-align: left;
}

.compare-table th {
  color: var(--gold-soft);
  font-size: 13px;
  white-space: nowrap;
}

.compare-table td {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.compare-store-name {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  white-space: normal;
}

.not-found-panel {
  min-height: calc(100svh - 160px);
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found-panel h1 {
  font-size: clamp(44px, 9vw, 92px);
}

.not-found-panel p {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.text-section {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.text-section h3 {
  color: var(--gold-soft);
  font-size: 20px;
}

.text-section p,
.text-section ul {
  margin: 0;
}

.text-section ul {
  padding-left: 1.2em;
}

.sign-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sign-guide-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(212, 175, 55, .18);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, .035);
}

.sign-guide-item p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.offline-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  border: 1px solid rgba(234, 216, 137, .55);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(7, 8, 6, .96);
  color: var(--gold-soft);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.compare-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  border-top: 1px solid rgba(212, 175, 55, .36);
  background: rgba(7, 8, 6, .96);
  backdrop-filter: blur(14px);
  padding: 10px 14px;
}

.compare-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
}

.compare-inner > strong {
  display: inline-flex;
  align-items: center;
  color: var(--gold-soft);
  font-size: 13px;
}

.compare-item {
  min-width: 190px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(212, 175, 55, .24);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .035);
}

.compare-item span {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compare-item b {
  color: var(--gold-soft);
  font-size: 12px;
}

body.has-compare-bar {
  padding-bottom: 86px;
}

.page-footer {
  border-top: 1px solid rgba(212, 175, 55, .16);
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: 12px;
}

.footer-links a,
.page-footer a {
  color: var(--gold-soft);
}

.bottom-dock {
  display: none;
}

@media (max-width: 980px) {
  .app-hero {
    grid-template-columns: 1fr;
  }

  .rank-list.two-col,
  .area-grid,
  .machine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }

  .topbar-inner,
  .shell,
  .page-footer {
    width: min(100% - 20px, 760px);
  }

  .topbar-inner {
    min-height: 54px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .brand-sub,
  .hero-copy,
  .side-panel {
    display: none;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-drawer {
    position: fixed;
    top: 54px;
    left: 10px;
    right: 10px;
    z-index: 35;
    display: grid;
    gap: 6px;
    border: 1px solid rgba(212, 175, 55, .24);
    border-radius: 8px;
    padding: 8px;
    background: rgba(8, 8, 6, .97);
    box-shadow: var(--shadow);
  }

  .mobile-drawer[aria-hidden="true"] {
    display: none;
  }

  .mobile-drawer a {
    min-height: 42px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--gold-soft);
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-drawer a:hover,
  .mobile-drawer a:focus-visible {
    background: rgba(212, 175, 55, .1);
    outline: none;
  }

  .shell {
    padding-top: 10px;
  }

  .section-panel {
    margin-top: 10px;
    padding: 12px;
  }

  .section-head {
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .section-title {
    gap: 3px;
  }

  .section-title p {
    font-size: 11px;
  }

  .section-title h2 {
    font-size: 20px;
    line-height: 1.25;
  }

  .section-note {
    display: none;
  }

  .toolbar {
    gap: 8px;
    margin-bottom: 8px;
  }

  .date-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .today-summary {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

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

  .tab-btn {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 6px 10px;
  }

  .geo-bar {
    width: 100%;
  }

  .status-line {
    margin-top: 5px;
  }

  .rank-list {
    gap: 7px;
  }

  .rank-list.two-col,
  .area-grid,
  .machine-grid {
    grid-template-columns: 1fr;
  }

  .rank-main {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 7px;
    padding: 9px 10px 5px;
  }

  .rank-no {
    min-width: 34px;
    height: 31px;
    font-size: 14px;
  }

  .store-name {
    font-size: 15px;
  }

  .store-meta {
    display: none;
  }

  .sign-badge .sign-label {
    display: none;
  }

  .sign-mark {
    width: 30px;
    height: 34px;
    font-size: 13px;
  }

  .sign-mark[data-sign="SSS"] {
    width: 37px;
  }

  .distance-chip {
    max-width: 54px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .reason-line {
    padding: 0 10px 8px 52px;
    font-size: 12px;
    line-height: 1.35;
  }

  .expanded-panel {
    margin: 0 10px 10px;
    padding-top: 9px;
  }

  .expanded-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .chip {
    min-height: 26px;
    padding: 4px 8px;
  }

  .text-btn {
    min-height: 34px;
    padding: 7px 11px;
  }

  .search-input {
    min-height: 40px;
  }

  .area-link,
  .machine-card {
    min-height: 108px;
    padding: 13px;
  }

  .store-detail .side-panel {
    display: block;
  }

  .store-detail .hero-copy {
    min-height: 150px;
    display: grid;
    padding: 18px;
  }

  .store-detail .hero-copy h1 {
    font-size: 28px;
  }

  .store-sign-hero {
    padding: 12px;
  }

  .store-sign-hero .sign-mark {
    width: 58px;
    height: 66px;
    font-size: 17px;
  }

  .store-sign-hero[data-sign="SSS"] .sign-mark {
    width: 68px;
    font-size: 18px;
  }

  .store-sign-hero strong {
    font-size: 18px;
  }

  .calendar-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 9px 10px;
  }

  .calendar-main {
    gap: 8px;
    font-size: 13px;
  }

  .store-checklist {
    grid-template-columns: 1fr;
  }

  .plan-grid,
  .faq-grid,
  .listing-benefits {
    grid-template-columns: 1fr;
  }

  .compare-table {
    min-width: 640px;
  }

  .sign-guide {
    grid-template-columns: 1fr;
  }

  .compare-bar {
    bottom: 70px;
    padding: 8px 10px;
  }

  .compare-inner {
    gap: 6px;
  }

  .compare-inner > strong {
    width: 100%;
  }

  .compare-item {
    min-width: 0;
    width: 100%;
    flex-basis: 100%;
    padding: 7px 9px;
  }

  body.has-compare-bar {
    padding-bottom: 220px;
  }

  .bottom-dock {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 8px;
    padding: 7px;
    background: rgba(9, 9, 7, .94);
    backdrop-filter: blur(14px);
  }

  .bottom-dock a {
    min-height: 40px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
  }

  .bottom-dock a:hover,
  .bottom-dock a:focus-visible {
    background: rgba(212, 175, 55, .1);
    color: var(--gold-soft);
    outline: none;
  }
}
