/* CSS Document */
header article section#Menu nav {
	position: fixed;
	top:0px;
	left:0px;
	font-size: 1.4rem;
	z-index: 9999;
	background:rgba(0,18,173,1.00);
	width:50px;
	height: 50px;
	float: inherit;
	border-radius: 0 0 10px 0;
	display: block;
}

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

/*アイコンのスペース*/
#Navopen {
	display: inline-block;
	vertical-align: middle;
	position: fixed;
	z-index: 9999;
	top:16px;
	left: 4px;
	height: 40px;
	width:40px;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#Navopen span, #Navopen span:before, #Navopen span:after {
	position: absolute;
	height: 3px;/*線の太さ*/
	width: 40px;/*長さ*/
	border-radius: 3px;
	background: #fff;
	display: block;
	content: '';
	cursor: pointer;
}
#Navopen span:before {
	bottom: -8px;
}
#Navopen span:after {
	bottom: -16px;
}

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

	/*中身*/
#Navcontent {
	text-align: justify;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;/*最前面に*/
	width: 70%;/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 330px;/*最大幅（調整してください）*/
	height: 100%;
	background:rgba(0,12,101,0.80);/*背景色*/
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
	border-bottom: 1px solid #aaa;
}

/*チェックが入ったらもろもろ表示*/
#Navinput:checked ~ #Navclose {
	display: block;/*カバーを表示*/
	opacity: .5;
}

#Navinput:checked ~ #Navcontent {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25px rgba(0,12,101,0.80);;
}

ul#Navcontent > li {
	background: rgba(0,12,101,0.80);
	padding: 0.5em 0 0.5em 0.25em;
	border-bottom: 1px solid #aaa;
	margin-bottom: 0.25em;
	color: #bbb;
}

ul#Navcontent >li > ul {
}

ul#Navcontent >li > ul >li {
	background: rgba(161,207,255,0.80);
	padding: 0.5em 0 0.5em 1em;
	border-bottom: 1px dotted #aaa;
}

ul#Navcontent >li > ul >li:last-of-type {
	border: none;
	padding-bottom: 0;
}

ul#Navcontent > li a::before {
	content: ">";
}

ul#Navcontent > li a:link,
ul#Navcontent > li a:active ,
ul#Navcontent > li a:visited {
	text-decoration: none;
	color: #fff;
}


ul#Navcontent >li.snsbtn {
	width:25%;
	float: left;
	text-align: center;	
	padding: 0;
}

ul#Navcontent > li.snsbtn a::before {
	content: none;
}

ul#Navcontent > li.snsbtn a img {
	width:80%;
	height: auto;
}

