/* ============================================================
   共通スタイル - 全国ページ共通
   各国ページから <link rel="stylesheet" href="../assets/style.css"> で読み込む
   ============================================================ */

/* リセット */
*{box-sizing:border-box;margin:0;padding:0}

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* カラー変数（2026-08 リニューアル: World Mappy 新デザイン準拠） */
:root{
  --green:#1D7A63;       /* メインカラー */
  --green-dark:#125F4E;  /* ホバー・強調用 */
  --green-light:#EAF3EE; /* 薄い背景用 */
  --red:#cc0001;         /* 警告・DON'T 専用 */
  --yellow:#E0A63C;
  --bg:#ffffff;          /* コンテンツカードの背景 */
  --bg-page:#E4F0EA;     /* ページ全体のキャンバス背景 */
  --card:#fff;
  --text:#2B2B28;
  --sub:#6B665C;
}

/* ベース */
body{
  font-family:'Zen Kaku Gothic New','Noto Sans JP','Hiragino Sans','Yu Gothic Medium','游ゴシック Medium',YuGothic,'游ゴシック',Meiryo,sans-serif;
  background:var(--bg-page);
  color:var(--text);
  font-size:17px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  overflow-y:scroll; /* スクロールバー常時表示でタブ切替時のレイアウトずれを防止 */
  overflow-x:clip;   /* ズーム時の横はみ出しを防止（stickyナビに影響しない） */
}
a{color:var(--green-dark);text-decoration:none}
a:hover{color:var(--green)}
::selection{background:var(--yellow);color:var(--text)}

/* コンテナ */
.container{max-width:740px;margin:20px auto 40px;padding:26px 28px 24px;overflow-x:hidden;background:var(--bg);border-radius:10px;box-shadow:0 2px 0 rgba(20,40,30,0.05),0 6px 16px rgba(20,40,30,0.06);min-height:calc(100vh - 80px)}
@media(max-width:1020px){.container{margin:16px auto;max-width:calc(100% - 32px);padding:18px}}
@media(max-width:520px){.container{margin:0;max-width:100%;border-radius:0;box-shadow:none;padding:16px}}

/* ページグリッド（目次サイドバー＋コンテンツ＋右レール、国別ページ専用） */
.page-grid{max-width:1440px;margin:0 auto;padding:0 32px;display:grid;grid-template-columns:196px minmax(0,1fr) 300px;gap:30px;align-items:start}
.page-grid-spots,.page-grid-food{grid-template-columns:196px minmax(0,1fr)}
.page-grid-spots .side-rail,.page-grid-food .side-rail{display:none}
.page-grid .container{margin:20px 0 40px;max-width:none;background:transparent;box-shadow:none;border-radius:0;padding:0;overflow:visible}
.toc-sidebar{position:sticky;top:88px;display:grid;gap:12px;background:#fff;border-radius:10px;padding:18px;margin-top:20px;box-shadow:0 2px 0 rgba(20,40,30,0.05),0 6px 16px rgba(20,40,30,0.06)}
.toc-sidebar .toc-label{font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:0.2em;color:#A39D93}
.toc-list{display:grid;gap:2px;border-left:1px solid #E8E2D8}
.toc-list a{padding:8px 12px;font-size:12.5px;line-height:1.5;color:var(--sub);border-left:2px solid transparent;margin-left:-1px;text-decoration:none;transition:all .15s ease;display:block}
.toc-list a.toc-sub-link{padding-left:22px;font-size:11.5px;color:#8C877E}
.toc-list a:hover{color:var(--green-dark);border-left-color:var(--green);background:#FAF7F2}
.toc-list a.active{color:var(--green-dark);border-left-color:var(--green);background:#FAF7F2;font-weight:700}

/* スマホ用: 目次FAB＋ボトムシート（PCでは非表示） */
.toc-fab{display:none}
.toc-sheet-overlay,.toc-sheet{display:none}
@media(max-width:1020px){
  .toc-fab{position:fixed;right:16px;bottom:16px;z-index:1200;display:inline-flex;align-items:center;gap:6px;padding:11px 16px;border:none;border-radius:999px;background:var(--green,#00a86b);color:#fff;font-size:13px;font-weight:700;box-shadow:0 4px 14px rgba(20,40,30,0.28);cursor:pointer}
  .toc-fab[hidden]{display:none}
  .toc-sheet-overlay{display:block;position:fixed;inset:0;z-index:1200;background:rgba(20,30,25,0.4);opacity:0;transition:opacity .2s ease}
  .toc-sheet-overlay.open{opacity:1}
  .toc-sheet{display:flex;flex-direction:column;position:fixed;left:0;right:0;bottom:0;z-index:1201;max-height:70vh;background:#fff;border-radius:14px 14px 0 0;padding:6px 18px calc(18px + env(safe-area-inset-bottom));box-shadow:0 -6px 24px rgba(20,40,30,0.18);transform:translateY(100%);transition:transform .22s ease}
  .toc-sheet.open{transform:translateY(0)}
  .toc-sheet[hidden],.toc-sheet-overlay[hidden]{display:none}
  .toc-sheet-head{display:flex;align-items:center;justify-content:space-between;padding:10px 0 8px;border-bottom:1px solid #E8E2D8}
  .toc-sheet-close{border:none;background:none;font-size:15px;color:#8C877E;cursor:pointer;padding:4px 8px}
  .toc-sheet .toc-list{overflow-y:auto;margin-top:8px;border-left:1px solid #E8E2D8}
  .toc-sheet .toc-list a{padding:11px 12px;font-size:13.5px}
  .toc-sheet .toc-list a.toc-sub-link{font-size:12.5px}
}
/* スマホ下部固定タブバーがある画面では、目次FABをその上へ逃がす */
@media(max-width:520px){
  .toc-fab{bottom:calc(72px + env(safe-area-inset-bottom))}
  .toc-sheet{bottom:calc(60px + env(safe-area-inset-bottom))}
}

/* 右レール（広告・行きたいリスト・関連ページ） */
.side-rail{display:grid;gap:14px;background:#fff;border-radius:10px;padding:18px;margin-top:20px;box-shadow:0 2px 0 rgba(20,40,30,0.05),0 6px 16px rgba(20,40,30,0.06)}
.rail-ad{border:1px solid #E8E2D8;border-radius:8px;box-shadow:0 2px 0 rgba(20,40,30,0.07),0 6px 14px rgba(20,40,30,0.08);background:#FAF7F2;padding:12px;display:grid;gap:8px;justify-items:center}
.rail-ad.sticky{position:sticky;top:142px}
.rail-ad-label{justify-self:start;font-family:'JetBrains Mono',monospace;font-size:9px;letter-spacing:0.18em;color:#b8b8b8}
.rail-ad-box{width:100%;border:1px dashed #d8d8d8;border-radius:4px;display:grid;place-content:center;font-size:11.5px;color:#b8b8b8}
.infeed-ad{border:1px solid #E8E2D8;border-radius:8px;box-shadow:0 2px 0 rgba(20,40,30,0.07),0 6px 14px rgba(20,40,30,0.08);background:#FAF7F2;padding:12px 16px;display:flex;align-items:center;gap:16px;margin:22px 0}
.infeed-ad-label{flex:none;font-family:'JetBrains Mono',monospace;font-size:9px;letter-spacing:0.18em;color:#b8b8b8}
.infeed-ad-box{flex:1;height:90px;border:1px dashed #d8d8d8;border-radius:4px;display:grid;place-content:center;font-size:11.5px;color:#b8b8b8}
@media(max-width:600px){.infeed-ad{flex-direction:column;align-items:stretch;gap:8px}}
.rail-card{border:1px solid #E8E2D8;border-radius:8px;box-shadow:0 2px 0 rgba(20,40,30,0.07),0 6px 14px rgba(20,40,30,0.08);padding:14px;display:grid;gap:10px}
.rail-card-title{font-size:12px;font-weight:700}
.rail-card a{font-size:12.5px;color:var(--green-dark);text-decoration:none}
.rail-card a:hover{text-decoration:underline}
.rail-wish{border:1px solid #CFE0D7;border-radius:8px;box-shadow:0 2px 0 rgba(20,40,30,0.06),0 6px 14px rgba(20,40,30,0.07);overflow:hidden}
.rail-wish-head{background:#FAF7F2;border-bottom:1px solid #CFE0D7;padding:10px 14px;display:flex;align-items:center;justify-content:space-between;gap:8px}
.rail-wish-head span:first-child{font-size:12px;font-weight:700;color:var(--green-dark)}
.rail-wish-count{font-family:'JetBrains Mono',monospace;font-size:11.5px;color:var(--green)}
.rail-wish-body{padding:12px 14px;display:grid;gap:8px}
.rail-wish-empty{font-size:11.5px;line-height:1.8;color:#7A756C}
.rail-wish-row{display:flex;align-items:center;justify-content:space-between;gap:8px;padding-bottom:7px;border-bottom:1px solid #f4f4f4}
.rail-wish-row:last-child{border-bottom:none;padding-bottom:0}
.rail-wish-row a{font-size:12.5px;color:var(--text);min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.rail-wish-remove{border:none;background:none;font-size:11px;color:#b8b8b8;cursor:pointer;flex-shrink:0}
.rail-wish-remove:hover{color:var(--red)}

@media(max-width:1240px){.page-grid{grid-template-columns:196px minmax(0,1fr)}.side-rail{display:none}}
@media(max-width:1020px){.page-grid{grid-template-columns:1fr;padding:0}.toc-sidebar{display:none}.page-grid .container{margin:16px auto;max-width:calc(100% - 32px)}}
/* セクションを見出しごとの白カードに分割（PC・スマホ共通） */
#slides-wrap{overflow-x:clip}
.s-body{display:contents}
.s-lead,
.s-body>.s-card,
.tab-body,
#slides-wrap>section:not(:has(.s-lead)):not(:has(.tab-body)){
  display:block;background:var(--card);border-radius:12px;padding:24px 26px;margin:0 0 18px;
  box-shadow:0 1px 2px rgba(20,40,30,0.06),0 6px 16px rgba(20,40,30,0.07)}
#slides-wrap>section:has(.tab-body){display:contents}
.s-body>.s-card>h2:first-child,.tab-body>h2:first-child{margin-top:0 !important;padding-top:0;border-top:none}
.tab-body>.s-card,.tab-body .spot-section-card{background:none !important;border:none !important;box-shadow:none !important;padding:0 !important;margin:0 !important}
.s-body>.season-tip-box,.s-body>.infeed-ad,
#slides-wrap>section:has(.tab-body)>.infeed-ad{margin:18px 0 0 !important}
.s-body>.tab-cta,
#slides-wrap>section:has(.tab-body)>.tab-cta{margin:18px 0 22px !important}
/* 基本情報タブ: 見出し(.s-lead)と直後の観光のポイント(.s-card:first-child)を1枚のカードに繋げる */
.s-lead:has(+ .s-body > .s-card){margin-bottom:0;padding-bottom:8px;border-bottom-left-radius:0;border-bottom-right-radius:0;box-shadow:0 1px 2px rgba(20,40,30,0.06)}
.s-lead + .s-body > .s-card:first-child{margin-top:0;padding-top:4px;border-top-left-radius:0;border-top-right-radius:0}
/* 予算・旅の準備タブ: セクションごとの白カードへ分割（見出しはカード内） */
.tab-body--carded{display:block;background:transparent;box-shadow:none;padding:0;margin:0;border-radius:0}
.tab-body--carded .tb-sec{display:block}
.tab-body--carded .tb-card{display:block;background:var(--card);border-radius:12px;box-shadow:0 1px 2px rgba(20,40,30,0.06),0 6px 16px rgba(20,40,30,0.07);padding:24px 26px;margin:0 0 18px}
.tab-body--carded .tb-card > h2:first-child{margin-top:0;padding-top:0;border-top:none}
.tab-body--carded .tb-card > *:first-child{margin-top:0}
.tab-body--carded .tb-card .s-card{background:none;border:none;box-shadow:none;padding:0;margin:0}
.tab-body--carded .tb-card .season-tip-box{margin-left:0;margin-right:0}
@media(max-width:520px){
  .page-grid{padding:0 0 26px;background:var(--bg-page)}
  .page-grid .container{margin:0;max-width:none;min-height:0}
  /* スマホ: 余白を詰める・左右10pxインセット */
  .s-lead,.s-body>.s-card,.tab-body:not(.tab-body--carded),
  #slides-wrap>section:not(:has(.s-lead)):not(:has(.tab-body)),
  .tab-body--carded .tb-card{padding:16px 14px;margin:16px 10px 0}
  .s-body>.season-tip-box,.s-body>.infeed-ad,
  #slides-wrap>section:has(.tab-body)>.infeed-ad{margin:16px 10px 0 !important}
  .s-body>.tab-cta,
  #slides-wrap>section:has(.tab-body)>.tab-cta{margin:16px 10px 20px !important}
}

/* カード */
.card{background:var(--card);border-radius:8px;padding:18px;border:1px solid #E8E2D8;box-shadow:none}
.card .lbl{font-size:0.78em;color:var(--sub);margin-bottom:4px;letter-spacing:0.03em}
.card .val{font-size:1em;font-weight:700;line-height:1.4}
.card .note{font-size:0.8em;color:var(--sub);margin-top:3px;font-weight:400;line-height:1.6}

/* グリッド */
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.grid3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:12px}
.full{grid-column:1/-1}
.grid2 > *,.grid3 > *,.qs-row > *,.top3-grid > *,.item-grid > *{min-width:0}

/* タブ冒頭のアイキャッチ（BASIC INFO / 01 のようなラベル行） */
.tab-eyebrow{display:flex;align-items:center;gap:12px;margin-bottom:12px;flex-wrap:wrap}
.tab-eyebrow-badge{display:inline-flex;align-items:center;height:23px;padding:0 10px;border-radius:3px;background:var(--green);font-family:'JetBrains Mono',monospace;font-size:0.62em;letter-spacing:0.18em;color:#fff}
.tab-eyebrow-sub{font-size:0.72em;letter-spacing:0.02em;color:var(--sub)}
.tab-eyebrow-line{flex:1;height:1px;background:#E8E2D8;min-width:20px}
.tab-eyebrow-num{font-family:'JetBrains Mono',monospace;font-size:0.66em;letter-spacing:0.1em;color:#A39D93;white-space:nowrap;text-transform:uppercase}
.tab-eyebrow{display:none}
.page-h1{margin:0;font-family:'Zen Kaku Gothic New',sans-serif;font-weight:500;font-size:1.55em;line-height:1.3;letter-spacing:0.01em;color:var(--text);border-bottom:none;padding-bottom:0}
.page-h1-bar{display:grid;grid-template-columns:2.4fr 1fr 6fr;gap:4px;height:5px;margin-top:12px}
.page-h1-bar span:nth-child(1){background:var(--green)}
.page-h1-bar span:nth-child(2){background:var(--yellow)}
.page-h1-bar span:nth-child(3){background:#DCE8E2}

/* 見出し */
h2{font-family:'Zen Kaku Gothic New',sans-serif;font-weight:500;font-size:1.5em;color:var(--text);margin:44px 0 16px;padding:0 0 9px;letter-spacing:0.01em;border-bottom:solid 2px var(--green);position:relative}
.tab-eyebrow + h2,.tab-eyebrow + .tab-body > h2:first-child,.s-lead + .s-body > .s-card:first-child > h2:first-child,.csh-title{margin-top:0;padding-top:0;border-top:none}
.s-body > .s-card > h2{border-top:none;padding-top:0}
h2::after{content:none}
/* 見出し: 英字ラベル行＋金の縦バー＋タイトル（PC・スマホ共通、引き継ぎデザイン .wm-h2sp 準拠） */
.container h2:not(.csh-title){
  border-bottom:none;position:relative;
  margin-top:40px;
  padding:26px 0 3px 15px!important;
  font-size:1.42em;line-height:1.38;font-weight:700;letter-spacing:0.01em;color:#14503C;
  background:linear-gradient(#F5C63C,#F5C63C) left top/7px 100% no-repeat;
}
.s-body>.s-card>h2:not(.csh-title):first-child,
.tab-body>h2:not(.csh-title):first-child,
.tab-body--carded .tb-card>h2:not(.csh-title):first-child,
.s-lead h2:not(.csh-title),
.tab-eyebrow + h2:not(.csh-title){margin-top:0}
/* ラベル行の罫線＋金3本アクセント（タイトルの背後に敷く） */
.container h2:not(.csh-title)::before{
  content:'';position:absolute;left:15px;right:0;top:5px;height:15px;
  background:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='15'%20height='17'%20viewBox='0%200%2015%2017'%3E%3Crect%20x='5'%20y='0'%20width='2.5'%20height='7'%20rx='1.25'%20fill='%23F5C63C'%20transform='rotate(26%206.25%203.5)'/%3E%3Crect%20x='5'%20y='7'%20width='9'%20height='2.5'%20rx='1.25'%20fill='%23F5C63C'%20transform='rotate(-20%209.5%208.25)'/%3E%3Crect%20x='6'%20y='12'%20width='7'%20height='2.5'%20rx='1.25'%20fill='%23F5C63C'%20transform='rotate(-6%209.5%2013.25)'/%3E%3C/svg%3E") right center/13px 15px no-repeat,
    linear-gradient(#A9C0AE,#A9C0AE) left center/calc(100% - 20px) 3px no-repeat;
}
/* 英字ラベル（罫線の左側を自身の背景で隠す） */
.container h2:not(.csh-title)::after{
  content:attr(data-label);
  position:absolute;left:15px;top:5px;height:15px;line-height:15px;
  padding-right:9px;background:var(--card);
  font-family:'JetBrains Mono',monospace;font-size:10px;font-weight:700;
  letter-spacing:0.14em;text-transform:uppercase;color:#1D7A63;white-space:nowrap;
}
h3{font-size:0.93em;font-weight:700;color:#333;margin:18px 0 8px}

/* ボタン共通 */
.btn{background:var(--green);color:#fff;border:none;padding:8px 16px;border-radius:20px;font-size:0.78em;font-weight:700;cursor:pointer}
.btn.outline{background:#fff;color:var(--green);border:1.5px solid var(--green)}

/* サイトヘッダー: スクロールでスライド表示/非表示（タブナビは常時表示、別要素） */
#site-top-bar{position:sticky;top:0;z-index:1000;transition:transform 0.3s ease}
#site-top-bar.header-hidden{transform:translateY(-100%)}
.site-header{background:var(--green-dark);height:52px;padding:0 32px;display:flex;align-items:center;gap:24px;line-height:1}
.site-logo,.site-logo>a{display:flex;align-items:center;gap:6px;font-family:'Noto Sans JP','Hiragino Sans','Yu Gothic Medium',YuGothic,Meiryo,sans-serif;font-size:21px;font-weight:900;color:#fff;letter-spacing:-0.01em;white-space:nowrap;text-decoration:none}
.site-logo>a{font-size:1em}
a.site-logo:hover,a.site-logo:focus,.site-logo>a:hover{color:#fff}
.site-logo img{flex:none;height:30px !important;width:auto !important;display:block;margin:0 !important;vertical-align:middle}
.site-logo svg{flex:none;height:28px !important;width:28px !important;margin:0 !important}
.site-logo span{color:#ffc200}
.site-tagline{font-size:0.7em;color:rgba(255,255,255,0.65);margin-left:auto;white-space:nowrap}
@media(max-width:520px){.site-header{padding:0 16px;gap:14px}}

/* パンくずリスト */
.site-breadcrumb{display:flex;align-items:center;gap:8px;padding:0 20px;height:28px;background:var(--green);font-size:0.72em;color:rgba(255,255,255,0.75)}
.site-breadcrumb a{color:rgba(255,255,255,0.75);text-decoration:none}
.site-breadcrumb a:hover{color:#fff}
.site-breadcrumb .here{color:#fff;font-weight:700}
@media(max-width:520px){.site-breadcrumb{padding:0 14px;font-size:0.68em}}

/* 行きたいリスト（ウィッシュリスト） */
.wish-header-btn{display:inline-flex;align-items:center;gap:7px;height:32px;padding:0 13px;margin-left:auto;border:1px solid rgba(255,255,255,0.4);border-radius:999px;background:transparent;font-family:inherit;font-size:0.72em;color:#fff;cursor:pointer;transition:all .25s ease;white-space:nowrap}
.wish-header-btn:hover{background:rgba(255,255,255,0.14)}
.wish-header-btn.has-items{background:var(--yellow);border-color:var(--yellow);color:#2B2B28}
.wish-panel{display:none;position:absolute;top:52px;right:20px;z-index:60;width:280px;max-height:360px;overflow-y:auto;background:#fff;border-radius:10px;box-shadow:0 16px 36px rgba(26,26,26,0.2);border:1px solid #E8E2D8}
.wish-panel.open{display:block}
.wish-panel .wp-empty{padding:20px 16px;font-size:0.8em;color:var(--sub);text-align:center}
.wish-panel .wp-row{display:flex;align-items:center;gap:8px;padding:10px 14px;border-bottom:1px solid #f0ece4;font-size:0.8em}
.wish-panel .wp-row:last-child{border-bottom:none}
.wish-panel .wp-row a{flex:1;color:var(--text);text-decoration:none;min-width:0}
.wish-panel .wp-row a:hover{color:var(--green-dark)}
.wish-panel .wp-row .wp-country{display:block;font-size:0.78em;color:var(--sub)}
.wish-panel .wp-remove{flex-shrink:0;border:none;background:none;color:#b8b8b8;cursor:pointer;font-size:0.85em;padding:4px}
.wish-panel .wp-remove:hover{color:var(--red)}
.ci-wish-btn{position:absolute;top:8px;right:8px;z-index:2;display:grid;place-content:center;width:28px;height:28px;border:none;border-radius:999px;background:rgba(255,255,255,0.9);color:#b8b8b8;cursor:pointer;transition:transform .2s ease,color .2s ease}
.ci-wish-btn:hover{transform:scale(1.12)}
.ci-wish-btn.on{color:var(--red)}
.ci-wish-btn.on svg{fill:var(--red)}
@media(max-width:520px){.wish-header-btn span:not(#wish-count){display:none}.wish-panel{right:8px;width:calc(100vw - 32px)}}

/* ヘッダー: 旅先を探すリンク・ハンバーガーメニュー */
.site-explore-link{margin-left:auto;font-size:0.78em;color:rgba(255,255,255,0.92);text-decoration:none;white-space:nowrap}
.site-explore-link:hover{color:#fff}
.wish-header-btn{margin-left:0}
.hb-toggle-btn{flex:none;display:grid;gap:4.5px;width:36px;height:36px;place-content:center;justify-items:center;border:1px solid rgba(255,255,255,0.4);border-radius:5px;background:transparent;cursor:pointer;transition:background .25s ease}
.hb-toggle-btn:hover,.hb-toggle-btn.open{background:rgba(255,255,255,0.22)}
.hb-toggle-btn span{display:block;width:18px;height:2px;background:#fff}

@keyframes wm-pop{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
@keyframes hb-slide{from{transform:translateX(100%)}to{transform:none}}
@keyframes hb-fade{from{opacity:0}to{opacity:1}}
@keyframes hb-drop{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:none}}

/* ハンバーガー: 右スライドのドロワー */
.hb-scrim{position:fixed;inset:0;z-index:1090;background:rgba(20,35,28,0.5);animation:hb-fade .22s ease both}
.hb-scrim[hidden]{display:none}
.hb-drawer{position:fixed;top:0;right:0;bottom:0;z-index:1091;width:400px;max-width:88vw;display:flex;flex-direction:column;background:var(--green-dark);box-shadow:-18px 0 44px rgba(10,30,22,0.28);animation:hb-slide .28s cubic-bezier(.2,.7,.2,1) both}
.hb-drawer[hidden]{display:none}
.hb-drawer__head{flex:none;display:flex;align-items:flex-start;justify-content:flex-end;gap:14px;padding:14px 16px 4px}
.hb-drawer__brand{flex:1;display:grid;gap:5px;justify-items:center;padding-left:34px;text-align:center}
.hb-drawer__brand .hb-logo{font-weight:900;font-size:21px;line-height:1;letter-spacing:-0.01em;color:#fff}
.hb-drawer__brand .hb-logo b{color:#E0A63C;font-weight:900}
.hb-drawer__tagline{font-size:11.5px;color:rgba(255,255,255,0.72)}
.hb-drawer__close{flex:none;display:grid;place-content:center;width:34px;height:34px;border:none;background:none;font-family:inherit;font-size:24px;line-height:1;color:#fff;cursor:pointer}
.hb-drawer__body{flex:1;min-height:0;overflow-y:auto;padding:12px 20px 0}
/* セクション見出し: 4つとも同じ形。開いているものだけ色が変わる（aria-expanded） */
.hb-sec,.hb-sec--primary{display:flex;align-items:center;gap:12px;width:100%;min-height:54px;margin-top:6px;padding:0 16px;border:none;border-left:3px solid transparent;border-radius:8px;background:rgba(255,255,255,0.05);font-family:inherit;font-size:15px;font-weight:700;color:rgba(255,255,255,0.88);text-align:left;cursor:pointer;transition:background .28s ease,border-left-color .28s ease,color .28s ease}
.hb-sec:first-child,.hb-sec--primary:first-child{margin-top:0}
.hb-sec:hover,.hb-sec--primary:hover{background:rgba(255,255,255,0.12)}
.hb-sec[aria-expanded="true"],.hb-sec--primary[aria-expanded="true"]{background:var(--green);border-left-color:#F5C63C;color:#fff}
.hb-sec__label{flex:1}
.hb-sec__caret{flex:none;font-size:12px;color:rgba(255,255,255,0.55);transition:color .28s ease}
.hb-sec[aria-expanded="true"] .hb-sec__caret,.hb-sec--primary[aria-expanded="true"] .hb-sec__caret{color:#F5C63C}
.hb-panel{display:grid;padding:6px 0 12px;animation:hb-drop .3s cubic-bezier(.2,.7,.2,1) both}
.hb-panel--primary{padding:8px 0 14px}
.hb-panel[hidden]{display:none}
.hb-item{display:flex;align-items:center;gap:10px;width:100%;min-height:44px;padding:0 8px 0 26px;border:none;border-bottom:1px solid rgba(255,255,255,0.1);background:none;font-family:inherit;font-size:14px;font-weight:400;color:rgba(255,255,255,0.9);text-align:left;cursor:pointer;text-decoration:none}
.hb-item.active{font-weight:700;color:#E0A63C}
.hb-item__dot{flex:none;width:7px;height:7px;margin-left:-16px;border-radius:50%;background:transparent}
.hb-item.active .hb-item__dot{background:#F5C63C}
.hb-item__label{flex:1}
.hb-item__chev{flex:none;font-size:13px;color:rgba(255,255,255,0.45)}
.hb-link{display:flex;align-items:center;min-height:42px;padding:0 10px;border-bottom:1px solid rgba(255,255,255,0.1);font-size:13.5px;color:rgba(255,255,255,0.9);text-decoration:none}
.hb-link:last-child{border-bottom:none}
.hb-link__note{margin-left:9px;font-size:10.5px;color:rgba(255,255,255,0.5)}
#hb-nearby{display:grid}
#hb-nearby a{display:flex;align-items:center;min-height:42px;padding:0 10px;border-bottom:1px solid rgba(255,255,255,0.1);font-size:13.5px;color:rgba(255,255,255,0.9);text-decoration:none}
#hb-nearby a:last-child{border-bottom:none;color:#E0A63C;font-weight:700}
.hb-about{display:grid;gap:10px;padding:14px 10px 12px}
.hb-about p{margin:0;font-size:12.5px;line-height:1.95;color:rgba(255,255,255,0.82)}
.hb-about a{font-size:13.5px;color:rgba(255,255,255,0.9)}
.hb-cta-wrap{padding:22px 0 26px}
.hb-cta{display:flex;align-items:center;justify-content:center;gap:10px;min-height:52px;border-radius:999px;background:#F5C63C;font-size:14.5px;font-weight:700;color:#14503C;text-decoration:none}
@media(max-width:520px){.site-explore-link{display:none}}
@media(prefers-reduced-motion:reduce){.hb-drawer,.hb-scrim,.hb-panel{animation:none}.hb-sec,.hb-sec--primary,.hb-sec__caret{transition:none}}

/* 国別ページのヘッダー右端（国旗＋国名） */
.site-country-badge{display:flex;align-items:center;gap:8px;margin-left:auto}
.site-country-flag{display:inline-flex;line-height:0;border-radius:2px;overflow:hidden}
.site-country-flag svg,.site-country-flag img{height:18px !important;width:auto !important;display:block}
.site-country-name{font-size:0.85em;font-weight:700;color:#fff;white-space:nowrap;letter-spacing:0.02em}
@media(max-width:520px){.site-country-name{display:none}.site-country-flag svg,.site-country-flag img{height:16px !important}}

/* ===== 新ヘッダー（トップページ index.html 準拠・共通ページ用） ===== */
.wm-header{position:relative;z-index:40;background:#125F4E;color:#fff}
.wm-header-top{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:0 32px;height:52px}
.wm-logo,.wm-logo:hover{display:flex;align-items:center;gap:6px;color:#fff;text-decoration:none}
.wm-logo img{flex:none;display:block}
.wm-logo-text{display:flex;align-items:baseline;gap:5px;font-family:'Noto Sans JP','Hiragino Sans','Yu Gothic Medium',YuGothic,Meiryo,sans-serif;font-weight:900;font-size:21px;line-height:1;letter-spacing:-0.01em;white-space:nowrap;color:#fff}
.wm-logo-text .gold{color:#ffc200}
.wm-hb{display:grid;gap:4.5px;width:36px;height:36px;place-content:center;justify-items:center;border:1px solid rgba(255,255,255,0.4);border-radius:5px;background:transparent;cursor:pointer;transition:background .25s ease}
.wm-hb.open{background:rgba(255,255,255,0.22)}
.wm-hb span{display:block;width:18px;height:2px;background:#fff}
.wm-menu{background:#125F4E;border-top:1px solid rgba(255,255,255,0.18);padding:26px 32px 30px;grid-template-columns:repeat(4,1fr);gap:26px;animation:wm-pop .28s ease both}
.wm-menu-col{display:grid;gap:10px;align-content:start}
.wm-menu-label{font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:0.2em;color:#E0A63C}
.wm-menu-col a{font-size:13px;color:rgba(255,255,255,0.9);text-decoration:none}
.wm-menu-col a:hover{color:#fff}
.wm-menu-about{border-left:1px solid rgba(255,255,255,0.18);padding-left:26px}
.wm-menu-about p{margin:0;font-size:12.5px;line-height:1.95;color:rgba(255,255,255,0.82)}
@media(max-width:760px){
  .wm-header{position:sticky;top:0}
  .wm-header-top{padding:0 16px}
  .wm-menu{grid-template-columns:1fr 1fr;gap:20px;padding:20px 16px 26px}
  .wm-menu-about{border-left:none;padding-left:0;grid-column:1/-1}
}

/* フッター（4カラム: ブランド／GUIDE／近隣の国／SHARE） */
.site-footer-main{background:#514238;color:#fff}
.sf-grid{max-width:1320px;margin:0 auto;padding:38px 32px 30px;display:grid;grid-template-columns:1.25fr 1fr 1fr 1.1fr;gap:32px}
.sf-brand{display:grid;gap:14px;align-content:start}
.sf-brand-logo{display:flex;align-items:center;gap:11px;font-weight:900;font-size:20px;line-height:1;color:#fff}
.sf-brand-logo .gold{color:var(--yellow)}
.sf-brand p{margin:0;font-size:0.78em;line-height:1.95;color:rgba(255,255,255,0.78)}
.sf-social{display:flex;gap:10px}
.sf-social a{display:grid;place-content:center;width:38px;height:38px;border:1px solid rgba(255,255,255,0.35);border-radius:999px;color:#fff;text-decoration:none;transition:all .2s ease}
.sf-social a:hover{background:var(--yellow);border-color:var(--yellow);color:#514238}
.sf-col{display:grid;gap:10px;align-content:start}
.sf-label{font-family:'JetBrains Mono',monospace;font-size:11.5px;font-weight:700;letter-spacing:0.14em;color:var(--yellow)}
.sf-col a{font-size:0.8em;color:rgba(255,255,255,0.85);text-decoration:none}
.sf-area-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px 14px}
@media(min-width:1021px){.sf-grid>div{min-height:216px}}
.sf-col a:hover{color:#fff}
.sf-gold-link{color:var(--yellow) !important}
.sf-share p{margin:0;font-size:0.78em;line-height:1.9;color:rgba(255,255,255,0.78)}
.sf-copy-btn{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:11px 15px;border:1px solid rgba(255,255,255,0.35);border-radius:6px;background:transparent;font-family:inherit;font-size:0.78em;color:#fff;cursor:pointer;transition:all .2s ease}
.sf-copy-btn:hover{background:rgba(255,255,255,0.1)}
.sf-share-links{display:flex;gap:8px}
.sf-share-btn{flex:1;text-align:center;padding:10px 8px;border:1px solid rgba(255,255,255,0.35);border-radius:6px;font-size:0.76em;color:#fff;background:transparent;font-family:inherit;cursor:pointer;transition:all .2s ease}
.sf-share-btn:hover{background:rgba(255,255,255,0.12)}
.sf-bottom{border-top:1px solid rgba(255,255,255,0.18);padding:16px 32px 20px;display:flex;align-items:center;justify-content:space-between;gap:20px;font-size:0.72em;color:rgba(255,255,255,0.7)}
.sf-legal{display:flex;gap:18px}
.sf-legal a{color:rgba(255,255,255,0.7);text-decoration:none}
.sf-legal a:hover{color:#fff}
.sf-copyright .gold{letter-spacing:0.16em;color:var(--yellow)}
@media(max-width:1020px){.sf-grid{grid-template-columns:1fr 1fr;padding:28px 20px 24px}}
@media(max-width:520px){
  .sf-grid{grid-template-columns:1fr;gap:0;padding:6px 18px 18px}
  .sf-col-area{display:none}
  .sf-grid>div{padding:22px 0;border-top:1px solid rgba(255,255,255,0.13)}
  .sf-grid>div:first-child{border-top:none}
  .sf-brand{gap:12px}
  .sf-col:not(.sf-share){gap:4px}
  .sf-col:not(.sf-share)>a{font-size:0.92em;line-height:1;padding:11px 0;border-bottom:1px solid rgba(255,255,255,0.08)}
  .sf-col:not(.sf-share)>a:last-child{border-bottom:none}
  .sf-label{margin-bottom:6px}
  .sf-bottom{flex-direction:column;align-items:center;gap:10px;padding:16px 18px 20px;text-align:center}
  .sf-legal{flex-wrap:wrap;justify-content:center;gap:10px 16px}
}

/* ラベルタグ */
.lbl{font-size:0.72em;color:var(--sub);font-weight:700;margin-bottom:2px}

/* タブナビ（全国共通） */
nav{background-color:#f6f4ef;border-bottom:1px solid rgba(30,136,229,0.15);box-shadow:0 4px 20px rgba(26,37,48,0.04);display:flex;justify-content:center;overflow-x:auto;gap:0;touch-action:pan-x;-webkit-overflow-scrolling:touch;position:sticky;top:0;z-index:1001;transition:top 0.3s ease;scroll-padding-inline:36px}

/* ページ内アンカー遷移時に固定ヘッダー分オフセットする（#money #sim #transport #flights #season 等） */
#money,#sim,#transport,#flights,#season{scroll-margin-top:110px}
nav::-webkit-scrollbar{height:3px}
nav button,nav a{flex-shrink:0;background:none;border:none;border-bottom:6px solid transparent;padding:13px 16px;font-size:0.8em;color:#666;cursor:pointer;margin-bottom:-2px;white-space:nowrap;transition:color 0.2s,border-color 0.2s,background-color 0.2s;font-weight:700;letter-spacing:0.02em;position:relative;z-index:1;text-decoration:none}
nav button:not(:last-child)::after,nav a:not(:last-child)::after{content:'';position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px;height:16px;background:#d8e2ee}
nav button.active,nav a.active{color:var(--green);border-bottom-color:var(--green);background-color:var(--green-light);border-radius:10px 10px 0 0}
nav button:hover,nav a:hover{color:var(--green);border-bottom-color:var(--green)}
/* タブアイコン（素材/タブバー → assets/tabbar） */
nav a,nav button{display:flex;flex-direction:row;align-items:center;justify-content:center;gap:7px;padding-top:12px;padding-bottom:12px}
nav a::before,nav button::before{content:"";display:block;width:18px;height:18px;flex-shrink:0;margin:0;background-repeat:no-repeat;background-position:center;background-size:contain;opacity:0.92;transition:background-image 0s}
nav button:last-of-type::before{background-image:url(tabbar/item_green.png);width:22px;height:22px;margin:0}
nav button:last-of-type:hover::before{background-image:url(tabbar/item_amber.png)}
nav a:nth-of-type(1)::before,nav button:not(:last-of-type):nth-of-type(1)::before{background-image:url(tabbar/basic_green.png)}
nav a:nth-of-type(2)::before,nav button:not(:last-of-type):nth-of-type(2)::before{background-image:url(tabbar/spots_green.png)}
nav a:nth-of-type(3)::before,nav button:not(:last-of-type):nth-of-type(3)::before{background-image:url(tabbar/food_green.png)}
nav a:nth-of-type(4)::before,nav button:not(:last-of-type):nth-of-type(4)::before{background-image:url(tabbar/course_green.png)}
nav a:nth-of-type(5)::before,nav button:not(:last-of-type):nth-of-type(5)::before{background-image:url(tabbar/budget_green.png)}
nav a:nth-of-type(6)::before,nav button:not(:last-of-type):nth-of-type(6)::before{background-image:url(tabbar/practical_green.png)}
nav a:nth-of-type(7)::before,nav button:not(:last-of-type):nth-of-type(7)::before{background-image:url(tabbar/phrases_green.png)}
:is(nav a:nth-of-type(1).active,nav a:nth-of-type(1):hover,nav button:not(:last-of-type):nth-of-type(1).active,nav button:not(:last-of-type):nth-of-type(1):hover)::before{background-image:url(tabbar/basic_amber.png)}
:is(nav a:nth-of-type(2).active,nav a:nth-of-type(2):hover,nav button:not(:last-of-type):nth-of-type(2).active,nav button:not(:last-of-type):nth-of-type(2):hover)::before{background-image:url(tabbar/spots_amber.png)}
:is(nav a:nth-of-type(3).active,nav a:nth-of-type(3):hover,nav button:not(:last-of-type):nth-of-type(3).active,nav button:not(:last-of-type):nth-of-type(3):hover)::before{background-image:url(tabbar/food_amber.png)}
:is(nav a:nth-of-type(4).active,nav a:nth-of-type(4):hover,nav button:not(:last-of-type):nth-of-type(4).active,nav button:not(:last-of-type):nth-of-type(4):hover)::before{background-image:url(tabbar/course_amber.png)}
:is(nav a:nth-of-type(5).active,nav a:nth-of-type(5):hover,nav button:not(:last-of-type):nth-of-type(5).active,nav button:not(:last-of-type):nth-of-type(5):hover)::before{background-image:url(tabbar/budget_amber.png)}
:is(nav a:nth-of-type(6).active,nav a:nth-of-type(6):hover,nav button:not(:last-of-type):nth-of-type(6).active,nav button:not(:last-of-type):nth-of-type(6):hover)::before{background-image:url(tabbar/practical_amber.png)}
:is(nav a:nth-of-type(7).active,nav a:nth-of-type(7):hover,nav button:not(:last-of-type):nth-of-type(7).active,nav button:not(:last-of-type):nth-of-type(7):hover)::before{background-image:url(tabbar/phrases_amber.png)}
.nav-fade{position:absolute;top:0;bottom:0;width:32px;pointer-events:none;opacity:0;transition:opacity 0.2s;display:flex;align-items:center}
.nav-fade-left{left:0;background:linear-gradient(to right,rgba(246,244,239,0.95),rgba(246,244,239,0));justify-content:flex-start}
.nav-fade-right{right:0;background:linear-gradient(to left,rgba(246,244,239,0.95),rgba(246,244,239,0));justify-content:flex-end}
nav.has-left .nav-fade-left{opacity:1}
nav.has-right .nav-fade-right{opacity:1}
.nav-fade-arrow{font-size:15px;line-height:1;color:var(--green);font-weight:700;padding:0 6px}

/* セクション切り替えアニメーション */
section{display:none;animation:fadeIn 0.25s}
section.active{display:block}
.s-card{background:transparent;border-radius:0;padding:0;margin-top:8px}
/* 予算タブ: セクション囲み（PCでは無、スマホでカード分割） */
.tb-sec,.tb-card{display:contents}
.s-card>h2:first-child{margin-top:0}
@media(max-width:700px){.s-card{margin-left:0;margin-right:0;padding:0}}
#div_admane_async_1734_658_2971 img{max-width:100%;height:auto}
@keyframes fadeIn{from{opacity:0;transform:translateY(5px)}to{opacity:1;transform:translateY(0)}}

/* ベストシーズン（全国共通） */
.season-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:2px;margin:10px 0}
.month-col{text-align:center}
.month-lbl{font-size:0.72em;color:var(--sub);margin-bottom:3px;font-weight:600}
.month-dot{width:100%;height:62px;border-radius:4px;display:flex;align-items:center;justify-content:center;font-size:0.9em;font-weight:700;flex-direction:column;gap:2px;text-align:center}
.md-t{font-size:0.95em;font-weight:700;line-height:1;text-align:center;width:100%}
.t-freeze{background:#f5ede0;color:#8a7050}
.t-cold{background:#f5e4cc;color:#7a5830}
.t-cool{background:#f5d8a0;color:#6a4010}
.t-mild{background:#f5c870;color:#5a3000}
.t-warm{background:#f5b440;color:#4a2800}
.t-hot1{background:#f5a020;color:#3a2000}
.t-hot2{background:#f07830;color:#3a1400}
.t-hot3{background:#e05020;color:#3a1400}
.t-extreme{background:#c83010;color:#fff}
.t-extreme{background:linear-gradient(160deg,#c83030,#d85050);color:#fff}
.city-season{margin-bottom:14px}
.city-name{font-family:'Zen Kaku Gothic New',sans-serif;font-size:1.15em;font-weight:500;color:inherit;margin:0 0 4px}
.season-mini{display:grid;grid-template-columns:repeat(12,1fr);gap:3px;margin:8px 0 6px}
.sm-col{text-align:center}
.sm-lbl{font-size:0.65em;color:var(--sub);margin-bottom:2px;font-weight:600}
.sm-dot{height:52px;border-radius:5px;font-size:0.9em;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:2px;width:100%}
.sm-t{display:block;font-size:0.7em;font-weight:700;line-height:1;text-align:center;width:100%}

/* 表示切り替え（通常/コンパクト/リスト） */
.items-count-row{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:20px;margin-bottom:4px;padding-bottom:10px;border-bottom:1px solid #E8E2D8;flex-wrap:wrap}
.items-count-text{font-size:0.8em;color:var(--sub)}
.view-toggle{display:flex;gap:14px;flex-shrink:0}
.view-toggle button{display:flex;align-items:center;gap:5px;font-size:0.74em;font-weight:500;padding:5px 2px 6px;border:none;border-bottom:2px solid transparent;background:none;color:#8A968D;cursor:pointer;transition:all 0.2s ease}
.view-toggle button:hover{color:var(--green-dark)}
.view-toggle button.on{color:var(--green-dark);border-bottom-color:var(--green-dark);font-weight:700}
.view-toggle svg{width:14px;height:14px}
@media(max-width:520px){.view-toggle{gap:10px}}

/* 観光スポット・グルメカード（全国共通） */
.item-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}
.item-card{background:#fff;border-radius:8px;padding:18px;border:1px solid #E8E2D8;box-shadow:0 2px 0 rgba(20,40,30,0.04),0 4px 10px rgba(20,40,30,0.05);display:flex;flex-direction:column;position:relative;overflow:hidden}
.item-card.spot{border-left:1px solid #E8E2D8;overflow:hidden}
.item-card .ico{font-size:1.8em;margin-bottom:4px}
.item-card .num{font-size:0.8em;font-weight:700;color:var(--red);margin-bottom:2px}
.item-card .num-row{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:4px}
.item-card .num-row .num{margin-bottom:0}
.item-card .num-row .badge{margin-left:0}
.item-card.spot .num{color:var(--green)}
.item-card .name-row{margin-bottom:4px;line-height:1.6}
.item-card .name{font-size:0.97em;font-weight:700;color:#222;line-height:1.4;display:inline}
.item-card .name rt{font-size:0.55em;font-weight:400;color:var(--sub);letter-spacing:0}
.item-card .desc{font-size:0.83em;color:var(--sub);line-height:1.75;flex:1}
.item-card .badge{display:inline-block;background:#e8f5ee;color:var(--green);padding:2px 10px;border-radius:20px;font-size:0.68em;font-weight:700;white-space:nowrap;vertical-align:middle;margin-left:4px}
.item-card.must{position:relative;border:2px solid var(--yellow);border-radius:6px;box-shadow:none}
.must-badge{position:absolute;top:6px;right:8px;font-size:1.4em;line-height:1}
.item-card.must .num-row{padding-right:26px}
.item-grid.view-compact .must-badge,.item-grid.view-list .must-badge{display:none}

/* 観光スポット・グルメ: コンパクト表示（画像縮小・説明文は残す） */
.item-grid.view-compact{grid-template-columns:repeat(5,1fr);gap:9px}
@media(max-width:1100px){.item-grid.view-compact{grid-template-columns:repeat(4,1fr)}}
@media(max-width:900px){.item-grid.view-compact{grid-template-columns:repeat(3,1fr)}}
@media(max-width:620px){.item-grid.view-compact{grid-template-columns:repeat(2,1fr)}}
.item-grid.view-compact .item-card{padding:9px;cursor:pointer}
.item-grid.view-compact .name{font-size:0.85em}
.item-grid.view-compact .desc{font-size:0.72em;line-height:1.55}
.item-grid.view-compact .num{font-size:0.72em}
.item-grid.view-compact .badge{font-size:0.6em;padding:1px 7px;white-space:nowrap;max-width:100%;overflow:hidden;text-overflow:ellipsis}
.item-grid.view-compact .item-card .order-btn,.item-grid.view-compact .item-card .wiki-link,.item-grid.view-compact .item-card .spot-map-btn{display:none}
.item-grid.view-compact .name{display:block;min-height:0}
.item-grid.view-compact .name-row{margin-bottom:8px}
.item-grid.view-compact .item-card .desc{flex:none;margin:0}
.item-grid.view-compact .food-img,
.item-grid.view-compact .spot-img-wrap{width:calc(100% + 20px);margin:8px -10px -10px;aspect-ratio:16/9;flex:none;min-height:0;max-height:none}
.item-grid.view-compact .item-card{display:flex;flex-direction:column}
.item-grid.view-compact .food-img{object-fit:cover;height:auto}
#food-grid.item-grid.view-compact .item-card.has-img{padding-bottom:10px !important}
#food-grid.item-grid.view-compact .item-card.has-img .desc{background:none;padding-bottom:0;flex:none !important;margin:0}
.item-grid.view-compact .desc{display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}
@media(max-width:620px){
  .item-grid.view-compact{grid-template-columns:1fr;gap:8px}
  .item-grid.view-compact .item-card{display:block;position:relative;padding:12px 14px 12px 130px;min-height:104px;overflow:hidden}
  .item-grid.view-compact .item-card .num-row,
  .item-grid.view-compact .item-card .num,
  .item-grid.view-compact .item-card .must-badge,
  .item-grid.view-compact .item-card .badge{display:none}
  .item-grid.view-compact .spot-img-wrap,
  .item-grid.view-compact .spot-img-placeholder,
  .item-grid.view-compact .food-img{position:absolute;left:0;top:0;bottom:0;width:112px;height:auto;max-height:none;aspect-ratio:auto;margin:0;border-radius:0;overflow:hidden}
  .item-grid.view-compact .spot-img-wrap img{object-fit:cover;width:100%;height:100%}
  .item-grid.view-compact .food-img{object-fit:cover}
  #food-grid.item-grid.view-compact .item-card.has-img{padding-bottom:12px !important}
  #food-grid.item-grid.view-compact .item-card.has-img .desc{-webkit-line-clamp:2}
  .item-grid.view-compact .spot-img-wrap .spot-map-btn{display:none}
  .item-grid.view-compact .name-row{display:block;margin-bottom:4px}
  .item-grid.view-compact .name{display:block;font-size:0.92em;line-height:1.4;min-height:0}
  .item-grid.view-compact .desc{height:auto !important;-webkit-line-clamp:2;font-size:0.76em}
  #food-grid.item-grid.view-compact .item-card.has-img{padding-bottom:10px !important}
}

/* 観光スポット・グルメ: リスト表示（小サムネ＋名前・タグのみ） */
.item-grid.view-list{grid-template-columns:1fr 1fr;gap:8px 16px}
.item-grid.view-list .item-card{cursor:pointer}
@media(max-width:900px){.item-grid.view-list{grid-template-columns:1fr}}
.item-grid.view-list .item-card{flex-direction:row;align-items:center;gap:12px;padding:10px 12px 10px 92px;position:relative;overflow:hidden;min-height:76px}
.item-grid.view-list .item-card .num,.item-grid.view-list .item-card .num-row{display:none}
.item-grid.view-list .desc{display:none}
.item-grid.view-list .order-btn,.item-grid.view-list .wiki-link{display:none}
.item-grid.view-list .name-row{margin-bottom:0}
.item-grid.view-list .spot-img-wrap,
.item-grid.view-list .spot-img-placeholder,
.item-grid.view-list .food-img{order:-1;position:absolute;left:0;top:0;bottom:0;width:76px;height:auto;max-height:none;aspect-ratio:auto;margin:0;flex-shrink:0;border-radius:0;overflow:hidden}
.item-grid.view-list .spot-img-wrap img{object-fit:cover;width:100%;height:100%}
.item-grid.view-list .food-img{object-fit:cover}
.item-grid.view-list .spot-img-wrap .spot-map-btn{display:none}
.map-btn{display:block;text-align:right;font-size:0.7em;color:#aaa;text-decoration:none;margin-top:6px;font-weight:600}
.map-btn:hover{color:#555;text-decoration:underline}
.wiki-link{display:block;text-align:right;font-size:0.7em;color:#aaa;text-decoration:none;margin-top:auto;padding-top:8px;font-weight:600}
.wiki-link:hover{color:#555;text-decoration:underline}
.tab-cta{background:#FAF7F2;border-radius:8px;padding:22px 18px;text-align:center;margin-top:22px;border:1px solid #CFE0D7;box-shadow:0 2px 0 rgba(20,40,30,0.06),0 6px 14px rgba(20,40,30,0.07)}
.tab-cta-title{font-size:1em;font-weight:900;display:inline;background:linear-gradient(transparent 55%,#b8e8d0 55%);padding:0 3px;line-height:1.8}
.tab-cta-desc{font-size:0.82em;color:var(--sub);line-height:1.85;margin:12px 0 18px}
.tab-cta-btn{display:inline-block;background:var(--green);color:#fff;font-size:0.88em;font-weight:700;border:none;border-radius:24px;padding:11px 30px;cursor:pointer;letter-spacing:0.03em;text-decoration:none}
.tab-cta-btn:hover{background:#008a5a}
.filter-row{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:10px}
.filter-group{margin-bottom:8px}
.filter-bar{position:relative;display:flex;align-items:center;gap:8px 16px;flex-wrap:wrap;margin:18px 0 4px;padding-bottom:10px;border-bottom:1px solid #E8E2D8}
.filter-bar .filter-toggle{flex:0 0 auto}
.filter-bar .items-count-row{flex:1 1 auto;min-width:170px;margin:0;padding:0;border:0}
.filter-toggle{margin:0}
.filter-toggle>summary{list-style:none;display:flex;cursor:default;user-select:none;-webkit-user-select:none}
.filter-toggle>summary::-webkit-details-marker{display:none}
.ft-btn{display:inline-flex;align-items:center;gap:7px;padding:9px 18px;border-radius:24px;font-size:0.85em;font-weight:700;color:#fff;background:var(--green);cursor:pointer;transition:background .15s;white-space:nowrap}
.ft-btn:hover{background:var(--green-dark)}
.filter-toggle:not([open]) .ft-btn{background:#fff;color:var(--green);border:1.5px solid var(--green);padding:7.5px 16.5px}
.filter-toggle:not([open]) .ft-btn:hover{background:var(--green-light)}
.filter-toggle:not([open]) .ft-btn.ft-on{background:var(--green);color:#fff;border-color:var(--green)}
.filter-toggle:not([open]) .ft-btn.ft-on:hover{background:var(--green-dark)}
.ft-funnel{width:14px;height:14px;flex-shrink:0}
.ft-caret{width:7px;height:7px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(225deg);margin-left:3px;transition:transform .2s}
.filter-toggle:not([open]) .ft-caret{transform:rotate(45deg) translateY(-1px)}
.filter-toggle-body{position:absolute;left:0;right:0;top:calc(100% + 6px);z-index:40;background:#fff;border:1px solid #e0e0e0;border-radius:14px;padding:16px 16px 14px;box-shadow:0 10px 30px rgba(20,40,30,0.16)}
.ft-cols{display:flex;gap:14px 26px;flex-wrap:wrap}
.ft-col{flex:1;min-width:210px}
.ft-actions{display:flex;justify-content:flex-end;gap:10px;margin-top:16px}
.ft-reset{background:#fff;border:1px solid #d5d5d5;color:#666;font-size:0.8em;font-weight:700;padding:9px 18px;border-radius:9px;cursor:pointer}
.ft-reset:hover{background:#f0f0f0}
.ft-apply{background:var(--green);border:none;color:#fff;font-size:0.82em;font-weight:700;padding:9px 24px;border-radius:9px;cursor:pointer}
.ft-apply:hover{background:var(--green-dark)}
.ft-btn,.ft-reset,.ft-apply,.view-toggle button{user-select:none;-webkit-user-select:none}
#spots-grid{margin-top:0;padding:0 4px 16px}
#food-grid{margin-top:0;padding:0 4px 16px}
.filter-label{font-size:0.7em;font-weight:700;color:#999;letter-spacing:0.06em;margin-bottom:5px;text-transform:uppercase}
.filter-btn{background:#f0f0f0;border:2px solid transparent;border-radius:20px;padding:6px 13px;font-size:0.82em;font-weight:600;cursor:pointer;color:#555;transition:all 0.2s;user-select:none;-webkit-user-select:none}
@media (hover:hover){.filter-btn:hover{background:#dde8e2;color:var(--green)}}
.filter-btn.active{background:var(--green);color:#fff;border-color:var(--green)}
.filter-btn:focus:not(:focus-visible){outline:none;border-color:transparent}
.filter-btn.active:focus:not(:focus-visible){border-color:var(--green)}

/* 指差しモーダル */
.order-btn{position:absolute;top:8px;right:8px;display:inline-flex;align-items:center;gap:3px;padding:3px 10px 3px 7px;background:#fff;border:1.5px solid #dadce0;color:#5f6368;font-size:0.65em;font-weight:600;border-radius:20px;cursor:pointer;white-space:nowrap;line-height:1.7;box-shadow:0 1px 2px rgba(0,0,0,0.08);transition:all 0.18s}
.order-btn::before{content:'🌐';font-size:1.1em}
.order-btn:hover{background:#f8f9fa;border-color:#aaa;box-shadow:0 2px 5px rgba(0,0,0,0.13)}
#food-grid .item-card{padding-bottom:110px}
#food-grid .item-card .ico{position:absolute;bottom:10px;left:10px;margin-bottom:0;font-size:1.9em}
#food-grid .item-card .wiki-link{position:absolute;bottom:10px;right:10px;margin-top:0;padding-top:0}
.food-modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.62);z-index:9999;align-items:center;justify-content:center}
.food-modal-overlay.open{display:flex}
.food-modal-card{background:#fff;border-radius:6px;padding:36px 28px 26px;max-width:310px;width:88%;text-align:center;position:relative;box-shadow:0 10px 48px rgba(0,0,0,0.28)}
.food-modal-close{position:absolute;top:14px;right:16px;background:none;border:none;font-size:1.3em;cursor:pointer;color:#ccc;line-height:1;padding:0}
.food-modal-ico{font-size:2.8em;margin-bottom:10px}
.food-modal-name{font-size:2em;font-weight:900;color:#111;margin-bottom:4px;line-height:1.5}
.food-modal-name rt{font-size:0.4em;font-weight:400;color:#888;letter-spacing:0}
.food-modal-name-en{font-size:1.2em;font-weight:700;color:#555;margin-bottom:2px;line-height:1.3}
.food-modal-pinyin{font-size:0.85em;color:#999;letter-spacing:0.02em;margin-bottom:22px}
.food-modal-phrase{background:var(--green-light);border-radius:8px;padding:16px 18px;margin-bottom:16px}
.food-modal-phrase-main{font-size:1.15em;font-weight:900;color:var(--green);margin-bottom:3px;line-height:1.4}
.food-modal-phrase-sub{font-size:0.76em;color:#888}
.food-modal-hint{font-size:0.68em;color:#ccc;letter-spacing:0.02em}
.see-more{display:inline-flex;align-items:center;min-height:40px;padding:0 18px;font-size:0.78em;color:var(--green-dark);font-weight:700;margin-bottom:16px;cursor:pointer;background:#fff;border:1px solid var(--green);border-radius:6px;box-shadow:0 2px 0 rgba(20,40,30,0.06),0 6px 14px rgba(20,40,30,0.07);text-decoration:none;transition:all .25s ease}
.see-more:hover{background:var(--green);color:#fff}

/* フレーズテーブル（全国共通） */
.phrase-tbl{width:100%;border-collapse:collapse;background:#fff;border-radius:8px;overflow:hidden;border:1px solid #E8E2D8;box-shadow:0 2px 0 rgba(20,40,30,0.05),0 6px 14px rgba(20,40,30,0.06)}
.phrase-tbl th{background:var(--green);color:#fff;padding:10px 12px;font-size:0.8em;text-align:left}
.phrase-tbl td{padding:9px 12px;border-bottom:1px solid #E8E2D8;vertical-align:middle}
.phrase-tbl tr:last-child td{border-bottom:none}
.phrase-tbl tr:nth-child(even) td{background:#f8faf8}
.jp{color:#333;font-size:0.9em}
.ms,.local{color:var(--green);font-weight:700;font-size:0.95em}
.roma{color:#999;font-size:0.8em;display:block;margin-top:1px}
.cat-hdr td{background:#c8e6d5!important;color:#004d33;font-weight:700;font-size:0.8em;padding:8px 12px}
@media(max-width:520px){
  .phrase-tbl{table-layout:fixed}
  .phrase-tbl th,.phrase-tbl td{padding:7px 8px}
  .jp{font-size:0.82em}
  .ms,.local{font-size:0.85em}
  .roma{font-size:0.72em}
}

/* 予算・費用 */
.budget-row{display:flex;align-items:center;flex-wrap:wrap;gap:10px;padding:10px 0;border-bottom:1px solid #E8E2D8}
.budget-link{display:block;width:100%;text-align:right;font-size:0.88em;font-weight:700;color:var(--green);text-decoration:none;white-space:nowrap}
.inline-affiliate-link{color:var(--green);font-weight:700;text-decoration:underline}
.budget-row:last-child{border-bottom:none}
.budget-ico{font-size:1.4em;width:36px;text-align:center;flex-shrink:0;line-height:1}
.budget-ico svg{width:1em;height:1em;vertical-align:middle}
.budget-info{flex:1}
.budget-info .b-title{font-size:0.9em;font-weight:700;line-height:1.4}
.budget-info .b-sub{font-size:0.8em;color:var(--sub);margin-top:2px;line-height:1.65}
.budget-price{font-weight:700;color:var(--green);font-size:0.9em;text-align:right;flex-shrink:0}
.budget-table{width:100%;border-collapse:collapse;font-size:0.92em}
.budget-table td{padding:14px 8px;border-bottom:1px solid #E8E2D8;vertical-align:middle}
.budget-table tr:last-child td{border-bottom:none}
.budget-table .ico-col{font-size:1.5em;width:36px;text-align:center;padding-left:0;line-height:1}
.budget-table .ico-col svg{width:1em;height:1em;vertical-align:middle}
.budget-table .price-col{text-align:right;padding-right:0;vertical-align:middle;white-space:nowrap;min-width:130px;position:relative;padding-bottom:32px}
.budget-table .price-col .aff-wrap{position:absolute;bottom:14px;right:0;white-space:normal;width:auto}
.budget-table td:nth-child(2){vertical-align:top}
.td-price{display:block;font-weight:700;color:var(--green);font-size:1.05em}
.td-name{font-weight:700;display:block;margin-bottom:4px}
.td-sub{font-size:0.84em;color:var(--sub);line-height:1.6;display:block}

/* マナー */
.manner-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.manner-card{background:#fff;border-radius:8px;padding:16px 18px;border:1px solid #E8E2D8;box-shadow:0 2px 0 rgba(20,40,30,0.05),0 6px 14px rgba(20,40,30,0.06)}
.manner-card .m-ico{font-size:1.4em;margin-bottom:6px}
.manner-card .m-title{font-size:0.9em;font-weight:700;margin-bottom:4px}
.manner-card .m-desc{font-size:0.82em;color:var(--sub);line-height:1.75}
.do{background:#f4fbf8}
.dont{background:#fff6f6}
.do .m-title::before{content:'✅ '}
.dont .m-title::before{content:'❌ '}

/* 基本データグリッド */
.bd-grid{display:grid;grid-template-columns:1fr;column-gap:24px}
.bd-item{display:flex;align-items:baseline;gap:16px;padding:14px 16px;border-bottom:1px solid #e0e0e0}
.bd-item:last-child{border-bottom:none}
.bd-lbl{font-size:0.78em;color:var(--sub);width:90px;flex-shrink:0}
.bd-val{font-weight:700;font-size:0.95em;flex:1}
.bd-note{font-size:0.76em;color:var(--sub);margin-top:2px;line-height:1.5}
.bd-cmp{padding:10px 0;margin-top:10px}

/* 旅の実用情報カード */
.prac-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:12px}
.prac-card{background:#fff;border-radius:8px;padding:18px 12px;border:1px solid #E8E2D8;text-align:center;box-shadow:0 2px 0 rgba(20,40,30,0.05),0 6px 14px rgba(20,40,30,0.06)}
.prac-card .p-ico{font-size:2em;margin-bottom:6px;line-height:1}
.prac-card .p-ico svg{width:1em;height:1em;vertical-align:middle}
.prac-card .p-title{font-size:0.82em;color:var(--sub);margin-bottom:4px}
.prac-card .p-val{font-size:0.95em;font-weight:700;color:var(--text)}
.prac-card .p-val-sub{display:block;font-size:0.78em;font-weight:400;color:var(--sub);margin-top:3px}

/* CTA */
.cta{background:linear-gradient(135deg,var(--green),var(--green-dark));  /* #6495ed→#4a7be0 */border-radius:6px;padding:28px 22px;color:#fff;text-align:center;margin-top:28px}
.cta h3{font-size:1.1em;margin-bottom:8px;color:#fff}
.cta p{font-size:0.82em;opacity:0.9;margin-bottom:14px;line-height:1.6}
.cta-btn{background:#fff;color:var(--green);border:none;padding:11px 28px;border-radius:30px;font-weight:700;font-size:0.9em;cursor:pointer;transition:transform 0.2s}
.cta-btn:hover{transform:scale(1.04)}

/* モデルコース */
.course-type{position:relative;display:flex;align-items:baseline;gap:12px;margin:28px 0 12px;padding:16px 18px;border:1px solid #CFE0D7;border-radius:8px;box-shadow:0 2px 0 rgba(20,40,30,0.06),0 6px 14px rgba(20,40,30,0.07);background:#FAF7F2}
.course-type::before,.course-type::after{content:none}
.course-type-lbl{font-size:0.68em;font-weight:700;padding:3px 9px;border-radius:3px;color:#fff}
.course-type-lbl.red{background:var(--red)}
.course-type-lbl.green{background:var(--green)}
.course-type-title{font-family:'Zen Kaku Gothic New',sans-serif;font-weight:500;font-size:1.35em;color:var(--text)}
.course-plan-lbl{display:inline-block;font-size:0.65em;font-weight:700;padding:3px 10px;border-radius:20px;border:1.5px solid var(--green);color:var(--green);background:#e8f5ee;margin-bottom:10px}
.course-plan-title{font-size:1em;font-weight:700;margin-bottom:16px;display:flex;align-items:baseline;gap:10px}
.season-tip-box{position:relative;margin:2em 0 0.5em;padding:16px 18px;border:1px solid #CFE0D7;border-radius:8px;box-shadow:0 2px 0 rgba(20,40,30,0.06),0 6px 14px rgba(20,40,30,0.07);background:#FAF7F2}
.season-tip-title{display:block;margin-bottom:8px;font-family:'JetBrains Mono',monospace;font-size:0.68em;letter-spacing:0.1em;color:var(--green-dark);font-weight:700}
.season-tip-box p{margin:0;padding:0}
.course-note{background:#FAF7F2;border-radius:8px;padding:10px 12px;margin-bottom:16px;display:flex;gap:10px;align-items:flex-start;border:1px solid #f0e0c8}
.course-note-ico{font-size:1.3em;flex-shrink:0}
.course-note-lbl{font-size:0.7em;font-weight:700;color:#cc5500;margin-bottom:4px}
.course-note-txt{font-size:0.75em;color:var(--sub);line-height:1.7}
.course-timeline{display:flex;flex-direction:column;gap:0}
.tl-day{position:relative;display:grid;grid-template-columns:54px minmax(0,1fr);gap:18px;padding-bottom:24px}
.tl-day:last-child{padding-bottom:0}
.tl-day:not(:last-child)::before{content:'';position:absolute;top:54px;bottom:0;left:27px;width:2px;background:#CFE0D7}
.tl-badge{position:relative;z-index:1;display:grid;place-content:center;width:54px;height:54px;border-radius:999px;background:var(--green);font-family:'JetBrains Mono',monospace;font-size:0.68em;font-weight:700;color:#fff;text-align:center;line-height:1.2}
.tl-body{display:grid;gap:11px;min-width:0}
.tl-pre-transit{display:flex;align-items:flex-start;gap:10px;padding-left:2px;margin-bottom:0;color:#888;font-size:0.72em}
.tl-pre-transit::before{content:'│\A▼';white-space:pre;color:#d0d0d0;font-size:1.1em;line-height:1.4;flex-shrink:0}
.tl-pre-transit-lbl{width:165px;flex-shrink:0;display:flex;flex-direction:column;align-items:center;text-align:center;gap:2px;word-break:keep-all;overflow-wrap:normal}
.tl-pre-transit-ico{flex-shrink:0;line-height:0}
.tl-pre-transit-ico svg{width:1.5rem;height:1.5rem}
.tl-content{font-size:0.85em;color:#3A3833;line-height:1.9;padding:15px 17px;border:1px solid #E8E2D8;border-radius:7px;background:#fff;box-shadow:0 2px 0 rgba(20,40,30,0.06),0 6px 14px rgba(20,40,30,0.07)}
.tl-transport-note{display:flex;align-items:center;gap:9px;justify-self:start;margin-top:9px;padding:9px 14px;border:1px dashed #d8c8a8;border-radius:5px;background:#FAF7F2;font-size:0.72em;color:#6b6154}
.tl-transport-note .tl-pre-transit-lbl{width:auto;flex-direction:row;text-align:left}
.tl-day-img{width:120px;height:88px;object-fit:cover;border-radius:6px;flex-shrink:0}
@media(max-width:600px){.tl-day-img{display:none}}
.course-footer{margin-top:12px;padding-top:10px;border-top:1px solid #E8E2D8;font-size:0.7em;color:var(--sub);line-height:1.8}
.course-tip{margin-top:8px;font-size:0.72em;color:var(--green);font-weight:600;display:flex;align-items:flex-start;gap:5px}
.plan-title-row{display:flex;align-items:center;flex-wrap:wrap;gap:10px}
.plan-title-row>span:first-child{font-weight:700}
.plan-tip-tag{display:inline-flex;align-items:flex-start;gap:5px;font-size:0.62em;font-weight:700;line-height:1.55;color:var(--green-dark);background:var(--green-light);border:1px solid #b8dcc9;padding:4px 11px;border-radius:12px;max-width:100%}
.plan-tip-tag svg{flex-shrink:0;width:0.9em;height:0.9em;margin-top:0.2em}
.course-tip svg{flex-shrink:0}
.tl-transit{display:flex;align-items:center;justify-content:center;gap:9px;margin:4px 0 24px 0;padding:9px 14px;border:1px dashed #d8c8a8;border-radius:5px;background:#FAF7F2;color:#6b6154;font-size:0.72em}
.tl-transit::before{content:none}
.tl-transit-lbl{white-space:normal;flex-shrink:0;text-align:left;color:#6b6154;font-size:1em;display:flex;align-items:center;gap:6px}
.course-city-list{display:flex;flex-direction:column;gap:8px;margin-top:14px}
.course-city{display:flex;gap:10px;padding:10px;background:var(--green-light);border-radius:8px;align-items:flex-start}
.course-city-ico{text-align:center;min-width:40px;flex-shrink:0}
.course-city-ico span{font-size:0.58em;font-weight:700;display:block;margin-top:2px}
.course-city-name{font-size:0.8em;font-weight:700;margin-bottom:3px}
.course-city-desc{font-size:0.72em;color:var(--sub);line-height:1.6}

/* 交通手段 */
.trans-list{display:flex;flex-direction:column;gap:8px}
.trans-item{display:flex;gap:12px;align-items:flex-start;padding:12px 0;border-bottom:1px solid #E8E2D8}
.trans-item:last-child{border-bottom:none}
.trans-item .t-ico{font-size:1.4em;flex-shrink:0;width:28px;text-align:center}
.trans-item .t-info{flex:1;min-width:0}
.trans-item .t-info .t-name{font-size:0.87em;font-weight:700;margin-bottom:2px}
.trans-item .t-info .t-desc{font-size:0.78em;color:var(--sub);line-height:1.7}

/* クイックスタッツ */
.qs-link{display:block;margin-top:auto;padding-top:6px;font-size:0.72em;color:var(--green-dark);font-weight:700;background:none;border:none;cursor:pointer;white-space:nowrap;width:auto;text-align:right;text-decoration:none}
.qs-link:hover{opacity:0.7;text-decoration:underline}
.qs-row{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:4px}
.qs-row-wide{grid-template-columns:1fr 1fr}
.qs-card{background:var(--card);padding:15px 16px;display:flex;align-items:flex-start;gap:10px;border:1px solid #E8E2D8;box-shadow:0 2px 0 rgba(20,40,30,0.07),0 6px 14px rgba(20,40,30,0.08);border-radius:8px}
.qs-ico{flex-shrink:0;font-size:22px;line-height:1;color:var(--green);margin-top:1px}
.qs-ico svg{display:block;width:1em;height:1em}
.qs-card > div:last-child{flex:1;min-width:0;display:flex;flex-direction:column;gap:6px;align-self:stretch}
.qs-lbl{font-family:'JetBrains Mono',monospace;font-size:0.66em;letter-spacing:0.1em;color:#7A756C}
.qs-val{font-size:0.95em;font-weight:700;line-height:1.3;color:var(--text)}
.qs-val-sub{display:block;font-size:0.74em;font-weight:400;color:var(--sub);margin-top:2px;line-height:1.5}

/* TOP3 */
.top3-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;margin-bottom:8px}
.top3-card{background:var(--card);border-radius:8px;padding:14px;border:1px solid #E8E2D8;border-top:3px solid var(--green);box-shadow:0 2px 0 rgba(20,40,30,0.05),0 6px 14px rgba(20,40,30,0.06)}
.top3-card.food-card{border-top-color:var(--red)}
.t3-num{font-size:0.7em;font-weight:700;color:var(--sub);margin-bottom:3px}
.t3-ico{font-size:1.8em;margin-bottom:4px}
.t3-name{font-size:0.88em;font-weight:700;color:var(--text);line-height:1.3}
.t3-tag{font-size:0.7em;background:#f0f7f3;color:var(--green);padding:2px 6px;border-radius:8px;margin-top:5px;display:inline-block}
.top3-card.food-card .t3-tag{background:#fff5f0;color:#c05000}

/* 都市グリッド */
.city-grid-wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;background:transparent}
.city-item{text-decoration:none;color:inherit;display:flex;flex-direction:column;gap:9px;padding:14px 15px 15px;border:1px solid #E8E2D8;border-radius:8px;background:#fff;box-shadow:0 2px 0 rgba(20,40,30,0.05),0 6px 14px rgba(20,40,30,0.06);transition:all .25s ease;cursor:pointer}
.city-item:hover{border-color:var(--green);box-shadow:0 2px 0 rgba(20,40,30,0.06),0 8px 20px rgba(20,40,30,0.10)}
.city-item.featured{border:2px solid var(--yellow);box-shadow:none}
.city-item.featured:hover{border-color:var(--yellow);box-shadow:0 8px 20px rgba(224,166,60,0.18)}
.ci-badge{display:inline-flex;align-items:center;width:fit-content;font-size:0.62em;font-weight:700;color:var(--green-dark);background:var(--green-light);border-radius:3px;padding:2px 8px;vertical-align:middle;margin-left:6px}
.ci-badge.green{color:var(--green-dark);background:var(--green-light)}
.ci-name-row{margin-bottom:0;line-height:1.35}
.ci-name{font-family:'Zen Kaku Gothic New',sans-serif;font-size:1.05em;font-weight:500;display:inline}
.ci-desc{font-size:0.78em;color:var(--sub);line-height:1.7;flex:1}
.ci-bottom{display:flex;justify-content:flex-end;align-items:center;margin-top:2px}
.ci-spots{font-size:0.75em;color:var(--green-dark);font-weight:700;background:none;border:none;cursor:pointer;padding:0;text-decoration:none;white-space:nowrap;margin-left:auto;display:block}
.ci-spots:hover{opacity:0.7;text-decoration:underline}

/* 都市セクションヘッダー（通常・リスト表示）: グリッド先頭に横いっぱいのバナー */
.city-section-header{grid-column:1/-1;padding:16px 18px;margin:0 0 4px;background:#FAF7F2;border:1px solid #CFE0D7;border-radius:8px;box-shadow:0 2px 0 rgba(20,40,30,0.06),0 6px 14px rgba(20,40,30,0.07);display:flex;flex-direction:column}
.csh-title{display:flex;align-items:baseline;gap:11px;font-family:'Zen Kaku Gothic New',sans-serif;font-weight:500;font-size:1.4em;color:var(--text);margin:0 0 11px;border-bottom:none;padding-bottom:0}
.csh-title::after{content:attr(data-count) ' spots';font-family:'JetBrains Mono',monospace;font-size:0.6em;font-weight:700;letter-spacing:0.02em;color:var(--green)}
.csh-desc{font-size:0.8em;color:#3A3833;margin-bottom:12px;line-height:1.7}
.csh-img{display:block;width:calc(100% + 2em);margin:-0.5em -1em 12px;height:140px;object-fit:cover;border-radius:0}
.csh-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 28px}
.csh-item{display:flex;gap:12px;align-items:baseline;padding:9px 0 5px;border-bottom:1.5px solid #D8C8A8}
.csh-item .csh-lbl{display:flex;align-items:baseline;gap:6px;font-size:0.72em;color:#7A756C;flex-shrink:0;width:8.2em;white-space:nowrap}
.csh-item .csh-lbl::before{content:'';flex-shrink:0;width:6px;height:6px;border-radius:999px;background:var(--green);opacity:0.55}
.csh-item .csh-val{font-size:0.85em;font-weight:700;color:var(--text)}
@media(max-width:560px){.csh-item .csh-lbl{width:7em;white-space:normal}}

/* コンパクト表示: 都市名＋説明だけの1マスカード。タップでポップアップ（通常カード）を表示 */
.item-grid.view-compact>.city-section-header{grid-column:auto;align-self:stretch;padding:11px 13px;margin:0;border-radius:8px;box-shadow:0 2px 0 rgba(20,40,30,0.04),0 4px 10px rgba(20,40,30,0.05);overflow:hidden;cursor:pointer}
.item-grid.view-compact>.city-section-header .csh-title{font-weight:700;font-size:1em;margin:0 0 6px;line-height:1.3;flex-wrap:wrap;gap:3px 7px}
.item-grid.view-compact>.city-section-header .csh-title::after{font-size:0.6em}
.item-grid.view-compact>.city-section-header .csh-desc{font-size:0.72em;margin-bottom:0;line-height:1.6;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}
.item-grid.view-compact>.city-section-header .csh-img,
.item-grid.view-compact>.city-section-header .csh-grid{display:none}

/* リスト表示: 都市カードもコンパクトに（PCは横2枠幅＝1行、スマホは1枠幅＝1行） */
.item-grid.view-list>.city-section-header{grid-column:1/-1;padding:11px 14px;margin:0;box-shadow:0 2px 0 rgba(20,40,30,0.04),0 4px 10px rgba(20,40,30,0.05);overflow:hidden;cursor:pointer}
.item-grid.view-list>.city-section-header .csh-title{font-size:1em;margin:0 0 5px;line-height:1.3;flex-wrap:wrap;gap:3px 7px}
.item-grid.view-list>.city-section-header .csh-title::after{font-size:0.6em}
.item-grid.view-list>.city-section-header .csh-desc{font-size:0.74em;margin-bottom:0;line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.item-grid.view-list>.city-section-header .csh-img,
.item-grid.view-list>.city-section-header .csh-grid{display:none}

/* 都市カードのポップアップ */
#city-popup{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.55);z-index:2000;align-items:center;justify-content:center;padding:16px}
#city-popup.open{display:flex}
#city-popup .cp-panel{position:relative;width:100%;max-width:430px;max-height:86vh;overflow-y:auto;background:#FAF7F2;border:1px solid #CFE0D7;border-radius:10px;box-shadow:0 14px 44px rgba(0,0,0,0.32)}
#city-popup .cp-panel .city-section-header{grid-column:auto;background:none;border:none;box-shadow:none;border-radius:0;padding:16px 18px 18px}
#city-popup .cp-panel .city-section-header .csh-img{display:block;width:calc(100% + 36px);margin:-16px -18px 14px;height:170px;border-radius:10px 10px 0 0}
#city-popup .cp-panel .city-section-header .csh-grid{display:grid;grid-template-columns:1fr}
#city-popup .cp-close{position:absolute;top:9px;right:11px;display:flex;align-items:center;justify-content:center;width:28px;height:28px;border:none;border-radius:50%;background:rgba(0,0,0,0.4);color:#fff;font-size:1em;line-height:1;cursor:pointer;z-index:1}
/* スマホは1列なので通常バナーに戻す */
@media(max-width:620px){
  .item-grid.view-compact>.city-section-header{grid-column:1/-1;padding:14px 14px;border-radius:8px}
  .item-grid.view-compact>.city-section-header .csh-desc{-webkit-line-clamp:3}
}

/* 持ち物チェックリスト */
.check-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:7px}
.check-list li{font-size:0.85em;color:var(--text);line-height:1.5;padding-left:22px;position:relative}
.check-list li::before{content:"✓";position:absolute;left:0;color:var(--green);font-weight:700;font-size:0.95em}

/* ロードマップ タイムライン */
.rm-item{display:flex}
.rm-left{display:flex;flex-direction:column;align-items:center;width:24px;flex-shrink:0}
.rm-dot{width:12px;height:12px;border-radius:50%;background:#fff;flex-shrink:0;margin-top:5px}
.rm-bar{width:3px;flex:1;min-height:16px;border-radius:2px;margin:3px 0}
.rm-right{flex:1;padding-left:14px;padding-bottom:18px}
.rmr-title{font-size:0.85em;font-weight:700;margin-bottom:3px}
.rmr-desc{font-size:0.73em;color:var(--sub);line-height:1.6}

/* レスポンシブ共通 */
@media(max-width:720px) and (min-width:521px){
  .city-grid-wrap{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  body{font-size:17px}
  .grid2,.grid3,.manner-grid,.item-grid{grid-template-columns:1fr}
  .qs-row{grid-template-columns:1fr 1fr}
  .qs-row-wide{grid-template-columns:1fr}
  .qs-card{padding:13px 12px;gap:8px}
  .qs-ico{font-size:17px}
  .qs-link{font-size:0.64em}
  .prac-grid{grid-template-columns:1fr 1fr}
  .city-grid-wrap{grid-template-columns:1fr}
  .prac-card{padding:10px 8px}
  .prac-card .p-ico{font-size:1.5em;margin-bottom:3px}
  .prac-card .p-title{font-size:0.75em}
  .prac-card .p-val{font-size:0.82em}
  .prac-card .p-val-sub{font-size:0.72em}
  .season-grid{grid-template-columns:repeat(6,1fr)}
  .season-mini{grid-template-columns:repeat(6,1fr)}
  .sm-dot{height:46px;font-size:0.85em}
  .month-dot{height:54px;font-size:0.8em}
  .md-t{font-size:0.75em}
  /* スマホではタブバーを画面下部に固定表示する */
  nav{justify-content:flex-start;position:fixed !important;top:auto !important;bottom:0;left:0;right:0;transform:none !important;border-bottom:none;border-top:1px solid rgba(30,136,229,0.15);box-shadow:0 -4px 20px rgba(26,37,48,0.10);padding-bottom:env(safe-area-inset-bottom)}
  nav button,nav a{font-size:0.82em;padding:7px 10px;border-bottom:none;border-top:4px solid transparent;margin-bottom:0;margin-top:-1px;flex-direction:column;gap:0}
  nav a::before,nav button::before{width:21px;height:21px;margin-bottom:3px}
  nav button:last-of-type::before{width:27px;height:27px;margin:-3px auto 0}
  nav button.active,nav a.active{border-bottom-color:transparent;border-top-color:var(--green);border-radius:0 0 10px 10px}
  .nav-fade-left{background:linear-gradient(to right,rgba(246,244,239,0.95),rgba(246,244,239,0))}
  .nav-fade-right{background:linear-gradient(to left,rgba(246,244,239,0.95),rgba(246,244,239,0))}
  body{padding-bottom:calc(56px + env(safe-area-inset-bottom))}
  .card .lbl{font-size:0.78em}
  .card .val{font-size:1em}
  .card .note{font-size:0.8em}
  .see-more{font-size:0.85em}
  /* 予算テーブル：スマホでは縦積みに変換して説明文を広く使う */
  .budget-table,.budget-table tbody{display:block}
  .budget-table tr{display:flex;flex-wrap:wrap;align-items:flex-start;padding:12px 0;border-bottom:1px solid #E8E2D8;gap:0}
  .budget-table tr:last-child{border-bottom:none}
  .budget-table td{border:none;padding:0}
  .budget-table .ico-col{flex:0 0 26px;font-size:1.1em;text-align:center;padding-top:2px}
  .budget-table td:nth-child(2){flex:1;padding-left:6px;min-width:0}
  .budget-table .price-col{flex:0 0 100%;display:block;white-space:normal;margin-top:6px;text-align:right;position:static;padding-bottom:0}
  .budget-table .price-col .aff-wrap{position:static;white-space:normal;margin-top:4px}
  .budget-table .price-col .td-price{display:block;margin-bottom:2px;margin-top:0}
  .budget-table .aff-wrap{display:block;width:100%;text-align:right}
  .budget-table .budget-link{font-size:0.8em}
  /* 費用目安の比較テーブル：スマホでは詰めて枠内に収める（左右余白を揃える） */
  .budget-compare{font-size:0.74em}
  .budget-compare th,.budget-compare td{padding-left:5px !important;padding-right:5px !important}
}
@media(max-width:480px){.csh-grid{grid-template-columns:1fr}}
@media(max-width:520px){
  .bd-grid{grid-template-columns:1fr}
  .bd-item:nth-child(odd){border-right:none}
  .bd-item:nth-last-child(-n+2){border-bottom:1px solid #E8E2D8}
  .bd-item:last-child{border-bottom:none}
}
