@charset "UTF-8";
/* CSS Document */
/*******************************
 reset
 default
 function
*******************************/
/*******************************
 reset
*******************************/
h1,h2,h3,ul,p{margin:0;}
ul{padding:0;}
a{text-decoration:none;}
li{list-style-type:none;}



/*******************************
 default
*******************************/
.fl{float:left;}
.fr{float:right;}

#wrapper{
	width:100%;
	height:auto;
	min-width:980px;
	margin:0 auto;
	background-color:#e9e9e9;
	position:relative;
	top:0px;left:0px;
}

.main{
	width:100%;
	height:100%;
}

.centered{
}

.background-image{
	max-height:1080px;
	overflow:hidden;
	position:absolute;
	top:0px;left:0px;
	z-index:-1;
}



/*******************************
 function
 	|--is-hover-fade / マウスオーバーアニメーション　FadeIn Out
*******************************/
.is-hover-fade{
	-webkit-transition:all 0.25s ease;
	transition:all 0.25s ease;
}

.is-hover-fade:hover{
	opacity:0.7;
}