/* CSS Document */
header nav {
	position: fixed;
	top:0px;
	left:0px;
	font-size: 1.6rem;
	z-index: 200;
	background:rgba(35,93,154,1.00);
	width:60px;
	height: 60px;
	float: inherit;
	border-radius: 0 0 10px 0;
}

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

#Menulogo {
	display: none;
}
/*アイコンのスペース*/
#Navopen {
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top:10px;
	left: 4px;
}

#Navopen::after {
	content:"MENU";
	position: relative;
	color: #FFF;
	top:18px;
}


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

/*閉じる用の薄黒カバー*/
#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: 250px;/*最大幅（調整してください）*/
	height: 100%;
	background:rgba(35,93,154,1.00);/*背景色*/
	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(35,93,154,1.00);;
}

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

ul#Navcontent >li > ul br {
	display: none;
}

ul#Navcontent >li > ul >li {
	background:  rgba(35,93,154,1.00);;
	padding: 1em 0 1em 1em;
	border-bottom: 1px dotted #aaa;
}
header article#Navi section nav > ul li a {
	text-decoration: none;
	color: rgba(255,255,255, 1);
}


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

ul#Navcontent > li a::before {
}

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;
}


