@charset "utf-8";
/* CSS Document */
/** jQuery **/
/*ナビメニューのスタイルを指定*/
nav.NavMenu{
	position: fixed; /*表示位置を固定*/
	z-index: 2; /*重ね順を変更*/
	top: 0; /*表示位置を指定*/
	left: 0; /*表示位置を指定*/
	background: #fff;/*背景を白にする*/
	color: #000; /*文字色を黒にする*/
	text-align: center; /*テキストを中央揃え*/
	width: 100%; /*全幅表示*/
	transform: translateY(-100%); /*ナビを上に隠す*/
	transition: all 0.6s; /*アニメーションの時間を指定*/
	margin-top: 120px;
	line-height: 0;
}

nav.NavMenu ul{
	background: #000; /*背景*/
	width: 100%;
	margin: 0 auto;
	padding: 0;
	line-height: 0;
}

nav.NavMenu ul li{
	font-size: 1em;
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px dotted #ddd;
	text-align: left;
}

nav.NavMenu ul li:last-child{
	border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
}

nav.NavMenu ul li a{
	display: block; /*クリックできる領域を広げる*/
	color: white;
	padding: .8em 50px;
	line-height: 1.5em;
	text-decoration: none;
	font-size: 1em;
}
/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active{
	transform: translateY(0%);
}
/*トグルボタンのスタイルを指定*/
.Toggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 12px;
	width: 42px;
	height: 40px;
	cursor: pointer;
	z-index: 50;
	background-color: white;
}
@media screen and (min-width: 640px) {
	.Toggle ,nav.NavMenu{
		display: none;
	}
}
@media screen and (max-width: 640px) {
	.admin_menu{
		padding: 10px !important;
		font-size: 1em !important;
		line-height: 1.5em !important;
	}
}
.Toggle span {
	display: block;
	position: absolute;
	width: 30px;
	border-bottom: solid 3px #000;
	-webkit-transition: .1s ease-in-out;	/*変化の速度を指定*/
	-moz-transition: .1s ease-in-out;		/*変化の速度を指定*/
	transition: .1s ease-in-out;			/*変化の速度を指定*/
	left: 6px;
}
 
.Toggle span:nth-child(1) {
	top: 9px;
}
 
.Toggle span:nth-child(2) {
	top: 18px;
}
 
.Toggle span:nth-child(3) {
	top: 27px;
}
 
/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}