/* drawer */
.drawer-btn {
  width: 32px;
  height: auto;
  position: fixed;
  z-index: 104;
  top: 20px;
  right: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.close-btn {
  width: 32px;
  height: auto;
  position: absolute;
  top: 20px;
  right: 20px;
}
.drawer-bg {
	background-color: rgba(0,0,0,1);
}
.drawer-navi-box {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.drawer-navi {
  width: 100%;
  font-size: 2.5em;
  line-height: 1.0;
  text-align: center;
  letter-spacing: -.4em;
  box-sizing: border-box;
}
.drawer-navi li {
  text-align: center;
  color: #fff;
  letter-spacing: normal;
  padding: 30px 0;
}
.drawer-navi a {
  color: #fff;
}
.insta-drawer {
  width: 30px;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width:640px) {
  .drawer-btn {
    width: 23px;
  }
  .close-btn {
    width: 23px;
  }
  .drawer-navi {
    width: 100%;
    font-size: 1.8em;
  }
  .drawer-navi li {
    text-align: center;
    color: #fff;
    letter-spacing: normal;
    padding: 20px 0;
  }
  .insta-drawer {
    width: 20px;
  }
}
