@charset "UTF-8";
/*---------------------------------------------------------- */
/* color */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* width */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* breakpoints */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* font */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* other */
/*---------------------------------------------------------- */
/* =========================================================
   スマホナビ 縦スクロール対応版
   ---------------------------------------------------------
   ・背景は固定（body.no-scroll）
   ・ドロワー内部（.mainNav）のみ縦スクロール
   ・iOS慣性スクロール対応
   ・セーフエリア考慮（notch対応）
   ========================================================= */
/* 背景固定（ドロワー開時） */
body.no-scroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* トグルボタン */
#toggle {
  display: block;
  cursor: pointer;
  text-align: center;
  width: 28px;
  height: 19px;
  position: fixed;
  top: 24px;
  right: 15px;
  z-index: 10000001;
  -moz-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
}

.trigger {
  display: inline-block;
  position: relative;
  top: 0;
  width: 24px;
  height: 19px;
  -moz-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
}
.fixed .trigger {
  top: -5px;
}
.trigger div {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #BE2630;
  -moz-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
}
.trigger div:nth-of-type(1) {
  top: 0;
}
.trigger div:nth-of-type(2) {
  top: 7px;
}
.trigger div:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #BE2630;
  -moz-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
}
.trigger div:nth-of-type(3) {
  bottom: 3px;
}
.trigger.active div {
  background-color: #fff;
}
.trigger.active div:nth-of-type(1) {
  transform: translateY(8px) scale(0);
}
.trigger.active div:nth-of-type(2) {
  transform: rotate(-45deg);
}
.trigger.active div:nth-of-type(2)::after {
  transform: rotate(90deg);
  background-color: #fff;
}
.trigger.active div:nth-of-type(3) {
  transform: translateY(-8px) scale(0);
}

/* ドロワー全体 */
.toggleWrap {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100dvh;
  padding: 0 15px;
  background-color: rgba(51, 51, 51, 0.95);
  z-index: 10000000;
  transition: right 0.5s ease-in-out;
  overflow: hidden;
  padding-top: max(env(safe-area-inset-top), 0px);
  padding-bottom: max(env(safe-area-inset-bottom), 0px);
}
.toggleWrap.animation {
  right: 0;
}
.toggleWrap.hide {
  right: -100%;
}

/* ナビ内部（縦スクロール領域） */
.mainNav {
  padding: 80px 0 0 20px;
  text-align: left;
  position: relative;
  z-index: 100000;
  max-height: calc(100dvh - 80px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.mainNav li {
  list-style: none;
  line-height: 1.2;
  border-bottom: 1px #ccc dotted;
}
.mainNav a {
  display: block;
  text-decoration: none;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  padding: 25px 0;
}
.mainNav a span {
  font-size: 12px;
  color: #fff;
  margin-left: 20px;
  position: relative;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  opacity: 0.5;
}
.mainNav a span:before {
  content: "";
  width: 10px;
  border-top: 1px #ccc solid;
  position: absolute;
  top: 50%;
  left: -15px;
}
.mainNav .sub_menu {
  display: none;
  padding: 0;
}
.mainNav .sub_menu li {
  margin-bottom: 1px;
  border-bottom: none;
}
.mainNav .sub_menu li a {
  display: block;
  width: 100%;
  padding: 12px 0;
  background-color: #fff;
  color: #333 !important;
  text-align: center;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.mainNav .sub_menu li a:hover {
  background-color: #fff;
  top: 0;
}
.mainNav .sub_menu li:last-child a {
  border-bottom: none;
}
