/* =========================================================
   磐田物語 共通グローバルヘッダー
   - 全ページ共通。トップページ(index.html)の見た目に統一。
   - 既存ページのインラインCSSと衝突しないよう gh- 接頭辞の独立クラスを使用。
   - 色はトップページの値をハードコードし、各ページの:root変数に依存しない。
   ========================================================= */
.gh-site{
  background:#6fb7d8;
  border-bottom:1px solid #d8e8ef;
  position:sticky; top:0; z-index:50;
  font-family:system-ui,-apple-system,"Segoe UI",sans-serif;
}
.gh-bar{
  display:flex; align-items:center; justify-content:space-between;
  height:60px; max-width:1180px; margin:0 auto; padding:0 22px; gap:16px;
}
.gh-brand{ display:flex; align-items:baseline; gap:12px; text-decoration:none; min-width:0; }
.gh-logo{ font-family:"Shippori Mincho",serif; font-weight:800; font-size:25px; color:#1f3a48; white-space:nowrap; }
.gh-dot{ color:#2f7fa3; }
.gh-sub{ font-size:12px; color:#5b6b74; letter-spacing:.06em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.gh-menu{ display:flex; gap:20px; flex-wrap:wrap; }
.gh-menu a{ color:#1f3a48; font-size:14px; font-weight:500; text-decoration:none; white-space:nowrap; }
.gh-menu a:hover{ color:#1f4f6f; }

/* パンくず（ヘッダー直下に配置されるページ向け） */
.gh-breadcrumb{
  max-width:1180px; margin:0 auto; padding:8px 22px;
  font-size:12.5px; color:#5b6b74;
  font-family:system-ui,-apple-system,"Segoe UI",sans-serif;
  border-bottom:1px solid #eef4f7;
}
.gh-breadcrumb a{ color:#2f7fa3; text-decoration:none; }
.gh-breadcrumb a:hover{ text-decoration:underline; }

@media(max-width:760px){
  .gh-bar{ height:auto; flex-wrap:wrap; padding:8px 14px; gap:6px 14px; }
  .gh-sub{ display:none; }
  .gh-menu{ width:100%; gap:0; flex-wrap:nowrap; overflow-x:auto; -webkit-overflow-scrolling:touch; }
  .gh-menu a{ flex:0 0 auto; padding:6px 12px; white-space:nowrap; }
}

/* === 高齢者配慮：既定の本文サイズ（site-header.css を読み込む全ページ共通） === */
/* 各ページのインライン body{font-size:..} より優先させるため !important を付与 */
body{ font-size:20px !important; }
@media(max-width:680px){ body{ font-size:19px !important; } }
