@charset "UTF-8";/* CSS Document */#splash {	position: fixed;	width: 100%;	height: 100%;	z-index: 9999;	background: #ffffff;	text-align: center;}#splash_logo {	position: absolute;	top: 47.5%;	left: 50%;	transform: translate(-50%, -50%);}#splash_logo img {	display: block;	width:180px;}.fadeUp{	animation-name: fadeUpAnime;	animation-duration: 0.45s;	animation-fill-mode: forwards;	opacity: 0;}@keyframes fadeUpAnime{	from {		opacity: 0;		transform: translateY(50px);	}	to {		opacity: 1;		transform: translateY(0);	}}