/* --- 基本リセット --- */
body, ul, button {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.6;
}

/* --- ヘッダー全体 --- */
.site-header {
  width: 100%;
}

/* --- ヘッダー上部 (ロゴとハンバーガー) --- */
.header-top {
  display: flex;
  justify-content: space-between; /* 両端に配置 */
  align-items: center;
  background-color: #808080; /* ★変更点 */
  padding: 15px 20px;
  color: white;
}

.logo-area {
  display: flex;
  align-items: center;
}

/* ロゴ画像（テキスト一体型）のスタイル */
.logo-image {
  height: 40px; /* ヘッダーの高さに合わせて調整 */
  width: auto; /* 幅は自動調整 */
  display: block; /* リンク内の余白をなくす */
}

/* --- ハンバーガーメニュー --- */
.hamburger-icon {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 3本線を均等配置 */
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-icon .line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

/* --- ヘッダー下部 (ナビゲーション) --- */
.header-nav {
  background-color: #808080; /* ★変更点 */
  padding: 12px 0;
}

.header-nav ul {
  display: flex;
  justify-content: center; /* 中央揃え */
  list-style: none;
}

.header-nav li {
  position: relative; /* 区切り線の基準位置 */
  padding: 0 25px; /* リンク間の余白 */
}

/* --- 2番目以降のliの左側に区切り線を追加 --- */
.header-nav li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px; /* 線の高さ */
  background-color: #585858; /* 区切り線の色 (背景より暗い色) */
}

.header-nav a {
  text-decoration: none;
  color: #333; /* 文字色 */
  font-weight: bold;
  font-size: 0.9rem; /* 14.4px */
}