/* ヘッダー下メニューを固定表示 */
.header-bottom-nav {
  position: sticky;       /* ← 推奨: スクロールしても残る */
  top: 0;                 /* ページ最上部に固定 */
  z-index: 9999;          /* ヘッダーや記事より前面に */
  background: #fff;       /* 背景を指定しないと透ける */
  border-bottom: 1px solid #eee;
}

/* メニューリストの見た目 */
.header-bottom-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.header-bottom-menu li {
  margin: 0 15px;
}
.header-bottom-menu a {
  display: block;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
.header-bottom-menu a:hover {
  color: #0073aa; /* ホバー色はお好みで */
}
