@charset "UTF-8";

/* drawer */
.drawer {
  width: 50px;
  height: 50px;
  background-color: #3e4297;
  border: none;
  border-radius: 50%;
  position: fixed;
  right: 30px;
  top: 20px;
  z-index: 1010;
  display: none;
}
.drawer-line {
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
  background: #fff;
	transition: all 0.3s ease;
}
.drawer-line-top {
  width: 26px;
  right: 12px;
  top: 19px;
}
.drawer-line-bottom {
  width: 26px;
  right: 12px;
  bottom: 19px;
}

/* drawer-nav */
.drawer-nav-wrap {
  box-sizing: border-box;
  width: 75vw;
  height: 100vh;
  background-color: #3e4297;
  padding: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  overflow-y: scroll;
  opacity: 0;
  display: none;
  transform: translateX(100%);
}
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 998;
  display: none;
  opacity: 0;
  pointer-events: none;
}
.drawer-nav {
  box-sizing: border-box;
  padding: 100px 0 100px 10%;
}
.drawer-nav li {
  font-size: 1.6em;
  line-height: 22px;
  letter-spacing: 0.05em;
  margin: 30px 0;
}
.drawer-nav li a {
  font-weight: 500;
  color: #fff;
}
.drawer-nav li a span {
  font-size: 0.8em;
  color: #787edd;
}
.drawer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 30px;
  right: 50px;
}
.ds-1 {
  opacity: 0;
  transform: translateX(20px);
}
.ds-2 {
  opacity: 0;
  transform: translateX(20px);
}
.ds-3 {
  opacity: 0;
  transform: translateX(20px);
}
.ds-4 {
  opacity: 0;
  transform: translateX(20px);
}
.ds-5 {
  opacity: 0;
  transform: translateX(20px);
}

@media screen and (max-width: 900px) {
  /* drawer */
  .drawer {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .drawer {
    right: 5%;
  }
}
