/* ==========================================================================
   spots.css — Membo spots feature stylesheet (list/card/common)
   正本パス: WEB版/test/DocumentRoot/css/spots.css
   バンドル外・個別 SCP 必須（plus-crew.css / pc.css / front_config.js と同規律）

   V3 (2026-06-29 ナミオ明示・ブランド統一):
     - ロゴ・色・フォント・スタイル骨格 = ブログ/Memboと共通
     - Membo blue #4A90E2 / Josefin Sans + Noto Sans JP / Font Awesome
     - /spots/ 独自継続: 左メニュー / PC展開ナビ / SP ハンバーガー / 日英2言語
   ========================================================================== */

/* ===== Membo brand variables (ブログと共通) ===== */
:root {
  --membo-blue: #4A90E2;
  --membo-blue-dark: #1976d2;
  --membo-blue-deep: #1565c0;
  --membo-text: #333;
  --membo-text-light: #555;
  --membo-text-muted: #888;
  --membo-bg: #f5f5f5;
  --membo-border: #e0e0e0;
  --membo-shadow: 0 2px 4px rgba(0,0,0,.04);
  --font-en: 'Josefin Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ja: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", system-ui, sans-serif;
  --header-h: 64px;
}

/* Base (ブログと同じフォントベース) */
.spots-page { font-family: var(--font-ja); color: var(--membo-text); background: var(--membo-bg); min-height: 100vh; margin: 0; padding-top: var(--header-h); }
.spots-page * { box-sizing: border-box; }
.spots-page h1, .spots-page h2, .spots-page h3 { line-height: 1.4; color: #1a1a1a; }
.spots-page a { color: var(--membo-blue-dark); text-decoration: none; }
.spots-page a:hover { text-decoration: underline; }

/* ===== Brand-unified Header (Memboブログのロゴ・色・フォント・スタイル) ===== */
.spots-header {
  background: #fff;
  border-bottom: 1px solid var(--membo-border);
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  box-shadow: var(--membo-shadow);
}
.spots-header-inner {
  max-width: 1280px; margin: 0 auto; height: 100%;
  padding: 0 20px;
  display: flex; align-items: center; gap: 20px;
}
.spots-logo {
  display: flex; align-items: center; gap: 8px;
  color: var(--membo-blue);
  text-decoration: none;
  flex-shrink: 0;
}
.spots-logo:hover { text-decoration: none; opacity: .85; }
.spots-logo-img { width: 32px; height: 32px; border-radius: 6px; display: block; }
.spots-logo-mark {
  font-family: var(--font-en);
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--membo-blue);
}
.spots-logo-sub {
  font-family: var(--font-en);
  font-weight: 500; font-size: 13px;
  color: var(--membo-text-muted);
  padding: 2px 8px;
  background: #eef4fc;
  border-radius: 999px;
  margin-left: 4px;
}
/* 左サイトタイトル横メニュー (PC: 展開ナビ・ハンバーガー無し) */
.spots-nav {
  display: flex; align-items: center; gap: 18px;
  flex: 1;
  font-family: var(--font-ja);
}
.spots-nav a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--membo-text-light); font-size: 14px; font-weight: 500;
  padding: 8px 4px;
  position: relative;
  white-space: nowrap;
}
.spots-nav a:hover { color: var(--membo-blue); text-decoration: none; }
.spots-nav a .fas { font-size: 13px; color: var(--membo-blue); }
/* 右側: 言語切替 + CTA + SPハンバーガー */
.spots-header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.spots-lang {
  display: inline-flex; align-items: center; gap: 2px;
  font-family: var(--font-en);
  font-size: 13px; font-weight: 600;
}
.spots-lang a {
  color: var(--membo-text-muted);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.spots-lang a:hover { color: var(--membo-blue); background: #f0f6fd; text-decoration: none; }
.spots-lang a.is-active { color: #fff; background: var(--membo-blue); }
.spots-lang-sep { color: var(--membo-border); }
.spots-header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--membo-blue);
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  font-family: var(--font-ja);
}
.spots-header-cta:hover { background: var(--membo-blue-dark); text-decoration: none; }
.spots-hamburger {
  display: none;
  background: transparent; border: none; cursor: pointer;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--membo-blue);
  font-size: 18px;
  border-radius: 6px;
}
.spots-hamburger:hover { background: #f0f6fd; }
.spots-hamburger.is-open { background: #eef4fc; }
.spots-sp-menu {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--membo-border);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  z-index: 99;
  padding: 8px 0;
}
.spots-sp-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  color: var(--membo-text);
  font-family: var(--font-ja);
  font-size: 15px;
  border-top: 1px solid #f5f5f5;
}
.spots-sp-menu a:first-child { border-top: none; }
.spots-sp-menu a:hover { background: #f8fbff; color: var(--membo-blue); text-decoration: none; }
.spots-sp-menu .fas { color: var(--membo-blue); width: 18px; text-align: center; }

/* Main */
.spots-main { max-width: 1200px; margin: 0 auto; padding: 24px 16px 80px; }
.spots-breadcrumb { font-size: 13px; color: #666; margin-bottom: 16px; }
.spots-breadcrumb a { color: #666; }
.spots-breadcrumb span { margin: 0 4px; }

/* Top hero */
.spots-hero { background: linear-gradient(135deg, #1976d2 0%, #5e35b1 100%); color: #fff; padding: 48px 24px; border-radius: 12px; margin-bottom: 32px; text-align: center; }
.spots-hero h1 { color: #fff; margin: 0 0 12px; font-size: 32px; }
.spots-hero-sub { margin: 0 0 16px; opacity: .95; font-size: 16px; }
.spots-hero-count strong { font-size: 28px; color: #ffeb3b; }

/* Pref grid (TOP) */
.spots-prefs { margin-bottom: 48px; }
.spots-prefs h2 { font-size: 20px; margin: 0 0 16px; }
.spots-pref-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.spots-pref-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 4px; transition: transform .1s, box-shadow .1s; }
.spots-pref-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.08); text-decoration: none; }
.spots-pref-name { font-weight: 600; color: #333; font-size: 15px; }
.spots-pref-count { color: #1976d2; font-weight: 700; font-size: 18px; }

/* Pref/City header */
.spots-pref-header { margin-bottom: 24px; }
.spots-pref-header h1 { font-size: 26px; margin: 0 0 8px; }
.spots-pref-header h1 small { font-size: 16px; color: #888; font-weight: 400; margin-left: 8px; }
.spots-city-sub { color: #888; margin: 0 0 12px; font-size: 13px; }

/* Type pills */
.spots-type-pills { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.spots-type-pills a { display: inline-block; padding: 6px 12px; background: #fff; border: 1px solid #e0e0e0; border-radius: 999px; color: #555; font-size: 13px; }
.spots-type-pills a:hover { background: #f0f0f0; text-decoration: none; }
.spots-type-pills a.is-active { background: #1976d2; color: #fff; border-color: #1976d2; }
.spots-type-pills a small { opacity: .7; margin-left: 4px; }

/* City grid */
.spots-cities { margin: 24px 0 32px; }
.spots-cities h2 { font-size: 18px; margin: 0 0 12px; color: #555; }
.spots-city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; }
.spots-city-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 6px; padding: 10px 12px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: #333; }
.spots-city-card:hover { border-color: #1976d2; text-decoration: none; }
.spots-city-name { font-weight: 500; }
.spots-city-count { color: #1976d2; font-weight: 600; font-size: 13px; }

/* List */
.spots-list { margin-top: 24px; }
.spots-list h2 { font-size: 18px; margin: 0 0 12px; }
.spots-list h2 small { font-size: 13px; color: #999; font-weight: 400; }
.spots-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }

/* Card (div+data-href, no <a> nesting) */
.spot-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 10px; overflow: hidden; transition: transform .1s, box-shadow .1s, border-color .1s; display: flex; flex-direction: column; }
.spot-card-clickable { cursor: pointer; }
.spot-card-clickable:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.1); border-color: #1976d2; }
.spot-card-img { width: 100%; height: 140px; background: #f0f0f0 center/cover no-repeat; flex-shrink: 0; }
.spot-card-img-empty { display: flex; align-items: center; justify-content: center; font-size: 48px; color: #ddd; }
/* 地図フォールバック(写真無し・座標あり時、案B: Google Maps Embed iframe): 微かな青みで読込中も分かる背景色 */
.spot-card-img-map { background-color: #eef4fa; position: relative; overflow: hidden; }
.spot-card-img-map iframe { display: block; width: 100%; height: 100%; pointer-events: none; } /* カード全体のクリック委譲(document click delegation)をiframeに奪われないため */
.spot-card-img-map::after { content: '📍'; position: absolute; bottom: 6px; right: 6px; font-size: 14px; background: rgba(255,255,255,.85); padding: 2px 6px; border-radius: 4px; pointer-events: none; }
.spot-card-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; }
.spot-card-name { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.3; }
.spot-card-meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 12px; }
.spot-card-addr { margin: 4px 0 0; font-size: 12px; color: #777; line-height: 1.4; }
.spot-card-actions { margin-top: 8px; display: flex; gap: 6px; }
.spot-icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 6px; background: #f5f5f5; font-size: 14px; }
.spot-icon-btn:hover { background: #e3f2fd; text-decoration: none; }
/* Google Mapで開くボタン(全カード共通・座標がある時のみ描画される) */
.spot-icon-btn-map { background: #fff3e0; }
.spot-icon-btn-map:hover { background: #ffe0b2; }

/* Badges */
.spot-badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.spot-badge-type { background: #e3f2fd; color: #1565c0; }
.spot-badge-type-live_house { background: #f3e5f5; color: #6a1b9a; }
.spot-badge-type-studio { background: #e3f2fd; color: #1565c0; }
.spot-badge-status { color: #fff; }
.spot-badge-status.is-open { background: #43a047; }
.spot-badge-status.is-closed { background: #e53935; }
.spot-badge-status.is-provisional { background: #fb8c00; }
.spot-badge-status.is-unverified { background: #9e9e9e; }
.spot-rating { color: #ff9800; font-weight: 600; font-size: 12px; }
.spot-rating small { color: #999; font-weight: 400; margin-left: 2px; }

/* Callout */
.spots-callout, .spots-callout-membo { background: #fff; border-radius: 10px; padding: 24px; margin-top: 40px; border: 1px solid #e0e0e0; }
.spots-callout h2, .spots-callout-membo h2 { font-size: 18px; margin: 0 0 12px; color: #1976d2; }
.spots-feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.spots-feature-list li { font-size: 14px; }
.spots-callout-membo { background: linear-gradient(135deg, #1976d2 0%, #5e35b1 100%); color: #fff; }
.spots-callout-membo h2 { color: #fff; }
.spots-cta { display: inline-block; padding: 12px 24px; background: #fff; color: #1976d2; border-radius: 6px; font-weight: 600; margin-top: 8px; }
.spots-cta:hover { background: #ffeb3b; color: #1565c0; text-decoration: none; }

/* SHOP #5 (2026-07-18): 2 ボタン + 上下配置対応 */
.spots-callout-membo .spots-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.spots-callout-membo .spots-cta-group .spots-cta { margin-top: 0; }
.spots-cta.spots-cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.spots-cta.spots-cta-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
/* 上部エリアの spacing (下部は既存 margin-top:40 のまま・上部だけヘッダー直後なので詰める) */
.spots-callout-membo.spots-callout-membo-top { margin-top: 20px; }

/* ==========================================================================
   V2 additions (2026-06-29) — ナミオ明示「studio + live_house のみ・URL階層に type 層」
   ========================================================================== */

/* 2大入口カード (/spots/ top) */
.spots-entries { margin: 32px 0 48px; }
.spots-entries-h2 { font-size: 18px; color: #555; margin: 0 0 12px; }
.spots-entry-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .spots-entry-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.spots-entry-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px; border-radius: 12px; background: #fff;
  border: 2px solid #e0e0e0; transition: transform .1s, box-shadow .1s, border-color .1s;
  color: #333;
}
.spots-entry-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.1); text-decoration: none; }
.spots-entry-card-livehouse:hover { border-color: #6a1b9a; }
.spots-entry-card-studio:hover    { border-color: #1565c0; }
.spots-entry-icon { font-size: 48px; line-height: 1; flex-shrink: 0; }
.spots-entry-body { flex: 1; }
.spots-entry-body h3 { font-size: 22px; margin: 0 0 6px; color: #1a1a1a; }
.spots-entry-card-livehouse .spots-entry-body h3 { color: #6a1b9a; }
.spots-entry-card-studio .spots-entry-body h3 { color: #1565c0; }
.spots-entry-count { margin: 4px 0 8px; font-size: 14px; color: #888; }
.spots-entry-count strong { font-size: 22px; color: #1976d2; }
.spots-entry-card-livehouse .spots-entry-count strong { color: #6a1b9a; }
.spots-entry-card-studio .spots-entry-count strong    { color: #1565c0; }
.spots-entry-desc { margin: 0 0 12px; font-size: 14px; color: #555; line-height: 1.5; }
.spots-entry-cta { display: inline-block; padding: 8px 16px; border-radius: 6px; background: #1976d2; color: #fff; font-size: 14px; font-weight: 600; }
.spots-entry-card-livehouse .spots-entry-cta { background: #6a1b9a; }
.spots-entry-card-studio .spots-entry-cta    { background: #1565c0; }

/* Dual pref cards (TOP — both type counts shown) */
.spots-pref-grid-all { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.spots-pref-card-dual { align-items: flex-start; gap: 8px; padding: 12px 14px; cursor: default; }
.spots-pref-card-dual:hover { transform: none; box-shadow: none; }
.spots-pref-card-dual .spots-pref-name { width: 100%; font-size: 14px; }
.spots-pref-card-dual .spots-pref-counts { display: flex; gap: 8px; width: 100%; }
.spots-pref-chip {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  padding: 6px 8px; border-radius: 6px; font-size: 13px; font-weight: 600;
}
.spots-pref-chip-lh { background: #f3e5f5; color: #6a1b9a; }
.spots-pref-chip-lh:hover { background: #e1bee7; text-decoration: none; }
.spots-pref-chip-st { background: #e3f2fd; color: #1565c0; }
.spots-pref-chip-st:hover { background: #bbdefb; text-decoration: none; }

/* Hero type variants */
.spots-hero-type-livehouse { background: linear-gradient(135deg, #6a1b9a 0%, #ad1457 100%); }
.spots-hero-type-studio    { background: linear-gradient(135deg, #1565c0 0%, #00838f 100%); }

/* Cross-type link */
.spots-cross-type { margin: 8px 0 16px; font-size: 14px; }
.spots-cross-link { display: inline-block; padding: 6px 12px; background: #fff3e0; color: #e65100; border-radius: 999px; font-weight: 500; }
.spots-cross-link:hover { background: #ffe0b2; text-decoration: none; }

/* List head with "see all" link */
.spots-list-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.spots-list-head h2 { margin: 0; }
.spots-list-more { font-size: 14px; color: #1976d2; }

/* ==========================================================================
   Brand-unified Footer (ブログフッターと完全共通の class 構造)
   - <section class="footer"> 配下: footer-nav-links / footer-blog-line / footer-social / copyright
   ========================================================================== */
.spots-page section.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 32px 20px 24px;
  margin-top: 60px;
  font-family: var(--font-ja);
}
.spots-page .footer-nav-links {
  max-width: 1280px; margin: 0 auto;
  text-align: center;
}
.spots-page .footer-main-links,
.spots-page .footer-legal-links {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 4px 8px;
  margin-bottom: 12px;
}
.spots-page .footer-main-links a,
.spots-page .footer-legal-links a {
  color: #cce4ff;
  font-size: 13px;
  font-family: var(--font-en);
  font-weight: 500;
  padding: 4px 6px;
}
.spots-page .footer-main-links a:hover,
.spots-page .footer-legal-links a:hover { color: #fff; text-decoration: underline; }
.spots-page .footer-legal-links a { font-size: 12px; color: #999; }
.spots-page .link-divider { color: #555; font-size: 12px; }
.spots-page .footer-blog-line {
  max-width: 1280px; margin: 16px auto 0;
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 6px;
  padding: 12px 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  font-size: 13px;
}
.spots-page .footer-blog-label { color: #888; }
.spots-page .footer-blog-date { color: #aaa; font-family: var(--font-en); font-weight: 500; }
.spots-page .footer-blog-link {
  color: var(--membo-blue);
  font-weight: 500;
  text-decoration: none;
}
.spots-page .footer-blog-link:hover { color: #fff; text-decoration: underline; }
.spots-page .footer-social {
  display: flex; justify-content: center; gap: 14px;
  margin: 16px auto;
}
.spots-page .footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #cce4ff;
  font-size: 16px;
}
.spots-page .footer-social a:hover { background: var(--membo-blue); color: #fff; text-decoration: none; }
.spots-page p.copyright {
  text-align: center;
  margin: 12px 0 0;
  font-size: 11px;
  color: #888;
}
.spots-page p.copyright a { color: #aaa; text-decoration: none; }
.spots-page p.copyright a:hover { color: #fff; text-decoration: underline; }

/* page-top button (ブログ共通) */
.spots-page a.page-top {
  position: fixed; right: 16px; bottom: 16px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  z-index: 50;
  opacity: .8;
  transition: opacity .2s;
}
.spots-page a.page-top:hover { opacity: 1; }
.spots-page a.page-top img { width: 100%; height: auto; }

/* Mobile / SP — ハンバーガー有効化 + PC展開ナビ隠す */
@media (max-width: 900px) {
  .spots-page { --header-h: 56px; }
  .spots-header-inner { gap: 8px; padding: 0 12px; }
  .spots-logo-mark { font-size: 19px; }
  .spots-logo-sub { display: none; }
  .spots-nav { display: none; } /* PC展開ナビは隠す → ハンバーガー内へ */
  .spots-hamburger { display: inline-flex; }
  .spots-cta-label { display: none; }
  .spots-header-cta { padding: 8px 12px; }
  .spots-main { padding: 16px 12px 60px; }
  .spots-hero { padding: 32px 20px; }
  .spots-hero h1 { font-size: 24px; }
  .spots-pref-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .spots-card-grid { grid-template-columns: 1fr; gap: 12px; }
  .spots-page section.footer { padding: 24px 16px 80px; }
  .spots-page .footer-blog-line { font-size: 12px; }
  .spots-page .footer-blog-link { display: block; width: 100%; margin-top: 4px; }
}
@media (min-width: 901px) {
  /* PC: SPメニューは出さない */
  .spots-sp-menu { display: none !important; }
}

/* ============================================================
 * SPOT NEARBY: 近くから表示 toggle + カード/リスト表示切替
 * Task 2026-07-17 (album-sweet record-shops.js 移植)
 * ============================================================ */
.spots-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; flex-wrap: wrap; }
.spots-nearby-toggle { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; user-select: none; }
.spots-nearby-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.spots-nearby-toggle__slider { position: relative; width: 40px; height: 22px; background: #666; border-radius: 999px; transition: background .2s; flex-shrink: 0; }
.spots-nearby-toggle__slider::before { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; background: #fff; border-radius: 50%; transition: transform .2s; }
.spots-nearby-toggle input:checked + .spots-nearby-toggle__slider { background: #4A90E2; }
.spots-nearby-toggle input:checked + .spots-nearby-toggle__slider::before { transform: translateX(18px); }
.spots-nearby-toggle__label { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; color: #333; }
.spots-view-btns { display: inline-flex; gap: 4px; }
.spots-view-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 32px; padding: 0; background: transparent; border: 1px solid #ccc; border-radius: 6px; color: #666; cursor: pointer; transition: all .15s; }
.spots-view-btn:hover { background: rgba(0,0,0,.04); }
.spots-view-btn--active { border-color: #4A90E2; color: #4A90E2; background: rgba(74,144,226,.08); }
.spot-card-distance { display: inline-block; padding: 2px 8px; background: rgba(0,0,0,.65); color: #fff; font-size: 12px; border-radius: 4px; }
.spot-route-icon { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: #4285f4; color: #fff; border-radius: 50%; text-decoration: none; font-size: 12px; }
.spot-route-icon:hover { background: #3367d6; }
.spots-card-grid--list { grid-template-columns: 1fr !important; }
.spots-card-grid--list .spot-card { flex-direction: row; max-height: 132px; }
.spots-card-grid--list .spot-card-img { width: 132px; height: auto; flex-shrink: 0; }
.spots-card-grid--list .spot-card-body { flex: 1; padding: 8px 12px; overflow: hidden; }
@media (max-width: 900px) {
  .spots-toolbar { padding: 8px 0; }
  .spots-nearby-toggle__label span:last-child { display: none; } /* SP: アイコンのみ、ラベルはtitle/aria-labelで担保 */
}

/* ============================================================
 * SHOP #1 磨き (2026-07-17 夜・ナミオ指示)
 * (1) カード時: 下部アイコン群を右寄せ
 * (2) リスト時 PC のみ: 地図縮小 + 3 カラム grid で右側の空きを活用
 * ============================================================ */

/* (1) カード時アイコン右寄せ (SP/PC 共通) */
.spot-card-actions { justify-content: flex-end; }

/* (2) PC 限定 (min-width:768px) リスト時 レイアウト強化 v2 (2026-07-17 夜 image (106) 指摘)
 * v1 の 3 カラム grid は空振り (実 HTML は [map + body] の 2 要素・actions は body 子)
 * → 外側 [map 80px | body 1fr] の 2 カラム + body 内側 [name/meta/addr | actions 縦中央] の入れ子 grid で
 *   actions を右端垂直中央に配置・全体高さ 90px・地図 80px・タイトル 14px・住所 1 行クランプで密度アップ
 */
@media (min-width: 768px) {
  .spots-card-grid--list .spot-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-areas: "map body";
    gap: 12px;
    max-height: 90px;
    min-height: 90px;
    align-items: stretch;
    padding: 0 12px 0 0;
    flex-direction: unset;
  }
  .spots-card-grid--list .spot-card-img {
    grid-area: map;
    width: 80px;
    height: 90px;
    border-radius: 6px 0 0 6px;
  }
  .spots-card-grid--list .spot-card-img-map { height: 90px; }
  .spots-card-grid--list .spot-card-img-map::after { font-size: 10px; padding: 1px 4px; bottom: 4px; right: 4px; }
  .spots-card-grid--list .spot-card-body {
    grid-area: body;
    padding: 8px 0;
    gap: 4px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name actions"
      "meta actions"
      "addr actions";
    align-items: center;
    column-gap: 12px;
  }
  .spots-card-grid--list .spot-card-name {
    grid-area: name;
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .spots-card-grid--list .spot-card-meta {
    grid-area: meta;
    font-size: 11px;
    gap: 4px;
  }
  .spots-card-grid--list .spot-card-addr {
    grid-area: addr;
    font-size: 12px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
  }
  .spots-card-grid--list .spot-card-actions {
    grid-area: actions;
    align-self: center;
    margin: 0;
    flex-shrink: 0;
    justify-content: flex-end;
  }
}
