/* Modernist — design-system tokens and component classes. This file is the source of truth for the system's look; retune it here and see readme.md. */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;800&display=swap');

:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201e1d;
  --color-accent: #ec3013;
  --color-accent-2: #e15b47;
  --color-divider: color-mix(in srgb, #201e1d 40%, transparent);

  /* Tonal ramps — generated in OKLCH on one shared lightness scale, so the
     same step of any role matches the others in visual value. */
  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-neutral-800: #444141;
  --color-neutral-900: #2d2b2b;

  --color-accent-100: #fff2ef;
  --color-accent-200: #ffe0d9;
  --color-accent-300: #ffc4b8;
  --color-accent-400: #ff9783;
  --color-accent-500: #ff563c;
  --color-accent-600: #dd2b0f;
  --color-accent-700: #ae1800;
  --color-accent-800: #7c1405;
  --color-accent-900: #4d170e;

  --color-accent-2-100: #fff2ef;
  --color-accent-2-200: #ffe0da;
  --color-accent-2-300: #ffc4b9;
  --color-accent-2-400: #ff9784;
  --color-accent-2-500: #ef6853;
  --color-accent-2-600: #c94b39;
  --color-accent-2-700: #9e3526;
  --color-accent-2-800: #71261b;
  --color-accent-2-900: #471d16;

  --font-heading: "Archivo", system-ui, sans-serif;
  --font-heading-weight: 800;
  --font-body: "Archivo", system-ui, sans-serif;

  --space-1: 4.0px;
  --space-2: 8.0px;
  --space-3: 12.0px;
  --space-4: 16.0px;
  --space-6: 24.0px;
  --space-8: 32.0px;

  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;

  /* Elevation — derived from the ground: soft ink-tinted shadows on a
     light theme, a hairline edge + ambient darkness on a dark one. */
  --shadow-sm: 0 1px 2px color-mix(in srgb, #2d2b2b 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2d2b2b 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2d2b2b 22%, transparent);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); }

.grayscale{filter:grayscale(1) contrast(1.08)}

/* ══════════════════════════════════════════════════════════════════════════
   Components — built with the tokens above. Plain CSS
   on plain HTML: no JavaScript, no build step. Each class is documented in
   readme.md and demonstrated in foundations/ and components/.
   ══════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-size: 15px; line-height: 1.55; font-weight: 400; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 var(--space-2);
}
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 25px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 13px; }
h6 { letter-spacing: 0.08em; text-transform: uppercase; }
p { margin: 0 0 var(--space-3); }
a { color: var(--color-accent); text-underline-offset: 3px; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
figcaption {
  font-size: 11px; margin-top: var(--space-1);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.text-muted { color: color-mix(in srgb, var(--color-text) 55%, transparent); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

/* — rules — */
.hr {
  height: 2px; border: 0; margin: var(--space-4) 0;
  background: var(--color-divider);
}

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 14px; line-height: 1.2; color: var(--color-text); /* matches the .input's 14px —
     the pair sits side by side in sign-up rows */
  background: transparent; border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
}
.btn svg { display: block; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary { background: var(--color-accent); color: var(--color-bg); }
.btn-primary:hover { background: var(--color-accent-600); }
.btn-primary:active { background: var(--color-accent-700); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.btn-secondary:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }
.btn-ghost { color: var(--color-accent); padding-inline: var(--space-1); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.btn-ghost:active { background: color-mix(in srgb, var(--color-accent) 18%, transparent); }
.btn-icon { width: 36px; height: 36px; padding: 0; }
.btn-block { width: 100%; margin-top: var(--space-2); justify-content: flex-start; text-align: left; }

/* — forms — */
.field > label {
  display: block; font-size: 12px; margin-bottom: 5px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.input {
  width: 100%; min-height: 36px; padding: 6px 10px; font: inherit;
  font-size: 14px; color: var(--color-text); caret-color: var(--color-accent);
  background: var(--color-surface);
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 90px; resize: vertical; }
.radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.radio input, .seg-opt input {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.radio .dot {
  width: 16px; height: 16px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--color-divider);
}
.radio:hover .dot { border-color: var(--color-accent); }
.radio input:checked + .dot {
  border-color: var(--color-accent); background: var(--color-accent);
  box-shadow: inset 0 0 0 4px var(--color-bg);
}
.radio input:focus-visible + .dot { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.seg {
  display: inline-flex; overflow: hidden;
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.seg-opt {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; font-size: 13px; cursor: pointer;
}
.seg-opt + .seg-opt { border-left: 1px solid var(--color-divider); }
.seg-opt:has(input:checked) { background: var(--color-accent); color: var(--color-bg); }
.seg-opt:not(:has(input:checked)):hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.seg-opt:has(input:focus-visible) { outline: 2px solid var(--color-accent); outline-offset: -2px; }

/* — cards — */
.card {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3); border-radius: var(--radius-md); background: var(--color-surface);
}
.card-kicker { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.card-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 17px; line-height: 1.2;
}
.card-body { margin: 0; font-size: 13px; opacity: 0.8; flex: 1; }
.card-meta {
  display: flex; align-items: center; gap: 6px; font-size: 11px;
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
}
.elev-sm { box-shadow: var(--shadow-sm); }
.elev-md { box-shadow: var(--shadow-md); }
.elev-lg { box-shadow: var(--shadow-lg); }

/* — tags — */
.tag {
  display: inline-flex; align-items: center; font-size: 11px;
  letter-spacing: 0.02em; padding: 3px 10px;
  border-radius: calc(var(--radius-md) * 0.75);
}
.tag-accent { background: var(--color-accent-100); color: var(--color-accent-800); }
.tag-accent-2 { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }
.tag-neutral { background: var(--color-neutral-100); color: var(--color-neutral-800); }
.tag-outline { border: 1px solid var(--color-accent); color: var(--color-accent); }

/* — navigation — */
.nav {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-bottom: 2px solid var(--color-divider);
}
.nav-brand {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 18px; margin-right: auto;
}
.nav a { color: inherit; text-decoration: none; font-size: 14px; }
.nav a:hover, .nav a[aria-current='page'] { color: var(--color-accent); }

/* — tables — */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  padding: var(--space-2); border-bottom: 2px solid var(--color-divider);
}
.table td {
  padding: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
}
.table tbody tr:hover { background: color-mix(in srgb, var(--color-text) 4%, transparent); }

/* — dialog — */
.dialog-backdrop {
  position: fixed; inset: 0; display: grid; place-items: center;
  padding: var(--space-4);
  background: color-mix(in srgb, var(--color-neutral-900) 50%, transparent);
}
.dialog {
  width: min(440px, 100%); display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-4); border-radius: var(--radius-lg);
  background: var(--color-surface); box-shadow: var(--shadow-lg);
}
.dialog-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 20px;
}
.dialog-body { font-size: 14px; opacity: 0.85; }
.dialog-actions { display: flex; justify-content: flex-end; gap: var(--space-2); margin-top: var(--space-2); }



/* ================= ルー列島旅 NEXT — page layer ================= */
html, body { margin: 0; padding: 0; background: var(--color-bg); color: var(--color-text); }
body { font-family: 'Archivo','Zen Kaku Gothic New',sans-serif; -webkit-font-smoothing: antialiased; }
a { color: var(--color-accent-700); text-decoration: none; }
a:hover { color: var(--color-accent); }
*, *::before, *::after { box-sizing: border-box; }
@keyframes riseUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes reelShake { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

.kicker { font-size: 11px; font-weight: 800; letter-spacing: .22em; }
.kicker.accent { color: var(--color-accent); }
.kicker.muted { color: var(--color-neutral-700); }
.block-note { font-size: 13px; line-height: 1.7; color: var(--color-neutral-700); }
.fineprint { font-size: 12px; color: var(--color-neutral-600); }
.rule { height: 2px; background: var(--color-text); }

.site-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 14px 24px; border-bottom: 2px solid var(--color-text); }
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand-name { font-weight: 900; font-size: 20px; letter-spacing: -.01em; }
.brand-next { font-weight: 800; font-size: 13px; letter-spacing: .18em; color: var(--color-accent); }
.head-note { font-size: 12px; font-weight: 500; color: var(--color-neutral-700); }

.hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); border-bottom: 2px solid var(--color-text); }
.hero-copy { padding: 40px 24px 32px; display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.hero-copy h1 { margin: 0; font-size: clamp(40px, 6.4vw, 82px); line-height: .94; letter-spacing: -.03em; font-weight: 900; }
.lede { margin: 0; max-width: 34em; font-size: 15px; line-height: 1.85; color: var(--color-neutral-800); text-wrap: pretty; }
.start-row { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 220px; }
.field label { font-size: 11px; font-weight: 800; letter-spacing: .16em; color: var(--color-neutral-700); }
select.input { font-family: inherit; font-size: 18px; font-weight: 700; padding: 12px 14px; min-width: 220px; }
.hint { font-size: 12px; line-height: 1.6; color: var(--color-neutral-600); padding-bottom: 4px; }
.spin-btn { font-family: inherit; display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 22px 24px; font-size: clamp(20px, 2.6vw, 30px); font-weight: 900; letter-spacing: -.01em; text-align: left; cursor: pointer; }
.spin-btn .arrow { font-size: 22px; font-weight: 800; }

.hero-map { border-left: 2px solid var(--color-text); display: flex; flex-direction: column; min-width: 0; }
.map-bar { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 12px 20px; border-bottom: 2px solid var(--color-text); }
.map-start { font-size: 12px; font-weight: 700; }
#mapContainer { flex: 1; display: flex; align-items: center; justify-content: center; padding: 16px; min-height: 420px; background: #fff; }
#mapContainer svg { width: 100%; height: auto; max-height: 62vh; display: block; }
.loading { font-size: 12px; color: var(--color-neutral-500); }

.reel { background: var(--color-accent); color: #fff; padding: 36px 24px; border-bottom: 2px solid var(--color-text); overflow: hidden; }
.reel .rolling { opacity: .85; animation: blink .7s linear infinite; }
.reel-name { font-size: clamp(44px, 11vw, 128px); line-height: 1; font-weight: 900; letter-spacing: -.04em; animation: reelShake .14s linear infinite; }

#result { animation: riseUp .5s cubic-bezier(.16,1,.3,1) both; }
.poster { background: var(--color-accent); color: #fff; border-bottom: 2px solid var(--color-text); display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.poster-main { padding: 40px 24px; min-width: 0; }
.dest { font-size: clamp(52px, 9vw, 124px); line-height: .92; font-weight: 900; letter-spacing: -.045em; margin-top: 8px; }
.weather { margin-top: 20px; font-size: 16px; font-weight: 700; }
.poster-actions { padding: 40px 24px; display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; min-width: 0; }
.leg { font-size: 12px; opacity: .85; }
.link-block { font-family: inherit; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; color: var(--color-accent-700); border: 0; padding: 18px 20px; font-size: 17px; font-weight: 800; cursor: pointer; }
.link-block.ghost-white { background: transparent; color: #fff; border: 2px solid #fff; padding: 16px 20px; font-size: 15px; }
.link-block.ghost-white:hover { background: rgba(255,255,255,.14); }
.link-block.outline { background: #fff; color: var(--color-text); border: 2px solid var(--color-text); padding: 20px; }
.link-block.outline:hover { background: var(--color-accent-100); }
.link-block .accent { color: var(--color-accent); }

.block { border-bottom: 2px solid var(--color-text); }
.block-bar { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 14px 24px; border-bottom: 2px solid var(--color-text); }
.textbtn { font-family: inherit; background: none; border: 0; font-size: 12px; font-weight: 700; color: var(--color-neutral-700); cursor: pointer; text-decoration: underline; }

.spots { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.spot { font-family: inherit; text-align: left; background: #fff; border: 0; border-right: 2px solid var(--color-text); padding: 28px 24px; cursor: pointer; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.spot:hover { background: var(--color-accent-100); }
.spot-no { font-size: 11px; font-weight: 800; letter-spacing: .2em; color: var(--color-accent); }
.spot-name { font-size: 21px; font-weight: 900; line-height: 1.25; letter-spacing: -.01em; }
.spot-desc { font-size: 13px; line-height: 1.7; color: var(--color-neutral-700); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.dice-block { border-bottom: 2px solid var(--color-text); display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.dice-left { padding: 36px 24px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; min-width: 0; }
.dice-stage { width: 120px; height: 120px; perspective: 700px; flex: none; }
.cube { position: relative; width: 120px; height: 120px; transform-style: preserve-3d; transition: transform 1.6s cubic-bezier(.2,.9,.25,1); transform: rotateX(-18deg) rotateY(22deg); }
.face { position: absolute; inset: 0; background: #fff center/cover no-repeat; border: 2px solid var(--color-text); }
.f1 { background-image: url('dice-1.png'); transform: translateZ(60px); }
.f6 { background-image: url('dice-6.png'); transform: rotateY(180deg) translateZ(60px); }
.f3 { background-image: url('dice-3.png'); transform: rotateY(90deg) translateZ(60px); }
.f4 { background-image: url('dice-4.png'); transform: rotateY(-90deg) translateZ(60px); }
.f5 { background-image: url('dice-5.png'); transform: rotateX(90deg) translateZ(60px); }
.f2 { background-image: url('dice-2.png'); transform: rotateX(-90deg) translateZ(60px); }
.dice-copy { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.btn.flush { font-family: inherit; display: flex; justify-content: flex-start; padding: 14px 20px; font-size: 16px; font-weight: 800; text-align: left; cursor: pointer; }
.dice-right { border-left: 2px solid var(--color-text); padding: 36px 24px; display: flex; flex-direction: column; justify-content: center; gap: 8px; min-width: 0; }
.budget { font-size: clamp(40px, 6vw, 76px); line-height: 1; font-weight: 900; letter-spacing: -.04em; }

.prep { border-bottom: 2px solid var(--color-text); padding: 32px 24px; background: var(--color-neutral-100); }
.prep-note { margin: 6px 0 20px; }
.prep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; margin-bottom: 12px; }

.mission { border-bottom: 2px solid var(--color-text); padding: 26px 24px; background: var(--color-accent-100); }
.mission-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.mission-text { margin-top: 10px; font-size: clamp(20px, 3.2vw, 30px); font-weight: 900; line-height: 1.35; letter-spacing: -.02em; }
.share-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.transport-row { margin-top: 20px; padding-top: 16px; border-top: 2px solid var(--color-text); }
.transport { display: block; margin: 4px 0 2px; font-size: clamp(24px, 3.4vw, 38px); font-weight: 900; letter-spacing: -.02em; }
.chain { border-bottom: 2px solid var(--color-text); padding: 26px 24px; display: flex; flex-direction: column; gap: 10px; }
.stamp-leg { font-size: 11px; font-weight: 700; color: var(--color-neutral-600); }
.stamp-stats { font-size: 12px; text-align: right; }

.stamps { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.stamp { border-right: 2px solid var(--color-text); border-bottom: 2px solid var(--color-text); padding: 18px; display: flex; flex-direction: column; gap: 6px; min-width: 0; background: #fff; }
.stamp-date { font-size: 10px; font-weight: 800; letter-spacing: .16em; color: var(--color-neutral-600); }
.stamp-pref { font-size: 20px; font-weight: 900; letter-spacing: -.02em; }
.stamp-budget { font-size: 12px; font-weight: 700; color: var(--color-accent-700); }

.howto { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { padding: 28px 24px; border-right: 2px solid var(--color-text); min-width: 0; }
.step:last-child { border-right: 0; }
.step-no { font-size: 40px; font-weight: 900; color: var(--color-accent); line-height: 1; }
.step-t { margin: 10px 0 6px; font-size: 17px; font-weight: 800; }

.site-foot { padding: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 12px; color: var(--color-neutral-700); }

.modal-backdrop { position: fixed; inset: 0; background: rgba(32,30,29,.62); display: flex; align-items: center; justify-content: center; padding: 24px; z-index: 60; }
.modal { background: #fff; border: 2px solid var(--color-text); max-width: 520px; width: 100%; padding: 32px; box-shadow: var(--shadow-lg); }
.modal h3 { margin: 10px 0 14px; font-size: 28px; font-weight: 900; line-height: 1.2; letter-spacing: -.02em; }
.modal p { margin: 0; font-size: 15px; line-height: 1.9; color: var(--color-neutral-800); text-wrap: pretty; }
.modal-actions { display: grid; gap: 8px; margin-top: 22px; }
.link-block.compact { padding: 13px 16px; font-size: 14px; border-width: 2px; }
.modal-close { width: 100%; margin-top: 24px; }
[hidden] { display: none !important; }

/* ===== 県別ページ ===== */
.brand-link { color: inherit; text-decoration: none; display: inline-flex; align-items: baseline; gap: 6px; }
.brand-link:hover { color: var(--color-accent); }

.pref-stats { flex: 1; padding: 26px 24px; display: flex; flex-direction: column; gap: 24px; justify-content: center; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-big { font-size: clamp(34px, 5vw, 58px); font-weight: 900; letter-spacing: -.03em; line-height: 1; }

.nbr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.nbr { text-decoration: none; color: inherit; background: #fff; border-right: 2px solid var(--color-text); padding: 24px; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.nbr:hover { background: var(--color-accent-100); }
.nbr-no { font-size: 11px; font-weight: 800; letter-spacing: .2em; color: var(--color-accent); }
.nbr-name { font-size: 24px; font-weight: 900; letter-spacing: -.02em; }
.nbr-note { font-size: 12px; color: var(--color-neutral-700); }

.reach { background: #fff; }
.reach-row { display: grid; grid-template-columns: 66px 52px 1fr; gap: 12px; align-items: baseline; padding: 14px 24px; border-bottom: 1px solid var(--color-neutral-300); }
.reach-row:last-child { border-bottom: 0; }
.reach-n { font-size: 24px; font-weight: 900; color: var(--color-accent); letter-spacing: -.02em; }
.reach-n small { font-size: 12px; margin-left: 2px; }
.reach-c { font-size: 12px; font-weight: 800; color: var(--color-neutral-600); }
.reach-prefs { font-size: 13px; line-height: 1.9; }
.reach-prefs a { display: inline-block; white-space: nowrap; color: var(--color-text); text-decoration: none; border-bottom: 1px solid var(--color-neutral-400); }
.reach-prefs a:hover { color: var(--color-accent); border-color: var(--color-accent); }

.spot-static { cursor: default; }
.spot-desc-full { display: block; overflow: visible; -webkit-line-clamp: unset; }

.mission-list { margin: 12px 0 0; padding-left: 1.2em; display: flex; flex-direction: column; gap: 8px; font-size: 16px; font-weight: 700; line-height: 1.6; }

.budget-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; margin-bottom: 12px; }

@media (max-width: 560px) {
  .reach-row { grid-template-columns: 52px 44px 1fr; gap: 8px; padding: 12px 16px; }
  .reach-n { font-size: 20px; }
}

/* ===== 県別ページへの導線 ===== */
.head-preflink { display: inline-block; margin-left: 10px; font-size: 12px; font-weight: 800;
  color: var(--color-accent); text-decoration: none; border-bottom: 2px solid var(--color-accent); padding-bottom: 1px; }
.head-preflink:hover { color: var(--color-accent-700); border-color: var(--color-accent-700); }

.prefdir { background: var(--color-bg); }
.prefdir > summary { list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; padding: 18px 24px; font-size: 15px; font-weight: 900; }
.prefdir > summary::-webkit-details-marker { display: none; }
.prefdir > summary:hover { background: var(--color-accent-100); }
.prefdir-chev { font-size: 13px; font-weight: 800; color: var(--color-accent); display: inline-block; }
.prefdir[open] .prefdir-chev { transform: rotate(180deg); }
.prefdir-body { border-top: 2px solid var(--color-text); }

.prefrow { display: grid; grid-template-columns: 110px 1fr; gap: 10px; padding: 10px 24px;
  border-bottom: 1px solid var(--color-neutral-300); background: #fff; }
.prefrow:last-child { border-bottom: 0; }
.prefrow-name { font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--color-accent); padding-top: 2px; }
.prefrow-links { font-size: 13px; line-height: 1.95; }
.prefrow-links a { display: inline-block; white-space: nowrap; color: var(--color-text);
  text-decoration: none; border-bottom: 1px solid var(--color-neutral-400); margin-right: 10px; }
.prefrow-links a:hover { color: var(--color-accent); border-color: var(--color-accent); }

@media (max-width: 560px) {
  .prefrow { grid-template-columns: 1fr; gap: 2px; padding: 10px 16px; }
}
