@charset "utf-8";


/*----------------------------------------------
スマホメニュー
----------------------------------------------*/
.layer{
	position: fixed;
	top: 0;
	right: 240px;
	z-index: 1;
	display: none;
	width: 100%;
	height: 100%;
	background-color: transparent;
}
.wrapper{
	position: relative;
	right: 0;
}
.wrapper.open{
	position: fixed;
	width: 100%;
}
#btn-gnav {
	display: none;
}
@media screen and (max-width: 767px){
	#btn-gnav {
		position: fixed;
		top: 5px;
		right: 5px;
		z-index: 5;
		display: block;
		width: 50px;
		height: 50px;
		font-size: 12px;
		color: #fff;
		text-align: center;
		background-color: #3f598f;
		border-radius: 5px;
		cursor: pointer;
		border: solid 1px #fff;
		line-height: 1;
	}
	#btn-gnav:after {
		position: absolute;
		bottom: 5px;
		content: 'MENU';
		display: block;
		width: 100%;
		color: #fff;
		font-size: 11px;
		text-align: center;
	}
	#btn-gnav span {
		display: inline-block;
		position: relative;
		width: 60%;
		height: 4px;
		background-color: #fff;
		border-radius: 4px;
	}
	#btn-gnav span:before {
		content: "";
		display: block;
		position: absolute;
		top: 8px;
		width: 100%;
		height: 4px;
		background-color: #fff;
		border-radius: 4px;
	}
	#btn-gnav span:after {
		content: "";
		display: block;
		position: absolute;
		top: 16px;
		width: 100%;
		height: 4px;
		background-color: #fff;
		border-radius: 4px;
	}
	#gnav{
		position: fixed;
		top: 0;
		right: -240px;
		width: 240px;
		height: calc(100% - 50px);
		padding: 0;
		background: #fff;
		border-left: 1px solid #000;
		width: 240px;
		overflow-y: auto;
	}
	#gnav ul{
		max-width: none;
		height: auto;
		padding: 0;
	}
	#gnav ul li{
		float: none;
		text-align: center;
		border-bottom: 1px solid #000;
		width: 100%;
	}
	#gnav ul li a{
		display: block;
		line-height: 45px;
	}
}
