@charset "utf-8";
#drawerBox { position: relative; }
.drawerHide { display:none; }
#drawerOpen {
	display: inline-block;
	width: 45px;
	height: 45px;
	vertical-align: middle;
}
	#drawerOpen span:nth-child(1),
	#drawerOpen span:nth-child(2),
	#drawerOpen span:nth-child(3) {
		content: '';
		position: absolute;
		height: 4px;
		width: 20px;
		border-radius: 3px;
	/*	background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));*/
		background: rgba(255, 255, 255, 1);
		display: block;
		cursor: pointer;
		transition: all 0.3s;
		left: 10px;
		z-index: 110;
	}
	#drawerOpen span:nth-child(1) { bottom: 27px; }
	#drawerOpen span:nth-child(2) { bottom: 19px; }
	#drawerOpen span:nth-child(3) { bottom: 11px; }

/*閉じる用の薄黒カバー*/
#drawerClose {
	display: none;
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1);
	opacity: 0;
	transition: 0.3s ease-in-out;
}

/*中身*/
#drawerNaviBox {
	overflow: auto;
	position: fixed;
	top: 15vh;
	left: 10vw;
	width: 80vw;
/*	height: 70vh;*/
	z-index: 9999;
	background: #00325d;
	display: none;
	opacity: 0;
	transition: all 0.5s;
}
#drawerInput {}
	#drawerInput:checked ~ #drawerClose {
		display: block;
		opacity: 0.5;
	}

	#drawerInput:checked ~ #drawerNaviBox {
		display: block;
		opacity: 1;
		box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
	}
	#drawerInput:checked ~ #drawerOpen span:nth-child(1) { display: none; }
	#drawerInput:checked ~ #drawerOpen span:nth-child(2) { bottom: 21px; transform: rotate(-45deg); }
	#drawerInput:checked ~ #drawerOpen span:nth-child(3) { bottom: 21px; transform: rotate(45deg); }

	
	#headerBox #drawerBox {
		position: absolute;
		top: 12px;
		right: 15px;
	}
	#headerBox #telBox a, 
	#headerBox #drawerBox label#drawerOpen {
		width: 40px;
		height: 40px;
		background: #00325d;
		border-radius: 50%;
	}
		#headerBox #drawerBox label#drawerOpen::after {
			/*
			content: 'MENU';
			font-size: small;
			bottom: 0;
			left: 0;
			width: 100%;
			text-align: center;
			display: block;
			position: absolute;
			color: rgba(0, 0, 0, 1);
			z-index: -1;
			*/
		}
	#headerBox #telBox::before {
		position: absolute;
		top: 6px;
		right: 66px;
		z-index: 50;
	}
	#headerBox #telBox a {
		position: absolute;
		top: 0;
		right: 55px;
	/*	background: linear-gradient(rgba(217, 0, 0, 1), rgba(242, 0, 0, 1));*/
		display: block;
		text-indent: -2000em;
	}
		#drawerNaviBox > ul > li {
			border-bottom: 1px dotted rgba(0, 82, 183, 1);
		}
			#drawerNaviBox > ul > li > a {
				display: block;
				padding: 0.5em;
				background: #00325d;
				color: #FFF;
				text-decoration: none;
			}
			#drawerNaviBox > ul > li > a > .newIconSpan::after{
				background: #fff;
				color: #00325d;
			}
			#drawerNaviBox > ul > li > ul > li > a {
				display: block;
				padding: 0.25em 0 0.25em 1em;
				color: rgba(0, 82, 183, 1);
				text-decoration: none;
				border-bottom: 1px dotted rgba(0, 82, 183, 1);
			}
			#drawerNaviBox > ul > li > ul > li:last-child > a { border-bottom: none; }