/* ============================================================
   TANTO カワラバン — 共有デザインシステム / 共通スタイル
   全ページ（TOP・下層）で読み込む単一ソース
   ============================================================ */

    /* ========================================
       ROOT
       ======================================== */
    :root {
      /* --------------------------------------------------------------
         デザイン案（デザイン案.png）から読み取った値を反映
         v1（C案ベース）の値は tanto-v1.css に保存してある
         -------------------------------------------------------------- */

      /* ---- ブランド色：ティール → モスグリーンへ ---- */
      --green:       #4E6344;  /* アイコン・見出し英字・リンク */
      --green-deep:  #3C4E34;  /* ホバー・強調 */
      --green-light: #EDF0EA;  /* 淡色地 */
      --teal:        #4E6344;  /* 旧名を温存（既存指定の互換用） */
      --teal-light:  #EDF0EA;

      /* ---- 差し色 ---- */
      --coral:       #C1584F;  /* NEW・必須・注意 */
      --coral-light: #F7EAE8;
      --amber:       #C08A3E;
      --amber-light: #F7F1E6;

      /* ---- 地色：生成り → ほぼ白へ ---- */
      --bg:          #FFFFFF;  /* ページ地 */
      --bg-alt:      #FAF9F7;  /* 交互セクション・タイル面 */
      --bg-cream:    #F8F5EE;  /* フッター */
      --white:       #FFFFFF;

      /* ---- 文字 ---- */
      --text:        #333333;  /* 見出し・本文（v1より軽い） */
      --text-sub:    #585757;
      --text-light:  #8D8A87;
      --border:      #E9E7E2;  /* 罫線（v1より薄い） */

      /* ---- 形状：角丸を控えめに、影を軽く ---- */
      --radius:      10px;
      --radius-sm:   6px;
      --radius-btn:  6px;
      --shadow-card: 0 2px 10px rgba(60, 55, 45, 0.05);
      --shadow-lift: 0 10px 30px rgba(60, 55, 45, 0.10);
      --shadow-hero: 0 18px 46px rgba(40, 40, 35, 0.18);

      /* ---- 書体 ---- */
      --font-sans:  'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
      --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
      --font-en:    'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;

      /* ---- カテゴリー色（9分類・デザイン案のトーンに合わせて再調整） ---- */
      --cat-meguru:  #4E6344;  /* 01 めぐる       MAP        */
      --cat-shiru:   #55707F;  /* 02 知る         ABOUT      */
      --cat-taberu:  #C1584F;  /* 03 食べる・買う  EAT & BUY  */
      --cat-taiken:  #C08A3E;  /* 04 体験する     EXPERIENCE */
      --cat-tomaru:  #B0764C;  /* 05 泊まる       STAY       */
      --cat-kurashi: #5C8A63;  /* 06 暮らし       LIVING     */
      --cat-hataraku:#4F5E73;  /* 07 働く         WORK       */
      --cat-oshirase:#C1584F;  /* 08 お知らせ     NEWS       */
      --cat-kawaraban:#7A6B8A; /* 09 カワラバン   MAGAZINE   */
      --cat-midokoro:#7A6B8A;  /* スポット内サブ分類：みどころ */
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
    }

    /* アンカー移動時に固定ヘッダーへ隠れない余白 */
    #news, #know, #eat, #experience, #stay, #living, #work, #magazine, #map {
      scroll-margin-top: 84px;
    }

    body {
      font-family: var(--font-sans);
      background: var(--bg);
      color: var(--text);
      line-height: 1.9;
      letter-spacing: 0.03em;   /* デザイン案は字間がやや広い */
      font-size: 16px;
    }

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

    .inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ========================================
       HEADER
       ======================================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 78px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 0 40px;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: height 0.3s, box-shadow 0.3s;
    }

    .header.scrolled {
      height: 64px;
      box-shadow: 0 4px 20px rgba(45, 45, 45, 0.07);
    }

    .header-logo {
      display: flex;
      align-items: center;
      gap: 13px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .header-logo-texts {
      display: flex;
      flex-direction: column;
    }

    .header-logo-text {
      /* デザイン案：ロゴは明朝体・字間広め・ウェイトは中 */
      font-family: var(--font-serif);
      font-size: 24px;
      font-weight: 600;
      color: #1F1E1D;
      letter-spacing: 0.14em;
      line-height: 1.15;
      transition: font-size 0.3s;
    }

    .header.scrolled .header-logo-text { font-size: 20px; }

    .header-logo-sub {
      /* デザイン案：タグラインも明朝、字間広め */
      font-family: var(--font-serif);
      font-size: 11px;
      font-weight: 400;
      color: var(--text-light);
      letter-spacing: 0.16em;
      margin-top: 3px;
    }

    .header-nav {
      display: flex;
      gap: 30px;
      margin-left: auto;
    }

    .header-nav a {
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--text);
      text-decoration: none;
      padding: 8px 0;
      position: relative;
      transition: color 0.2s;
    }

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

    .header-nav a::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--teal);
      border-radius: 1px;
      transition: width 0.3s;
    }

    .header-nav a:hover::after { width: 100%; }

    .header-cta {
      /* デザイン案：塗りボタンではなく、ナビと同じテキストリンク */
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      padding: 8px 0;
      font-family: inherit;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--text);
      background: none;
      border: none;
      text-decoration: none;
      transition: color 0.2s;
    }

    .header-cta:hover { color: var(--green); }

    /* MENUボタン（PCでは「≡ MENU」、モバイルではハンバーガー）
       ヘッダーに出せるのは6項目まで。残るカテゴリーはここから全部たどれる。 */
    .header-burger {
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      gap: 9px;
      height: 44px;
      padding: 0 14px;
      background: var(--teal-light);
      border: 1px solid var(--border);
      border-radius: 8px;
      cursor: pointer;
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s;
    }

    .header-burger:hover { background: #DBEBE6; border-color: var(--teal); }

    .header-burger-lines {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .header-burger-lines span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--teal);
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }

    .header-burger-label {
      font-family: 'Quicksand', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--teal);
      line-height: 1;
    }

    /* 全画面メニュー（全9カテゴリー） */
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 1500;
      background: var(--bg);
      padding: 88px 28px 40px;
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.35s ease, opacity 0.35s ease;
      overflow-y: auto;
    }

    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu-close {
      position: absolute;
      top: 26px;
      right: 24px;
      width: 44px;
      height: 44px;
      border: none;
      background: var(--bg-alt);
      border-radius: 8px;
      font-size: 22px;
      color: var(--text);
      cursor: pointer;
      line-height: 1;
    }

    .mobile-menu-head {
      max-width: 620px;
      margin: 0 auto 10px;
      display: flex;
      align-items: baseline;
      gap: 10px;
      padding-bottom: 12px;
    }

    .mobile-menu-head-ja {
      font-size: 17px;
      font-weight: 900;
      color: var(--text);
      letter-spacing: 0.04em;
    }

    .mobile-menu-head-en {
      font-family: 'Quicksand', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--text-light);
    }

    .mobile-menu-links {
      max-width: 620px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mobile-menu-links a {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 15px 8px;
      font-size: 19px;
      font-weight: 700;
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
    }

    .mobile-menu-links a:hover { color: var(--teal); }

    .mobile-menu-links a span.mm-icon {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: color-mix(in srgb, var(--nc, var(--teal)) 15%, white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      flex-shrink: 0;
    }

    .mobile-menu-links a span.mm-en {
      margin-left: auto;
      font-family: 'Quicksand', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-light);
    }

    .mobile-menu-cta {
      display: block;
      max-width: 620px;
      text-align: center;
      margin: 28px auto 0;
      padding: 16px;
      background: var(--teal);
      color: #fff;
      border-radius: var(--radius-btn);
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
    }

    /* タグ色（ニュースバー等で共用） */
    .tag-new { background: var(--coral); color: white; }
    .tag-event { background: var(--amber); color: white; }
    .tag-story { background: var(--teal); color: white; }
    .tag-food { background: #B0764C; color: white; }
    .tag-video { background: #7A6B8A; color: white; }

    /* ========================================
       HERO — 左：記事 / 右：ナビゲーション
       ======================================== */
    .hero {
      background: var(--bg);
      padding: calc(78px + 40px) 0 52px;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .hero-head {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px 18px;
      margin-bottom: 22px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      flex-shrink: 0;
      font-family: 'Quicksand', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--teal);
      background: var(--teal-light);
      padding: 7px 14px;
      border-radius: var(--radius-btn);
    }

    .hero-eyebrow-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--amber);
    }

    .hero-title {
      font-size: clamp(20px, 2.3vw, 27px);
      font-weight: 900;
      line-height: 1.45;
      letter-spacing: 0.02em;
      color: var(--text);
    }

    .hero-title em {
      font-style: normal;
      color: var(--teal);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.55fr 1fr;
      gap: 22px;
      align-items: stretch;
    }

    /* 左：記事 */
    .hero-articles {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .feat {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      text-decoration: none;
      display: block;
    }

    .feat-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s ease;
    }

    .feat:hover .feat-bg { transform: scale(1.05); }

    .feat-body {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 26px;
      background: linear-gradient(to top, rgba(15,22,20,0.84) 0%, rgba(15,22,20,0.28) 55%, transparent 100%);
    }

    .feat-main { min-height: 312px; }
    .feat-main .feat-body { padding: 34px; }

    .feat-subs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .feat-sub { min-height: 152px; }

    .feat-tag {
      display: inline-block;
      align-self: flex-start;
      padding: 4px 13px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      border-radius: var(--radius-btn);
      margin-bottom: 12px;
      color: #fff;
    }

    .feat-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      line-height: 1.55;
      letter-spacing: 0.02em;
      text-shadow: 0 1px 10px rgba(0,0,0,0.45);
    }

    .feat-main .feat-title { font-size: 24px; line-height: 1.5; }

    .feat-excerpt {
      font-size: 14px;
      color: rgba(255,255,255,0.9);
      line-height: 1.8;
      margin-top: 10px;
      text-shadow: 0 1px 8px rgba(0,0,0,0.45);
      max-width: 92%;
    }

    .feat-date {
      font-family: 'Quicksand', sans-serif;
      font-size: 13px;
      color: rgba(255,255,255,0.72);
      font-weight: 500;
      margin-top: 12px;
    }

    /* 右：ナビゲーション */
    .hero-nav-panel {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 10px;
      display: flex;
      flex-direction: column;
    }

    .hero-nav-head {
      display: flex;
      align-items: baseline;
      gap: 10px;
      padding: 12px 14px 14px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 6px;
    }

    .hero-nav-head-ja {
      font-size: 17px;
      font-weight: 900;
      color: var(--text);
      letter-spacing: 0.04em;
    }

    .hero-nav-head-en {
      font-family: 'Quicksand', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--text-light);
    }

    .hero-nav-list {
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .hero-nav-item {
      display: flex;
      align-items: center;
      gap: 13px;
      flex: 1;
      min-height: 50px;
      padding: 0 12px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      transition: background 0.2s;
    }

    .hero-nav-item:hover { background: var(--bg); }

    .hero-nav-icon {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: color-mix(in srgb, var(--nc, var(--teal)) 15%, white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      flex-shrink: 0;
    }

    .hero-nav-texts { display: flex; flex-direction: column; }

    .hero-nav-label {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
    }

    .hero-nav-en {
      font-family: 'Quicksand', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--text-light);
    }

    .hero-nav-arrow {
      margin-left: auto;
      font-size: 15px;
      color: var(--nc, var(--teal));
      transform: translateX(-3px);
      opacity: 0.5;
      transition: transform 0.2s, opacity 0.2s;
    }

    .hero-nav-item:hover .hero-nav-arrow {
      transform: translateX(0);
      opacity: 1;
    }

    /* ========================================
       SECTION COMMON
       ======================================== */
    .section {
      padding: 80px 0;
    }

    .section-heading {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 30px;
      /* デザイン案：見出し下の罫線なし */
    }

    .heading-left {
      display: flex;
      align-items: baseline;
      gap: 16px;
      flex-wrap: wrap;
    }

    .heading-en {
      /* デザイン案：英字はセリフ体のイタリック。日本語の左に横並び */
      font-family: var(--font-en);
      font-size: 26px;
      font-style: italic;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--green);
      line-height: 1.2;
    }

    .heading-ja {
      font-family: var(--font-sans);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--text);
      line-height: 1.4;
    }

    .btn-more {
      /* デザイン案：枠線ボタンではなく、矢印付きのテキストリンク */
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--text-sub);
      background: none;
      border: none;
      border-radius: 0;
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.2s;
    }

    .btn-more::after {
      content: '→';
      font-size: 14px;
      transition: transform 0.2s;
    }

    .btn-more:hover { color: var(--green); }
    .btn-more:hover::after { transform: translateX(4px); }

    .btn-more::after {
      content: '→';
      transition: transform 0.25s;
    }

    .btn-more:hover::after {
      transform: translateX(3px);
    }

    /* ========================================
       NEWS ティッカー風
       ======================================== */
    .news-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }

    .news-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      align-items: stretch;
    }

    .news-bar-label {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 16px 24px 16px 0;
      border-right: 1px solid var(--border);
      white-space: nowrap;
    }

    .news-bar-label-dot {
      width: 8px;
      height: 8px;
      background: var(--coral);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .news-bar-label-text {
      font-family: 'Quicksand', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--text-sub);
    }

    .news-bar-items {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 16px 0 16px 24px;
      overflow: hidden;
      flex: 1;
    }

    .news-bar-date {
      font-family: 'Quicksand', sans-serif;
      font-size: 13px;
      color: var(--text-light);
      font-weight: 500;
      white-space: nowrap;
    }

    .news-bar-tag {
      font-size: 10px;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: var(--radius-btn);
      white-space: nowrap;
    }

    .news-bar-text {
      font-size: 15px;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .news-bar-text a {
      color: inherit;
      text-decoration: none;
    }

    .news-bar-text a:hover {
      color: var(--teal);
    }

    .news-bar-all {
      display: flex;
      align-items: center;
      padding: 16px 0 16px 24px;
      border-left: 1px solid var(--border);
      white-space: nowrap;
    }

    .news-bar-all a {
      font-size: 12px;
      font-weight: 700;
      color: var(--teal);
      text-decoration: none;
      letter-spacing: 0.06em;
    }

    /* ========================================
       KNOW TANTO — 但東町を知る
       ======================================== */
    .know-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .know-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 28px;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }

    .know-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(61, 123, 111, 0.1);
    }

    .know-card-icon {
      width: 56px;
      height: 56px;
      background: var(--teal-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 24px;
    }

    .know-card-num {
      /* デザイン案：白い丸のなかにセリフ体の斜体数字 */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.92);
      box-shadow: 0 2px 8px rgba(60,55,45,0.10);
      font-family: var(--font-en);
      font-style: italic;
      font-size: 19px;
      font-weight: 600;
      color: var(--text);
      letter-spacing: 0;
      margin-bottom: 14px;
    }

    .know-card-title {
      font-size: 21px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.55;
      margin-bottom: 12px;
      letter-spacing: 0.02em;
    }

    .know-card-desc {
      font-size: 15px;
      color: var(--text-sub);
      line-height: 1.9;
    }

    .know-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      color: var(--teal);
      margin-top: 20px;
    }

    .know-card-link::after {
      content: '→';
      transition: transform 0.2s;
    }

    .know-card:hover .know-card-link::after {
      transform: translateX(4px);
    }

    /* ========================================
       EXPERIENCE — 体験する・訪れる
       ======================================== */
    .exp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 280px 280px;
      gap: 16px;
    }

    .exp-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .exp-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.5s ease;
    }

    .exp-card:hover .exp-card-bg {
      transform: scale(1.05);
    }

    .exp-card-body {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
    }

    .exp-card-large {
      grid-row: span 2;
    }

    .exp-card-large .exp-card-body {
      padding: 40px;
    }

    .exp-card-title {
      font-size: 21px;
      font-weight: 700;
      color: white;
      letter-spacing: 0.03em;
      line-height: 1.55;
      margin-bottom: 8px;
    }

    .exp-card-large .exp-card-title {
      font-size: 27px;
    }

    .exp-card-desc {
      font-size: 15px;
      color: #1F1E1D;
      line-height: 1.8;
    }

    .exp-card-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: white;
      color: var(--teal);
      font-size: 11px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: var(--radius-btn);
      letter-spacing: 0.06em;
    }

    /* ========================================
       EAT & BUY — 食べる・買う
       ======================================== */
    .eat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .eat-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .eat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lift);
    }

    .eat-card-img {
      width: 100%;
      height: 200px;
      background-size: cover;
      background-position: center;
    }

    .eat-card-body {
      padding: 20px 24px 24px;
    }

    .eat-card-cat {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      color: var(--coral);
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }

    .eat-card-name {
      font-size: 19px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.5;
      margin-bottom: 8px;
    }

    .eat-card-desc {
      font-size: 15px;
      color: var(--text-sub);
      line-height: 1.85;
      margin-bottom: 12px;
    }

    .eat-card-meta {
      display: flex;
      gap: 16px;
      font-size: 13px;
      color: var(--text-light);
    }

    .eat-card-meta span {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ========================================
       STAY — 泊まる
       ======================================== */
    .stay-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .stay-card {
      display: flex;
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .stay-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }

    .stay-card-img {
      width: 220px;
      min-width: 220px;
      min-height: 200px;
      background-size: cover;
      background-position: center;
    }

    .stay-card-body {
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .stay-card-type {
      font-size: 12px;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: 0.1em;
      margin-bottom: 8px;
    }

    .stay-card-name {
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .stay-card-desc {
      font-size: 15px;
      color: var(--text-sub);
      line-height: 1.85;
    }

    /* ========================================
       MAGAZINE — TANTOカワラバン
       ======================================== */
    .mag-section {
      background: var(--white);
    }

    .mag-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 40px;
    }

    /* Featured Article */
    .mag-featured {
      display: block;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      text-decoration: none;
      aspect-ratio: 16 / 10;
    }

    .mag-featured-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.5s ease;
    }

    .mag-featured:hover .mag-featured-bg {
      transform: scale(1.03);
    }

    .mag-featured-body {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 40px;
      background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    }

    .mag-featured-tag {
      display: inline-block;
      padding: 4px 14px;
      font-size: 11px;
      font-weight: 700;
      border-radius: var(--radius-btn);
      background: var(--coral);
      color: white;
      margin-bottom: 14px;
      width: fit-content;
      letter-spacing: 0.06em;
    }

    .mag-featured-title {
      font-size: 24px;
      font-weight: 700;
      color: white;
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .mag-featured-excerpt {
      font-size: 15px;
      color: rgba(255,255,255,0.88);
      line-height: 1.8;
    }

    /* Article List */
    .mag-list {
      display: flex;
      flex-direction: column;
    }

    .mag-item {
      display: flex;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      transition: opacity 0.2s;
    }

    .mag-item:last-child {
      border-bottom: none;
    }

    .mag-item:hover {
      opacity: 0.7;
    }

    .mag-item-img {
      width: 96px;
      min-width: 96px;
      height: 72px;
      border-radius: var(--radius-sm);
      background-size: cover;
      background-position: center;
    }

    .mag-item-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .mag-item-tag {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      margin-bottom: 5px;
    }

    .mag-item-tag.is-event { color: var(--amber); }
    .mag-item-tag.is-report { color: var(--teal); }
    .mag-item-tag.is-video { color: #7A6B8A; }
    .mag-item-tag.is-people { color: var(--coral); }

    .mag-item-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.5;
      margin-bottom: 5px;
    }

    .mag-item-date {
      font-family: 'Quicksand', sans-serif;
      font-size: 13px;
      color: var(--text-light);
      font-weight: 500;
    }

    /* Video & Instagram sidebar */
    .mag-side {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .mag-side-title {
      font-family: 'Quicksand', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--text-light);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--border);
    }

    .video-card {
      /* WordPress版ではリンク（<a>）にしているため、
         display を指定しないとインライン扱いで aspect-ratio が無視され、
         高さ0に潰れて再生アイコンが下のタイトルに重なる。 */
      display: block;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      aspect-ratio: 16 / 9;
      background-size: cover;
      background-position: center;
      cursor: pointer;
      margin-bottom: 12px;
    }

    .video-play-btn {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.15);
      transition: background 0.2s;
    }

    .video-play-btn:hover {
      background: rgba(0,0,0,0.25);
    }

    .video-play-circle {
      width: 52px;
      height: 52px;
      background: rgba(255,255,255,0.95);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-play-circle svg {
      width: 18px;
      height: 18px;
      fill: var(--text);
      margin-left: 3px;
    }

    .video-info-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.5;
      margin-bottom: 4px;
    }

    .video-info-meta {
      font-size: 12px;
      color: var(--text-light);
    }

    .ig-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }

    .ig-item {
      aspect-ratio: 1;
      border-radius: var(--radius-sm);
      background-size: cover;
      background-position: center;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .ig-item:hover { opacity: 0.8; }

    /* ========================================
       ABOUT CTA
       ======================================== */
    .about-cta {
      background: var(--teal);
      padding: 72px 0;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .about-cta-deco {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
    }

    .about-cta-deco-1 {
      width: 300px;
      height: 300px;
      top: -80px;
      left: -60px;
    }

    .about-cta-deco-2 {
      width: 200px;
      height: 200px;
      bottom: -40px;
      right: -30px;
    }

    .about-cta-deco-3 {
      width: 120px;
      height: 120px;
      top: 30px;
      right: 15%;
    }

    .about-cta-en {
      font-family: 'Quicksand', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: rgba(255,255,255,0.65);
      margin-bottom: 16px;
    }

    .about-cta-title {
      font-size: 30px;
      font-weight: 900;
      letter-spacing: 0.03em;
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .about-cta-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.85);
      line-height: 2.0;
      margin-bottom: 32px;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 36px;
      font-family: inherit;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--teal);
      background: white;
      border: none;
      border-radius: var(--radius-btn);
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    .btn-white::after {
      content: '→';
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      /* デザイン案：暗色地ではなく、明るいクリーム地に濃い文字 */
      background: var(--bg-cream);
      color: var(--text-sub);
      padding: 64px 0 30px;
      border-top: 1px solid var(--border);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .footer-logo-icon {
      width: 32px;
      height: 32px;
      background: var(--teal);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      color: white;
      font-weight: 700;
    }

    .footer-logo-text {
      font-family: var(--font-serif);
      font-size: 20px;
      font-weight: 600;
      color: #1F1E1D;
      letter-spacing: 0.12em;
    }

    .footer-desc {
      font-size: 14px;
      line-height: 2.0;
      margin-bottom: 20px;
      color: var(--text-sub);
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s;
      text-decoration: none;
    }

    .footer-social a:hover {
      border-color: var(--green);
    }

    .footer-social svg {
      width: 15px;
      height: 15px;
      stroke: var(--green);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .footer-col-title {
      /* デザイン案：セリフ体のイタリック大文字 */
      font-family: var(--font-en);
      font-style: italic;
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--text);
      margin-bottom: 18px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-links a {
      font-size: 14px;
      color: var(--text-sub);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--green);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }

    .footer-copy {
      font-family: 'Quicksand', sans-serif;
      font-size: 11px;
      color: var(--text-light);
      letter-spacing: 0.05em;
    }

    .footer-copy-jp {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 11px;
      color: var(--text-light);
    }

    /* ========================================
       MAP — 但東をめぐるマップ
       ======================================== */
    .map-section {
      padding: 80px 0;
    }

    /* カテゴリ絞り込みタブ */
    .map-tabs {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 1fr;
      gap: 10px;
      margin-bottom: 24px;
    }

    .map-tab {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 14px;
      font-family: inherit;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--text-sub);
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: var(--radius-btn);
      cursor: pointer;
      transition: all 0.22s;
      white-space: nowrap;
    }

    .map-tab:hover {
      border-color: var(--cat, var(--teal));
      color: var(--cat, var(--teal));
    }

    .map-tab.is-active {
      color: white;
      background: var(--cat, var(--teal));
      border-color: var(--cat, var(--teal));
    }

    .map-tab-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--cat, var(--teal));
      flex-shrink: 0;
    }

    .map-tab.is-active .map-tab-dot {
      background: rgba(255,255,255,0.9);
    }

    .map-tab-count {
      font-family: 'Quicksand', sans-serif;
      font-size: 11px;
      font-weight: 700;
      opacity: 0.6;
    }

    /* レイアウト：地図 + サイドリスト */
    .map-layout {
      display: grid;
      grid-template-columns: 1fr 372px;
      gap: 20px;
      height: 600px;
    }

    .map-canvas-wrap {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(45, 45, 45, 0.08);
      border: 1px solid var(--border);
    }

    #tanto-map {
      width: 100%;
      height: 100%;
      background: var(--bg-alt);
    }

    /* OSMタイルをC案の温かみに寄せる */
    #tanto-map .leaflet-tile-pane {
      filter: sepia(0.14) saturate(0.92) brightness(1.03) contrast(0.96);
    }

    .leaflet-container {
      font-family: 'Noto Sans JP', sans-serif;
    }

    /* カスタムピン */
    .map-pin {
      width: 36px;
      height: 36px;
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      background: var(--pin, var(--teal));
      border: 2.5px solid #fff;
      box-shadow: 0 3px 10px rgba(0,0,0,0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
    }

    .map-pin span {
      transform: rotate(45deg);
      font-size: 16px;
      line-height: 1;
    }

    .map-pin.is-active {
      transform: rotate(-45deg) scale(1.28);
      box-shadow: 0 6px 18px rgba(0,0,0,0.35);
      z-index: 1000;
    }

    .map-pin-marker {
      /* Leaflet divIcon ラッパの余白除去 */
      background: transparent;
      border: none;
    }

    /* Leaflet ポップアップを C案スタイルへ */
    .leaflet-popup-content-wrapper {
      border-radius: var(--radius);
      box-shadow: 0 12px 36px rgba(0,0,0,0.18);
      padding: 0;
      overflow: hidden;
    }

    .leaflet-popup-content {
      margin: 0;
      width: 234px !important;
      line-height: 1.7;
    }

    .leaflet-popup-tip {
      box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    }

    .map-pop-img {
      width: 100%;
      height: 116px;
      background-size: cover;
      background-position: center;
      background-color: var(--bg-alt);
    }

    .map-pop-body {
      padding: 14px 16px 16px;
    }

    .map-pop-cat {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--pin, var(--teal));
      margin-bottom: 6px;
    }

    .map-pop-cat-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--pin, var(--teal));
    }

    .map-pop-name {
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.5;
      margin-bottom: 6px;
    }

    .map-pop-desc {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .map-pop-meta {
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 12px;
      color: var(--text-light);
      margin-bottom: 14px;
    }

    .map-pop-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      color: var(--pin, var(--teal));
      text-decoration: none;
    }

    .map-pop-link::after {
      content: '→';
      transition: transform 0.2s;
    }

    .map-pop-link:hover::after { transform: translateX(3px); }

    /* 右サイド：スポット一覧 */
    .map-side {
      display: flex;
      flex-direction: column;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .map-side-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }

    .map-side-head-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 0.04em;
    }

    .map-side-head-count {
      font-family: 'Quicksand', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-light);
    }

    .map-side-head-count b {
      color: var(--teal);
      font-size: 15px;
    }

    .spot-list {
      flex: 1;
      overflow-y: auto;
      padding: 8px;
    }

    .spot-list::-webkit-scrollbar { width: 8px; }
    .spot-list::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 4px;
    }

    .spot-card {
      display: flex;
      gap: 12px;
      padding: 12px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: background 0.18s;
      border: 2px solid transparent;
    }

    .spot-card:hover { background: var(--bg); }

    .spot-card.is-active {
      background: var(--bg);
      border-color: var(--spot, var(--teal));
    }

    .spot-card-img {
      width: 84px;
      min-width: 84px;
      height: 84px;
      border-radius: var(--radius-sm);
      background-size: cover;
      background-position: center;
      background-color: var(--bg-alt);
      position: relative;
    }

    .spot-card-pin {
      position: absolute;
      top: -6px;
      left: -6px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--spot, var(--teal));
      border: 2px solid #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .spot-card-body {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .spot-card-cat {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--spot, var(--teal));
      margin-bottom: 3px;
    }

    .spot-card-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.45;
      margin-bottom: 5px;
    }

    .spot-card-area {
      font-size: 13px;
      color: var(--text-light);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .spot-list-empty {
      padding: 48px 24px;
      text-align: center;
      color: var(--text-light);
      font-size: 13px;
      line-height: 1.9;
    }

    /* ========================================
       DECORATIONS
       ======================================== */
    /* 点線区切り */
    .dotted-divider {
      border: none;
      border-top: 2px dashed var(--border);
      margin: 0;
    }

    /* セクション間のソフトな色切り替え */
    .bg-alt { background: var(--bg-alt); }
    .bg-white { background: var(--white); }
    .bg-default { background: var(--bg); }

    /* ========================================
       SCROLL ANIMATION
       ======================================== */
    .fade-up {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
    .stagger > .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .stagger > .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .stagger > .fade-up:nth-child(4) { transition-delay: 0.3s; }

    /* ========================================
       RESPONSIVE
       ======================================== */
    /* ヘッダーに6項目＋CTA＋MENUが収まらなくなる幅からラベルを省略 */
    @media (max-width: 1180px) {
      .header { padding: 0 24px; }
      .header-nav { gap: 20px; }
      .header-nav a { font-size: 15px; }
      .header-burger { width: 44px; padding: 0; justify-content: center; }
      .header-burger-label { display: none; }
    }

    @media (max-width: 980px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-nav-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }
      .hero-nav-item { min-height: 58px; }
    }

    @media (max-width: 900px) {
      .header { padding: 0 20px; }
      .header-nav, .header-cta { display: none; }

      .hero { padding: calc(78px + 26px) 0 40px; }
      .hero-head { flex-direction: column; align-items: flex-start; gap: 10px; }

      .know-grid,
      .eat-grid { grid-template-columns: 1fr; }

      .exp-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .exp-card { min-height: 220px; }
      .exp-card-large { grid-row: span 1; }

      .stay-grid { grid-template-columns: 1fr; }
      .stay-card { flex-direction: column; }
      .stay-card-img { width: 100%; min-height: 180px; }

      .mag-grid { grid-template-columns: 1fr; }

      .map-layout {
        grid-template-columns: 1fr;
        height: auto;
      }
      .map-canvas-wrap { height: 380px; }
      .map-side { height: 420px; }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    /* タブが窮屈になる幅では折り返し（行内は均等幅で間延びを防ぐ） */
    @media (max-width: 720px) {
      .map-tabs {
        display: flex;
        flex-wrap: wrap;
      }
      .map-tab { flex: 1 1 auto; }
    }

    @media (max-width: 560px) {
      .hero-nav-list { grid-template-columns: 1fr; }
      .feat-subs { grid-template-columns: 1fr; }

      /* 記事カードは文字量に応じて伸ばす。
         固定高のままだと見出しがカード上端からはみ出して切れる。 */
      .feat-body { position: relative; inset: auto; }
      .feat-main, .feat-sub { min-height: 0; }
      .feat-main .feat-body { min-height: 260px; padding: 26px; }
      .feat-sub .feat-body { min-height: 150px; }

      .header-logo-text { font-size: 20px; }
    }

/* ============================================================
   下層ページ共通コンポーネント
   （パンくず / ページ見出し / 一覧グリッド / 詳細 / ページネーション / フォーム）
   ============================================================ */

/* コンテンツ用ラッパ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

/* パンくず（固定ヘッダー分の上余白を含む） */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(78px + 22px) 32px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { color: var(--text-light); font-size: 11px; }
.breadcrumb .current { color: var(--text); font-weight: 700; }

/* ページ見出し */
.page-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 36px;
}
.page-hero-en {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
}
.page-hero-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-top: 6px;
}
.page-hero-lead {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.95;
  margin-top: 14px;
  max-width: 700px;
}

/* 件数表示 */
.result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.result-count { font-size: 14px; color: var(--text-sub); }
.result-count b {
  color: var(--teal);
  font-size: 18px;
  font-family: 'Quicksand', sans-serif;
  margin: 0 2px;
}
.result-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.result-link:hover { text-decoration: underline; }

/* スポット一覧グリッド */
.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spotcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.spotcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.spotcard-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
  position: relative;
}
.spotcard-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.spotcard-cat-dot { width: 8px; height: 8px; border-radius: 50%; }
.spotcard-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.spotcard-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 8px;
}
.spotcard-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  flex: 1;
}
.spotcard-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-light);
}
.spotcard-meta span { display: inline-flex; align-items: center; gap: 5px; }

/* 該当なし */
.empty-note {
  grid-column: 1 / -1;
  padding: 60px 24px;
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.9;
}

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 52px;
}
.pagination a,
.pagination span {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: var(--text-sub);
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pagination a:hover { border-color: var(--teal); color: var(--teal); }
.pagination .is-current {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.pagination .is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* 下層ページのセクション余白 */
.subpage-section { padding: 8px 0 80px; }

/* レスポンシブ */
@media (max-width: 900px) {
  .breadcrumb { padding: calc(78px + 18px) 24px 0; }
  .page-hero { padding: 20px 24px 28px; }
  .container, .container-narrow { padding: 0 24px; }
  .spot-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (max-width: 600px) {
  .spot-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   汎用ボタン
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--teal);
  border: none;
  border-radius: var(--radius-btn);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #285A4F; transform: translateY(-2px); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 44px;
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}
.back-link::before { content: '←'; }
.back-link:hover { text-decoration: underline; }

/* ============================================================
   スポット詳細
   ============================================================ */
.detail-gallery { margin-bottom: 30px; }
.detail-gallery-main {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}
.detail-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.thumb {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
}
.thumb:hover { opacity: 0.88; }
.thumb.is-active { border-color: var(--teal); }

.detail-head {
  margin-bottom: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}
.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--radius-btn);
  background: color-mix(in srgb, var(--c, var(--teal)) 14%, white);
  color: var(--c, var(--teal));
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cat-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c, var(--teal)); }
.detail-title {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 14px 0 10px;
}
.detail-sub { font-size: 16px; color: var(--text-sub); }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: start;
}

.detail-body { font-size: 16px; color: var(--text-sub); line-height: 2.0; }
.detail-body h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 38px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--teal);
}
.detail-body h2:first-child { margin-top: 0; }
.detail-body p { margin-bottom: 18px; }
.detail-body figure { margin: 26px 0; }
.detail-body figure img { width: 100%; border-radius: var(--radius); display: block; }
.detail-body figcaption {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
  text-align: center;
}
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.detail-tag {
  padding: 7px 15px;
  border-radius: var(--radius-btn);
  background: var(--bg-alt);
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 700;
}

.detail-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 92px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.info-card-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.info-list { display: flex; flex-direction: column; gap: 15px; }
.info-list > div { display: flex; flex-direction: column; gap: 3px; }
.info-list dt { font-size: 12px; font-weight: 700; color: var(--teal); letter-spacing: 0.04em; }
.info-list dd { font-size: 15px; color: var(--text); line-height: 1.7; }
.info-card .btn-primary { width: 100%; margin-top: 20px; }

.detail-map-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.detail-map-head {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
#spot-map { width: 100%; height: 240px; background: var(--bg-alt); }
#spot-map .leaflet-tile-pane { filter: sepia(0.14) saturate(0.92) brightness(1.03) contrast(0.96); }

.related { margin-top: 66px; padding-top: 50px; border-top: 1px solid var(--border); }

@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .detail-side { position: static; }
  .detail-gallery-thumbs { gap: 8px; }
}

/* ============================================================
   記事（カワラバン）一覧・詳細
   ============================================================ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.articlecard { display: flex; flex-direction: column; text-decoration: none; }
.articlecard-img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
  transition: transform 0.3s ease;
}
.articlecard:hover .articlecard-img { transform: translateY(-4px); }
.articlecard-body { padding-top: 16px; }
.articlecard-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}
.articlecard-tag.is-feature { color: var(--coral); }
.articlecard-tag.is-report  { color: var(--teal); }
.articlecard-tag.is-event   { color: var(--amber); }
.articlecard-tag.is-people  { color: #7A6B8A; }
.articlecard-tag.is-video   { color: #7A6B8A; }
.articlecard-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.articlecard:hover .articlecard-title { color: var(--teal); }
.articlecard-excerpt {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-top: 8px;
}
.articlecard-date {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 10px;
}

/* 記事ヘッダー（詳細） */
.article-head { text-align: center; max-width: 760px; margin: 0 auto; }
.article-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--coral);
  margin-bottom: 14px;
}
.article-title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.article-meta {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.article-meta .qd { font-family: 'Quicksand', sans-serif; font-weight: 500; }
.article-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 34px 0 42px;
  display: block;
}

/* 著者ボックス */
.author-box {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
  flex-shrink: 0;
}
.author-label { font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: 0.06em; }
.author-name { font-size: 16px; font-weight: 700; color: var(--text); margin-top: 2px; }
.author-bio { font-size: 13px; color: var(--text-sub); line-height: 1.7; margin-top: 5px; }

/* 前後記事ナビ */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.post-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}
.post-nav a:hover { text-decoration: underline; }
.post-nav .is-disabled { color: var(--text-light); pointer-events: none; }

@media (max-width: 900px) {
  .article-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}
@media (max-width: 600px) {
  .article-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   お知らせ一覧（リスト）
   ============================================================ */
.news-list { border-top: 1px solid var(--border); }
.newsrow {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 10px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.2s, padding-left 0.2s;
}
.newsrow:hover { background: var(--white); padding-left: 18px; }
.newsrow-date {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  min-width: 100px;
  flex-shrink: 0;
}
.newsrow-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: var(--radius-btn);
  color: #fff;
  flex-shrink: 0;
}
.newsrow-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}
.newsrow:hover .newsrow-title { color: var(--teal); }
.newsrow-arrow { color: var(--text-light); flex-shrink: 0; }

@media (max-width: 680px) {
  .newsrow { flex-wrap: wrap; gap: 8px 12px; }
  .newsrow-title { flex-basis: 100%; order: 3; }
  .newsrow-arrow { display: none; }
}

/* ============================================================
   ひと・移住（一覧 / インタビュー詳細）
   ============================================================ */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.personcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.personcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.personcard-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}
.personcard-body { padding: 20px 22px 24px; }
.personcard-role { font-size: 12px; font-weight: 700; color: var(--teal); letter-spacing: 0.06em; margin-bottom: 6px; }
.personcard-name { font-size: 20px; font-weight: 700; color: var(--text); line-height: 1.4; }
.personcard-name small { font-size: 13px; color: var(--text-light); font-weight: 500; margin-left: 7px; }
.personcard-quote { font-size: 14px; color: var(--text-sub); line-height: 1.8; margin-top: 10px; }

/* プロフィール見出し（詳細） */
.profile-head {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
}
.profile-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}
.profile-role { font-size: 13px; font-weight: 700; color: var(--teal); letter-spacing: 0.06em; }
.profile-name {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.02em;
  margin: 10px 0 6px;
}
.profile-name small { font-size: 15px; color: var(--text-light); font-weight: 500; margin-left: 8px; }
.profile-meta { font-size: 14px; color: var(--text-sub); margin-bottom: 16px; }
.profile-intro { font-size: 16px; color: var(--text-sub); line-height: 1.95; }

/* インタビューQ&A */
.interview-q {
  display: flex;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
  margin: 38px 0 14px;
}
.interview-q::before {
  content: 'Q';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}
.interview-a {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 2.0;
  margin-bottom: 8px;
  padding-left: 40px;
}

/* CTAバンド（移住相談など） */
.cta-band {
  background: var(--teal);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}
.cta-band-title { font-size: 24px; font-weight: 900; letter-spacing: 0.02em; margin-bottom: 12px; }
.cta-band-text { font-size: 15px; color: rgba(255, 255, 255, 0.85); line-height: 1.9; margin-bottom: 24px; }
.btn-on-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-on-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2); }

@media (max-width: 900px) {
  .people-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .profile-head { grid-template-columns: 1fr; gap: 24px; }
  .profile-photo { aspect-ratio: 4 / 3; max-width: 360px; }
}
@media (max-width: 600px) {
  .people-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   固定ページ用（データ / メディア行 / リード / フォーム）
   ============================================================ */
.lead-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  color: var(--text-sub);
  line-height: 2.1;
}

.section-band { padding: 72px 0; }
.section-band .container > .section-heading { margin-bottom: 36px; }

/* データ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
}
.stat-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.stat-num small { font-size: 16px; font-weight: 700; margin-left: 3px; }
.stat-label { font-size: 13px; color: var(--text-sub); font-weight: 700; margin-top: 12px; }

/* メディア行（画像＋テキスト） */
.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.media-row + .media-row { margin-top: 48px; }
.media-row-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}
.media-row.reverse .media-row-img { order: 2; }
.media-row-eyebrow {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 8px;
}
.media-row-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.media-row-text { font-size: 16px; color: var(--text-sub); line-height: 2.0; }

/* 固定ページの本文（プライバシー等の長文） */
.legal-body { font-size: 16px; color: var(--text-sub); line-height: 2.0; }
.legal-body h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin: 36px 0 12px;
  letter-spacing: 0.02em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 16px; }
.legal-body ul { margin: 0 0 16px 1.4em; }
.legal-body li { margin-bottom: 8px; }

/* フォーム */
.form { max-width: 720px; margin: 0 auto; }
.form-row { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.form-label .req {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--coral);
  padding: 2px 8px;
  border-radius: var(--radius-btn);
  margin-left: 8px;
  vertical-align: middle;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { outline: none; border-color: var(--teal); }
.form-textarea { min-height: 160px; resize: vertical; line-height: 1.8; }
.form-help { font-size: 13px; color: var(--text-light); margin-top: 6px; }
.form-submit { text-align: center; margin-top: 36px; }
.form-submit .btn-primary { padding: 15px 48px; font-size: 16px; }

@media (max-width: 900px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .media-row { grid-template-columns: 1fr; gap: 22px; }
  .media-row.reverse .media-row-img { order: 0; }
}

/* 4カラムユーティリティ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .grid-4 { grid-template-columns: 1fr; } }

/* ============================================================
   TOPIC CARD — 汎用トピックカード
   暮らし / 働く のセクション・一覧で共用。--tc でカテゴリー色を指定
   ============================================================ */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.topic-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.topic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.topic-card-img {
  width: 100%;
  height: 190px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}
.topic-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.topic-card-cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--tc, var(--teal));
  margin-bottom: 8px;
}
.topic-card-cat::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tc, var(--teal));
}
.topic-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.topic-card:hover .topic-card-title { color: var(--teal); }
.topic-card-desc { font-size: 15px; color: var(--text-sub); line-height: 1.85; }
.topic-card-link {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tc, var(--teal));
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topic-card-link::after { content: '→'; transition: transform 0.2s; }
.topic-card:hover .topic-card-link::after { transform: translateX(3px); }

@media (max-width: 900px) { .topic-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .topic-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SOURCE NOTE — 紙版カワラバンからの出典表示（記事内）
   ============================================================ */
.source-note {
  margin-top: 34px;
  padding: 16px 20px;
  background: var(--teal-light);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
}
.source-note b { color: var(--teal); font-weight: 700; }

/* ============================================================
   BACKNUMBER — 紙版カワラバンのバックナンバー一覧
   ============================================================ */
.backnumber { border-top: 1px solid var(--border); }
.bn-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
}
.bn-vol {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 11px;
  border-radius: var(--radius-btn);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.bn-date {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  color: var(--text-light);
  flex-shrink: 0;
  width: 84px;
  padding-top: 4px;
}
.bn-body { flex: 1; }
.bn-title { font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.7; }
.bn-title a { color: var(--text); text-decoration: none; }
.bn-title a:hover { color: var(--teal); text-decoration: underline; }
.bn-sub { font-size: 13px; color: var(--text-light); margin-top: 4px; line-height: 1.7; }
.bn-state {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-btn);
  align-self: flex-start;
  margin-top: 3px;
}
.bn-state.is-live { background: var(--teal); color: #fff; }
.bn-state.is-wip { background: var(--bg-alt); color: var(--text-light); }

@media (max-width: 680px) {
  .bn-row { flex-wrap: wrap; gap: 10px 12px; }
  .bn-date { width: auto; padding-top: 0; }
  .bn-body { flex-basis: 100%; }
}

/* ============================================================
   GOOGLE MAPS — Googleマップを使う設定にしたときのみ効く
   ============================================================ */

/* AdvancedMarkerElement は要素の下端中央を座標に合わせる。
   しずく型ピンの先端を座標に一致させるための高さ確保用ラッパー。 */
.gmap-pin-wrap {
  position: relative;
  width: 36px;
  height: 44px;
}
.gmap-pin-wrap .map-pin {
  position: absolute;
  top: 0;
  left: 0;
}

/* InfoWindow の既定の余白・閉じるボタンを、サイトの吹き出しに合わせて整える */
.gm-style .gm-style-iw-c {
  padding: 0 !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 10px 34px rgba(45, 45, 45, 0.18) !important;
}
.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  max-height: none !important;
}
.gm-style .gm-style-iw-c .map-pop { width: 234px; }
.gm-style .gm-style-iw-tc::after { background: var(--white); }

/* 「地図データ」等のフッターがカードに重ならないように */
.map-canvas-wrap .gm-style-cc { opacity: .85; }

/* ============================================================
   アイコン（インラインSVG）
   図柄は デザイン素材/アイコン.png をもとに起こしたもの。
   実体は assets/icons/*.svg。色は currentColor なので
   置いた場所の color がそのまま反映される。
   ============================================================ */
.tanto-icon {
  width: 1em;
  height: 1em;
  display: block;
  flex-shrink: 0;
}

/* 文章の行内に置くとき（見出しの前など） */
.tanto-icon-inline {
  display: inline-block;
  vertical-align: -0.14em;
  margin-right: .4em;
}

/* カテゴリーナビ・全画面メニューのタイル */
.hero-nav-icon .tanto-icon,
.mobile-menu-links a span.mm-icon .tanto-icon {
  width: 21px;
  height: 21px;
  color: var(--nc, var(--green));
}

/* 地図のピン（カテゴリー色の上に白抜き） */
.map-pin span .tanto-icon {
  width: 17px;
  height: 17px;
  color: #fff;
}

/* スポットカードの小さな丸ピン */
.spot-card-pin span .tanto-icon,
.spot-card-pin .tanto-icon {
  width: 12px;
  height: 12px;
  color: #fff;
}

/* 一覧カードの地区名の前 */
.spot-card-area .tanto-icon,
.card-spot-meta .tanto-icon {
  width: 13px;
  height: 13px;
  color: var(--text-light);
}

/* Cormorant Garamond のイタリックの「&」は Et 合字の装飾形で
   アンパサンドに見えないため、& だけ同じ書体の正体で組む。 */
.heading-en .amp,
.footer-col-title .amp,
.page-header-en .amp {
  font-style: normal;
  padding: 0 .02em;
}

/* ============================================================
   ヒーロー（型：photo）— デザイン案.png の再現
   管理画面「トップの表示」で list と切り替える。

   寸法は デザイン案.png（幅782px）から実測し、
   本文コンテナ幅の比（1136 / 718 = 1.582）で換算した。
     写真の帯      y 45–402（高さ357）
     カード列      x 398–752（幅354＝コンテナの49.3%）
     大カード      y 108–270（高さ162）
     小カード      y 285–352（高さ67）
   ============================================================ */
.hero-photo {
  position: relative;
  isolation: isolate;
  padding: calc(78px + 56px) 0 79px;   /* 固定ヘッダー78px ＋ 写真上端からの余白 */
  overflow: hidden;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 58%;      /* 空を上に残し、集落を中央に置く */
  z-index: -2;
}

/* 見出しは写真の上に濃い文字で載る。
   空が明るいので通常は読めるが、写真を差し替えても破綻しないよう
   左上だけごく薄く白をかけている（デザイン案には無い保険）。 */
.hero-photo-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.20) 34%, rgba(255,255,255,0) 58%);
}

.hero-photo-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 49.3%;
  gap: 32px;
  align-items: start;
}

/* ---- 左：見出し ---- */
.hero-photo-text { padding-top: 4px; }

.hp-eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text);
  margin: 0 0 34px;
}

.hp-title {
  /* デザイン案：明朝体。色分けなしの一色。 */
  font-family: var(--font-serif);
  font-size: 37px;
  font-weight: 600;
  line-height: 1.66;
  letter-spacing: .03em;
  color: var(--text);
  margin: 0;
}

/* ---- 右：記事カード ---- */
.hero-photo-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 44px;      /* 見出しより少し下から始まる */
}

.hp-card {
  display: grid;
  grid-template-columns: 1fr 44%;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(45, 40, 30, .16);
  transition: transform .22s ease, box-shadow .22s ease;
}

.hp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(45, 40, 30, .22);
}

.hp-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hp-card-img {
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}

/* 大カード */
.hp-card-main { min-height: 263px; }

.hp-tag-new {
  /* デザイン案では塗りのバッジではなく、赤い小さな文字 */
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--coral);
  margin-bottom: 12px;
}

.hp-kicker {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.hp-title-main {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .02em;
  color: var(--text);
  margin: 0 0 14px;
  /* 2行で止めて、本文と日付の位置を記事の長さによらず揃える */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-excerpt {
  font-size: 13px;
  line-height: 2.0;
  color: var(--text-sub);
  margin: 0 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-date {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: .04em;
  padding-top: 14px;
}

/* 小カード2枚 */
.hp-subs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.hp-card-sub {
  min-height: 106px;
  padding: 14px;
  gap: 12px;
  grid-template-columns: 1fr 44%;
}

.hp-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 9px;
}

.hp-title-sub {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .02em;
  color: var(--text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   カテゴリーの横並びタイル（ヒーローが photo のときだけ出る）
   ============================================================ */
.cat-tiles { padding: 30px 0 46px; background: var(--bg); }

.cat-tiles-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.cat-tiles-head-ja {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text);
}

.cat-tiles-head-en {
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--text-light);
}

.cat-tiles-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
}

.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 132px;
  padding: 16px 6px;
  background: var(--bg-alt);
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.cat-tile:hover {
  background: color-mix(in srgb, var(--nc, var(--green)) 10%, white);
  transform: translateY(-2px);
}

.cat-tile-icon {
  display: block;
  margin-bottom: 13px;
  color: var(--nc, var(--green));
}

.cat-tile-icon .tanto-icon { width: 33px; height: 33px; }

.cat-tile-ja {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--text);
  text-align: center;
  line-height: 1.4;
}

.cat-tile-en {
  font-family: 'Quicksand', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-light);
  text-align: center;
}

/* ---- レスポンシブ ---- */
@media (max-width: 1080px) {
  .hp-title { font-size: 32px; }
  .cat-tiles-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 900px) {
  /* 写真の上にカードを重ねると狭すぎるため、縦積みに切り替える */
  .hero-photo { padding: calc(78px + 34px) 0 40px; }
  .hero-photo-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-photo-cards { padding-top: 0; gap: 16px; }
  .hero-photo-scrim {
    background: linear-gradient(180deg, rgba(255,255,255,.66) 0%, rgba(255,255,255,.25) 38%, rgba(255,255,255,0) 62%);
  }
  .hp-title { font-size: 27px; line-height: 1.6; }
  .hp-eyebrow { margin-bottom: 18px; }
  .hp-card-main { min-height: 0; }
  .hp-excerpt { -webkit-line-clamp: 2; }
}

@media (max-width: 620px) {
  .hp-title { font-size: 23px; }
  .hp-card { grid-template-columns: 1fr 38%; padding: 13px; gap: 12px; }
  .hp-card-main .hp-card-img { min-height: 132px; }
  .hp-title-main { font-size: 18px; }
  .hp-subs { grid-template-columns: 1fr; gap: 12px; }
  .cat-tiles-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .cat-tile { padding: 14px 4px 11px; }
  .cat-tile-icon .tanto-icon { width: 25px; height: 25px; }
  .cat-tile-ja { font-size: 12px; }
}
