@charset "UTF-8";
/* CSS Document */

#loaderContainer {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index:1000;
}
#loader {
	width: 100%;
	text-align: center;
	font-size: 12px;
	color: #000;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#bar {
	width: 100%;
	height: 12px;
	padding: 0px;
	margin-top: 10px;
	font-size: 1px;
	background-color: #E73D1D;
}
#bar span {
	display: block;
	width: 0;
	height: 12px;
	background-color: #fff;
	background-image: url(../images/loader.gif);
	background-repeat: repeat-x;
}

#loaderContainer p {
	position: absolute;
	top: 40%;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	display: none;
}
#loaderContainer p#load-text {
	font-size: 300%;
	display: block;
	z-index: 900;
}
#loaderContainer div.denkyu {
	position: absolute;
	top: 40%;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	display: none;
}


#introContainer {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	display: none;
	z-index:1000;
}
#introContainer #opening_logo {
	position: absolute;
	left: 50%;
	top: 20px;
	z-index: 100;
	width: 960px;
	margin-left: -480px;
}
#introContainer #slides {
	width: 100%;
	height:100%;
	background-color:#000;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
}
#introContainer .slide {
	position: absolute;
	width: 960px;
	height:720px;
	left: 50%;
	bottom: 0;
	margin-left: -480px;
}
#introContainer .slide img {
	position: absolute;
}

#skip_cursor{
	background: #FFFFFF;
	border-bottom: 2px solid #000000;
	border-left: 2px solid #000000;
	border-top: 2px solid #000000;
	bottom: 50%;
	color: #000000;
	cursor: pointer;
	overflow: hidden;
	padding: 10px 20px;
	position: absolute;
	right: 0;
	text-align: center;
	transition: all 0.2s ease-out 0s;
	z-index: 1;

	-webkit-transition: 0.2s ease-out;
	-moz-transition: 0.2s ease-out;
	-o-transition: 0.2s ease-out;
	transition: 0.2s ease-out;

}


#skip_cursor:hover{
	padding: 10px 30px 10px 20px;
}