@charset "UTF-8";
.sp-gnav {
  list-style-type: none;
  width: 80%; /* 任意の幅 */
  max-height: 100vh; /* 画面の高さいっぱいまで表示される */
  min-height: 100vh;
  overflow-y: auto; /* 縦方向にスクロール可能に */
  background: #ffffff;
  position: fixed;
  top: 0;
  right: -100%; /* 初期位置を右側に設定 */
  z-index: 998;
  padding: 0 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* ドロップシャドウ */
  transition: right 0.3s ease; /* 右からスライドインするアニメーション */
}

.sp-gnav .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 80px;
  padding: 0 100px 0 15px;
  background: #ffffff;
}

.sp-gnav ul {
  padding-bottom: 30px;
}
.sp-gnav ul li {
  border-bottom: 1px solid #cccccc;
}
.sp-gnav ul li:first-child {
  border-top: 1px solid #cccccc;
}
.sp-gnav .bnr {
  text-align: center;
}
.sp-gnav .bnr:not(:last-child) {
  margin-bottom: 10px;
}

.sp-gnav li a {
  display: block;
  font-size: 15px;
  padding: 20px 15px;
}
.sp-gnav li a .en {
  font-size: 12px;
  color: #cccccc;
}
.sp-gnav li a .jp {
  font-size: 16px;
  font-weight: 700;
}

.sp-gnav li a:hover {
  background: #eeeeee;
}

.sp-nav-btn {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 80px;
  height: 80px;
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* ドロップシャドウ */
  z-index: 999;
}
.sp-nav-btn:hover {
  cursor: pointer;
}
.sp-nav-btn span,
.sp-nav-btn span::before,
.sp-nav-btn span::after {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #000000;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.3s;
}
.sp-nav-btn span {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.sp-nav-btn span::before {
  content: "";
  transform: translateY(-10px) rotate(0deg);
}
.sp-nav-btn span::after {
  content: "";
  transform: translateY(10px) rotate(0deg);
}

.sp-on span {
  background: transparent !important;
}
.sp-on span::before {
  transform: rotate(45deg) !important;
}
.sp-on span::after {
  transform: rotate(-45deg) !important;
}

/* 背景に関するスタイル */
body.nav-open {
  overflow: hidden; /* ナビエリアがオープンの場合、スクロールを禁止 */
}

/* 透過レイヤーのスタイル */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 透過度を設定 */
  z-index: 997; /* ナビよりも背面に表示 */
  display: none; /* 初期状態は非表示 */
}/*# sourceMappingURL=nav.css.map */