/* ハンバーガーメニューのスタイル */
.hamburger-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ハンバーガーメニュー内のサイトマップページ */
.hamburger-modal .sitemap-page {
  min-height: 100vh;
  background: linear-gradient(to bottom, #eef9ff 0%, #c4edff 100%);
  background-size: cover;
}

/* ハンバーガーメニュー内のサイトマップヘッダー */
.hamburger-modal .sitemap-header {
  width: 100%;
  background: #eef9ff !important;
}

.s .hamburger-modal .sitemap-container {
  padding-bottom: 60px;
}

/* SP専用 - サイトマップヘッダーを追従 */
.s .hamburger-modal .sitemap-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ハンバーガーメニューが開いている時のbody */
body.hamburger-open {
  overflow: hidden;
}

/* ハンバーガーメニューボタン */
.s .hamburger-menu {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 16px;
}

/* 閉じるボタン */
.header-close-btn {
  position: fixed;
  top: 3%;
  right: 1%;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 10000;
  display: none;
}

body.hamburger-open .header-close-btn {
  display: block;
}

.header-close-btn img {
  width: 50px;
  height: 50px;
}
.s .header-close-btn img {
  width: 32px;
  height: 32px;
}
