.site-header .container {
  display: flex;
  justify-content: space-between; /* 左右に分ける */
  align-items: center;
  max-width: 1200px;
  min-height: 100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 左エリア（タイトル） */
.header-left {
  display: flex;
  align-items: center;
}

/* 右エリア（ナビ + ハンバーガー） */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ナビゲーション */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* ハンバーガーメニュー */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* スマホ表示対応 */
@media (max-width: 768px) {
  .main-nav {
    display: none; /* 初期状態は非表示 */
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 60px; /* header の高さに合わせる */
    right: 0;
    width: 200px;
    padding: 10px;
  }

  .main-nav.open {
    display: flex; /* openクラスが付いたら表示 */
  }

  .menu-toggle {
    display: block; /* スマホ時のみ表示 */
  }
}
