@charset "UTF-8";
/* CSS Document */

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .8s;
	box-sizing: border-box;
	z-index: 3;
}
.menu-trigger {
	position: relative;
	width: 100px;
	height: 80px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #FFFFFF;
	border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 38px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}

.menu-trigger span:nth-of-type(2)::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 4px;
	background-color: #FFFFFF;
	border-radius: 4px;
	transition: all .4s;
}
.menu-trigger.active span:nth-of-type(1) {
	transform: translate(50%) scale(0);
}
.menu-trigger.active span:nth-of-type(2) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.menu-trigger.active span:nth-of-type(2)::after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.menu-trigger.active span:nth-of-type(3) {
	transform: translate(-50%) scale(0);
}

nav.NavMenu{
	position: fixed;	/*表示位置を固定*/
	z-index: 2;		/*重ね順を変更*/
	top: 0;		/*表示位置を指定*/
	left: 0;	/*表示位置を指定*/
	background-color: rgba(0,0,0,0.6);
	color: #FFFFFF;	/*文字色を黒にする*/
	text-align: center;		/*テキストを中央揃え*/
	width: 100%;	/*全幅表示*/
	transform: translateY(-100%);	/*ナビを上に隠す*/
	transition: all 0.6s;	/*アニメーションの時間を指定*/
}

nav.NavMenu ul{
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

nav.NavMenu ul li{
	font-size: 1.1em;
	list-style-type: none;
	padding: 0;
	width: 100%;
}

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

nav.NavMenu ul li a{
	display: block;		/*クリックできる領域を広げる*/
	color: #FFFFFF;
	text-decoration: none;
	font-size: 64px;
	padding: 15px;
}

nav.NavMenu.active{
	transform: translateY(0%);		/*ナビを表示する*/
}

.Toggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 12px;
	width: 42px;
	height: 42px;
	cursor: pointer;
	z-index: 3;
}
 
.Toggle span {
	display: block;
	position: absolute;
	width: 30px;
	border-bottom: solid 3px #000;
	-webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
	-moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
	transition: .35s 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);
}

#fade{
	display: none;
}
