/*=============================================
*
*  BIOGRAPHY
*
=============================================*/
#top {
	background: #000;
	height: 100%;
	padding: 0;
	position: relative;
	top: 0;
	z-index: 50;
}
#top #mainLogoArea {
	left: 0;
	position: relative;
	
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	transition-timing-function: cubic-bezier(.71,.08,.14,.88);
	-webkit-transition-timing-function: cubic-bezier(.71,.08,.14,.88);
}
#top #mainLogoArea.on {
	left: 100%;
}
#top #mainLogoArea.off {
	position: absolute;
}
/* ロゴ */
#top #mainLogo {
	height: 116px;
	left: 50%;
	margin: -124px 0 0 -143px; /* -66px */
	position: absolute;
	top: 50%;
	width: 286px;
	
	
	opacity: 0;
	-webkit-opacity: 0;
	transition: all 2s;
	-webkit-transition: all 2s;
	/*
	animation-fill-mode: forwards;


	animation-name: logo;	
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-duration: 3s;
	-webkit-animation-name: logo;
	*/
}
@media screen and (max-width:1000px){
	#top #mainLogo {
		margin: -58px 0 0 -143px;
	}
}
#top #mainLogo.on { 
	opacity: 1;
	-webkit-opacity: 1;
}
@keyframes logo {
	0% {
		opacity: 0;
		-webkit-opacity: 0;
	}
	42% {
		opacity: 0;
		-webkit-opacity: 0;
	}
	100% {
		opacity: 1;
		-webkit-opacity: 1;	
	}
}
:root #top #mainLogo.on {
	opacity: 1\0/;
}

#mainLogo a {
	cursor: default;
}

#loadingArea {
	height: 60px;
	left: 50%;
	margin: -100px 0 0 -40px;
	position: absolute;
	top: 50%;
	width: 60px;

    transform: scale(0.2);
    -webkit-transform: scale(0.2);
	transform-origin: center center;
	-webkit-transform-origin: center center;
	
	transition: all 3s;
	-webkit-transition: all 3s;
}
#loadingArea.on {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
}
#loadingArea.off {
	transition: all 2.5s;
	-webkit-transition: all 2.5s;
    transform: scale(0);
    -webkit-transform: scale(0);
}



.infoBtn {
	background: #000;
	border: 2px #fff solid;
	bottom: 10px;
	display: block;
	color: #fff;
	left: 50%;
	margin: 0 0 0 -125px;
	padding: 7px 0;
	position: fixed;
	text-align: center;
	text-decoration: none;
	width: 250px;
	
	border-radius: 3px;
	
	z-index: 6000;
}
