.pc{display: block;}
.sp{display: none;}
@media screen and (max-width:900px) {
	.pc{display: none;}
	.sp{display: block;}
}

img{
	max-width: 100%;
}
body{
	background:#FFF;
	width: 100%;
	color: #333;
}
#container{
	margin: 0 auto;
}


a{
	color: #FFF;
	text-decoration: none;
	outline: none;
	transition: all 0.5s cubic-bezier(0.155, 0.91, 0.695, 0.95);
    /*
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
	*/
}
.contents .btn{
	width: 150px;
	height: 60px;
	line-height: 60px;
	background: #f1c41c;
	color: #FFF;
	display: block;
	text-align: center;
	margin:-20px -5px 0 auto;
}
@media screen and (min-width:1450px) {
	.inr{
		max-width: 1400px;
		margin: 0 auto;
	}
}

/***** animation *****/
.js-scroll-fade {
  position: relative;
  opacity: 0;
  transform: translate(-140px, 0px);
  transition: all 1s cubic-bezier(0.155, 0.91, 0.695, 0.95);
}
.js-scroll-fade.is-animation {
  opacity: 1;
  transform: translate(0, 0);
}


/********************* Global Navi ***************/
.header{
	position: fixed;
	width: 100%;
	z-index: 9;
}
.header.sp{
	background: #FFF;
	height: 58px;
}
.header h1{
	width: 100vw;
	height: 13vh;
	position: absolute;
	top: 0;
	left: 0;
	padding: 30px 0 60px; 
	z-index: 2;
	transition: all 0.6s ease;
}
.header h1 img{
	display: block;
	width: 67%;
	margin-left: 300px;
	position: relative;
	z-index: 3;
	transition: all 0.6s ease;
}
.header.fixed h1{
	width: 23%;
	margin-left: 30px;
	margin-top: 10px;
}
.header.fixed h1 img{
	width: 100%;
	margin-left: 0;
}
.header h1 img:hover {
		transform: scale(1.1);
}
.under .header h1{
	width: 23%;
	margin-left: 30px;
	margin-top: 10px;
	position: relative;
	z-index: 3;
	transition: all 0.6s ease;
}
.under .header h1 img{
	display: block;
	width: 100%;
	margin-left: 0px;
}


.header ul.nav{
	position: absolute;
	top: 220px;
	height: calc(100vh - 250px);
	z-index: 6;
	width: 20%;
	transition: all 0.6s ease;
}
.under .header ul.nav{
	top: 180px;
	height: calc(100vh - 180px);
}
.header.fixed ul.nav{
	max-height: calc(100vh - 160px);
	top: 160px;
}
.header ul.nav li{
	height: 13%;
}
.header ul.nav li a{
	padding: 0 55px;
	display: block;
	position: relative;
}
@media screen and (min-width:900px) {
	.header ul.nav li a:hover{
		transform: scale(1.2);
	}
	.header ul.nav li a:before{
		content: "";
		display: block;
		position: absolute;
		bottom: -10px;
		left: 25%;
		width: 50%;
		height: 10px;
		background: url(../img/common/line.png) no-repeat center center;
		background-size: contain;
		border-radius: 10px;
		
		transform: scaleX(0);
		transform-origin: right center;
		transition: transform 300ms;
	}
	.header ul.nav li a:hover:before{
		transform: scaleX(1);
    	transform-origin: left center;
	}
}

@media screen and (max-width:1300px) {
	.header ul.nav li a{
		padding: 0 40px;
	}
}
@media screen and (max-width:1270px) {
	.header h1 img{
		width: 70%;
		margin-left: 250px;
	}
	.header ul.nav{
		height: calc(100vh - 200px);
		top: 200px;
	}
	.header.fixed ul.nav{
		height: calc(100vh - 140px);
		top: 140px;
	}
}
@media screen and (max-width:1200px) {
	.header ul.nav{
		height: calc(100vh - 190px);
		top: 190px;
	}
	.under .header ul.nav{
		top: 150px;
		height: calc(100vh - 150px);
	}
}
@media screen and (max-width:1070px) {
	.header h1{
		padding: 20px 0 0px; 
	}
	.header.fixed h1{
		padding: 14px 0 0px; 
	}
	.header h1 img{
		width: 65%;
		margin-left: 24%;
	}
	.header ul.nav{
		height: calc(100vh - 170px);
		top: 170px;
	}
	.header.fixed ul.nav{
		height: calc(100vh - 100px);
		top: 100px;
	}
	.header ul.nav li a{
		padding: 0 26px;
	}
	.under .header ul.nav{
		top: 120px;
		height: calc(100vh - 120px);
	}
}
@media screen and (max-width:950px) {
	.header h1 img{
		width: 67%;
		margin-left: 24%;
	}
	.header ul.nav{
		height: calc(100vh - 140px);
		top: 140px;
	}
}
@media screen and (max-width:900px) {
	.header.sp h1{
		height: 150px;
		line-height: 150px;
		padding: 0px;
		background: none;
		box-sizing: border-box;
		transition: all 0.3s ease;
	}
	.header.sp h1 img{
		width: 60%;
		height: auto;
		margin-left: auto;
		margin-right: auto;
		margin-top: auto;
		display: block;
		transition: all 0.3s ease;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		-webkit- transform: translateY(-50%) translateX(-50%);
	}
	.under .header.sp h1,
	.header.sp.fixed h1{
		height: 58px;
		padding: 0;
		margin-top: 0;
		width: 80%;
	}
	.header.sp.fixed h1{
		left: 10%;
	}
	.under .header.sp h1 img,
	.header.sp.fixed h1 img{
		width: auto;
		height: 60%;
		margin-top: 0px;
		margin-left: auto;
		margin-right: auto;
	}
	.drawer-open .header.sp{
		height: 88px;
		background: #FFF;
	}
	.header.sp h1{
		margin: 0 auto;
	}
	
	
	
	.header.fixed ul.nav{
		height: calc(100vh - 130px);
	}
	.drawer-open .header.sp h1{
		padding: 0;
		height: 88px;
		z-index: 22;
	}
	.drawer-open .header.sp h1 img{
		height: 50px;
		width: auto;
		margin-left: auto;
		margin-right: auto;
		margin-top: 0px;
		top: 70%;
	}
	.navsp{
		height: calc(100vh - 0px);
		box-sizing: border-box;
		text-align: center;
		margin-top: 30px !important;
	}
	.navsp li{
		height: 8%;
		padding: 10px 0;
		box-sizing: border-box;
	}
	.navsp li a img{
		height: 100%;
	}
}



#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index: 9;
}
#page-top a {
    width: 70px;
	display: block;
}
#page-top a:hover {
		transform: scale(1.2);
}

.copy{
	color: #333;
	background: #FFF;
	text-align: center;
	font-size: 13px;
	height: 50px;
	line-height: 50px;
}
@media screen and (max-width:900px) {
	#page-top {
		display: none !important;
	}
	.copy{
		color: #333;
		background: #FFF;
		text-align: center;
		font-size: 9px;
		height: 30px;
		line-height: 30px;
	}
}