@charset "utf-8";

/*
************************************************************************
* スピナー
* @copyright Revolme Inc.
************************************************************************
*/

/* ################################################################################################ */
/* ## PC                         ################################################################## */
/* ################################################################################################ */
#spinner
{
	position:fixed;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	
	background-color:var(--body-background-color);

	opacity:1.0;
	transform:translateY(0%);
}
body.loaded #spinner
{
	animation-name:fncSplash;
	animation-duration:0.3s;
	animation-timing-function:ease;
	animation-iteration-count:1;
	animation-fill-mode:forwards;
}
@keyframes fncSplash
{
	0% {
		opacity:1;
		transform:translateY(0%);
	}
	100% {
		opacity:0;
		transform:translateY(-100%);
	}
}
#spinner > #spinner-wrapper
{
	
}
#spinner > #spinner-wrapper > .spinner.ball-spin-fade-loader > div
{
    background-color:var(--body-icon-color);
}


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

	
}

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