/* ===============================
   ヘッダー全体のスタイル
   =============================== */
.header-container {
  width: 100%;
  height: 60px;
  background-color: #002f6c;
  color: white;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-sizing: border-box;
}

/* ===============================
   ヘッダータイトル（中央に固定配置）
   =============================== */
.header-title {
  font-size: var(--font-xl);
  font-weight: bold;
  color: white;
  line-height: 1;
  position: absolute; /* ← 中央固定のため */
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  white-space: nowrap;
  z-index: 1;
}

.header-title-link {
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: none; /* ホバー時の変化を無効化 */
}

.header-title-link:hover {
  color: white; /* ホバー時も白い文字色を維持 */
  opacity: 1; /* 透明度も変更しない */
}

/* ===============================
   ハンバーガーメニューアイコン
   =============================== */
.menu-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001; /* ヘッダー（1000）より上に配置 */
  position: relative; /* staticからrelativeに変更 */
  box-sizing: border-box;
  min-width: 48px; /* タッチデバイス用の最小サイズ */
  min-height: 48px; /* タッチデバイス用の最小サイズ */
}

.menu-icon svg {
  width: 28px;
  height: auto;
  display: block;
  pointer-events: none;
}

.menu-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* ===============================
   モバイルメニュー
   =============================== */
.mobile-menu {
  position: fixed;
  top: 60px;
  right: 0;
  width: 300px;
  height: calc(100vh - 60px);
  background-color: #002f6c;
  color: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a,
.mobile-menu button {
  display: block;
  width: 100%;
  padding: 12px 20px; /* 上下パディングを15pxから12pxに縮小 */
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  font-size: var(--font-md);
  cursor: pointer;
  transition: background-color 0.2s ease;
  line-height: 1.2; /* 行間を調整 */
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* 閉じるボタン */
.close-menu {
  position: absolute;
  top: 8px; /* 10pxから8pxに調整 */
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.close-menu:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* サブメニュー */
.submenu {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
}

.submenu.open {
  display: block;
}

.submenu li {
  border-bottom: none;
}

.submenu a {
  padding: 10px 40px; /* 上下パディングを12pxから10pxに縮小 */
  font-size: var(--font-sm);
}

/* サブメニュートグルボタン */
.submenu-toggle {
  position: relative;
}

.submenu-toggle::after {
  content: "▼";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.submenu-toggle.open::after {
  transform: translateY(-50%) rotate(180deg);
}

/* メニューオープン時の背景オーバーレイ */
body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .mobile-menu {
    width: 100%;
    right: 0;
  }
}
