/* ハンバーガーボタンの外観 */
.menu-trigger {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  background-color: #9995ef;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}
/* 三本線の棒 */
.menu-trigger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000; /* 線の色 */
  margin: 3px 0;
  transition: all 0.3s ease;
}
/* クリックして .active になった時の「×」アニメーション */
.menu-trigger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-trigger.active span:nth-child(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* 背景暗幕の基本設定 */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: none; /* 最初は非表示 */
}
/* メニューが開いた時だけ表示 */
.menu-overlay.active {
  display: block;
}
/* サイドメニュー本体を隠す設定 */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px; /* 完全に画面の右の外に追い出す */
  width: 250px;
  height: 100%;
  background-color: #1a1a1a; /* メニュー内の背景色（濃いめ） */
  z-index: 10001; /* 暗幕(10000)より上で、ボタン(10002)より下 */
  transition: all 0.4s ease; /* スッと出てくるアニメーション */
  padding: 80px 20px 20px; /* ボタンと被らないように上の余白を多めに */
  box-shadow: 2px 0 10px rgba(0,0,0,0.5);
  overflow-y: auto; /* メニューが長い場合にスクロール可能に */
}
/* メニューが開いた時（ボタンを押してactiveがついた時） */
.side-menu.active {
  right: 0; /* 画面内に戻す */
}
/* メニュー内の文字などの装飾 */
.menu-label {
  color: #9995ef;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}
.side-menu ul {
  list-style: none;
  padding: 0;
}
.side-menu ul li a {
  color: #ffffff !important;
  text-decoration: none;
  display: block;
  padding: 12px 0;
  font-size: 15px;
  border-bottom: 1px solid #222;
}

body{
  background-color:#121212;
  font-family:
    "Noto Sans JP",
    sans-serif;
}

h1{
  color:#9995ef;
}
a{
  color:#1a73e8;
}

.site-footer {
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
}
.site-footer .note {
  font-size: 0.75rem;
  color: #fff;
}