@charset "UTF-8";
/* header */

header{
    width: 100%;
    height:250px;
}
.site_header_sp{
	display: none;
}
.site_header_pc{
	width: 100%;
    height:250px;
	position: fixed;
	top:0;
	z-index: 999;
	transition: 0.5s;
	background-color: #fff;
}
.site_header_pc.hide{
    transform: translateY(-100%);
}
.site_header_pc .header_logo{
    display: block;
	width: 300px;
	height: 130px;
	padding: 70px 66px 19px;
}
.site_header_pc .header_logo a{
	display: block;
	width: 167px;
	height: 41px;
}
.pc_contact_nav{
	width:125px;
	height: 250px;
	float: right;
	margin-top: -130px;
}
.pc_contact_nav li a.btn_regist{
	display: block;
	width: 100%;
	height: 125px;
	padding-top: 20px;
	background-color: #000;
    color: #fff;
}
.pc_contact_nav li a.btn_regist img{
	display: block;
	margin: 0 auto 10px;
}
.pc_contact_nav li a:hover{
	height: 125px;
    color: #fff;
	background-color:#686868;
}
.pc_gnav{
    width: 85%;
    padding-left:5%;
}
.pc_gnav li{
    width: 16.6%;
    float: left;
}
.pc_gnav li a{
	display: inline-block;
    width: 100%;
    height:50px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
	position: relative;
}
.pc_gnav li a:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #333;
	transition: .3s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.pc_gnav li.underline a:after{
  width: 100%;
}
/*ドロップダウンエリアのチラつき防止*/
.pc_gnav .nav_child{
    display: none;
}
.pc_gnav .nav_child{
    width: 100%;
    height:100px;
}
.pc_gnav .nav_child li{
    width: 100%;
    height:50px;
}
.pc_gnav .nav_child li a{
    display: block;
    width: 100%;
    height: 100%;
	padding-top:15px;
    background-color:#f5efcf;
	border-bottom: solid 1px #fff;
}
.pc_gnav .nav_child li a:after{
	display: none;
}
.pc_gnav .nav_child li a:hover{
    background-color:#E0D491;
}

@media screen and (min-width:0px) and (max-width:767px) {
    
    header{
		width: 100%;
        position: fixed;
		bottom: 0;
        z-index: 99;
    }
	.site_header_sp{
		display: block;
		width: 100%;
		height: 550px;
		background-color: #fff;
		transition: 0.5s;
		position: absolute;
		bottom:-470px;
	}
	.site_header_sp.active{
		position: absolute;
		bottom:0;
	}
	.site_header_pc{
		display: none;
	}
	.header_logo_sp{
		width: 60%;
		height: 80px;
		float: left;
	}
	.header_logo_sp img{
		display: block;
		width: 150px;
		height: auto;
		margin: 30px auto 0;
	}
	.sp_contact_nav{
		width: 40%;
		height: 80px;
		float: left;
	}
	.sp_contact_nav li{
		width: 50%;
		float: left;
	}
	.sp_contact_nav li a.btn_regist{
		display: block;
		width: 100%;
		height: 80px;
		padding-top: 15px;
		background-color: #000;
		color: #fff;
		font-size: 10px;
		letter-spacing: 0.1em;
	}
	.sp_contact_nav li a.btn_regist img{
		display: block;
		width: auto;
		height: 30px;
		margin: 0 auto 5px;
	}
	.sp_contact_nav li a:hover{
		color: #fff;
		background-color:#686868;
	}
	.sp_gnav{
		padding: 15px 5% 150px;
		height: 100%;
		overflow-y: scroll;
		-webkit-overflow-scrolling:touch;/*慣性スクロール*/
	}
	.sp_gnav li a{
		display: block;
		width: 100%;
		font-size: 14px;
		padding: 20px 0;
		border-bottom: solid 1px #000;
	}
	.sp_gnav .nav_child li a{
		background-color:#f5efcf;
		border-bottom: solid 2px #fff;
	}
}

