@charset "UTF-8";


header{
	width: 100vw;
	min-width: 100vw;
	height: 70px;
	background-color: #fff;
}

header section{
	display: block;
}

header h1{
	position: relative;
	left: 10px;
	top: 17px;
	z-index: 2;
	width: 115px;
	height: 40px;
}

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

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

.nav_toggle span{
	display: block;
	height: 2px;
	background: #111;
	position:absolute;
	width: 20px;
	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:26px;
}
.nav_toggle span:nth-child(2){
	top:34px;
}
.nav_toggle span:nth-child(3){
	top:42px;
}

img.text_menu{
	display: none;
}

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

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

.nav_wrap{
	display: flex;
	width: 100vw;
	padding-top: 90px;
	background-image: url("../img/logo@2x.png");
	background-position: left 10px top 17px;
	background-repeat: no-repeat;
	background-size: 115px auto;
	position: absolute;
    right: 0;
    z-index: 3;
    background-color: #fff;
}

.nav_innner{
	overflow-y: scroll;
}
	
nav ul{
}

nav ul li{
	margin-bottom: 4vh;
	margin-left: 45px;
}
	
nav ul li a {
	font-size: 1.6rem;
	letter-spacing: 0.18em;
	color: #333;
	display: block;
	line-height: 1;
}

.otherpage a{
	font-size: 1.2rem;
}

.to_service{
	width: 302px;
	height: 35px;
	margin-left: 0;
}

.to_service img{
	width: 100%;
	height: 100%;
	display: block;
	margin-left: -1px;
}

#scroll_pcnav{
	display: none;
}

.logo_ol ol{
	display: none;
}



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

}


/* PC版上書き ---------------------------------------- */

@media screen and (min-width:813px){	
	nav{
		overflow-y: hidden;
	}
	
	nav ul li a{
		font-size: 1.8rem;
	}
	
	nav ul li a:hover{
		opacity: 0.7;
	}
	
	.otherpage a {
		font-size: 1.4rem;
	}
	
	.close_wrap{
		background-color: rgba(0,0,0,0.7);
		width: 100vw;
		height: 100vh;
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		z-index: 2;
	}
	
	.nav_wrap {
		width: calc(100vw / 3);
		min-width: 400px;
		padding-top: 15vh;
		background-position: left 50px top 5.5vh;
		overflow: hidden;
	}
	
	header h1{
		left: 20px;
	}
	
	.logo_ol {
		display: flex;
		justify-content: space-between;
	}
	
	.logo_ol ol{
		display: flex;
		margin-right: 110px;
		align-items: center;
		height: 70px;
	}
	
	.logo_ol li a{
		position: relative;
		margin-left: 60px;
	}
	
	.logo_ol li a:hover{
		opacity: 0.7;
	}
	
	.logo_ol li a:before{
		content: "";
		display: inline-block;
		height: 2px;
		width: 12px;
		position: absolute;
		left: -20px;
		top: 12px;
		transition: 0.3s;
	}
	
	.logo_ol li a:hover:before{
		left: -17px;
	}
	
	
	.logo_ol li a:first-child:before{
		background-color: rgba(236,196,59,1.00);
	}
	
	.logo_ol li:nth-child(2) a:before{
		background-color:rgba(189,177,169,1.00);
	}
	
	.logo_ol li:last-child a:before{
		background-color:rgba(220,91,70,1.00);
	}
}


