@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  --navy: #12161f;
  --navy-light: #202839;
  --navy-soft: #2b3548;
  --cream: #faf7f1;
  --cream-dark: #efe4cb;
  --gold: #a3814f;
  --gold-light: #cda86a;
  --text: #211d17;
  --text-sub: #6e6656;
  --line: #e6dcc2;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(18,22,31,0.06);
  --shadow-md: 0 16px 36px rgba(18,22,31,0.10);
  --shadow-lg: 0 28px 64px rgba(18,22,31,0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
a, button, input, select, .store-card, .checkbox-row {
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease),
              box-shadow .25s var(--ease), transform .25s var(--ease), opacity .2s var(--ease);
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: rgba(18,22,31,0.9);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  color: var(--white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.logo span {
  color: var(--gold-light);
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.nav-links a {
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 15% 0%, rgba(205,168,106,0.22), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 55%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 120px 0 96px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 30px);
  pointer-events: none;
}
.hero::after {
  content: '鮨';
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 34vw;
  line-height: 1;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
  user-select: none;
}
.hero .container { position: relative; }
.hero .tag {
  display: inline-block;
  border: 1px solid rgba(205,168,106,0.55);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hero-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
  max-width: 620px;
}
.hero-flow li {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  border: 1px solid rgba(205,168,106,0.4);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}
.hero-flow li::after {
  content: '→';
  margin-left: 8px;
  color: rgba(255,255,255,0.35);
}
.hero-flow li:last-child::after { content: none; }

/* Store list */
.stores {
  background: var(--cream-dark);
  padding: 88px 0;
}
.stores-head {
  text-align: center;
  margin-bottom: 40px;
}
.stores-head h2 {
  font-size: 27px;
  margin-bottom: 10px;
}
.stores-head p {
  color: var(--text-sub);
  font-size: 14px;
}
.search-layout {
  display: grid;
  grid-template-columns: 252px 1fr;
  gap: 32px;
  align-items: start;
}

.filter-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.filter-group { margin-bottom: 26px; }
.filter-group:last-of-type { margin-bottom: 16px; }
.filter-group-label {
  display: block;
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.filter-group h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.keyword-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: var(--cream);
}
.keyword-input:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(163,129,79,0.12); }
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  margin: 0 -8px 2px;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
}
.checkbox-row:hover { background: var(--cream); }
.checkbox-row input { accent-color: var(--gold); cursor: pointer; width: 15px; height: 15px; }
.filter-reset-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px;
  font-size: 13px;
  color: var(--text-sub);
  cursor: pointer;
  letter-spacing: 0.03em;
}
.filter-reset-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--cream); }

.result-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 14px;
}
.result-count { font-size: 13px; color: var(--text-sub); }
.sort-select {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 13px;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--gold); }

.list-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px 10px 86px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-sub);
  border-bottom: 1px solid var(--line);
  margin-bottom: 2px;
}
.list-head .lh-name { flex: 0 0 220px; }
.list-head .lh-area { display: none; }
.list-head .lh-price { flex: 0 0 128px; }
.list-head .lh-seat { flex: 0 0 130px; }
.list-head .lh-tags { flex: 1; min-width: 0; }

.no-result {
  text-align: center;
  padding: 72px 0;
  color: var(--text-sub);
  font-size: 14px;
}

.store-list-area { min-width: 0; }

.store-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.store-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--white);
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.store-card:hover { background: var(--cream); }
.store-photo {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  position: relative;
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 0 19px, transparent 13px, rgba(205,168,106,0.22) 13.5px, rgba(205,168,106,0.22) 15.5px, transparent 16px),
    radial-gradient(circle at 32px 19px, transparent 13px, rgba(205,168,106,0.22) 13.5px, rgba(205,168,106,0.22) 15.5px, transparent 16px),
    radial-gradient(circle at 16px 0, transparent 13px, rgba(205,168,106,0.14) 13.5px, rgba(205,168,106,0.14) 15.5px, transparent 16px),
    radial-gradient(circle at 16px 38px, transparent 13px, rgba(205,168,106,0.14) 13.5px, rgba(205,168,106,0.14) 15.5px, transparent 16px),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 55%, var(--gold) 165%);
  background-size: 32px 19px;
  overflow: hidden;
}
.store-photo span { display: none; }
.store-card:nth-of-type(4n+2) .store-photo {
  background-color: var(--navy-soft);
  background-image:
    radial-gradient(circle at 0 19px, transparent 13px, rgba(205,168,106,0.22) 13.5px, rgba(205,168,106,0.22) 15.5px, transparent 16px),
    radial-gradient(circle at 32px 19px, transparent 13px, rgba(205,168,106,0.22) 13.5px, rgba(205,168,106,0.22) 15.5px, transparent 16px),
    radial-gradient(circle at 16px 0, transparent 13px, rgba(205,168,106,0.14) 13.5px, rgba(205,168,106,0.14) 15.5px, transparent 16px),
    radial-gradient(circle at 16px 38px, transparent 13px, rgba(205,168,106,0.14) 13.5px, rgba(205,168,106,0.14) 15.5px, transparent 16px),
    linear-gradient(200deg, var(--navy-light) 0%, var(--navy) 50%, var(--gold-light) 170%);
  background-size: 32px 19px;
}
.store-card:nth-of-type(4n+3) .store-photo {
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 0 19px, transparent 13px, rgba(255,255,255,0.14) 13.5px, rgba(255,255,255,0.14) 15.5px, transparent 16px),
    radial-gradient(circle at 32px 19px, transparent 13px, rgba(255,255,255,0.14) 13.5px, rgba(255,255,255,0.14) 15.5px, transparent 16px),
    radial-gradient(circle at 16px 0, transparent 13px, rgba(205,168,106,0.18) 13.5px, rgba(205,168,106,0.18) 15.5px, transparent 16px),
    radial-gradient(circle at 16px 38px, transparent 13px, rgba(205,168,106,0.18) 13.5px, rgba(205,168,106,0.18) 15.5px, transparent 16px),
    linear-gradient(150deg, var(--navy-soft) 0%, var(--gold) 175%);
  background-size: 32px 19px;
}
.store-card:nth-of-type(4n+4) .store-photo {
  background-color: var(--navy-light);
  background-image:
    radial-gradient(circle at 0 19px, transparent 13px, rgba(205,168,106,0.22) 13.5px, rgba(205,168,106,0.22) 15.5px, transparent 16px),
    radial-gradient(circle at 32px 19px, transparent 13px, rgba(205,168,106,0.22) 13.5px, rgba(205,168,106,0.22) 15.5px, transparent 16px),
    radial-gradient(circle at 16px 0, transparent 13px, rgba(255,255,255,0.10) 13.5px, rgba(255,255,255,0.10) 15.5px, transparent 16px),
    radial-gradient(circle at 16px 38px, transparent 13px, rgba(255,255,255,0.10) 13.5px, rgba(255,255,255,0.10) 15.5px, transparent 16px),
    linear-gradient(195deg, var(--navy) 0%, var(--gold-light) 180%);
  background-size: 32px 19px;
}
.store-body {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
  padding: 0;
}
.store-body h3 {
  order: 1;
  flex: 0 0 220px;
  min-width: 0;
  font-size: 14.5px;
  line-height: 1.4;
  margin-bottom: 0;
}
.store-card .store-area { display: none; }
.store-desc { display: none; }
.price-row {
  order: 3;
  flex: 0 0 128px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: 13px;
}
.price-row span:first-child { font-size: 11px; color: var(--text-sub); }
.price-row .price {
  font-family: 'Noto Serif JP', serif;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}
.seat-info {
  order: 4;
  flex: 0 0 130px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
}
.tags {
  order: 5;
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tag-pill {
  font-size: 11px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-sub);
  padding: 4px 11px 4px 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.tag-pill::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.tag-pill-empty {
  border-style: dashed;
  color: var(--text-sub);
  font-weight: 400;
}
.tag-pill-empty::before { display: none; }

@media (max-width: 900px) {
  .store-card { flex-wrap: wrap; }
  .store-body { flex-wrap: wrap; }
  .store-body h3 { flex: 1 1 100%; white-space: normal; order: 1; }
  .price-row { order: 3; flex: 0 1 auto; flex-direction: row; gap: 6px; }
  .seat-info { order: 4; flex: 0 1 auto; }
  .tags { order: 5; flex: 1 1 100%; }
  .list-head { display: none; }
}

/* Detail page */
.detail-hero {
  position: relative;
  background:
    radial-gradient(ellipse 55% 90% at 90% 0%, rgba(205,168,106,0.2), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 60%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 72px 0 64px;
  overflow: hidden;
}
.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 30px);
  pointer-events: none;
}
.detail-hero .container { position: relative; }
.breadcrumb {
  font-size: 12px;
  color: #b8bfcc;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }
.detail-hero .store-area { color: var(--gold-light); }
.detail-hero h1 {
  font-size: clamp(26px, 3.6vw, 34px);
  margin: 10px 0 16px;
  line-height: 1.4;
}
.detail-hero .lead {
  font-weight: 300;
  font-size: 14.5px;
  color: #dde1e9;
  max-width: 580px;
  line-height: 1.9;
}
.detail-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.detail-tags .feature-pill { font-size: 12px; }

.detail-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.detail-section h2 {
  font-size: 22px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.detail-section h2::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--gold);
  display: inline-block;
  border-radius: 2px;
}
.story-text {
  font-size: 15px;
  line-height: 2.1;
  max-width: 720px;
  color: var(--text);
}
.story-text p { margin-bottom: 18px; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 660px;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.price-table th {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-table tbody tr { background: var(--white); }
.price-table tbody tr:hover { background: var(--cream); }
.price-table .amount {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}
.price-note {
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 14px;
  line-height: 1.8;
}

.info-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0;
  max-width: 660px;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.info-grid dt, .info-grid dd {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}
.info-grid dt { color: var(--text-sub); background: var(--cream); font-size: 13px; }
.info-grid dd { font-weight: 500; }
.info-grid dt:last-of-type, .info-grid dd:last-of-type { border-bottom: none; }
.info-grid dd.unknown, .price-table td.unknown {
  color: #a19a89;
  font-weight: 400;
  font-style: italic;
}

.map-placeholder {
  height: 260px;
  background:
    repeating-linear-gradient(135deg, rgba(163,129,79,0.05) 0 2px, transparent 2px 18px),
    var(--cream-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  font-size: 13px;
  max-width: 660px;
  text-align: center;
  padding: 0 24px;
}

/* Owners page */
.owner-hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 90% at 50% 0%, rgba(205,168,106,0.2), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 88px 0;
  text-align: center;
  overflow: hidden;
}
.owner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 30px);
  pointer-events: none;
}
.owner-hero .container { position: relative; }
.owner-hero h1 { font-size: clamp(26px, 3.6vw, 32px); margin-bottom: 18px; }
.owner-hero p { font-weight: 300; color: #ccd2dd; max-width: 560px; margin: 0 auto; line-height: 1.9; }

.owner-section { padding: 80px 0; }
.owner-section h2 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 44px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 8px 24px rgba(18,22,31,0.07);
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(163,129,79,0.12), rgba(205,168,106,0.06));
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 14px;
}
.benefit-card h3 { font-size: 16px; margin-bottom: 10px; }
.benefit-card p { font-size: 13px; color: var(--text-sub); line-height: 1.85; }

.cta-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 52px;
  text-align: center;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}
.cta-box h3 { font-size: 20px; margin-bottom: 14px; }
.cta-box p { font-size: 14px; color: var(--text-sub); margin-bottom: 26px; }
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 15px 38px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.notice-badge {
  display: inline-block;
  background: #fff3d6;
  color: #8a6d1f;
  border: 1px solid #e8cf8f;
  font-size: 12px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 26px;
}

/* Area pillar page */
.area-intro {
  font-size: 15px;
  line-height: 2.1;
  max-width: 720px;
  margin-bottom: 8px;
}
.area-intro p { margin-bottom: 18px; }

.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item .q {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}
.faq-item .q::before { content: 'Q'; color: var(--gold); }
.faq-item .a {
  font-size: 14px;
  color: var(--text-sub);
  display: flex;
  gap: 12px;
  padding-left: 2px;
  line-height: 1.9;
}
.faq-item .a::before { content: 'A'; color: var(--text-sub); font-weight: 700; }

.area-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.area-links a {
  font-size: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.area-links a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: #a9b0bd;
  padding: 40px 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.9;
  border-top: 1px solid rgba(205,168,106,0.25);
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

@media (max-width: 900px) {
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .store-grid, .benefit-grid { grid-template-columns: 1fr; }
  .search-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .hero { padding: 88px 0 64px; }
  .hero h1 { font-size: 28px; }
  .nav-links {
    gap: 18px;
    font-size: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 56vw;
    scrollbar-width: none;
  }
  .nav-links a { white-space: nowrap; }
  .nav-links::-webkit-scrollbar { display: none; }
  .info-grid { grid-template-columns: 120px 1fr; font-size: 13px; }
}

/* ==========================================================================
   比較UI(西麻布 鮨比較 v2) — index.html専用の新コンポーネント
   ========================================================================== */

.filter-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 22px;
}
.filter-group-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.filter-group-title span {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-sub);
}

.filter-checks { display: flex; flex-wrap: wrap; gap: 8px; }
.check-pill { position: relative; display: inline-flex; }
.check-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.check-pill span {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--text);
  cursor: pointer;
  transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.check-pill:hover span { border-color: var(--gold); }
.check-pill input:checked + span {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}
.check-pill input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.price-range { display: flex; align-items: center; gap: 10px; }
.price-range select {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.price-range-sep { color: var(--text-sub); font-size: 13px; }

.filter-group-sub { display: flex; flex-wrap: wrap; gap: 10px; }
.filterbar-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  box-shadow: var(--shadow-sm);
}
.filterbar-item .fb-text { display: flex; flex-direction: column; gap: 1px; }
.filterbar-item label { font-size: 10.5px; color: var(--text-sub); }
.filterbar-item select {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  padding: 0;
}
.filterbar-item select:focus { outline: none; }
.filterbar-reset {
  display: flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text-sub);
  cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.filterbar-reset:hover { border-color: var(--gold); color: var(--gold); }
.filterbar-reset svg { width: 14px; height: 14px; }

.compare-result-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text-sub);
}
.compare-result-bar b { color: var(--navy); font-size: 15px; }

.hikaku-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hikaku-card {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.hikaku-card:last-child { border-bottom: none; }
.hikaku-card:hover { background: var(--cream); }
.hikaku-card.is-added { background: rgba(163,129,79,0.08); }

.hikaku-body { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; flex: 1; min-width: 0; padding: 0; }
.hikaku-name {
  flex: 0 0 170px;
  font-family: 'Noto Serif JP', serif;
  font-size: 15.5px;
  color: var(--navy);
  line-height: 1.4;
}
.hikaku-name a { color: inherit; text-decoration: none; }
.hikaku-name a:hover { color: var(--gold); }

.hikaku-fields { display: flex; flex-direction: row; flex-wrap: wrap; gap: 18px; flex: 0 0 auto; }
.hikaku-fields .field-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: 12.5px;
}
.hikaku-fields .field-row:nth-child(1) { min-width: 128px; }
.hikaku-fields .field-row:nth-child(2) { min-width: 100px; }
.hikaku-fields .field-row:nth-child(3) { min-width: 88px; }
.hikaku-fields .field-row:nth-child(4) { min-width: 44px; }
.hikaku-fields .field-row:nth-child(5) { min-width: 128px; }
.hikaku-fields .field-row svg { display: none; }
.hikaku-fields .field-label { font-size: 11px; color: var(--text-sub); white-space: nowrap; }
.hikaku-fields .field-value { color: var(--text); font-weight: 600; font-size: 13px; white-space: nowrap; }
.hikaku-fields .field-value.is-unknown { color: #a39c88; font-weight: 400; }

.hikaku-features { flex: 1 1 140px; display: flex; flex-wrap: wrap; gap: 6px; align-content: center; }
.feature-pill {
  font-size: 11px;
  background: rgba(163,129,79,0.08);
  border: 1px solid rgba(163,129,79,0.35);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.feature-pill-empty {
  background: transparent;
  border: 1px dashed var(--line);
  color: var(--text-sub);
  font-weight: 400;
}

.hikaku-actions {
  flex: 1 1 100%;
  display: flex;
  gap: 8px;
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.btn-add-compare, .btn-reserve {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn-add-compare:hover { border-color: var(--gold); color: var(--gold); }
.btn-add-compare.is-added { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-add-compare:disabled { opacity: .4; cursor: not-allowed; }
.btn-reserve {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  text-decoration: none;
}
.btn-reserve:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-reserve svg { width: 13px; height: 13px; }

.compare-tray {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.compare-tray[hidden] { display: none; }
.compare-tray-head { padding: 20px 24px 4px; }
.compare-tray-head h2 { font-size: 18px; margin-bottom: 4px; }
.compare-tray-head p { font-size: 12.5px; color: var(--text-sub); }

.compare-table-wrap { overflow-x: auto; padding: 16px 24px 24px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare-table th, .compare-table td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  vertical-align: top;
}
.compare-table thead th {
  font-size: 14px;
  font-family: 'Noto Serif JP', serif;
  color: var(--navy);
  min-width: 150px;
}
.compare-table tbody th {
  color: var(--text-sub);
  font-weight: 500;
  white-space: nowrap;
  background: var(--cream);
}
.compare-table td.is-unknown { color: var(--text-sub); }
.compare-table .compare-remove {
  border: none;
  background: transparent;
  color: var(--text-sub);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 50%;
}
.compare-table .compare-remove:hover { background: var(--cream); color: var(--navy); }
.compare-table .compare-th-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.compare-table .cell-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.compare-table .cell-reserve { display: inline-flex; }
.compare-table .btn-reserve { padding: 8px 14px; }
.compare-empty { padding: 40px 24px; text-align: center; color: var(--text-sub); font-size: 13px; }

@media (max-width: 720px) {
  .hikaku-name { flex: 1 1 100%; }
  .hikaku-fields { flex: 1 1 100%; gap: 14px; }
  .hikaku-features { flex: 1 1 100%; }
  .hikaku-actions { flex: 1 1 100%; }
  .hikaku-actions .btn-add-compare, .hikaku-actions .btn-reserve { flex: 1; }
  .filterbar-item { flex: 1 1 calc(50% - 5px); }
}
