@charset "utf-8";
#drawerBox {
	position: relative;
}

/*チェックボックス等は非表示に*/
.drawerHide {
	display:none;
}

/*アイコンのスペース*/
#drawerOpen {
	display: inline-block;
	width: 30px;
	height: 22px;
	vertical-align: middle;
	position: relative;
}
	#drawerOpen::after {
		position: absolute;
		content: url(../img/common/text_menu.png);
/*		content: 'MENU';
		font-size: 1.2rem;
		left: calc( ( 25px - 4.8rem ) / 4 );
		bottom: -2.4rem;
		color: rgba(0, 155, 19, 1);
*/
		left: -2px;
		bottom: -24px;
	}
	/*ハンバーガーアイコンをCSSだけで表現*/
	#drawerOpen span:nth-child(1),
	#drawerOpen span:nth-child(2),
	#drawerOpen span:nth-child(3) {
		content: '';
		position: absolute;
		height: 3px;/*線の太さ*/
		width: 25px;/*長さ*/
		border-radius: 3px;
		background: rgba(0, 155, 19, 1);
		display: block;
		cursor: pointer;
		transition: all 0.3s;
	}
	#drawerOpen span:nth-child(1) { bottom: 0px; }
	#drawerOpen span:nth-child(2) { bottom: 8px; }
	#drawerOpen span:nth-child(3) { bottom: 16px; }

/*閉じる用の薄黒カバー*/
#drawerClose {
	display: none;/*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0;/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}

/*中身*/
#drawerNaviBox {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;/*最前面に*/
	width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 330px;/*最大幅（調整してください）*/
	height: 100vh;
	/*background: #fff;背景色*/
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
}
#drawerInput {}
	/*チェックが入ったらもろもろ表示*/
	#drawerInput:checked ~ #drawerClose {
		display: block;/*カバーを表示*/
		opacity: .5;
	}

	#drawerInput:checked ~ #drawerNaviBox {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);/*中身を表示（右へスライド）*/
		box-shadow: 6px 0 25px rgba(0,0,0,.15);
	}
	#drawerInput:checked ~ #drawerOpen span:nth-child(1) { display: none; }
	#drawerInput:checked ~ #drawerOpen span:nth-child(2) { bottom: 8px; transform: rotate(-45deg); }
	#drawerInput:checked ~ #drawerOpen span:nth-child(3) { bottom: 8px; transform: rotate(45deg); }

		#drawerNaviBox ul li a {
			text-decoration: none;
			text-align: center;
			display: flex;
			justify-content: center;
			align-items: center;
			height: calc( 100vh / 8 );
			border-bottom: 1px dotted rgba(255, 255, 255, 1);
			color: rgba(255, 255, 255, 1);
			background: rgba(0, 155, 19, 1);
			font-weight: bold;
			line-height: 1.25;
			font-size: calc( 100vh / 30 );
		}
		#drawerNaviBox ul li.reservation a { background: rgba(255, 142, 54, 1); }