body {
  font-family: 'Sawarabi Gothic', sans-serif;
}
h1 {
  font-size: 1.75rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.1rem;
}

h5 {
  font-size: 1rem;
}

/* メニュー */

/* 全画面オーバーレイメニュー（スマホ用） */
#overlayMenu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.95);
  color: white;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}
#overlayMenu.show {
  display: flex;
}
#overlayMenu a {
  font-size: 1rem;
  color: white;
  text-decoration: none;
  margin: 1rem 0;
  transition: color 0.3s ease;
}
#overlayMenu a:hover {
  color: #0d6efd;
}

/* 閉じるボタンを右上に固定 */
#btnCloseMenu {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
  line-height: 1;
}
#btnCloseMenu:hover {
  color: #0d6efd;
}

/* ヘッダーの通常メニュー（PC用） */
.header-nav {
  display: none;
  gap: 1.5rem;
}
.header-nav a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
}
.header-nav a:hover {
  color: #0d6efd;
}

/* ハンバーガーボタン */
.btn-hamburger {
  font-size: 1.8rem;
  border: none;
  background: transparent;
  color: #000;
  cursor: pointer;
}

/* PC以上で表示切替 */
@media (min-width: 768px) {
  .btn-hamburger {
    display: none;
  }
  .header-nav {
    display: flex;
  }
}


/* フッター */

footer{
  text-align: center;
  background-color: #eeeeee;
  padding: 20px 0;
  margin-top: 50px;  
}