@charset "UTF-8";
/* CSS Document */
html, body{
	text-align: center;
	color: #333;
	background: #fff;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}


/*ヘッダー
------------------------------------------*/
header{
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 99999;
	background: rgba(255,255,255,0.7);
	position: fixed;
	top: 0;
	left: 0;
}
header #header-area{
	width: 100%;
	margin: 0 auto;
	text-align: left;
}
@media (min-width:960px){
	header #header-area{
		width: 960px;
		margin: 0 auto;
		text-align: left;
	}
}
header h1{
	float: left;
	width: 40%;
}
header #nav{
	float: right;
	width: 50%;
}
header #nav li{
	margin: 0;
	padding: 0;
	float: left;
	width: 33%;
}
header img{
	width: 100%;
}



/*フッター
------------------------------------------*/
footer{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 99999;
	background: rgba(255,255,255,0.7);
}
footer #footer-area{
	width: 100%;
	margin: 0 auto;
	text-align: left;
}
@media (min-width:960px){
	footer #footer-area{
		width: 960px;
		margin: 0 auto;
		text-align: left;
	}
}



/*セクション
------------------------------------------*/
section{
	width: 100%;
	height: 100%;
	position: relative;
}


#index{
	width: 100%;
	background: url(../img/index/bg.png) 0 0 no-repeat;
	background-size: 100%;
}
#index img{
	width: 100%;
}