@charset "utf-8";
/* CSS Document */

@media only screen and (max-width: 959px) {

#wrapper{
	overflow:hidden;
}

/*==========================================================
	MENU
==========================================================*/

/* Gnav UL BLOCK */
.navDrawr {
	background-color:#f7f1eb;
	position: fixed;
	width: 270px;
	top: 80px;
	bottom: 0;
	right: -270px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	z-index:20;
}

.navDrawr a {
	color:#5b4a3f;
	text-decoration:none;
	position: relative;
}

.navDrawr a::after {
	position: absolute;
	top: 50%;
	color:#5b4a3f;
	margin-top: -10px;
	right: 15px;
	font-family: FontAwesome;
	content: "\f054";
}

.navDrawr>ul>li {
	float: none;
	width: auto;
}

.navDrawr>ul>li>a {
	display:block;
	width:230px;
	padding:20px;
	text-align: left;
	border-bottom: 1px solid #142f60;
}

/*==========================================================
	OPEN時の背景設定
==========================================================*/

/* OPEN時の背景 */
body.menuOpen #wrapper{
}

/* OPEN時のオーバーレイ */
.overlay {
	display: none;
	background-color: rgba(0,0,0,0.6);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index:10;
}

/*==========================================================
	HEADER
==========================================================*/

#header {
	height: 80px;
	padding:0;
	z-index:25;
	width: 100%;
}

/* OPEN時のヘッダー */
body.menuOpen  #header{
	position: fixed;
	top:0;
	height:80px;
	width: 100%;
}

/*==========================================================
	BUTTON BLOCK
==========================================================*/

/* BUTTON BLOCK */
.navDrawrBtn {
}

/* BUTTON OUTLINE */
.navDrawrBtn span {
	position: fixed;
	top: 0;
	right: 0;
	margin: auto;
	display: block;
	width: 80px;
	height: 80px;
	cursor: pointer;
	z-index:30;
}

/* ハンバーガーメニュー */
.navDrawrBtn span::before {
	font-family: FontAwesome;
	content: "\f0c9";
	font-size: 26px;
	color: #e99316;
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	line-height: 80px;
}

/* CLOSE BUTTON */
body.menuOpen .navDrawrBtn span::before {
	content: "\f00d";
}


}
@media only screen and (max-width: 480px) {
}