/* =========================================================
   電車とバスで行くソロキャンプ — 共通スタイル v2
   テーマ: フィールドガイド × 地形図 × 路線図
   ========================================================= */

:root {
  --pine:     #16311f;   /* 深い森（最暗）*/
  --pine-2:   #1e4029;   /* 森 */
  --moss:     #4a6741;   /* 苔 */
  --sage:     #7f9471;   /* 明るい苔 */
  --paper:    #f5f2e8;   /* 生成りの紙 */
  --paper-2:  #ece7d7;   /* 沈んだ紙 */
  --paper-3:  #e2dcc7;   /* さらに沈んだ紙 */
  --signage:  #d98324;   /* 駅サインのアンバー */
  --signage-2:#f0a44b;   /* 明るいアンバー */
  --ember:    #e8633a;   /* 焚き火の熾 */
  --ink:      #23251d;   /* 墨 */
  --steel:    #74766a;   /* 補助テキスト */
  --line:     #d6d0ba;   /* 罫線 */

  --font-display: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-body:    "Noto Sans JP", sans-serif;
  --font-data:    "Roboto Mono", monospace;

  --maxw: 1000px;
  --radius: 4px;
  --shadow: 0 8px 30px rgba(22,49,31,.10);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: .015em;
}

/* 紙の質感（ごく薄いノイズ） */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(35,37,29,.028) 1px, transparent 1px);
  background-size: 4px 4px;
}
main, header, footer, section, article { position: relative; z-index: 1; }

img, svg { max-width: 100%; display: block; }
a { color: var(--pine-2); text-underline-offset: .2em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245,242,232,.9);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--pine); }
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand .name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14.5px; letter-spacing: .03em; line-height: 1.3;
}
.nav { display: flex; gap: 4px; }
.nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 13.5px;
  text-decoration: none; color: var(--ink);
  padding: 7px 12px; border-radius: 99px;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.brand .name { white-space: nowrap; }
.nav a:hover { background: var(--pine); color: var(--paper); }

/* ---------- ヒーロー（風景イラスト） ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #12271a 0%, var(--pine) 46%, var(--pine-2) 100%);
  overflow: hidden;
}
/* 3シーンの切り替え */
.hero-scene {
  display: block; width: 100%; height: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .5s ease;
}
.hero-scene:not(:first-child) { position: absolute; inset: 0; height: 100%; }
.hero[data-time="morning"] .scene-morning,
.hero[data-time="day"]     .scene-day,
.hero[data-time="night"]   .scene-night { opacity: 1; visibility: visible; }
/* 高さの土台は常に1枚目が担う */
.hero .scene-morning { position: relative; }

/* 文字を読みやすくする暗幕 */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,26,16,.66) 0%, rgba(12,26,16,.34) 46%, rgba(12,26,16,0) 78%);
}

.hero-copy {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-start;
  pointer-events: none;
}
.hero-copy .wrap { padding-top: clamp(34px, 7vw, 84px); pointer-events: auto; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-data); font-size: 11.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--signage-2);
  margin: 0 0 16px;
  animation: rise .8s ease both;
}
.hero .eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--signage-2);
}
.hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(27px, 5.6vw, 52px); line-height: 1.32;
  margin: 0 0 18px; letter-spacing: .02em; color: var(--paper);
  text-shadow: 0 2px 24px rgba(10,25,15,.45);
  animation: rise .8s .08s ease both;
}
.hero p.sub {
  max-width: 30em; margin: 0 0 26px;
  color: #dfe3cd; font-size: clamp(13.5px, 1.8vw, 16px);
  text-shadow: 0 1px 14px rgba(10,25,15,.5);
  animation: rise .8s .16s ease both;
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 12px; animation: rise .8s .24s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-decoration: none; padding: 13px 20px; border-radius: 3px;
  border: 1.5px solid transparent;
  min-width: 168px; text-align: center;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--signage); color: #221503; }
.btn-primary:hover { background: var(--signage-2); }
.btn-forest { background: var(--sage); color: #12271a; }
.btn-forest:hover { background: #93a884; }
.btn-ghost { background: rgba(245,242,232,.06); color: var(--paper); border-color: rgba(245,242,232,.45); }
.btn-ghost:hover { border-color: var(--signage-2); color: var(--signage-2); }

/* 発車標風のデータ帯 */
.depart-board {
  background: #0e2115;
  border-top: 1px solid rgba(240,164,75,.25);
}
.depart-board .wrap {
  display: flex; flex-wrap: wrap; gap: 6px 34px;
  padding: 13px 22px;
}
.depart-board .item {
  display: flex; align-items: baseline; gap: 9px;
  font-family: var(--font-data);
}
.depart-board .k { font-size: 10.5px; letter-spacing: .16em; color: var(--sage); text-transform: uppercase; }
.depart-board .v { font-size: 15px; color: var(--signage-2); font-weight: 700; }

/* ---------- 路線図レイアウト（サイトの署名） ---------- */
.routemap { position: relative; padding: 26px 0 10px; }
.routemap::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 32px;
  width: 3px; border-radius: 2px;
  background: repeating-linear-gradient(
    180deg,
    var(--moss) 0 14px,
    transparent 14px 22px
  );
  opacity: .55;
}
.station {
  position: relative;
  padding: 34px 4px 30px 74px;
}
.station-node {
  position: absolute; left: 20px; top: 40px;
  width: 27px; height: 27px; border-radius: 50%;
  background: var(--paper);
  border: 3.5px solid var(--pine);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-data); font-size: 10px; font-weight: 700;
  color: var(--pine);
  box-shadow: 0 0 0 5px var(--paper);
}
.station-head { margin-bottom: 24px; }
.station-head .en {
  font-family: var(--font-data); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--signage);
  margin: 0 0 4px;
}
.station-head h2 {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(21px, 3vw, 27px);
  margin: 0 0 6px; letter-spacing: .02em;
}
.station-head .desc { margin: 0; font-size: 13.5px; color: var(--steel); max-width: 40em; }
.station-head .more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--pine-2); text-decoration: none;
}
.station-head .more::after { content: "→"; transition: transform .15s ease; }
.station-head .more:hover::after { transform: translateX(4px); }

/* ---------- ギアのカテゴリー ---------- */
.cat-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px;
  margin: 0 0 26px;
}
.cat-chip {
  display: flex; align-items: center; gap: 8px;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fffdf6; color: var(--ink); text-decoration: none;
  font-family: var(--font-display); font-weight: 500; font-size: 12.5px;
  line-height: 1.3;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.cat-chip svg { width: 19px; height: 19px; flex: none; color: var(--moss); transition: color .15s ease; }
.cat-chip:hover {
  background: var(--pine); color: var(--paper); border-color: var(--pine);
  transform: translateY(-2px);
}
.cat-chip:hover svg { color: var(--signage-2); }
.cat-chip.is-active {
  background: var(--pine); color: var(--paper); border-color: var(--pine);
}
.cat-chip.is-active svg { color: var(--signage-2); }
.cat-chip .cat-n {
  margin-left: auto;
  font-family: var(--font-data); font-size: 11px;
  background: var(--moss); color: var(--paper);
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 99px; display: inline-flex; align-items: center; justify-content: center;
}
.cat-chip.is-active .cat-n { background: var(--signage); color: #221503; }
.cat-chip .cat-soon {
  margin-left: auto;
  font-family: var(--font-data); font-size: 9.5px; letter-spacing: .04em;
  color: var(--steel); border: 1px solid var(--line);
  padding: 1px 6px; border-radius: 99px; white-space: nowrap;
}
.cat-chip.is-empty { opacity: .62; }
.cat-chip.is-empty:hover {
  background: #fffdf6; color: var(--ink); border-color: var(--moss); transform: none;
}
.cat-chip.is-empty:hover svg { color: var(--moss); }

/* カテゴリーページ：記事なし */
.cat-empty {
  text-align: center; padding: 46px 24px;
  border: 1px dashed var(--line); border-radius: var(--radius);
  background: #fffdf6;
}
.cat-empty svg { width: 40px; height: 40px; margin-bottom: 14px; }
.cat-empty .ce-t { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin: 0 0 8px; }
.cat-empty .ce-d { font-size: 13.5px; color: var(--steel); margin: 0 0 20px; line-height: 1.8; }
.cat-empty .ce-btn {
  display: inline-block; background: var(--pine); color: var(--paper);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-decoration: none; padding: 12px 26px; border-radius: 3px;
}
.cat-empty .ce-btn:hover { background: var(--pine-2); }

/* カテゴリーページのカード内説明 */
.card .card-desc {
  font-size: 12px; color: var(--steel); line-height: 1.7; margin: 0 0 10px;
}

/* ---------- ギアカード ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fffdf6; text-decoration: none; color: var(--ink);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--moss); }
.card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--paper-2), var(--paper-3));
  overflow: hidden;
}
.card .thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.card .thumb svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.card .thumb .ill-ground {
  position: absolute; bottom: 0; left: 0; right: 0; height: 26%;
  background: radial-gradient(120% 100% at 50% 120%, rgba(74,103,65,.24), transparent 70%);
}
.card .body { padding: 16px 17px 18px; }
.card .cat {
  font-family: var(--font-data); font-size: 10.5px; letter-spacing: .14em;
  color: var(--moss); text-transform: uppercase;
}
.card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px;
  margin: 7px 0 11px; line-height: 1.45;
}
.card .body { display: flex; flex-direction: column; flex: 1; }
.card .readmore { margin-top: auto; padding-top: 12px; }
.datatags { display: flex; flex-wrap: wrap; gap: 6px; }
.datatag {
  font-family: var(--font-data); font-size: 11px;
  background: var(--paper-2); color: var(--ink);
  padding: 3px 9px; border-radius: 2px; border: 1px solid var(--line);
}
.datatag b { color: var(--signage); font-weight: 700; }
.card .readmore {
  margin-top: 13px; font-family: var(--font-display); font-weight: 700;
  font-size: 12.5px; color: var(--pine-2);
}

/* ---------- キャンプ場カード ---------- */
.spot-list { display: flex; flex-direction: column; }
.spot {
  display: grid; grid-template-columns: 104px 1fr; gap: 18px;
  align-items: center; padding: 20px 12px;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink); border-radius: var(--radius);
  transition: background .15s ease;
}
.spot:hover { background: rgba(74,103,65,.07); }
.spot:hover h3 { color: var(--signage); }
.spot .badge {
  width: 104px; height: 104px; border-radius: var(--radius);
  background: linear-gradient(165deg, var(--pine-2), var(--pine));
  color: var(--paper); flex: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.badge svg.badge-mt { position: absolute; bottom: 0; left: 0; right: 0; opacity: .5; }
.spot .badge .score {
  position: relative; font-family: var(--font-display); font-weight: 900;
  font-size: 29px; line-height: 1;
}
.spot .badge .lbl {
  position: relative; font-family: var(--font-data); font-size: 9.5px;
  letter-spacing: .18em; color: var(--signage-2); margin-top: 5px;
}
.spot-area {
  margin: 0 0 4px;
  font-family: var(--font-data); font-size: 10.5px; letter-spacing: .14em;
  color: var(--moss); display: flex; align-items: center; gap: 8px;
}
.walk-badge {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: .04em;
  background: var(--signage); color: #221503;
  padding: 2px 7px; border-radius: 2px;
}
.onsen-badge {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: .04em;
  background: var(--ember); color: #fff;
  padding: 2px 7px; border-radius: 2px;
}
.spot h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 17.5px;
  margin: 0 0 7px; transition: color .15s ease;
}
.spot .access {
  font-family: var(--font-data); font-size: 12px; color: var(--steel);
  display: flex; flex-wrap: wrap; gap: 5px 8px;
}
.spot .access span {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 2.5px 9px; border-radius: 99px;
}
.spot .access span.hl {
  background: var(--pine); border-color: var(--pine); color: var(--paper);
}
.spot .access svg { width: 12px; height: 12px; flex: none; }

/* ---------- Kindle本 ---------- */
.book-series { margin: 0 0 22px; }
.series-title {
  margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--pine); line-height: 1.6;
  border-left: 3px solid var(--signage); padding-left: 13px;
}
.series-title span {
  display: block; font-weight: 400; font-size: 12.5px; color: var(--steel);
  margin-top: 4px; line-height: 1.65;
}
.book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.book {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fffdf6; text-decoration: none; color: var(--ink);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.book:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--signage); }
.book-cover {
  position: relative; overflow: hidden;
  background: var(--pine);
  border-bottom: 1px solid var(--line);
}
.book-cover img {
  width: 100%; height: auto; display: block;
  transition: transform .35s ease;
}
.book:hover .book-cover img { transform: scale(1.03); }
.book-cover .vol {
  position: absolute; top: 10px; left: 10px; z-index: 1;
  font-family: var(--font-data); font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; color: #221503;
  background: var(--signage); padding: 3px 9px; border-radius: 2px;
}
.book-body { padding: 15px 16px 17px; }
.book-body h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  margin: 0 0 7px; line-height: 1.45;
}
.book-body p { margin: 0 0 12px; font-size: 12.5px; color: var(--steel); line-height: 1.7; }
.book-link {
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  color: var(--pine-2);
}
.book:hover .book-link { color: var(--signage); }

/* ---------- About（イラスト帯） ---------- */
.about-band { margin-top: 26px; }
.about-band .scene { display: block; width: 100%; height: auto; }
.about-body {
  background: var(--pine); color: #dfe3cd;
  padding: 0 0 46px;
}
.about-body .wrap { max-width: 780px; }
.about-body h2 {
  font-family: var(--font-display); font-weight: 900; font-size: 23px;
  color: var(--paper); margin: 0 0 16px;
}
.about-body p { margin: 0 0 14px; font-size: 15px; }
.about-stats { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 26px; }
.about-stats .stat .n {
  font-family: var(--font-data); font-size: 30px; font-weight: 700; color: var(--paper);
}
.about-stats .stat .n b { color: var(--signage-2); }
.about-stats .stat .c { font-size: 12px; color: var(--sage); font-family: var(--font-data); letter-spacing: .06em; }

/* ---------- 記事 ---------- */
.article { padding: 44px 0 20px; }
.article .wrap { max-width: 760px; }
.breadcrumb {
  font-family: var(--font-data); font-size: 11.5px; color: var(--steel);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--steel); }
.article .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-data); font-size: 11.5px; letter-spacing: .16em;
  color: var(--signage); text-transform: uppercase;
}
.article .kicker::before { content: ""; width: 20px; height: 1.5px; background: var(--signage); }
.article h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(24px, 4.6vw, 34px); line-height: 1.42; margin: 12px 0 18px;
}
.article .lead {
  font-size: 17px; color: var(--moss); margin: 0 0 28px; font-weight: 500;
}
.article-hero {
  border-radius: var(--radius); overflow: hidden; margin: 0 0 30px;
  border: 1px solid var(--line);
}
.article-hero svg { display: block; width: 100%; height: auto; }

.spec-box {
  border: 1px solid var(--line); border-left: 4px solid var(--signage);
  background: #fffdf6; border-radius: var(--radius);
  padding: 20px 22px; margin: 28px 0;
  box-shadow: 0 3px 14px rgba(22,49,31,.05);
}
.spec-box h4 {
  font-family: var(--font-data); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--steel); margin: 0 0 12px;
}
.spec-box dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; }
.spec-box dt { font-family: var(--font-data); font-size: 12px; color: var(--steel); padding-top: 2px; }
.spec-box dd { margin: 0; font-family: var(--font-data); font-size: 13.5px; }
.spec-box dd b { color: var(--signage); font-size: 15px; }
.spec-note {
  margin: 12px 0 0; font-size: 11px; color: var(--steel);
  border-top: 1px solid var(--line); padding-top: 9px; line-height: 1.6;
}

.article h2 {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--font-display); font-weight: 900; font-size: 21px;
  margin: 42px 0 14px; padding-top: 22px; border-top: 1px solid var(--line);
}
.article h2 .num {
  font-family: var(--font-data); color: var(--signage); font-size: 14px;
  letter-spacing: .06em; flex: none;
}
.article p { margin: 0 0 17px; }
.article ul { padding-left: 1.3em; margin: 0 0 17px; }
.article li { margin-bottom: 8px; }
.article li::marker { color: var(--signage); }

.point-box {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--paper-2); border-radius: var(--radius);
  padding: 16px 18px; margin: 22px 0; font-size: 14.5px;
}
.point-box svg { width: 22px; height: 22px; flex: none; margin-top: 3px; }

.affiliate {
  border: 1.5px solid var(--moss); border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf6, var(--paper-2));
  padding: 24px 20px; margin: 34px 0; text-align: center;
  position: relative;
}
.affiliate::before {
  content: "GEAR CHECK";
  position: absolute; top: -9px; left: 18px;
  font-family: var(--font-data); font-size: 10px; letter-spacing: .18em;
  background: var(--moss); color: var(--paper); padding: 2px 10px; border-radius: 2px;
}
.affiliate .pname { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin: 0 0 14px; }
.affiliate .btn-buy {
  display: inline-block; background: var(--signage); color: #221503;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px;
  text-decoration: none; padding: 14px 38px; border-radius: 3px;
  transition: background .15s ease, transform .15s ease;
}
.affiliate .btn-buy:hover { background: var(--signage-2); transform: translateY(-2px); }
.affiliate .note { font-size: 11.5px; color: var(--steel); margin: 12px 0 0; }

/* ---------- 一覧ページ ---------- */
.page-head {
  background: var(--pine); color: var(--paper);
  padding: 40px 0 34px; border-bottom: 4px solid var(--signage);
}
.page-head .breadcrumb { color: var(--sage); margin-bottom: 18px; }
.page-head .breadcrumb a { color: var(--sage); }
.page-head .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-data); font-size: 11.5px; letter-spacing: .16em;
  color: var(--signage-2); text-transform: uppercase; margin: 0;
}
.page-head .kicker::before { content: ""; width: 20px; height: 1.5px; background: var(--signage-2); }
.page-head h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(24px, 4.6vw, 34px); margin: 10px 0 14px;
}
.page-head .lead { color: #dfe3cd; font-size: 15px; margin: 0 0 20px; max-width: 40em; }
.page-stats { display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--font-data); font-size: 12px; color: var(--sage); }
.page-stats b { color: var(--signage-2); font-size: 18px; margin-right: 4px; }

.list-page { padding: 30px 22px 20px; }
.list-page > .cat-list:first-child { margin-top: 14px; }
.filter-bar {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fffdf6; padding: 16px 16px 12px; margin-bottom: 24px;
}
.filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 10px; }
.filter-label {
  font-family: var(--font-data); font-size: 10.5px; letter-spacing: .14em;
  color: var(--steel); text-transform: uppercase; margin-right: 6px; width: 62px; flex: none;
}
.filter-chip {
  font-family: var(--font-display); font-weight: 500; font-size: 12.5px;
  border: 1px solid var(--line); background: var(--paper-2); color: var(--ink);
  padding: 6px 13px; border-radius: 99px; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.filter-chip:hover { border-color: var(--moss); }
.filter-chip.is-on { background: var(--pine); color: var(--paper); border-color: var(--pine); }
.filter-count {
  margin: 4px 0 0; font-family: var(--font-data); font-size: 12px; color: var(--steel);
  border-top: 1px solid var(--line); padding-top: 10px;
}
.filter-count b { color: var(--signage); font-size: 15px; }
.spot-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; }
.tag-pill {
  font-size: 11px; font-family: var(--font-data);
  background: var(--pine); color: var(--paper);
  padding: 2px 8px; border-radius: 2px;
}
.list-note {
  font-size: 12.5px; color: var(--steel); text-align: center;
  padding: 22px 0; font-family: var(--font-data);
}

/* ---------- キャンプ場 詳細 ---------- */
.spot-hero {
  display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fffdf6; padding: 22px; margin: 26px 0 34px;
  box-shadow: 0 3px 14px rgba(22,49,31,.05);
}
.spot-hero-score { text-align: center; }
.spot-hero-score .big {
  display: block; font-family: var(--font-display); font-weight: 900;
  font-size: 46px; line-height: 1; color: var(--pine);
}
.spot-hero-score .of { font-family: var(--font-data); font-size: 12px; color: var(--steel); }
.spot-hero-score .cap {
  display: block; margin-top: 8px;
  font-family: var(--font-data); font-size: 10.5px; letter-spacing: .12em; color: var(--signage);
}
.score-row {
  display: grid; grid-template-columns: 72px 1fr 34px; align-items: center; gap: 12px;
  margin-bottom: 9px;
}
.score-row .k { font-size: 12.5px; color: var(--steel); }
.score-row .bar { height: 7px; background: var(--paper-3); border-radius: 99px; overflow: hidden; }
.score-row .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--moss), var(--signage)); }
.score-row .v { font-family: var(--font-data); font-size: 12.5px; text-align: right; color: var(--ink); }

/* アクセス経路 */
.route { position: relative; margin: 20px 0 6px; }
.route-step { position: relative; padding: 0 0 22px 32px; }
.route-step::before {
  content: ""; position: absolute; left: 7px; top: 14px; bottom: -4px;
  width: 2px; background: repeating-linear-gradient(180deg, var(--moss) 0 6px, transparent 6px 11px);
}
.route-step.last::before { display: none; }
.route-step .dot {
  position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--pine);
}
.route-step .dot.bus { border-color: var(--moss); }
.route-step .dot.walk { border-color: var(--sage); }
.route-step .dot.goal { background: var(--signage); border-color: var(--signage); }
.route-step .s-title { margin: 0 0 3px; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.route-step .s-desc { margin: 0; font-size: 13px; color: var(--steel); }

/* 設備 */
.facility-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 20px 0 6px;
}
.fac {
  font-size: 12.5px; text-align: center; padding: 9px 6px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper-2); color: #a9a698; text-decoration: line-through;
}
.fac.is-unknown {
  text-decoration: none; color: var(--steel); background: var(--paper-2);
}
.fac.is-on {
  background: var(--pine); color: var(--paper); border-color: var(--pine);
  text-decoration: none; font-weight: 500;
}

/* 持っていったギア */
.gear-inline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0 6px; }
.gear-mini {
  display: flex; flex-direction: column; gap: 3px;
  border: 1px solid var(--line); border-left: 3px solid var(--signage);
  border-radius: var(--radius); background: #fffdf6;
  padding: 12px 13px; text-decoration: none; color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.gear-mini:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.gear-mini .cat { font-family: var(--font-data); font-size: 10px; letter-spacing: .1em; color: var(--moss); }
.gear-mini .nm { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; }
.gear-mini .wt { font-family: var(--font-data); font-size: 11.5px; color: var(--signage); }

/* 外部リンクカード */
.external-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper-2); padding: 20px; margin: 34px 0; text-align: center;
}
.external-card .ec-label {
  font-family: var(--font-data); font-size: 10.5px; letter-spacing: .16em;
  color: var(--signage); margin: 0 0 8px; text-transform: uppercase;
}
.external-card .ec-text { margin: 0 0 14px; font-size: 14px; }
.external-card .ec-btn {
  display: inline-block; background: var(--pine); color: var(--paper);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-decoration: none; padding: 12px 26px; border-radius: 3px;
}
.external-card .ec-btn:hover { background: var(--pine-2); }

/* 本への導線 */
.book-cta {
  border: 1.5px solid var(--moss); border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf6, var(--paper-2));
  padding: 22px 20px; margin: 30px 0;
}
.book-cta .bc-k {
  font-family: var(--font-data); font-size: 10.5px; letter-spacing: .16em;
  color: var(--signage); margin: 0 0 6px; text-transform: uppercase;
}
.book-cta .bc-t { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin: 0 0 8px; }
.book-cta .bc-d { font-size: 13px; color: var(--steel); margin: 0 0 14px; }
.book-cta .bc-btn {
  display: inline-block; background: var(--signage); color: #221503;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-decoration: none; padding: 11px 24px; border-radius: 3px;
}
.book-cta .bc-btn:hover { background: var(--signage-2); }

.back-link { margin: 30px 0 10px; font-family: var(--font-display); font-size: 14px; }
.back-link a { text-decoration: none; color: var(--moss); font-weight: 700; }

/* 目次 */
.toc {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper-2); padding: 18px 20px; margin: 0 0 30px;
}
.toc-title {
  font-family: var(--font-data); font-size: 10.5px; letter-spacing: .16em;
  color: var(--signage); text-transform: uppercase; margin: 0 0 10px;
}
.toc ol { margin: 0; padding-left: 1.3em; }
.toc li { margin-bottom: 6px; font-size: 13.5px; }
.toc li::marker { color: var(--signage); font-family: var(--font-data); font-size: 12px; }
.toc a { color: var(--ink); text-decoration: none; }
.toc a:hover { color: var(--signage); text-decoration: underline; }

/* FAQ */
.faq { margin: 20px 0 6px; }
.faq-item {
  border-left: 3px solid var(--moss);
  background: #fffdf6; border: 1px solid var(--line); border-left: 3px solid var(--moss);
  border-radius: var(--radius); padding: 15px 17px; margin-bottom: 10px;
}
.faq-item .q {
  margin: 0 0 7px; font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  display: flex; gap: 9px;
}
.faq-item .q::before { content: "Q"; font-family: var(--font-data); color: var(--signage); flex: none; }
.faq-item .a { margin: 0; font-size: 13.5px; color: var(--steel); display: flex; gap: 9px; }
.faq-item .a::before { content: "A"; font-family: var(--font-data); color: var(--moss); flex: none; }

/* 立ち寄り温泉 */
.onsen-box {
  border: 1px solid var(--line); border-left: 4px solid var(--ember);
  border-radius: var(--radius); background: #fffdf6;
  padding: 20px 22px; margin: 24px 0 6px;
  box-shadow: 0 3px 14px rgba(22,49,31,.05);
}
.onsen-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.onsen-mark {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  background: var(--ember); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
}
.onsen-k {
  margin: 0 0 2px; font-family: var(--font-data); font-size: 10.5px;
  letter-spacing: .16em; color: var(--steel); text-transform: uppercase;
}
.onsen-name { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.onsen-dl { margin: 0 0 12px; display: grid; grid-template-columns: auto 1fr; gap: 7px 18px; }
.onsen-dl dt { font-family: var(--font-data); font-size: 12px; color: var(--steel); }
.onsen-dl dd { margin: 0; font-size: 13.5px; }
.onsen-note {
  margin: 0; font-size: 12.5px; color: var(--steel); line-height: 1.75;
  border-top: 1px solid var(--line); padding-top: 11px;
}
.tag-pill.onsen { background: var(--ember); }

/* ---------- このギアを使ったキャンプ場 ---------- */
.used-at { margin: 44px 0 10px; padding-top: 26px; border-top: 2px solid var(--ink); }
.ua-head { margin-bottom: 18px; }
.ua-k, .rel-k {
  font-family: var(--font-data); font-size: 10.5px; letter-spacing: .18em;
  color: var(--signage); text-transform: uppercase; margin: 0 0 5px;
}
.ua-t, .rel-t { font-family: var(--font-display); font-weight: 900; font-size: 20px; margin: 0; }
.used-list { display: flex; flex-direction: column; gap: 8px; }
.used-spot {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 14px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fffdf6; padding: 13px 15px; text-decoration: none; color: var(--ink);
  transition: border-color .15s ease, transform .15s ease;
}
.used-spot:hover { border-color: var(--moss); transform: translateX(3px); }
.us-area {
  font-family: var(--font-data); font-size: 10.5px; letter-spacing: .1em;
  color: var(--paper); background: var(--pine);
  padding: 4px 0; border-radius: 2px; text-align: center;
}
.us-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.us-access { display: flex; flex-wrap: wrap; gap: 5px; justify-content: flex-end; }
.us-access span {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-data); font-size: 11px; color: var(--steel);
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 2.5px 9px; border-radius: 99px; white-space: nowrap;
}
.us-access span.hl { background: var(--pine); border-color: var(--pine); color: var(--paper); }
.us-access svg { width: 11px; height: 11px; flex: none; }
.ua-more { margin: 16px 0 0; font-family: var(--font-display); font-size: 13px; }
.ua-more a { color: var(--moss); text-decoration: none; font-weight: 700; }

/* ---------- こんなギアもあります ---------- */
.related { margin: 40px 0 10px; padding-top: 26px; border-top: 2px solid var(--ink); }
.rel-head { margin-bottom: 18px; }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rel-card {
  display: flex; flex-direction: column; gap: 6px;
  border: 1px solid var(--line); border-top: 3px solid var(--moss);
  border-radius: var(--radius); background: #fffdf6;
  padding: 15px 15px 16px; text-decoration: none; color: var(--ink);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.rel-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-top-color: var(--signage); }
.rc-cat {
  font-family: var(--font-data); font-size: 10px; letter-spacing: .12em;
  color: var(--moss); text-transform: uppercase;
}
.rc-name { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; line-height: 1.4; }
.rc-desc { font-size: 12px; color: var(--steel); line-height: 1.7; flex: 1; }
.rc-more { font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--pine-2); margin-top: 4px; }
.rel-card:hover .rc-more { color: var(--signage); }

/* ---------- 法務ページ ---------- */
.article.legal .legal-updated {
  font-family: var(--font-data); font-size: 12px; color: var(--steel);
  margin: -6px 0 26px; padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.article.legal h2 { font-size: 18px; margin-top: 34px; }
.article.legal p { font-size: 14px; line-height: 1.95; }
.article.legal ul { margin: 10px 0 16px; }
.article.legal li { font-size: 14px; line-height: 1.9; margin-bottom: 5px; }

/* 訪問の記録 */
.visit-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 6px; }
.visit-row {
  border: 1px solid var(--line); border-left: 3px solid var(--signage);
  border-radius: var(--radius); background: #fffdf6; padding: 16px 18px;
}
.visit-row .v-meta { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.visit-row .v-date {
  font-family: var(--font-data); font-size: 12px; color: var(--paper);
  background: var(--pine); padding: 3px 10px; border-radius: 99px;
}
.visit-row .v-hl { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.visit-row .v-comment { margin: 0 0 10px; font-size: 13.5px; line-height: 1.85; color: var(--ink); }
.visit-row .v-link { font-family: var(--font-display); font-weight: 700; font-size: 12.5px; color: var(--moss); text-decoration: none; }
.visit-row .v-link:hover { color: var(--signage); text-decoration: underline; }
.fac.is-unknown { text-decoration: none; color: #a9a698; background: var(--paper-2); }

/* ギア写真 */
.gear-photo { margin: 6px 0 26px; }
.gear-photo img {
  width: 100%; height: auto; max-height: 520px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line); display: block;
}
.gear-photo-pair .pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.gear-photo-pair .pair img {
  width: 100%; height: 100%; max-height: 340px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line); display: block;
}
.gear-photo figcaption {
  font-size: 12.5px; color: var(--steel); margin-top: 8px;
  padding-left: 2px; line-height: 1.7;
}

/* ---------- 開示・フッター ---------- */
.disclosure { font-size: 12px; color: var(--steel); background: var(--paper-2); border-top: 1px solid var(--line); }
.disclosure .wrap { padding: 15px 22px; }

.site-footer { background: var(--pine); color: #c9d2bd; font-size: 13.5px; }
.footer-scene { display: block; width: 100%; height: auto; background: var(--paper); }
.site-footer .inner { padding-top: 40px; padding-bottom: 34px; }
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { color: var(--signage-2); }
.site-footer .cols { display: flex; flex-wrap: wrap; gap: 32px 40px; margin-bottom: 26px; }
.site-footer h5 {
  font-family: var(--font-data); color: var(--signage-2); font-size: 10.5px;
  letter-spacing: .2em; margin: 0 0 10px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 7px; }
.site-footer .fine {
  font-family: var(--font-data); font-size: 11px; color: #7e8f78;
  border-top: 1px solid rgba(255,255,255,.13); padding-top: 18px;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 760px) {
  .card-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .book-grid { grid-template-columns: 1fr; gap: 14px; }
  .rel-grid { grid-template-columns: 1fr; }
  .used-spot { grid-template-columns: 46px 1fr; row-gap: 8px; }
  .us-access { justify-content: flex-start; grid-column: 1 / -1; }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .gear-inline { grid-template-columns: 1fr; }
  .list-page { padding-left: 20px; padding-right: 20px; }
  .routemap::before { left: 16px; }
  .station { padding-left: 44px; padding-right: 0; }
  .station-node { left: 4.5px; }
  .depart-board .wrap { gap: 4px 22px; }
  .nav a { padding: 6px 9px; font-size: 12.5px; }
  .spot { padding: 18px 6px; }
}
@media (max-width: 520px) {
  .wrap { padding: 0 20px; }
  .spot-hero { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .score-row { text-align: left; }
  .filter-label { width: 100%; margin-bottom: 2px; }
  .card-grid { grid-template-columns: 1fr; }
  .cat-list { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cat-chip { font-size: 12px; padding: 10px 10px; }
  .btn { min-width: 0; flex: 1 1 0; }
  .hero .cta-row { flex-wrap: nowrap; }
  .spot { grid-template-columns: 84px 1fr; gap: 14px; padding: 18px 4px; }
  .spot .badge { width: 84px; height: 84px; }
  .spot .badge .score { font-size: 24px; }
  .hero-copy .wrap { padding-top: 22px; }
  .site-header .wrap { padding: 0 16px; }
  .brand { gap: 8px; }
  .brand .mark { width: 30px; height: 30px; }
  .brand .name { font-size: 11.5px; line-height: 1.35; }
  .nav { gap: 0; }
  .nav a { padding: 6px 7px; font-size: 12px; }
  .hero-scene { min-height: 430px; }
}

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