/* ヘッダー全体 */
.header {
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body {
  margin: 0;
}

/* ロゴ */
.header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

/* ナビゲーション */
.header-nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
} /* -------------------
   Navigation styles
------------------- */

/* ハンバーガー開閉ボタン */
.menu-toggle {
  display: none;
  cursor: pointer;
}

/* 通常ナビゲーション */
.global-nav {
  display: flex;
}

/* モバイル時ナビゲーション切り替え */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .global-nav {
    display: none;
    flex-direction: column;
  }
  .global-nav.open {
    display: flex;
  }
}

/* サブメニュー階層 */
.header-nav-list li {
  position: relative;
}
.header-nav-list li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
}
.header-nav-list li:hover > ul {
  display: block;
}
