@charset "utf-8";

/*
************************************************************************
* スプラッシュ
* @copyright Revolme Inc.
************************************************************************
*/

/* ################################################################################################ */
/* ## PC                         ################################################################## */
/* ################################################################################################ */
#splash
{
	position:fixed;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	
	background-color:#FFFFFF;
	transform: translate3d(0,0,0);
}
body.loaded #splash
{
	animation-name:fncSplash;
	animation-duration:0.5s;
	animation-timing-function:ease;
	animation-iteration-count:1;
	animation-fill-mode:forwards;
}

#splash-contents
{
	position:absolute;
	top:50%;
	left:50%;
	
	transform:translate(-50%, -50%);
}
#splash-contents .ball-grid-pulse > div
{
	background-color:#404040;
}

@keyframes fncSplash
{
	0% {
		opacity:1;
		transform:translateY(0%);
	}
	100% {
		opacity:1;
		transform:translateY(-100%);
	}
}


/* ################################################################################################ */
/* ## TAB                        ################################################################## */
/* ################################################################################################ */
@media screen and (max-width:1320px) {
	
}

/* ################################################################################################ */
/* ## スマホサイト用スタイル ###################################################################### */
/* ################################################################################################ */
@media screen and (max-width:640px) {
	
}
