@charset "utf-8";
/* CSS Document */
/*------------------------------------------------------

	COMMON

------------------------------------------------------*/
*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
html{
	font-size:62.5%;
	height:100%;
	overflow-y:scroll;
	
}
body{
background: url(../img/top/bg0_sp.gif) center center no-repeat;
	background-size:100% auto;
background-color:#000;
	
	line-height:1.75;
	-webkit-text-size-adjust:100%;
	font-family:'Heebo',"Meiryo UI" , "メイリオ" , Meiryo ,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN",sans-serif;
	font-size: 15px;  font-size: 1.5rem;
	color:#fff;
	font-weight:normal;
	letter-spacing:0.1rem;}
	
	@media only screen and (min-width:800px){
	body{
background: url(../img/top/bg0.jpg) center top no-repeat fixed;
background-color:#000;
	background-size:cover;


}
	}


#wrap2{background:#000;}

a{
	color:#fff;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
		
}
a:hover{
	color:#D40F13;
}
a:hover img{
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
}




@font-face {
	font-family: "iconFont";
	src: url("../asset/fonts/iconFont.eot?#iefix") format("eot");
	src:url("../asset/fonts/iconFont.woff") format("woff"),
	url("../asset/fonst/iconFont.ttf")  format("truetype"),
	url("../asset/fonts/iconFont.otf")  format("opentype");
}

@font-face {
	font-family: 'FontAwesome';
	src: url('../asset/fonts/fontawesome-webfont.eot?v=4.5.0');
	src: url('../asset/fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'), url('../asset/fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'), url('../asset/fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'), url('../asset/fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'), url('../asset/fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.onlypc{display:none;}


.red{color:#D40F13;font-size:1.4rem;}


@media only screen and (min-width:800px){

.onlysp{display:none;}
.onlypc{display:inline-block;}




}

/*------------------------------------------------------

	PAGE TOP

------------------------------------------------------*/
#pageTop {

  position: fixed;
  bottom: 30px;
  right: 0;
 z-index:7;
 text-align:center;
}

 

#pageTop a {
  display: block;
color:#D40F13;
line-height:15px;
  margin:0 20px 0px 0;
  font-size:36px;
/*background:url(../img/common/gotop_sp.png);*/

}

 

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}


@media only screen and (min-width:600px){
	#pageTop a {
/*  width: 60px;
  height: auto;*/
  margin:0 35px 10px 0;
/*background:url(../img/common/gotop.png);*/

}
}





/* GRID 
----------------------- */
.row:after{
	display:table;
	content:"";
	clear:both;
}
.spDiv01,.spDiv02,.spDiv03,.spDiv04{
	display:block;
	float:left;
	padding:0 15px;
  	margin:5px 0;
}
.spDiv01{
	width:100%;
}
.spDiv02{
	width:50%;
}
.spDiv03{
	width:33.33333333%;
}
.spDiv04{
	width:25%;
}

@media only screen and (min-width:600px){
	.pcDiv01,.pcDiv02,.pcDiv03,.pcDiv04{
		display:block;
		float:left;
		padding:0;
		margin:0;
	}
	.pcDiv01{
		width:100%;
	}
	.pcDiv02{
		width:50%;
	}
	.pcDiv03{
		width:33.33333333%;
	}
	.pcDiv04{
		width:25%;
	}
}




/*------------------------------------------------------

	LOADING

------------------------------------------------------*/
#pageloader {
    width:100%;
    height:100%;
    position:fixed;
    background-color:rgba(000, 000, 000, 1);
    z-index:9999999;
	top:0;
}
#pageloader .loader-container {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -60px;
	text-align: center;
	margin-left: -30px;
}
.loader {
	margin: 60px auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(255, 255, 255, 0.2);
	border-right: 1.1em solid rgba(255, 255, 255, 0.2);
	border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
	border-left: 1.1em solid #ffffff;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}
.loader,
.loader:after {
	border-radius: 50%;
	width: 60px;
	height: 60px;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*------------------------------------------------------

	HEADER

------------------------------------------------------*/
header{
	width:100%;
	height:60px;
	/*display:none;
	position:fixed;*/
	
}
header #kenwood{
	float:left;
	padding: 18px 10px 0 20px;
	z-index:99999;
}
header #kenwood img{
/*	height:25px;*/
}
#siteTtl a{
	display:none;
	font-size:14px;
	color:#fff;
	margin-right:15px;
}

#siteTtl a:hover{
color:#D40F13;
}

@media only screen and (min-width:800px){
	
	header #kenwood{
	float:left;
	padding: 18px 10px 0 20px;
	position:inherit;
	z-index:999;
}}

/* HEADER SEC
-------------------------------------*/
#headerSec{
	width:100%;
	margin:0 auto;
	font-size:1.6rem;
	font-weight:500;
	clear:both;
	top: 0;
	position:fixed;
	z-index:9999;
	background:rgba(0,0,0,0.5);

}




#spNavBtn{
	position:fixed;
	right:14px;
	top:17px;
	z-index:99999;
	
	
	
	
}
#headerSec nav{
	display:none;
	position:fixed;
	margin-top:0px;
	right:0;
	width:100%;
	background:rgba(0,0,0,0.6);
	z-index:9999;
	color:#000;
	text-align:center;
	/*transition:all 1s;*/
	letter-spacing:0.4rem;


}
#headerSec ul{
	border-top:1px solid #aaa;
}


#headerSec li{
	line-height:1.2;
	border-bottom:1px solid #aaa;
}

#headerSec li a{

	display:block;
	height:100%;
	padding:15px 0 15px;
	letter-spacing:1.3px;
	font-size:1.5rem;
	color:#fff;font-family: 'Graduate';
}

#headerSec li a:hover{
	color:#D40F13;
}
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position:relative;
	width: 25px;
	height: 25px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fff;
	border-radius: 3px;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 11px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(4px) rotate(-45deg);
	transform: translateY(4px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-18px) rotate(45deg);
	transform: translateY(-18px) rotate(45deg);
}

/* HEADER SOCIAL
-------------------------------------*/


#headerSecInner{z-index:999;width:100%;margin:0 auto;padding:0 20px;}


	#headerSec.fixed{
		position:fixed;
		top: 0;
		width: 100%;
		z-index: 999;
		background:rgba(0,0,0,0.5);
		display:block;
		
		
	}
	
	#headerSec.fixed #spNavBtn{
		position:fixed;
		top: 17px;
		
	}
	
	#headerSec.fixed nav{
		padding:0;
		z-index: 999;
		
	
	}
	.fixed + div#wrapper{
		margin:115px 0 0;
	}


#headerSec .titlelogo, headerSec.fixed .titlelogo{
		padding-top:18px;margin:0 auto 5px;
		
	}

#headerSec .titlelogo img{
		/*display:none;*/
		
	}


@media only screen and (min-width:800px){
	/* HEADER SEC
	-------------------------------------*/
	
	header{
		/*height:60px;*/
		display:block;
	}
#headerSec{
		width:100%;
	
	display:none;
		
	}
#siteTtl a{
		float:right;
		padding: 20px 15px 0;
		display:block;
	}
	
	
	
}


	

@media only screen and (min-width:1000px){
	/* HEADER SEC
	-------------------------------------*/
	

	
		#headerSec h1{
		margin:0;
	}

	
	#headerSec ul{
	border-top:0;
}

	
	
	#headerSec ul li{
		float:left;
		text-align:right;
		margin:5px 0;
		padding:0 15px;
		display:inline-block;
		
	}
	
	
	#headerSec ul li:last-child{
		padding:0 0px 0 15px;
	}


	
	#headerSec li a{
		margin:0;
		
	}

	#headerSec li{
	border-bottom:0;
	}

	#headerSec .titlelogo{
		float:left;
		
		
	}
	

	#headerSec nav{
		display:block;
		position:inherit;
		background:none;
padding:0;

		float:right;
		/*width:640px;*/
	width: 570px;
		
	}
	#spNavBtn{
		display:none;
	}
		

	


}






/*------------------------------------------------------

	footer

------------------------------------------------------*/



/* FOOTER INNER
-------------------------------------*/

.footerInner{
	border-top:1px solid #666;
	border-bottom:1px solid #666;
	background-color: #111;
	padding-bottom:10px;
	}

#footermenu{
	width:100%;
	padding-top:30px;
	margin: 0px;
    padding-bottom:15px;
	text-align:left;

}

.footerbnr img{ height:40px;
margin:15px;
	}
	
	
#footermenu p{
	color:#666;
	border-bottom:1px solid #666;
	margin:7px 0;
}
#footermenu ul li{
	line-height:40px;
}
#footermenu ul li:first-child{
	line-height:30px;
	/*text-align:center;*/
}
#footermenu ul li a{
	display:block;
	margin:0;
	height:100%;
	width:100%;
}
#footermenu ul li img{
	max-width:100%;
	width:160px;
	margin-top:10px;

}
#footermenu div:first-child div{
    
	font-size:1.4rem;
	font-weight:500;
	margin:0;
	padding:10px 20px;
	background:#222;
	font-family: 'Graduate';

}
#footermenu div:not(:first-child){
	padding:0 15px;
}
#footermenu div:not(:first-child) ul li a{
	border-bottom:1px dotted #666;
	line-height: 22px;
padding: 10px 0;
}


#footermenu div:not(:first-child) ul li a:after{
	content: "\e600"; 
	font-family: 'iconFont';
	margin:0 0 0 5px;
	float:right;
}

@media only screen and (min-width:600px){
	/* FOOTER INNER
	-------------------------------------*/
	#footermenu div:first-child div{
		padding:0 10px 0 0;
		text-align:left;
				padding:0 20px 10px 20px;
	}
	
#footermenu p{

	margin:0px 0 1rem;
}

#footermenu ul li img{margin-top:15px;}
	
}
@media only screen and (min-width:1000px){
	/* FOOTER INNER
	-------------------------------------*/
	
	.footerInner{
	width:100%;
	text-align:center;

	}
	
	#footermenu{
max-width:1100px;
margin:0px auto;

	}
	#footermenu div:first-child{
		border-right:1px solid #666;
	}
	#footermenu div:first-child div{
		margin:0 50px 0 0;
		border:none;

	}
	#footermenu div:not(:first-child){
		padding:0 0 0 50px;
	}
	

}


/*

	FOOTER COOPORATE

------------------------------------------------------*/


footer #navArea{
	background:#000;
	margin:0 0 30px;
	padding:10px;
border-bottom:1px solid #666;

}


footer #snsArea{
	display:inline-block;
	vertical-align:middle;
	overflow:hidden;

}

footer{
	width:100%;
	text-align:center;
	font-size:12px;

	color:#fff;
	clear:both;

}



footer a{
	color:#fff;
	padding:2px 0;
	transition:all .2s;
}
footer a:hover{
	color:#D40F13;
}
footer #termLink{
	line-height:30px;
	padding:15px 0;
	font-size:12px;
	font-size:1.2rem;
	margin-bottom:15px;
}
footer #termLink a{
	display:block;
	
}
footer #termLink a:after{
	content: "\e600"; 
	font-family: 'iconFont';
	margin:0 0 0 5px;
	
}



footer br{
	display:none;
}

footer small{
		font-size:12px;
		font-size:1.2rem;
		padding-bottom:30px;}
		
footer #snsArea{
			margin:0 auto;
			
	}


@media only screen and (min-width:800px){
footer br{
	display:inherit;
}
	footer #termLink{
		line-height:inherit;
		padding:0;
		float:right;
		margin:0 20px;
		
	}
	footer #termLink a:before{
		content:"|";
		margin:0 10px;
	}
	footer #termLink a:first-child:before{
		content:none;
	}
	footer #termLink a{
		display:inline-block;
	}
	footer #termLink:first-child{
		float:right;
		font-size:12px;
		line-height:100px;
	}
	footer #termLink:last-child{
		float:left;
		font-size:11px;
		line-height:100px;
	}
	
/*	footer br{
		display:none;
	}
*/


	footer #navArea{
		/*margin:0 0 40px;*/
		height:40px;
		
	}
	

	footer small{

		float:left;
		margin:0 20px;
	}
}

/* clear fix
----------------------- */
.cf:after{content: "."; display: block; height: 0; font-size:0;	clear: both; visibility:hidden;}
.cf{display: inline-block;} 
/* Hides from IE Mac */
* html .cf{	height: 1%;}
.cf{display:block;}
/* End Hack */



