@charset "UTF-8";
/* ==================================================
 * Color set
 * ================================================== */
/* ==================================================
 * Font
 * ================================================== */
/* ==================================================
 * width
 * ================================================== */
/* ==================================================
 * layout
 * ================================================== */
/* ==================================================
 * bg
 * ================================================== */
/* ==================================================
 * font text
 * ================================================== */
/* ==================================================
 * other
 * ================================================== */
/*------------------------------------
　Default
------------------------------------ */
/*drawer btn
------------------------------------ */
.sp-menu-btn-wrp {
  display: block;
  transition: 0.3s;
}
.sp-menu-btn-wrp.active {
  position: fixed;
  top: 60px;
  right: 100px;
}
.sp-menu-btn-wrp.active .top, .sp-menu-btn-wrp.active .bottom {
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.sp-menu-btn-wrp.active .middle {
  opacity: 0;
}
.sp-menu-btn-wrp.active .bottom {
  transform: rotate(-45deg);
}

body {
  position: relative;
  z-index: 1;
}
body::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: 0.4s;
}
body.active::before {
  opacity: 1;
  z-index: 888;
}

/*	drawer
------------------------------------ */
#drawer-nav {
  visibility: hidden;
  width: 600px;
  max-width: 100%;
  height: 100%;
  overflow-y: auto;
  margin: auto;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 1000;
  transition: all 0.1s ease;
}
#drawer-nav.active {
  display: block;
  visibility: visible;
  transform: translateX(-100%);
  z-index: 1000;
  transition: 0.4s;
}
#drawer-nav .current span:after {
  opacity: 0 !important;
}/*# sourceMappingURL=drawer_def.css.map */