@charset "UTF-8";
/*==============================================
  ドロワー + ハンバーガーボタン 設定
==============================================*/
/*------------------------------------
  ドロワーボタン wrapper
------------------------------------*/
.sp-menu-btn-wrp {
  width: 90px;
  max-width: calc(90 / 750 * 100%);
  min-width: 60px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  background: #9cbcdb;
  padding: 5px;
  cursor: pointer;
  z-index: 1000;
  /* ハンバーガーバー */
}
.sp-menu-btn-wrp.active {
  z-index: 9999;
}
.sp-menu-btn-wrp.active .top, .sp-menu-btn-wrp.active .bottom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.sp-menu-btn-wrp.active .top {
  transform: rotate(45deg);
}
.sp-menu-btn-wrp.active .middle {
  opacity: 0;
}
.sp-menu-btn-wrp.active .bottom {
  transform: rotate(-45deg);
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 80%;
  aspect-ratio: 3/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 60%;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.4s, opacity 0.4s;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  margin: 5px 0;
}
.sp-menu-btn-wrp .sp-menu-btn-txt {
  font-size: 20px;
  font-size: calc(20 * 100 / 768 * 1vw);
  text-align: center;
  line-height: 1;
  transform: translateY(4px);
  color: #fff;
}
@media screen and (min-width: 539px) {
  .sp-menu-btn-wrp .sp-menu-btn-txt {
    font-size: calc(20 / 1.7 * 1px);
  }
}

/*------------------------------------
  ドロワーメニュー本体
------------------------------------*/
#drawer-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 20vw 6vw;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}
#drawer-nav.active {
  visibility: visible;
  opacity: 1;
}
#drawer-nav .com-logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.drawer-nav__item {
  text-align: center;
  border-bottom: 1px solid #c2cae4;
}
.drawer-nav__item.current {
  background: #f5f5f5;
}
.drawer-nav__link {
  display: block;
  padding: 20px 4%;
  transition: background 0.3s ease;
}
.drawer-nav__link:hover {
  background: #f0f0f0;
}
.drawer-nav .current {
  color: #6790b9;
  font-weight: bold;
}

/*------------------------------------
  PC非表示 / スマホ表示
------------------------------------*/
.sp-none {
  display: none !important;
}

.pc-none {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .sp-menu-btn-wrp,
  #drawer-nav {
    display: none !important;
  }
}/*# sourceMappingURL=drawer.css.map */