@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.ptn2 #splash
{
	background-color:rgba(0,0,0,0.3);
}

body.loaded #splash
{
	animation-name:fncSplash;
	animation-duration:0.3s;
	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 .loader-wrapper > div
{
	background-color:#404040;
}

.loader
{
	width:100px;
	height:100px;
	margin:0 auto;
	transform:translate(50%, 50%);
}
.loader .loader-wrapper > div
{
	position:absolute;
	top:50%;
	left:50%;
	background-color:#404040;
}

#splash-contents.loader
{
	width:0px;
	height:0px;
	margin:0 auto;
	transform:translate(50%, 50%);
}

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


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

	
}

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