@charset "UTF-8";
/*---------------------------------
ローディングアニメーション用 styleSheet
----------------------------------*/

#splash {
	/* fixedで全面に固定 */
	position: fixed;
	z-index: 10000;
    top: 0;
    left: 0;
	width: 100%;
	height: 100%;
	background: #fefefe;
	text-align: center;
	color: #fff;
}

/* Loading画像中央配置 */
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loadingアイコンの大きさ設定 */
#splash_logo img {
	width: 500px;
}

@media (max-width:600px) {
	#splash_logo img {
		width: 300px;
	}
}

/* fadeUpをするアイコンの動き */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
