@charset "utf-8";

/*--loading--*/

#loader {
    width: 100px;
    height: 100px;
    display: none;
    position: fixed;
    _position: absolute; /* IE6対策 */
    top: 50%;
    left: 50%;
    margin-top: -50px; /* heightの半分のマイナス値 */
    margin-left: -50px; /* widthの半分のマイナス値 */
    z-index: 100;
}

#fade {
    width: 100%;
    height: 100%;
    display: none;
    background-color: #FFFFFF;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 50;
}

#container{
	width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

/*--fullscreen--*/
#contentContainer{
display: none;
position: relative;
top: 0;
left: 0;
background: #999;
}
#background{
  z-index: -9999;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
#background img{
  position: absolute;
  top: 0;
  left: 0;
  min-width:960px;
  width:100%;
  height:auto;
  min-height:100%;
}

/*--header--*/

#header_box{
	width: 860px;
	margin: 0 auto;
}

header{
	position: absolute;
	width: 860px;
	height: 400px;
	top: 45%;
	margin: -225px auto auto auto;
	text-align: center;
}

#main_title{
	position: absolute;
	left: 50%;
	margin-left:-400px;
	margin-bottom: 20px;
	width: 800px;
	height: 200px;
}

header h1{
	position: absolute;
	top: 0px;
	width: 750px;
	height: 120px;
	left: 50%;
	margin-left: -375px;
}


header h2{
	position: absolute;
	top: 150px;
	width: 680px;
	height: 75px;
	left: 50%;
	margin-left: -340px;
}

header h3{
	position: absolute;
	bottom: 0;
	width: 680px;
	height: 75px;
	left: 50%;
	margin-left: -340px;
}

header nav{
	position: absolute;
	width: 800px;
	height: 160px;
	text-align: center;
	bottom: 0;
	left: 50%;
	margin-left: -400px;
}

header ul li{
	display:inline-block;
	margin: 0 10px;
	padding: 5px;
	border-radius: 50%;
	border: 3px solid #ffffff;
}

header ul li a{
	display: table-cell;
	vertical-align: middle;
	background: #ffffff;
	color: #333333;
	letter-spacing: 2px;
	font-weight: bold;
	font-size: 18px;
	text-decoration: none;
	width: 120px;
	height: 120px;
	border-radius: 60px;
	opacity: 0.9;
	transition: all 0.3s linear;
}

header ul li a:hover{
	opacity: 1.0;
	background: #006400;
	color: #ffffff;
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}


/*--footer--*/

footer{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100px;
	min-width: 960px;
	background-color: #fffaf0;
	box-shadow: 0px -1px 2px 2px rgba(0,0,0,0.4);
	z-index: 15;
}
