/* Webページ層（表紙・記事ページ）共通のサイトヘッダー。
   本文のスタイルは各ページ持ち — ここにはヘッダー以外を足さない */
.site-header { display: flex; align-items: center; gap: 4px 14px; flex-wrap: wrap;
  padding: 10px 0; border-bottom: 2px solid #B54EB2; }
.site-header .site-name { font-weight: 700; font-size: 15px; color: #222; text-decoration: none; }
.site-header nav { display: flex; gap: 12px; flex-wrap: wrap; font-size: 13px; align-items: center; }
.site-header nav a { color: #1a73e8; text-decoration: none; }
.site-header nav a:hover { text-decoration: underline; }
.site-header nav a.map-btn { background: #B54EB2; color: #fff; border-radius: 6px; padding: 2px 10px; }
.site-header nav a.map-btn:hover { text-decoration: none; opacity: 0.9; }
