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

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

/*アイコンのスペース*/
#drawerOpen {
	display: inline-block;
/*
	width: 30px;
	height: 22px;
*/
	vertical-align: middle;

	width: 50px;
	height: 50px;
	border-radius: 50%;
	position: fixed;
	top: 1em;
	right: 1em;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: 1px 1px 2px rgba(0,0,0,.15);
	z-index: 9999;
}
	#drawerOpen::after {
		content: 'メニュー';
		display: block;
		text-align: center;
		font-size: 10px;
		color: #555;
	}
	/*ハンバーガーアイコンをCSSだけで表現*/
	#drawerOpen span:nth-child(1),
	#drawerOpen span:nth-child(2),
	#drawerOpen span:nth-child(3) {
		content: '';
		position: absolute;
		height: 3px;/*線の太さ*/
		width: 30px;/*長さ*/
		border-radius: 3px;
		background: #555;
		display: block;
		cursor: pointer;
		transition: all 0.3s;
		left: 10px;
	}
	#drawerOpen span:nth-child(1) { bottom: 10px; }
	#drawerOpen span:nth-child(2) { bottom: 18px; }
	#drawerOpen span:nth-child(3) { bottom: 26px; }

/*閉じる用の薄黒カバー*/
#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;*/
	top: 60px;
	left: 0;
	z-index: 9999;/*最前面に*/
	width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 330px;/*最大幅（調整してください）*/
/*	height: 100%;*/
	height: calc( 100% - 60px );
	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: 18px; transform: rotate(-45deg); }
	#drawerInput:checked ~ #drawerOpen span:nth-child(3) { bottom: 18px; transform: rotate(45deg); }

	#drawerNaviBox .howusepage li, 
	#drawerNaviBox .qualitypage li { height: 5.2em; }
	#drawerNaviBox .openSubMenuLi .howuse01, 
	#drawerNaviBox .openSubMenuLi .howuse02, 
	#drawerNaviBox .openSubMenuLi .order, 
	#drawerNaviBox .openSubMenuLi .member, 
	#drawerNaviBox .openSubMenuLi .order_os, 
	#drawerNaviBox .openSubMenuLi .member_os { height: 7em; }