@charset "utf-8";

/*----------------------------------------------
スマホメニュー
----------------------------------------------*/
@media screen and (max-width: 999px){
	#btn-gnav {
		position: fixed;
		top: 15px;
		right: 5px;
		z-index: 5;
		display: block;
		width: 50px;
		height: 50px;
		font-size: 12px;
		color: #fff;
		text-align: center;
		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;
	}
}