/* 美瑛町民スキー場 — LP案モック（テンプレート実装プレビュー） */

:root {
  --bg: #fafbfc;
  --fg: #1a2332;
  --muted: #6b7a8f;
  --accent: #5a6f85;
  --accent-soft: #eef2f6;
  --surface: #ffffff;
  --border: #e4e9ef;
  --section: clamp(5rem, 14vw, 9rem);
  --inner: clamp(1.25rem, 4vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.font-display {
  font-family: Syne, "Helvetica Neue", sans-serif;
  letter-spacing: -0.04em;
}

.font-mono {
  font-family: "IBM Plex Mono", "SF Mono", monospace;
  font-variant-numeric: tabular-nums;
}

.mock-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: #2a3344;
  color: #e2e8f0;
  font-size: 0.75rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.mock-banner strong { color: #b8cfe0; }

.inner {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: var(--inner);
  padding-right: var(--inner);
}

.section { padding: var(--section) 0; }

.eyebrow {
  font-family: Syne, sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.heading-lg {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lead {
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  line-height: 1.85;
  color: var(--muted);
}

.lead-whisper {
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.75;
  color: var(--muted);
  opacity: 0.85;
}

.badge-free {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: var(--accent-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 1.75rem;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.5rem;
  gap: 1rem;
}

.logo { font-weight: 700; font-size: 0.9rem; }

.nav {
  display: none;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover { color: var(--fg); }

.lang-btn {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

@media (min-width: 768px) { .nav { display: flex; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--fg);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgb(26 35 50 / 18%);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn-ghost:hover { background: var(--accent-soft); }

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgb(255 255 255 / 15%) 0%,
    rgb(255 255 255 / 35%) 45%,
    var(--bg) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
  padding-top: 7rem;
}

.hero-title {
  margin: 1rem 0 0;
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
  line-break: strict;
  word-break: keep-all;
}

.hero-tagline {
  margin: 1.25rem 0 0;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.freshness {
  font-size: 0.75rem;
  color: var(--muted);
}

.freshness time { font-family: "IBM Plex Mono", monospace; }

.transit-grid {
  display: grid;
  gap: 0;
  align-items: center;
}

@media (min-width: 1024px) {
  .transit-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }
}

.transit-visual { position: relative; width: 88%; }

@media (min-width: 1024px) {
  .transit-visual { grid-column: 1 / 8; width: 100%; }
}

.transit-visual .frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

@media (min-width: 640px) {
  .transit-visual .frame { aspect-ratio: 3 / 4; }
}

.transit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transit-card {
  position: relative;
  z-index: 2;
  margin-top: -4rem;
  margin-left: 12%;
  width: 88%;
  padding: 2rem;
  background: var(--surface);
  box-shadow: 0 24px 64px rgb(26 35 50 / 8%);
}

@media (min-width: 1024px) {
  .transit-card {
    grid-column: 7 / 13;
    margin-top: 0;
    margin-left: 0;
    transform: translateY(-3rem);
    padding: 3rem;
  }
}

.transit-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .transit-actions { flex-direction: row; align-items: center; }
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: clamp(2rem, 6vw, 4rem);
}

.path-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 10rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s var(--ease);
}

.path-tile:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgb(90 111 133 / 10%);
}

.path-tile__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.path-tile__title {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.path-tile__arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.25rem;
  color: var(--muted);
}

.span-8 { grid-column: span 12; }
.span-4 { grid-column: span 12; }

@media (min-width: 640px) {
  .span-8 { grid-column: span 8; }
  .span-4 { grid-column: span 4; }
  .path-tile { min-height: 12rem; }
}

.highlight-duet {
  position: relative;
  margin-top: 4rem;
}

.highlight-primary {
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .highlight-primary { width: 68%; }
}

.highlight-primary .frame {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.highlight-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-primary-body { margin-top: 2rem; max-width: 28rem; }

.highlight-primary-body h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.highlight-secondary {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  margin-left: auto;
  width: 82%;
  padding: 1.75rem;
  background: var(--surface);
  box-shadow: 0 24px 64px rgb(26 35 50 / 10%);
}

@media (min-width: 1024px) {
  .highlight-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-top: 0;
    width: 42%;
    padding: 2.25rem;
  }
}

.highlight-secondary h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.recovery-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .recovery-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 3.5rem;
  }
}

.recovery-visual { order: 2; }

@media (min-width: 1024px) {
  .recovery-visual { grid-column: 8 / 13; order: 2; }
  .recovery-copy { grid-column: 1 / 7; order: 1; }
}

.recovery-visual .frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

@media (min-width: 640px) {
  .recovery-visual .frame { aspect-ratio: 3 / 4; }
}

.recovery-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey {
  display: grid;
  gap: 0;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .journey { grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
}

.journey-step {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .journey-step {
    border-top: none;
    border-left: 1px solid var(--border);
    padding: 0 1rem;
  }
  .journey-step:first-child { border-left: none; padding-left: 0; }
}

.journey-step__num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: var(--accent);
}

.journey-step__title {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
}

.journey-step__body {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted);
}

.guides-list {
  list-style: none;
  margin: 3.5rem 0 0;
  padding: 0;
}

.guide-item { border-top: 1px solid var(--border); }
.guide-item:last-child { border-bottom: 1px solid var(--border); }

.guide-trigger {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--fg);
  cursor: pointer;
}

.guide-icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--muted);
}

.guide-panel { display: none; padding-bottom: 2rem; }
.guide-panel.is-open { display: block; }
.guide-panel .lead { max-width: 32rem; }

.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.hashtag {
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-family: "IBM Plex Mono", monospace;
  color: var(--muted);
}

.access-section { padding: clamp(3rem, 8vw, 5rem) 0; }
.access-grid { display: grid; gap: 2rem; margin-top: 2rem; }
@media (min-width: 768px) {
  .access-grid { grid-template-columns: 1fr auto; align-items: end; gap: 2.5rem; }
}
.access-address { font-style: normal; line-height: 1.85; }
.access-postal { display: block; font-family: "IBM Plex Mono", monospace; font-size: 0.875rem; color: var(--muted); margin-bottom: 0.35rem; }
.access-line { display: block; font-size: clamp(1rem, 2.5vw, 1.125rem); font-weight: 600; color: var(--fg); }
.access-note { margin: 1rem 0 0; font-size: 0.875rem; color: var(--muted); }
.access-phone { margin: 0.5rem 0 0; font-family: "IBM Plex Mono", monospace; font-size: 0.875rem; color: var(--muted); }
.access-phone a { color: var(--accent); text-decoration: underline; text-underline-offset: 0.15em; }
.access-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.btn-map { background: var(--accent); color: #fff; gap: 0.5rem; }
.btn-map:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgb(90 111 133 / 18%); }
.btn-map svg { flex-shrink: 0; }
.footer-location { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); width: 100%; font-size: 0.8125rem; line-height: 1.65; }
.footer-location a { color: var(--accent); text-decoration: underline; text-underline-offset: 0.15em; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.border-top { border-top: 1px solid var(--border); }

/* Featured spot — Blue Pond hook */
.spot-feature {
  display: block;
  margin-top: 4rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s var(--ease);
}

.spot-feature:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 48px rgb(90 111 133 / 12%);
}

.spot-feature__media {
  position: relative;
  aspect-ratio: 21 / 9;
  max-height: 22rem;
  overflow: hidden;
}

.spot-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(26 35 50 / 72%) 0%,
    rgb(26 35 50 / 20%) 45%,
    transparent 100%
  );
}

.spot-feature__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.25rem, 4vw, 2rem);
  color: #fff;
}

.spot-feature__copy .eyebrow { color: rgb(184 207 224); }

.spot-feature__copy h3 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.spot-feature__copy p {
  margin: 0.75rem 0 0;
  max-width: 32rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgb(226 232 240 / 92%);
}

.spot-feature__cta {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  background: #fff;
  color: var(--fg);
  font-size: 0.875rem;
  font-weight: 600;
}

.guide-preview {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .guide-preview {
    grid-template-columns: 7rem 1fr;
    align-items: start;
  }
}

.guide-preview__thumb {
  aspect-ratio: 4 / 5;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.guide-preview__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-step__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.path-tile--visual {
  position: relative;
  padding: 0;
  min-height: 0;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  color: #fff;
}

.path-tile--visual .path-tile__bg {
  position: absolute;
  inset: 0;
}

.path-tile--visual .path-tile__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.path-tile--visual .path-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(26 35 50 / 72%) 0%, transparent 55%);
}

.path-tile--visual .path-tile__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
}

.path-tile--visual .path-tile__arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgb(255 255 255 / 70%);
}

.path-tile--visual .path-tile__label { color: rgb(184 207 224); }

/* Detail page — blue-pond.html */
.detail-page .hero--spot {
  min-height: clamp(20rem, 55vh, 32rem);
}

.detail-page .hero--spot .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgb(26 35 50 / 15%) 0%,
    rgb(26 35 50 / 55%) 55%,
    var(--bg) 100%
  );
}

.detail-page .hero--spot .hero-content {
  padding-top: 5rem;
  color: #fff;
}

.detail-page .hero--spot .eyebrow { color: rgb(184 207 224); }
.detail-page .hero--spot .hero-tagline { color: rgb(226 232 240 / 90%); }

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.detail-back:hover { text-decoration: underline; text-underline-offset: 0.15em; }

.notice-banner {
  margin: 0 0 2rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
}

.facts-grid {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
}

.fact-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
  .fact-item:nth-child(odd) { padding-right: 2rem; border-right: 1px solid var(--border); }
  .fact-item:nth-child(even) { padding-left: 2rem; }
}

.fact-item__label {
  font-family: Syne, sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.fact-item__body {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
}

.detail-gallery {
  margin-top: 3rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .experience-list { grid-template-columns: repeat(2, 1fr); }
}

.experience-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface);
}

.experience-card__eyebrow {
  font-family: Syne, sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.experience-card__title {
  margin: 0.75rem 0 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.experience-card__subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.experience-card__lead {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
  flex: 1;
}

.experience-card__meta {
  margin: 1.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--muted);
}

.experience-card__meta dt {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.experience-card__meta dd {
  margin: 0.25rem 0 0.75rem;
}

.experience-card__note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--muted);
  opacity: 0.9;
}

.experience-card__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-external::after {
  content: "↗";
  margin-left: 0.35rem;
  font-size: 0.875em;
}

.hub-card {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--accent-soft);
}

.hub-card .heading-md {
  margin: 0.75rem 0 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.map-embed {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  width: 100%;
  /* BKKDW Organic Drop-off: 記事幅いっぱいの横長ブロック（≈16:9）。50dvh/72vh の全画面化はしない */
  aspect-ratio: 16 / 9;
  max-height: min(22rem, 56vw);
  min-height: 11rem;
  height: auto;
  background: #e8edf2;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  .map-embed {
    max-height: min(25rem, 42vw);
  }
}

@media (max-width: 768px) {
  .map-embed {
    max-height: min(24rem, 45dvh);
    min-height: 13rem;
  }
}

#food-map,
#onsen-map {
  scroll-margin-top: 5.5rem;
}

.map-layer-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.map-layer-btn {
  min-height: 44px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-family: Syne, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.map-layer-btn:hover {
  border-color: var(--accent);
  color: var(--fg);
}

.map-layer-btn[aria-pressed="true"] {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--surface);
}

.map-layer-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.map-layer-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.map-layer-hint--mobile {
  display: none;
}

@media (max-width: 768px) {
  .map-layer-hint--mobile {
    display: block;
  }
}

.onsen-region {
  margin: 2.5rem 0 0;
  font-family: Syne, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.onsen-region + .food-spot-list {
  margin-top: 1rem;
}

.food-spot-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.food-spot {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 5rem;
  transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.food-spot.is-map-focused {
  background: var(--accent-soft);
  box-shadow: inset 3px 0 0 var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .food-spot {
    transition: none;
  }
}

@media (min-width: 640px) {
  .food-spot { grid-template-columns: 3.5rem 1fr; gap: 1.5rem; }
}

.food-spot__num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.food-spot__tag {
  margin: 0;
  font-family: Syne, sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.food-spot__title {
  margin: 0.5rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.food-spot__lead {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 40rem;
}

.food-spot__map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  min-height: 44px;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.food-spot__map-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 0.2rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .map-layer-btn {
    transition: none;
  }
}
