/* ハンバーガーメニューのドロワー（モバイル用）。390px幅を基準にしたレイアウト。 */
.rl-drawer {
  position: fixed;
  top: 80px;
  right: 0;
  bottom: 0;
  width: 390px;
  max-width: 100%;
  box-sizing: border-box;
  background: #009DE6;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease-out, visibility 0.3s ease-out;
  z-index: 100;
}

.rl-drawer.is-open {
  padding-top: 60px;
  transform: translateX(0);
  visibility: visible;
}

.rl-drawer__menu {

  list-style: none;
  margin: 0;
  padding: 0;
}

.rl-drawer__menu li {
  border-bottom: 1px solid rgba(255, 255, 255);
  max-width: 90%;
  margin: 0 auto;
}

.rl-drawer__menu a {
  display: block;
  padding: 18px 24px;
  font-family: 'Zen Old Mincho', 'Yu Mincho', serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.rl-drawer__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  box-sizing: border-box;
  width: 90%;
  margin: 0 0 0 auto;
  padding: 32px 24px;
}

.rl-drawer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #009DE6;
}

.rl-drawer__social-icon img {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

/* Instagram はフッターと同じ白い丸チップ + 中央に小さいアイコン */
.rl-drawer__social-icon--instagram {
  background: #fff;
}

.rl-drawer__social-icon--instagram img {
  width: 20px;
  height: 20px;
  border-radius: 0;
}