/* drawer_menu ============================== */

/* btn */
.drawer_menu{
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
	align-items: center;
  justify-content: center;
  padding-top: 4px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
}
@media (min-width: 440px){
.drawer_menu{
  width: 80px;
  height: 80px;
}
}
@media (min-width: 960px){
.drawer_menu{
  width: 120px;
  height: 120px;
  display: none;
}
}

.drawer_menu a{
  color: inherit;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.drawer_menu a:visited{
  color: inherit;
}

.drawer_menu .drawer_bg{
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 800;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  top: 0;
  left: 0;
}

.drawer_menu .drawer_button{
  display: block;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 1200;
	margin: -16px 0 0 0;
}


.drawer_menu .drawer_nav_wrapper{
  height: 100%;
	transform: translate(100%);
  transition: all 0.2s ease;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFF;
  display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
@media (min-width: 440px){
.drawer_menu .drawer_nav_wrapper{
  width: 500px;
  transform: translate(500px);
}
}
@media (min-width: 960px){
.drawer_menu .drawer_nav_wrapper{
  width: 600px;
  transform: translate(600px);
}
}

.drawer_menu .drawer_nav_wrapper.open{
  transform: translate(0);
}

.menu-trigger,
.menu-trigger span{
  display: inline-block;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.menu-trigger{
  position: relative;
  width: 38px;
  height: 18px;
}

.menu-trigger::after{
	content: "menu";
	color: #181818;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
	font-size: 1.3rem;
	letter-spacing: 0.12em;
  text-align: center;
  line-height: 1;
  position: absolute;
  bottom: -16px;
  left: 0px;
	z-index: -10;
}

.menu-trigger span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #181818;
}

.menu-trigger span:nth-of-type(1){
  top: 0;
}

.menu-trigger span:nth-of-type(2){
  top: 8px;
}

.menu-trigger span:nth-of-type(3){
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1){
  transform: translateY(0px) rotate(-35deg);
	transform: translateY(10px) rotate(-35deg);
  background-color: #181818;
}

.menu-trigger.active span:nth-of-type(2){
  opacity: 0;
  transform: translatex(5px) rotate(0deg);
  background-color: #181818;
}

.menu-trigger.active span:nth-of-type(3){
  transform: translateY(0px) rotate(35deg);
	transform: translateY(-6px) rotate(35deg);
  background-color: #181818;
}


/* nav */
.drawer_menu .nav_block{
	width: 100%;
	box-sizing: border-box;
	padding: 0 10vw;
}
@media (min-width: 960px){
.drawer_menu .nav_block{
	width: 400px;
	margin: 50px 0 0 0;
	padding: 0;
}
}

.drawer_menu ul.d_nav{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
  align-items: center;
	justify-content: center;
}

.drawer_menu ul.d_nav li{
	width: 100%;
}

.drawer_menu ul.d_nav li a{
	color: #333;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1;
	display: flex;
  flex-direction: row;
	align-items: center;
	justify-content: space-between;
  border-bottom: 1px dotted #ddd;
	padding: 16px 4px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}
@media (min-width: 960px){
.drawer_menu ul.d_nav li a{
  font-weight: 500;
	padding: 24px 4px;
}
}

@media (min-width: 960px){
.drawer_menu ul.d_nav li a:hover{
	color: #92D574;
}
}

.drawer_menu ul.d_nav li a svg.arrow{
	width: 13px;
	height: 13px;
	fill: #999;
	margin: 0 0 -1px 0;
}

.dm_contact_btn{
	width: 100%;
  height: 54px;
}
@media (min-width: 440px){
.dm_contact_btn{
	height: 60px;
}
}

.dm_contact_btn a{
	color: #fff;
	width: 100%;
	height: 54px;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.04em;
	border-radius: 4px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #06C755;
	box-sizing: border-box;
  position: relative;
}
@media (min-width: 440px){
.dm_contact_btn a{
	height: 60px;
	font-size: 1.9rem;
  font-weight: 400;
	letter-spacing: 0.06em;
}
}

.dm_contact_btn a img {
  width: 32px;
  height: 32px;
  display: block;
  margin-top: 2px;
  margin-right: 8px;
}
@media (min-width: 440px){
.dm_contact_btn a img {
  width: 36px;
  height: 36px;
  margin-right: 8px;
}
}