@charset "UTF-8";
/* CSS */
/* *****************

hamburgerMenu

***************** */
nav a.menu_btn {
    display: block;
    width: 50px;
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
    z-index: 400;
    text-align: center;
}
nav div.btn_wrap{
    width: 50px;/* アイコンの幅 */
    height: 50px;/* アイコンの高さ */
    text-align: center;
    border-radius: 5px;
    background-color: #A87C65;
}
		
/* CSSボーダーメニューボタン */
#nav-toggle div{
	padding-top: 9px;
}
#nav-toggle span.line {
    display: block;
    position: relative;
    height: 2px;
    width: 75%; /* 3列ボーダーサイズ */
    margin: 0 12.5%;
    background-color: #FFFFFF; /* 3列ボーダー色 */
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span.line:nth-child(1) {
    top: 5px;
}
#nav-toggle span.line:nth-child(2) {
    top: 14px;
}
#nav-toggle span.line:nth-child(3) {
    top: 23px;
}
	
/* クローズ表記 */		
.close #nav-toggle span.line:nth-child(1) {
    top: 14px;
    transform: rotate(315deg);
}
.close #nav-toggle span.line:nth-child(2) {
    left: 50%;
    width: 0;
}
.close #nav-toggle span.line:nth-child(3) {
    top: 10px;
    transform: rotate(-315deg);
}
.close #global-nav {
    transform: translateY(556px);
}
/* ▼ドロワーメニュー設定▼ */
.drawr {
    display: none;
	background:rgba(255,255,255,0.9);
	background-size: 100%;
    position:absolute;
    left:0;
	top: 0;
	padding-top: 65px;
    width:20%;
	height:auto;
    z-index:300;
}
.drawr ul li {
    width:100%;
	list-style-type:none;
	border-bottom:1px solid #AFAFAF;
}
.drawr ul li:last-child{
	border-bottom:none;
}
.drawr ul li a{
    color:#757575;
	text-align: left;
    display: block;
    padding: 20px 1em;
	text-decoration:none;
	font-size: 16px;
	font-weight: 700;
	background-color: transparent;
	transition : all 0.5s ease 0s;
}
.drawr ul li a:hover{
	color: #000000;
}
.drawr ul li a span{
    display:block;
	padding-left: 15px;
	border-left: 3px solid #757575;
}
.drawr ul .w_menu{
	display: flex;
	justify-content: space-between;
}
.drawr ul .w_menu a{
	width: 50%;
}
.drawr ul .w_menu .w_menu_1{
	background-color: rgba(213,226,241,0.9);
}
.drawr ul .w_menu .w_menu_2{
	background-color: #f4e1ed;
}
@media screen and (max-width: 640px) {
	.drawr ul li a{
    	padding: 20px 0 20px 10px;
		font-size: 12px;
	}
	.drawr ul li a span{
    	display:block;
		padding-left: 5px;
	}
}