/* ============================================
   のみさき — 「酒場の勘定書き」デザインシステム
   クラフト紙の質感 × チケットカード × 赤提灯
   ============================================ */

/* 酒場の勘定書き: クラフト紙 × 墨色 × 赤提灯 × 麦酒ゴールド(点景のみ) */
:root {
  --paper: #efe3cd;
  --card: #faf3e4;
  --ink: #2b1f1a;
  --sub: #5d4b3e;
  --faint: #8a7765;
  --border: #d4c1a0;
  --accent: #c4392c;
  --accent-deep: #9c2b21;
  --accent-soft: #f4ddd0;
  --stamp: #b8861b;
  --good: #356e43;
  --good-soft: #e3e7d0;
  --radius: 18px;
  --font-jp: 'Zen Kaku Gothic New', sans-serif;
  --font-num: 'Outfit', 'Zen Kaku Gothic New', sans-serif;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --shadow: 0 1px 2px rgba(48, 30, 12, 0.06), 0 8px 22px rgba(48, 30, 12, 0.1);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  /* 勘定書きの地紋: うっすら斜めストライプ(提灯のあかり混じり) */
  background:
    radial-gradient(560px 360px at 100% -80px, rgba(196, 57, 44, 0.07), transparent 70%),
    repeating-linear-gradient(135deg, rgba(122, 76, 24, 0.05) 0 1.5px, transparent 1.5px 7px),
    var(--paper);
  min-height: 100dvh;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

/* 紙の繊維 */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.045;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
}

a { color: inherit; }

:focus-visible {
  outline: 3px solid rgba(196, 57, 44, 0.55);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- レイアウト ---------- */

.top, .app, .foot {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: calc(env(safe-area-inset-top, 0px) + 20px);
  padding-bottom: 4px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-mark { width: 28px; height: 16px; }

.logo-text {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.16em;
}

.logo-sub {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--faint);
}

.app {
  padding-top: 10px;
  padding-bottom: calc(var(--safe-b) + 60px);
}

.foot {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 26px;
  padding-bottom: calc(var(--safe-b) + 10px);
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--faint);
  background: linear-gradient(to top, var(--paper) 45%, transparent);
  pointer-events: none;
}

.foot .copyright {
  display: block;
  margin-top: 1px;
  font-family: var(--font-num);
  font-size: 9px;
  letter-spacing: 0.18em;
  opacity: 0.85;
}

/* ---------- モーション(transform/opacityのみ) ---------- */

.screen { animation: fadeUp 0.4s cubic-bezier(0.2, 0.9, 0.3, 1) both; }

.rise {
  animation: fadeUp 0.5s cubic-bezier(0.2, 0.9, 0.3, 1) both;
  animation-delay: calc(var(--i, 0) * 40ms);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .screen, .rise { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- 見出しまわり ---------- */

.step-no {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 10px;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.step-no .dots { display: inline-flex; gap: 4px; }

.step-no .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
}

.step-no .dot.on { background: var(--accent); }

.h1 {
  font-weight: 900;
  font-size: clamp(28px, 8vw, 34px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

/* 指定席券の黄帯 */
.h1 .marker {
  background: linear-gradient(transparent 62%, #f7dc63 62%);
  padding: 0 2px;
}

.h1 .q { color: var(--accent); }

/* ---------- 選択サマリーピル ---------- */

.summary-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.12s, border-color 0.2s;
}

.pill:active { transform: scale(0.95); }

.pill .edit {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
}

.source-note {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin-bottom: 18px;
}

.source-note a { color: var(--sub); }

/* ---------- STEP 1 : 検索 ---------- */

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}

.search-box:focus-within { border-color: var(--accent); }

.search-icon { flex: none; width: 18px; height: 18px; }

.search-box input {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  min-height: 54px;
}

.search-box input::placeholder { color: var(--faint); font-weight: 400; }

.suggest {
  margin-top: 10px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.suggest[hidden] { display: none; }

.suggest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 8px 18px;
  text-align: left;
  border-bottom: 1px dashed var(--border);
  transition: background 0.15s;
}

.suggest-item:last-child { border-bottom: none; }
.suggest-item:hover { background: var(--accent-soft); }
.suggest-item:active { background: var(--accent-soft); }

.suggest-name { font-size: 15px; font-weight: 700; }

.suggest-meta {
  flex: none;
  max-width: 52%;
  font-size: 11px;
  color: var(--faint);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-label {
  margin: 24px 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--faint);
}

.quick-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.12s, border-color 0.2s, background 0.2s;
}

.quick-chip::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--stamp);
}

.quick-chip:hover { border-color: var(--accent); }
.quick-chip:active { transform: scale(0.94); background: var(--accent-soft); }

/* ---------- STEP 2 : 持ち時間 ---------- */

.time-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.time-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.12s, border-color 0.2s;
}

.time-row:hover { border-color: var(--accent); }
.time-row:active { transform: scale(0.97); }

.time-num {
  flex: none;
  width: 86px;
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.time-num small {
  font-size: 13px;
  font-weight: 700;
  margin-left: 2px;
  color: var(--sub);
}

.time-copy { flex: 1; }

.time-label { display: block; font-size: 15px; font-weight: 700; }

.time-sub { display: block; font-size: 12px; color: var(--sub); }

.time-arrow { flex: none; color: var(--accent); font-weight: 700; }

/* ---------- 経由印(詳細地図カード / Leaflet) ---------- */

.map-card {
  margin-bottom: 6px;
  padding: 14px 14px 12px;
  border-radius: var(--radius);
  border: 1.5px dashed var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.map-meta-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 0 4px 12px;
  min-width: 0;
}

.mm-col { min-width: 0; display: flex; flex-direction: column; }

.mm-label {
  font-family: var(--font-num);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--accent);
}

.mm-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mm-to { color: var(--faint); transition: color 0.3s; }
.mm-to.on { color: var(--ink); }

.mm-arrow-h { flex: none; align-self: center; font-size: 14px; color: var(--faint); }

.mm-time {
  margin-left: auto;
  flex: none;
  align-self: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-deep);
}

.map-stage { position: relative; }

#routemap {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: #dfe8e2;
  z-index: 0;
}

/* タイルをマルス券の色調に寄せる */
#routemap .leaflet-tile-pane {
  filter: grayscale(0.25) sepia(0.16) hue-rotate(70deg) saturate(0.65) brightness(1.02);
}

.map-fit-btn {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 500;
  min-height: 34px;
  padding: 4px 13px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sub);
  box-shadow: var(--shadow);
}

.map-fit-btn:active { transform: scale(0.94); }

/* Leafletコントロールをパレットに合わせる */
.leaflet-container { font-family: var(--font-jp); }

.leaflet-control-zoom {
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: var(--shadow) !important;
}

.leaflet-control-zoom a {
  background: var(--card) !important;
  color: var(--ink) !important;
  border-bottom-color: var(--border) !important;
}

.leaflet-control-attribution {
  background: rgba(244, 248, 245, 0.8) !important;
  color: var(--faint) !important;
  font-size: 9px !important;
}

.leaflet-control-attribution a { color: var(--sub) !important; }

/* フローティング地図(スクロール時の小窓) */
#map-float {
  position: fixed;
  right: 12px;
  bottom: calc(var(--safe-b) + 46px);
  z-index: 90;
  width: 158px;
  height: 158px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--card);
  box-shadow: 0 10px 32px rgba(18, 40, 32, 0.3);
  animation: floatIn 0.3s cubic-bezier(0.2, 0.9, 0.3, 1) both;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(14px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  #map-float { animation: none; }
}

#map-float #routemap {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

#map-float .leaflet-control-zoom { display: none; }

/* ---------- スポット写真 ---------- */

.spot-photo {
  position: relative;
  flex: none;
  width: 62px;
  height: 62px;
  border-radius: 10px;
  overflow: hidden;
  background: #e3ece6;
}

.spot-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seal-mini {
  position: absolute;
  left: 4px;
  bottom: 4px;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  background: var(--sc, var(--accent));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

/* ---------- STEP 3 : きっぷ(結果カード) ---------- */

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--faint);
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ticket {
  position: relative;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* 路線カラー帯: 固定幅8pxを路線数で等分したストライプ */
.ticket::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background: var(--band, var(--accent));
}

/* きっぷのパンチ穴 */
.ticket::after {
  content: '';
  position: absolute;
  top: -7px;
  right: 86px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 calc(100% + var(--punch-gap, 0px)) 0 0 var(--paper);
}

.ticket-punch-b {
  position: absolute;
  bottom: -7px;
  right: 86px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
}

.ticket-main {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 16px 16px 20px;
  text-align: left;
}

.ticket-main:active { background: rgba(255, 77, 18, 0.04); }

.ticket-info { flex: 1; min-width: 0; }

.ticket-name {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.ticket-mood {
  font-size: 12px;
  color: var(--sub);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 1px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge.tr0 { background: var(--good-soft); color: var(--good); }
.badge.tr1 { background: #f3e9bb; color: #6e570e; }
.badge.line { background: #e2ebe5; color: var(--sub); }

.ticket-time {
  flex: none;
  width: 86px;
  padding-left: 14px;
  border-left: 1.5px dashed var(--border);
  text-align: center;
}

.ticket-time .about {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.ticket-time .n {
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ticket-time .u { font-size: 12px; font-weight: 700; color: var(--sub); }

.ticket-time .n.n3 { font-size: 26px; }

/* スポット展開(grid-rowsで滑らかに) */
.spots {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.ticket.open .spots { grid-template-rows: 1fr; }

.spots-inner { overflow: hidden; }

.spots-pad {
  margin: 0 16px 16px 20px;
  padding-top: 12px;
  border-top: 1.5px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spot { display: flex; gap: 11px; }

.spot-seal {
  flex: none;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: var(--sc, var(--accent));
}

.spot-body { flex: 1; min-width: 0; }

.spot-name { font-size: 14px; font-weight: 700; }

.spot-desc { font-size: 12.5px; line-height: 1.7; color: var(--sub); }

.spot-walk { font-size: 11px; color: var(--faint); }

.jorudan-link {
  align-self: flex-end;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-deep);
  text-decoration: none;
}

/* ---------- ほかに行けるまち ---------- */

.band { margin-bottom: 16px; }

.band-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 2px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

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

.mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.12s, border-color 0.2s;
}

.mini-chip:hover { border-color: var(--accent); }
.mini-chip:active { transform: scale(0.94); }

.reach-more {
  margin-top: 12px;
  text-align: center;
  font-size: 11.5px;
  color: var(--faint);
}

/* ---------- 駅シート ---------- */

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(24, 35, 32, 0.45);
  display: flex;
  align-items: flex-end;
  animation: fadeIn 0.2s both;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.sheet {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  max-height: 78dvh;
  overflow-y: auto;
  padding: 20px 22px calc(var(--safe-b) + 24px);
  border-radius: 22px 22px 0 0;
  background: var(--card);
  box-shadow: 0 -10px 40px rgba(18, 40, 32, 0.25);
  animation: sheetUp 0.32s cubic-bezier(0.2, 0.9, 0.3, 1) both;
}

@keyframes sheetUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .sheet, .sheet-backdrop { animation: none; }
}

.sheet-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--paper);
  font-size: 16px;
  font-weight: 700;
  color: var(--sub);
  display: grid;
  place-items: center;
}

.sheet-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 40px;
  padding-bottom: 14px;
  border-bottom: 1.5px dashed var(--border);
}

.sheet-head > div { flex: 1; min-width: 0; }

.sheet-spots {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spot-note { font-size: 13px; color: var(--sub); }

.spot-credit {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--faint);
}

/* ---------- スケルトン ---------- */

.skeleton-row {
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(90deg, #e3ece6 25%, #d4e2da 50%, #e3ece6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
}

.skeleton-row.w70 { width: 70%; }
.skeleton-row.w50 { width: 50%; }

@keyframes shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-row { animation: none; }
}

/* ---------- 空状態・戻る ---------- */

.empty-box {
  margin-top: 8px;
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1.5px dashed var(--border);
  background: var(--card);
  text-align: center;
  font-size: 14px;
  color: var(--sub);
}

.btn-row { display: flex; gap: 10px; margin-top: 26px; }

.back-btn {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-size: 13px;
  font-weight: 700;
  color: var(--sub);
  transition: transform 0.12s, border-color 0.2s;
}

.back-btn:hover { border-color: var(--accent); color: var(--ink); }
.back-btn:active { transform: scale(0.95); }

/* ---------- のみさき: リード文 ---------- */

.lead {
  margin: 2px 0 14px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--sub);
}

/* ---------- のみさき: 終電めやす ---------- */

.lt-row {
  margin-top: 6px;
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-deep);
}

.lt-row::before {
  content: '◷ ';
  font-weight: 400;
}

.lt-warn {
  color: var(--accent);
  animation: ltBlink 1.6s ease-in-out infinite;
}

@keyframes ltBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  .lt-warn { animation: none; }
}

.lt-banner {
  margin: 4px 0 14px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--accent);
  background: var(--accent-soft);
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent-deep);
  text-align: center;
}

.lt-banner.lt-warn { color: var(--accent); }

/* ---------- のみさき: ちかくの店(ホットペッパー) ---------- */

.shops { margin-top: 4px; }

.shops-label {
  margin: 10px 0 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--faint);
}

.spot-name a {
  color: var(--ink);
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
}

/* ---------- のみさき: フッタークレジット ---------- */

.foot a { pointer-events: auto; }

.foot .credit {
  display: block;
  margin-top: 2px;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  opacity: 0.9;
}
