@charset "UTF-8";


header{
	height: 70px;
	background-color: #fff;
}

header section{
	display: block;
}

header h1{
	position: fixed;
	left: 60px;
	top: 30px;
	z-index: 2;
	width: 96px;
	height: 66px;
}

header h1 img{
	width: 100%;
	height: 100%;
}

.nav_zip{
	position: absolute;
	left: 100px;
    bottom: 7.5vh;
	color: #555;
}

header h2{
	width: 200px;
	height: 20px;
	margin-bottom: 4vh;
}

header h2 img{
	width: 100%;
	height: 100%;
}


nav{
	display:none;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 99998;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}

.nav_wrap{
	width: 570px;
	min-width: 570px;
	height: 600px;
	position: absolute;
	top: 0;
    right: 0;
    z-index: 3;
	background-image: url("../img/nav_back@2x.png");
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 727px auto;
}

nav ul{
	padding-top: 150px;
    margin-right: 150px;
}

nav ul li{
	margin-bottom: 37px;
}
	
nav ul li a {
	font-size: 2.2rem;
	letter-spacing: 0.14em;
	text-align: right;
	color: #ffc41d;
	display: block;
	line-height: 1;
}

nav ul li a:hover{
	opacity: 0.5;
}

.close_wrap{
		background-color: rgba(0,0,0,0.2);
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		z-index: 2;
	}


/*開閉ボタン*/
.nav_toggle{
	display: block;
	width: 70px;
	height: 70px;
	position: fixed;
	top: 5px;
	right: 35px;
	z-index: 999998;
	cursor: pointer;
	box-sizing: border-box;
}

.nav_toggle span{
	display: block;
	height: 2px;
	background: #111;
	position:absolute;
	width: 30px;
	right: 25px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	overflow: hidden;
}

.nav_toggle span:nth-child(1){
	top:22px;
}
.nav_toggle span:nth-child(2){
	top:32px;
}
.nav_toggle span:nth-child(3){
	top:42px;
}

.nav_toggle.white span{
	background-color: #fff;
}

.open .nav_toggle span{
	background-color: #111;
}

.nav_toggle .menu{
	display: block;
	font-style: normal;
	font-family: 'Train One';
	text-transform: uppercase;
	position: fixed;
    top: 50px;
	font-size: 1.6rem;
}

	
/*開閉ボタンclose*/
.open .nav_toggle span:nth-child(1) {
	top: 33px;
	transform: rotate(135deg);
}
.open .nav_toggle span:nth-child(2) {
	visibility: hidden;
}
.open .nav_toggle span:nth-child(3) {
	top: 33px;
	transform: rotate(-135deg);
}


@media screen and (max-width:812px) {
	header h1 {
		left: 20px;
		top: 20px;
		width: 60px;
		height: 41px;
	}
	
	.nav_toggle{
		right: 3px;
	}
	
	.nav_zip{
		font-size: 1.2rem;
		left: 30px;
		bottom: 50px;
	}
	
	.nav_zip h2{
		margin-bottom: 25px;
	}
	
	.nav_wrap{
		width: 90%;
		min-width: 254px;
	}
	
	nav ul {
		padding-top: 120px;
		margin-right: 70px;
	}
	
	nav ul li a {
		font-size: 1.8rem;
	}
	
	.nav_toggle .menu{
		font-size: 1.2rem;
		text-indent: 7px;
	}
}




/* iphone5以下 ---------------------------------------- */
@media screen and (max-width:320px) {	

}








