@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** ハウステンボスマニア カスタムスタイル
** テーマカラー: ヨーロッパの街並みをイメージ
**   Primary:   #1B4F72 (深い青 — 運河・夜景)
**   Accent:    #E67E22 (オレンジ — レンガ・暖かみ)
**   Light:     #F8F9FA (明るいグレー — 背景)
**   Dark Text: #2C3E50 (暗めのネイビー)
************************************/

:root {
  /* ── Color Tokens ── */
  --htb-primary: #1B4F72;
  --htb-primary-light: #2E86C1;
  --htb-accent: #E67E22;
  --htb-accent-light: #F39C12;
  --htb-secondary: #1A8A7D;
  --htb-secondary-light: #21B0A0;
  --htb-highlight: #C0392B;
  --htb-highlight-light: #E74C3C;
  --htb-bg-light: #F8F9FA;
  --htb-bg-warm: #FDF6EC;
  --htb-text-dark: #2C3E50;
  --htb-text-muted: #6C757D;
  --htb-text-on-dark: #D5DBDB;
  --htb-text-on-dark-muted: #AEB6BF;
  --htb-border: #DEE2E6;
  --htb-white: #FFFFFF;

  /* ── Semantic Category Colors (4 groups) ── */
  --htb-cat-guide:   var(--htb-primary);        /* route, area-guide — ナビ・ガイド系 */
  --htb-cat-experience: var(--htb-accent);      /* food, saving — 体験・お得系 */
  --htb-cat-practical: var(--htb-secondary);    /* access, nearby — 実用・周辺系 */
  --htb-cat-special:  var(--htb-highlight);     /* event, hotel — 特別・時期限定系 */

  /* ── Spacing Scale (4px base) ── */
  --htb-space-3xs: 0.125rem;  /*  2px */
  --htb-space-2xs: 0.25rem;   /*  4px */
  --htb-space-xs:  0.5rem;    /*  8px */
  --htb-space-sm:  0.75rem;   /* 12px */
  --htb-space-md:  1rem;      /* 16px */
  --htb-space-lg:  1.5rem;    /* 24px */
  --htb-space-xl:  2rem;      /* 32px */
  --htb-space-2xl: 3rem;      /* 48px */
  --htb-space-3xl: 4rem;      /* 64px */

  /* ── Typography Scale (Major Third 1.25) ── */
  --htb-font-xs:   0.75rem;   /* 12px */
  --htb-font-sm:   0.875rem;  /* 14px */
  --htb-font-base: 1rem;      /* 16px */
  --htb-font-md:   1.125rem;  /* 18px */
  --htb-font-lg:   1.25rem;   /* 20px */
  --htb-font-xl:   1.5rem;    /* 24px */
  --htb-font-2xl:  1.875rem;  /* 30px */
  --htb-font-3xl:  2.25rem;   /* 36px */
  --htb-line-tight:   1.3;
  --htb-line-normal:  1.6;
  --htb-line-relaxed: 1.8;
  --htb-letter-tight:  -0.01em;
  --htb-letter-normal:  0;
  --htb-letter-wide:    0.02em;

  /* ── Font Weight ── */
  --htb-weight-normal: 400;
  --htb-weight-medium: 500;
  --htb-weight-bold:   700;

  /* ── Font Family ── */
  --htb-font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --htb-font-serif: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', '游明朝', serif;
  --htb-font-display: 'Noto Serif JP', Georgia, serif;

  /* ── Border Radius Scale ── */
  --htb-radius-sm:   4px;
  --htb-radius-md:   8px;
  --htb-radius-lg:  12px;
  --htb-radius-xl:  16px;
  --htb-radius-full: 9999px;

  /* ── Shadow Elevation ── */
  --htb-shadow-xs:  0 1px 2px rgba(0, 0, 0, 0.05);
  --htb-shadow-sm:  0 2px 4px rgba(0, 0, 0, 0.06);
  --htb-shadow-md:  0 4px 12px rgba(0, 0, 0, 0.08);
  --htb-shadow-lg:  0 8px 24px rgba(0, 0, 0, 0.10);
  --htb-shadow-xl:  0 12px 36px rgba(0, 0, 0, 0.14);

  /* ── Transition ── */
  --htb-ease-default: 0.2s ease;
  --htb-ease-smooth:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --htb-ease-bounce:  0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/************************************
** グローバルスタイル
************************************/

/* ベースフォント */
body {
  font-family: var(--htb-font-sans);
  color: var(--htb-text-dark);
  line-height: var(--htb-line-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* リンクカラー */
a {
  color: var(--htb-primary-light);
  transition: color var(--htb-ease-default);
}
a:hover {
  color: var(--htb-accent);
}

/* 見出し — 統一デザイン言語: 左ボーダー + 太さで階層表現 */
.article h2 {
  padding: var(--htb-space-sm) var(--htb-space-md);
  border-left: 5px solid var(--htb-primary);
  background: var(--htb-bg-light);
  color: var(--htb-text-dark);
  border-radius: 0;
  border-top: none;
  border-right: none;
  border-bottom: none;
  font-family: var(--htb-font-sans);
  font-weight: var(--htb-weight-bold);
  font-size: var(--htb-font-xl);
  letter-spacing: var(--htb-letter-wide);
  line-height: var(--htb-line-tight);
  position: relative;
}
.article h2::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 5px;
  height: 40%;
  background: var(--htb-accent);
}

.article h3 {
  padding: var(--htb-space-xs) var(--htb-space-sm);
  border-left: 4px solid var(--htb-primary-light);
  border-top: none;
  border-right: none;
  border-bottom: none;
  background: transparent;
  font-family: var(--htb-font-sans);
  font-weight: var(--htb-weight-bold);
  font-size: var(--htb-font-lg);
  line-height: var(--htb-line-tight);
  color: var(--htb-text-dark);
}

.article h4 {
  padding: var(--htb-space-2xs) 0 var(--htb-space-2xs) var(--htb-space-sm);
  border-left: 3px solid var(--htb-border);
  border-top: none;
  border-right: none;
  border-bottom: none;
  color: var(--htb-text-dark);
  font-family: var(--htb-font-sans);
  font-weight: var(--htb-weight-bold);
  font-size: var(--htb-font-md);
  line-height: var(--htb-line-tight);
}

/************************************
** ヘッダー— コンパクトモード
** 背景画像を非表示にし、ロゴ+ナビのスリムなヘッダーに統一
************************************/
.header-container {
  position: sticky;
  top: 0;
  z-index: 9990;
}
#header.header {
  background: var(--htb-white);
  background-image: none;
  background-color: var(--htb-white);
  box-shadow: none;
  min-height: auto;
  height: auto;
  padding: 0;
  aspect-ratio: unset;
}
/* 背景画像・アスペクト比設定を無効化 */
#header.header::before,
#header.header::after {
  display: none;
}
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--htb-space-xs) var(--htb-space-md);
  min-height: auto;
}

/* サイトロゴ・ブランド */
.logo.logo-header {
  padding: 0;
  margin: 0;
}
.logo-text .site-name-text {
  font-family: var(--htb-font-display);
  font-weight: var(--htb-weight-bold);
  font-size: var(--htb-font-xl);
  color: var(--htb-primary);
  letter-spacing: var(--htb-letter-wide);
  line-height: var(--htb-line-tight);
  transition: color var(--htb-ease-default);
}
.logo-text .site-name-text-link:hover .site-name-text,
.logo-text a.site-name-text-link:hover {
  color: var(--htb-primary-light);
}

/* ロゴ画像が設定されている場合—コンパクトサイズ */
.logo-image .header-site-logo-image {
  max-height: 44px;
  width: auto;
  transition: opacity var(--htb-ease-default);
}
.logo-image a:hover .header-site-logo-image {
  opacity: 0.85;
}

/* キャッチフレーズ（サブキャプション）— コンパクト時は非表示 */
.sub-caption {
  display: none;
}

/* ナビゲーション — ヘッダー直下に密着
   Cocoon css-custom.php は #navi / #header-container を使うため
   ID セレクタで詳細度を合わせ、ソース順で勝つ */
#header-container .navi,
#navi.navi {
  background-color: var(--htb-primary);
  box-shadow: var(--htb-shadow-sm);
}
#navi .navi-in a {
  color: var(--htb-white);
  font-family: var(--htb-font-sans);
  font-weight: var(--htb-weight-medium);
  font-size: var(--htb-font-sm);
  letter-spacing: var(--htb-letter-wide);
}
#navi .navi-in a:hover {
  background-color: var(--htb-primary-light);
  color: var(--htb-white);
}
#navi .navi-in > .menu-header .sub-menu,
#navi .navi-in > ul .sub-menu {
  background-color: var(--htb-primary);
  border-top: 3px solid var(--htb-accent);
}

/************************************
** 記事カード
************************************/
.entry-card-wrap {
  border-radius: var(--htb-radius-md);
  overflow: hidden;
  transition: transform var(--htb-ease-default), box-shadow var(--htb-ease-default);
}
.entry-card-wrap:hover {
  transform: translateY(-3px);
  box-shadow: var(--htb-shadow-lg);
}
.entry-card-thumb img {
  transition: transform var(--htb-ease-smooth);
}
.entry-card-wrap:hover .entry-card-thumb img {
  transform: scale(1.03);
}

/************************************
** カテゴリラベルのカラーリング
** 4色パレット: guide / experience / practical / special
** 左端ドットでグループを視覚的に識別
************************************/
.cat-label {
  font-size: var(--htb-font-xs);
  font-weight: var(--htb-weight-bold);
  border-radius: var(--htb-radius-sm);
  padding: var(--htb-space-3xs) var(--htb-space-xs) var(--htb-space-3xs) calc(var(--htb-space-xs) + 6px);
  color: var(--htb-white);
  position: relative;
  overflow: hidden;
}
.cat-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--htb-radius-sm) 0 0 var(--htb-radius-sm);
}

/* ナビ・ガイド系（回り方・モデルコース / エリア別ガイド） */
.cat-label-route,
.cat-label[class*="route"],
.cat-label-area-guide,
.cat-label[class*="area-guide"] {
  background: var(--htb-cat-guide);
}
/* 体験・お得系（グルメ・レストラン / 節約・お得情報） */
.cat-label-food,
.cat-label[class*="food"],
.cat-label-saving,
.cat-label[class*="saving"] {
  background: var(--htb-cat-experience);
}
/* 実用・周辺系（アクセス・交通 / 周辺観光） */
.cat-label-access,
.cat-label[class*="access"],
.cat-label-nearby,
.cat-label[class*="nearby"] {
  background: var(--htb-cat-practical);
}
/* 特別・時期限定系（季節・イベント / ホテル・宿泊） */
.cat-label-event,
.cat-label[class*="event"],
.cat-label-hotel,
.cat-label[class*="hotel"] {
  background: var(--htb-cat-special);
}

/************************************
** 目次 (TOC)
************************************/
.toc {
  background: var(--htb-bg-light);
  border: 1px solid var(--htb-border);
  border-radius: var(--htb-radius-md);
  padding: var(--htb-space-lg) var(--htb-space-lg);
}
.toc-title {
  color: var(--htb-primary);
  font-weight: var(--htb-weight-bold);
  font-size: var(--htb-font-md);
}

/************************************
** サイドバー
************************************/
.sidebar h3 {
  background: var(--htb-primary);
  color: var(--htb-white);
  padding: var(--htb-space-xs) var(--htb-space-md);
  border-radius: var(--htb-radius-md) var(--htb-radius-md) 0 0;
  font-family: var(--htb-font-sans);
  font-size: var(--htb-font-sm);
  font-weight: var(--htb-weight-bold);
  border: none;
}

/************************************
** フッター
************************************/
#footer.footer {
  background: var(--htb-text-dark);
  color: var(--htb-text-on-dark-muted);
}
#footer a,
#footer a:not(.sns-button) {
  color: var(--htb-text-on-dark);
}
#footer a:hover,
#footer a:not(.sns-button):hover {
  color: var(--htb-accent-light);
}

/************************************
** ショートコード: パーク情報ボックス
************************************/
.htb-info-box {
  background: var(--htb-bg-warm);
  border: 1px solid var(--htb-border);
  border-left: 4px solid var(--htb-accent);
  border-radius: var(--htb-radius-md);
  padding: var(--htb-space-md) var(--htb-space-lg);
  margin: var(--htb-space-lg) 0;
}
.htb-info-box__title {
  font-family: var(--htb-font-sans);
  font-weight: var(--htb-weight-bold);
  font-size: var(--htb-font-md);
  color: var(--htb-text-dark);
  margin-bottom: var(--htb-space-2xs);
  line-height: var(--htb-line-tight);
}
.htb-info-box__body {
  color: var(--htb-text-dark);
  font-size: var(--htb-font-base);
  line-height: var(--htb-line-normal);
}

/************************************
** ショートコード: 更新日付バッジ
************************************/
.htb-updated-badge {
  display: inline-block;
  background: var(--htb-primary);
  color: var(--htb-white);
  font-family: var(--htb-font-sans);
  font-size: var(--htb-font-xs);
  font-weight: var(--htb-weight-bold);
  padding: var(--htb-space-3xs) var(--htb-space-xs);
  border-radius: var(--htb-radius-sm);
  line-height: var(--htb-line-tight);
  vertical-align: middle;
}

/************************************
** 読了プログレスバー
************************************/
#htb-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--htb-accent), var(--htb-accent-light));
  z-index: 99999;
  transition: width 0.1s linear;
}

/************************************
** ブログカード改善
************************************/
.blogcard {
  border-radius: var(--htb-radius-md);
  border: 1px solid var(--htb-border);
  transition: box-shadow var(--htb-ease-default);
}
.blogcard:hover {
  box-shadow: var(--htb-shadow-md);
}

/************************************
** ボタン — ブランドCTAデザインシステム
************************************/
/* 共通ベーススタイル */
.btn,
.ranking-item-link-buttons a,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--htb-space-2xs);
  padding: var(--htb-space-sm) var(--htb-space-xl);
  font-family: var(--htb-font-sans);
  font-size: var(--htb-font-sm);
  font-weight: var(--htb-weight-bold);
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--htb-radius-md);
  cursor: pointer;
  transition: all var(--htb-ease-smooth);
  position: relative;
  overflow: hidden;
}
/* フォーカスリング — アクセシビリティ */
.btn:focus-visible,
.ranking-item-link-buttons a:focus-visible,
.wp-block-button__link:focus-visible {
  outline: 3px solid var(--htb-accent-light);
  outline-offset: 2px;
}
/* アクティブ — 押し込み */
.btn:active,
.ranking-item-link-buttons a:active,
.wp-block-button__link:active {
  transform: translateY(1px);
}

/* プライマリ（デフォルト）— アクセントカラー */
.btn,
.ranking-item-link-buttons a {
  background: var(--htb-accent);
  color: var(--htb-white);
  border-color: var(--htb-accent);
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.25);
}
.btn:hover,
.ranking-item-link-buttons a:hover {
  background: var(--htb-accent-light);
  border-color: var(--htb-accent-light);
  color: var(--htb-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.35);
}

/* セカンダリ — アウトラインスタイル */
.btn-outline,
.btn[data-style="outline"] {
  background: transparent;
  color: var(--htb-primary);
  border-color: var(--htb-primary);
  box-shadow: none;
}
.btn-outline:hover,
.btn[data-style="outline"]:hover {
  background: var(--htb-primary);
  color: var(--htb-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(27, 79, 114, 0.25);
}

/* Cocoon既存カラーバリアント — ブランドカラーにマッピング */
.btn-red,
.ranking-item-link-buttons a[style*="background-color: #f44336"],
.ranking-item-link-buttons a[style*="background-color: red"] {
  background: var(--htb-highlight);
  border-color: var(--htb-highlight);
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.25);
}
.btn-red:hover {
  background: var(--htb-highlight-light);
  border-color: var(--htb-highlight-light);
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.35);
}
.btn-blue {
  background: var(--htb-primary);
  border-color: var(--htb-primary);
  box-shadow: 0 2px 8px rgba(27, 79, 114, 0.25);
}
.btn-blue:hover {
  background: var(--htb-primary-light);
  border-color: var(--htb-primary-light);
  box-shadow: 0 4px 16px rgba(27, 79, 114, 0.35);
}
.btn-green {
  background: var(--htb-secondary);
  border-color: var(--htb-secondary);
  box-shadow: 0 2px 8px rgba(26, 138, 125, 0.25);
}
.btn-green:hover {
  background: var(--htb-secondary-light);
  border-color: var(--htb-secondary-light);
  box-shadow: 0 4px 16px rgba(26, 138, 125, 0.35);
}

/* ページネーション */
.pagination .current {
  background: var(--htb-primary);
  border-color: var(--htb-primary);
  border-radius: var(--htb-radius-md);
  color: var(--htb-white);
}
.pagination a {
  border-radius: var(--htb-radius-md);
  transition: all var(--htb-ease-default);
}
.pagination a:hover {
  background: var(--htb-bg-light);
  color: var(--htb-primary);
  border-color: var(--htb-primary);
}

/* ランキング内ボタン — 余白調整 */
.ranking-item-link-buttons {
  display: flex;
  gap: var(--htb-space-xs);
  flex-wrap: wrap;
  margin-top: var(--htb-space-sm);
}

/* フォーム送信ボタン (Contact Form 7 等) */
.wpcf7 input[type="submit"],
input.search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--htb-space-sm) var(--htb-space-xl);
  font-family: var(--htb-font-sans);
  font-size: var(--htb-font-sm);
  font-weight: var(--htb-weight-bold);
  background: var(--htb-primary);
  color: var(--htb-white);
  border: 2px solid var(--htb-primary);
  border-radius: var(--htb-radius-md);
  cursor: pointer;
  transition: all var(--htb-ease-smooth);
}
.wpcf7 input[type="submit"]:hover,
input.search-submit:hover {
  background: var(--htb-primary-light);
  border-color: var(--htb-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 79, 114, 0.2);
}
.wpcf7 input[type="submit"]:focus-visible,
input.search-submit:focus-visible {
  outline: 3px solid var(--htb-accent-light);
  outline-offset: 2px;
}

/************************************
** SNSシェアボタン調整
************************************/
.ss-top .sns-share-buttons,
.ss-bottom .sns-share-buttons {
  gap: var(--htb-space-xs);
}

/************************************
** ヒーローセクション（トップページ）
************************************/
.htb-hero {
  background: linear-gradient(135deg, var(--htb-primary) 0%, #163D5C 50%, var(--htb-primary-light) 100%);
  color: var(--htb-white);
  padding: var(--htb-space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.htb-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.htb-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 134, 193, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.htb-hero__inner {
  position: relative;
  z-index: 1;
}
.htb-hero__content {
  max-width: 640px;
}
.htb-hero__sub {
  font-family: var(--htb-font-sans);
  font-size: var(--htb-font-sm);
  font-weight: var(--htb-weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--htb-accent-light);
  margin-bottom: var(--htb-space-sm);
}
.htb-hero__title {
  font-family: var(--htb-font-display);
  font-size: var(--htb-font-3xl);
  font-weight: var(--htb-weight-bold);
  line-height: var(--htb-line-tight);
  letter-spacing: var(--htb-letter-wide);
  margin-bottom: var(--htb-space-md);
}
.htb-hero__desc {
  font-size: var(--htb-font-md);
  line-height: var(--htb-line-relaxed);
  color: var(--htb-text-on-dark);
  margin-bottom: var(--htb-space-xl);
}
.htb-hero__br-sp {
  display: none;
}
.htb-hero__actions {
  display: flex;
  gap: var(--htb-space-sm);
  flex-wrap: wrap;
}
.htb-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--htb-space-sm) var(--htb-space-xl);
  font-family: var(--htb-font-sans);
  font-size: var(--htb-font-sm);
  font-weight: var(--htb-weight-bold);
  text-decoration: none;
  border-radius: var(--htb-radius-md);
  transition: all var(--htb-ease-smooth);
  cursor: pointer;
  line-height: 1;
}
.htb-hero__btn--primary {
  background: var(--htb-accent);
  color: var(--htb-white);
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.3);
}
.htb-hero__btn--primary:hover {
  background: var(--htb-accent-light);
  color: var(--htb-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}
.htb-hero__btn--secondary {
  background: transparent;
  color: var(--htb-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.htb-hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--htb-white);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/************************************
** カテゴリナビゲーション（トップページ）
************************************/
.htb-cat-nav {
  background: var(--htb-white);
  border-bottom: 1px solid var(--htb-border);
  padding: var(--htb-space-lg) 0;
}
.htb-cat-nav__list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: var(--htb-space-xs);
  list-style: none;
  margin: 0;
  padding: 0;
}
.htb-cat-nav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--htb-space-2xs);
  padding: var(--htb-space-sm) var(--htb-space-xs);
  text-decoration: none;
  color: var(--htb-text-dark);
  border-radius: var(--htb-radius-md);
  transition: all var(--htb-ease-default);
}
.htb-cat-nav__item a:hover {
  background: var(--htb-bg-light);
  transform: translateY(-2px);
  box-shadow: var(--htb-shadow-sm);
}
.htb-cat-nav__icon {
  font-size: var(--htb-font-2xl);
  line-height: 1;
}
.htb-cat-nav__label {
  font-family: var(--htb-font-sans);
  font-size: var(--htb-font-xs);
  font-weight: var(--htb-weight-bold);
  letter-spacing: var(--htb-letter-wide);
  white-space: nowrap;
}
/* カテゴリグループ別のホバー色 */
.htb-cat-nav__item--guide a:hover {
  background: rgba(27, 79, 114, 0.06);
  color: var(--htb-primary);
}
.htb-cat-nav__item--experience a:hover {
  background: rgba(230, 126, 34, 0.06);
  color: var(--htb-accent);
}
.htb-cat-nav__item--special a:hover {
  background: rgba(192, 57, 43, 0.06);
  color: var(--htb-highlight);
}
.htb-cat-nav__item--practical a:hover {
  background: rgba(26, 138, 125, 0.06);
  color: var(--htb-secondary);
}

/************************************
** おすすめ記事セクション（トップページ）
************************************/
.htb-pickup {
  background: var(--htb-bg-light);
  padding: var(--htb-space-2xl) 0;
}
.htb-pickup__heading {
  font-family: var(--htb-font-sans);
  font-size: var(--htb-font-lg);
  font-weight: var(--htb-weight-bold);
  color: var(--htb-text-dark);
  margin-bottom: var(--htb-space-lg);
  display: flex;
  align-items: center;
  gap: var(--htb-space-xs);
}
.htb-pickup__heading-icon {
  font-size: var(--htb-font-xl);
  line-height: 1;
}
.htb-pickup__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--htb-space-md);
}
.htb-pickup__card {
  background: var(--htb-white);
  border-radius: var(--htb-radius-md);
  overflow: hidden;
  box-shadow: var(--htb-shadow-xs);
  transition: transform var(--htb-ease-smooth), box-shadow var(--htb-ease-smooth);
}
.htb-pickup__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--htb-shadow-lg);
}
.htb-pickup__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.htb-pickup__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.htb-pickup__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--htb-ease-smooth);
}
.htb-pickup__card:hover .htb-pickup__thumb img {
  transform: scale(1.05);
}
.htb-pickup__body {
  padding: var(--htb-space-sm) var(--htb-space-md);
}
.htb-pickup__title {
  font-family: var(--htb-font-sans);
  font-size: var(--htb-font-sm);
  font-weight: var(--htb-weight-bold);
  line-height: var(--htb-line-normal);
  color: var(--htb-text-dark);
  margin-bottom: var(--htb-space-2xs);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.htb-pickup__date {
  font-size: var(--htb-font-xs);
  color: var(--htb-text-muted);
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下 — タブレット横〜小型デスクトップ */
@media screen and (max-width: 1023px) {
  .article h2 {
    font-size: var(--htb-font-lg);
  }
  .logo-text .site-name-text {
    font-size: var(--htb-font-lg);
  }
  /* おすすめ記事 2列 */
  .htb-pickup__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* カテゴリナビ 4列×2行 */
  .htb-cat-nav__list {
    grid-template-columns: repeat(4, 1fr);
  }
  /* サイドバーをメインの下に */
  .sidebar {
    margin-top: var(--htb-space-xl);
  }
  /* 記事カード — シングルカラム時に余白調整 */
  .entry-card-content {
    padding: var(--htb-space-sm);
  }
}

/*834px以下 — タブレット縦 */
@media screen and (max-width: 834px) {
  .article h2 {
    padding: var(--htb-space-xs) var(--htb-space-sm) var(--htb-space-xs) var(--htb-space-md);
  }
  /* ヒーロー調整 */
  .htb-hero {
    padding: var(--htb-space-2xl) 0;
  }
  .htb-hero__title {
    font-size: var(--htb-font-2xl);
  }
  /* 目次（TOC）のタブレット最適化 */
  .toc {
    padding: var(--htb-space-md);
  }
  /* ブログカード — パディング調整 */
  .blogcard-content {
    padding: var(--htb-space-sm);
  }
  /* フッター — テキスト中央揃え */
  #footer.footer {
    text-align: center;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: var(--htb-space-sm);
  }
  /* SNSシェアボタン — ラップ化 */
  .ss-top .sns-share-buttons,
  .ss-bottom .sns-share-buttons {
    flex-wrap: wrap;
  }
  /* ショートコード: パーク情報ボックス — 余白縮小 */
  .htb-info-box {
    padding: var(--htb-space-sm) var(--htb-space-md);
  }
}

/*480px以下 — モバイル */
@media screen and (max-width: 480px) {
  /* ── タイポグラフィ ── */
  .article h2 {
    font-size: var(--htb-font-md);
    padding: var(--htb-space-xs) var(--htb-space-sm) var(--htb-space-xs) var(--htb-space-sm);
  }
  .article h3 {
    font-size: var(--htb-font-base);
  }
  .article h4 {
    font-size: var(--htb-font-sm);
  }
  body {
    font-size: var(--htb-font-sm);
    line-height: var(--htb-line-relaxed);
  }

  /* ── ヘッダー・ナビのモバイル調整 ── */
  .logo-text .site-name-text {
    font-size: var(--htb-font-md);
  }
  .sub-caption {
    display: none;
  }
  .header-in {
    padding: var(--htb-space-2xs) var(--htb-space-sm);
  }
  .logo-image .header-site-logo-image {
    max-height: 36px;
  }

  /* ── ヒーロー：モバイル最適化 ── */
  .htb-hero {
    padding: var(--htb-space-xl) 0;
    text-align: center;
  }
  .htb-hero__content {
    max-width: 100%;
  }
  .htb-hero__sub {
    font-size: var(--htb-font-xs);
  }
  .htb-hero__title {
    font-size: var(--htb-font-xl);
  }
  .htb-hero__desc {
    font-size: var(--htb-font-sm);
  }
  .htb-hero__br-sp {
    display: inline;
  }
  .htb-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .htb-hero__btn {
    justify-content: center;
    padding: var(--htb-space-sm) var(--htb-space-md);
  }

  /* ── カテゴリナビ：横スクロール ── */
  .htb-cat-nav {
    padding: var(--htb-space-md) 0;
  }
  .htb-cat-nav__list {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: var(--htb-space-3xs);
    padding-bottom: var(--htb-space-xs);
  }
  .htb-cat-nav__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .htb-cat-nav__item a {
    padding: var(--htb-space-xs);
    min-width: 72px;
  }

  /* ── おすすめ記事：横並びリスト化 ── */
  .htb-pickup {
    padding: var(--htb-space-xl) 0;
  }
  .htb-pickup__grid {
    grid-template-columns: 1fr;
    gap: var(--htb-space-sm);
  }
  .htb-pickup__card {
    display: flex;
    flex-direction: row;
  }
  .htb-pickup__thumb {
    flex: 0 0 120px;
    aspect-ratio: 1 / 1;
  }
  .htb-pickup__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--htb-space-xs) var(--htb-space-sm);
  }

  /* ── 記事カード：モバイル最適化 ── */
  .entry-card-wrap {
    border-radius: var(--htb-radius-sm);
  }
  .entry-card-content {
    padding: var(--htb-space-xs) var(--htb-space-sm);
  }
  .entry-card-snippet {
    font-size: var(--htb-font-xs);
    -webkit-line-clamp: 2;
  }
  .entry-card-meta {
    font-size: 0.7rem;
  }
  /* カテゴリラベル — モバイルで小さく */
  .cat-label {
    font-size: 0.65rem;
    padding: 1px var(--htb-space-2xs) 1px calc(var(--htb-space-2xs) + 4px);
  }

  /* ── 目次（TOC）：モバイル最適化 ── */
  .toc {
    padding: var(--htb-space-sm) var(--htb-space-md);
    font-size: var(--htb-font-sm);
  }
  .toc-title {
    font-size: var(--htb-font-sm);
  }
  .toc-list li {
    padding: var(--htb-space-3xs) 0;
  }

  /* ── サイドバー：モバイル最適化 ── */
  .sidebar {
    margin-top: var(--htb-space-lg);
    padding: 0 var(--htb-space-2xs);
  }
  .sidebar h3 {
    font-size: var(--htb-font-xs);
    padding: var(--htb-space-2xs) var(--htb-space-sm);
  }

  /* ── ブログカード：モバイル最適化 ── */
  .blogcard {
    font-size: var(--htb-font-sm);
  }
  .blogcard-thumbnail {
    flex: 0 0 100px;
  }
  .blogcard-content {
    padding: var(--htb-space-xs);
  }
  .blogcard-title {
    font-size: var(--htb-font-sm);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
  }
  .blogcard-snippet {
    display: none;
  }

  /* ── フッター：モバイル最適化 ── */
  #footer.footer {
    text-align: center;
    padding: var(--htb-space-md) var(--htb-space-sm);
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: var(--htb-space-xs);
  }
  .navi-footer-in a {
    font-size: var(--htb-font-xs);
    padding: var(--htb-space-2xs) var(--htb-space-sm);
  }

  /* ── ショートコード: パーク情報ボックス ── */
  .htb-info-box {
    padding: var(--htb-space-sm);
    margin: var(--htb-space-md) 0;
  }
  .htb-info-box__title {
    font-size: var(--htb-font-sm);
  }
  .htb-info-box__body {
    font-size: var(--htb-font-sm);
  }

  /* ── SNSシェア: モバイル最適化 ── */
  .ss-top .sns-share-buttons,
  .ss-bottom .sns-share-buttons {
    gap: var(--htb-space-2xs);
  }
  .sns-share-message {
    font-size: var(--htb-font-xs);
  }

  /* ── 読了プログレスバー: モバイルは太く ── */
  #htb-reading-progress {
    height: 2px;
  }
}
