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

/* btn */
.drawer_menu{
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
	align-items: center;
  justify-content: center;
	border-radius: 0 0 0 18px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
}
@media (min-width: 440px){
.drawer_menu{
  width: 90px;
  height: 90px;
  border-radius: 0 0 0 30px;
}
}
@media (min-width: 960px){
.drawer_menu{
  width: 120px;
  height: 120px;
  border-radius: 0 0 0 30px;
  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: #008289;
  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: #008289;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
	font-size: 1.36rem;
	letter-spacing: 0.12em;
  text-align: center;
  line-height: 1;
  position: absolute;
  bottom: -18px;
  left: -1px;
	z-index: -10;
}

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

.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: #008289;
}

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

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


/* 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.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
	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: 18px 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: #008289;
	margin: 0 0 -1px 0;
}
