@charset "UTF-8";

/* NAVIGSATION ----------------------------------------*/
/* NAV BTN */
.navBtn {
	position: fixed;
	width: 13.75vw;
	height: 13.75vw;
	top: 0;
	right: 0;
	background: url(http://garo-usuzumizakura.com/sp/img/common/nav/navbg.png) no-repeat 0 0;
	background-size: 100% 100%;
	z-index: 999;
}
	.navBtn_inner {
		position: relative;
		width: 5vw;
		height: 3.4vw;
		margin: 0 auto 2vw;
		padding: 3vw 0 0;
	}
		.navBtn_box {
			position: relative;
			width: 5vw;
			height: 3.4vw;
			/*background: rgba(0, 0, 0, .4);*/
		}
			.navBtn_box p:first-child {
				position: absolute;
				width: 100%;
				height: 1px;
				top: 0;
				left: 0;
				background: #fff;
				-webkit-transition: all .3s ease-out;
				   -moz-transition: all .3s ease-out;
				    -ms-transition: all .3s ease-out;
				     -o-transition: all .3s ease-out;
				        transition: all .3s ease-out;
			}
				.is-active .navBtn_box p:first-child {
					top: 50%;
					-webkit-transform: rotate(45deg);
					   -moz-transform: rotate(45deg);
					    -ms-transform: rotate(45deg);
					     -o-transform: rotate(45deg);
					        transform: rotate(45deg);
				}

			.navBtn_box p:nth-child(2) {
				position: absolute;
				width: 100%;
				height: 1px;
				top: 50%;
				left: 0;
				background: #fff;
			}
				.is-active .navBtn_box p:nth-child(2) {
					display: none;
				}

			.navBtn_box p:last-child {
				position: absolute;
				width: 100%;
				height: 1px;
				top: 100%;
				left: 0;
				background: #fff;
				-webkit-transition: all .3s ease-out;
				   -moz-transition: all .3s ease-out;
				    -ms-transition: all .3s ease-out;
				     -o-transition: all .3s ease-out;
				        transition: all .3s ease-out;
			}
				.is-active .navBtn_box p:last-child  {
					top: 50%;
					-webkit-transform: rotate(135deg);
					   -moz-transform: rotate(135deg);
					    -ms-transform: rotate(135deg);
					     -o-transform: rotate(135deg);
					        transform: rotate(135deg);
				}

	.navBtn:after {
		display: block;
		width: 100%;
		text-align: center;
		content: "MENU";
		color: #fff;
		font-family: 'Roboto', sans-serif;
		font-size: 9px;
		font-size: 0.9rem;
		line-height: 1;
		text-align: center;
	}
	.is-active.navBtn:after {
		display: block;
		width: 100%;
		text-align: center;
		content: "CLOSE";
		color: #fff;
		font-family: 'Roboto', sans-serif;
		font-size: 9px;
		font-size: 0.9rem;
		line-height: 1;
		text-align: center;
	}

/* NAVIGATION */
.navigation {
	position: absolute;
	display: none;
	width: 100%;
	min-height: 100vh;
	padding: 4.6vw 0 0;
	top: 0;
	left: 0;
	font-family: 'Amiri', serif;
	background: rgba( 0, 0, 0, .9);
	box-sizing: border-box;
	z-index: 998;
}
	.navigation h2 {
		width: 16.25vw;
		margin: 0 auto 9.3vw;
	}
		.navigation ul {
			padding: 4vw 0 0;
			opacity: 0;
			-webkit-transform: translate(0, 3%);
			   -moz-transform: translate(0, 3%);
			    -ms-transform: translate(0, 3%);
			     -o-transform: translate(0, 3%);
			        transform: translate(0, 3%);
		}
		.navigation li {
			width: 100%;
			margin: 0 0 0;
			font-size: 3.75vw;
			line-height: 1;
			letter-spacing: 1px;
			text-align: center;
		}
			.navigation li span {
				font-size: 5vw;
			}
		.navigation li:not(:last-child):after{
			display: block;
			content: "";
			width: 4.6vw;
			height: 2.2vw;
			margin: 4vw auto;
			background: url(http://garo-usuzumizakura.com/sp/img/common/nav/separator.png) no-repeat 0 0;
			background-size: 100% 100%;
		}
			.navigation li a {
				color: #fff;
				text-decoration: none;
			}