@charset "UTF-8";
/*==============================================
ここから下がドロワー設定項目
==============================================*/
/*drawer btn 上下左右で設定可能
------------------------------------ */
.sp-menu-btn-wrp {
  width: 50px;
  max-width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.sp-menu-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  row-gap: 10px;
}
.sp-menu-btn span {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #017a4f;
  border-radius: 2px;
  transition: 0.4s;
}

/*	drawer inbox
------------------------------------ */
#drawer-nav {
  padding: 40px 4vw 0 4vw;
  background-color: #fcfdeb;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
#drawer-nav .com-logo {
  margin-bottom: 30px;
}
#drawer-nav .list-sns {
  margin-top: 40px;
}
#drawer-nav .list-sns__link {
  border: solid 2px #ddd;
}
#drawer-nav .list-sns .mail {
  background: #f39700;
  border: none;
}

.drawer-nav__list {
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.drawer-nav__item {
  width: calc(50% - 5px);
  background: #fff;
  border: solid 3px #017a4f;
  border-radius: 6px;
  text-align: center;
}
.drawer-nav__link {
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
}
.drawer-nav .current {
  color: #f39700;
  background: rgba(254, 250, 149, 0.5);
}

@media screen and (max-width: 768px) {
  /*drawer btn 上下左右で設定可能
  ------------------------------------ */
  .sp-menu-btn-wrp {
    width: 90px;
    max-width: 12%;
    min-width: 60px;
    border-radius: 5px;
  }
  .sp-menu-btn-wrp.active .sp-menu-btn span {
    width: 70%;
  }
  .sp-menu-btn {
    width: 60%;
    row-gap: 1.8vw;
  }
  .sp-menu-btn span {
    background: #fff;
    height: 3px;
  }
}/*# sourceMappingURL=drawer.css.map */