@charset "utf-8";

/*
************************************************************************
* スクロールインアニメーション
* @copyright Revolme Inc.
************************************************************************
*/

/* ################################################################################################ */
/* ## PC						 ################################################################## */
/* ################################################################################################ */
.chk-in-window
{
	filter:alpha(opacity=0);
	-moz-opacity: 0.0;
	opacity: 0.0;
}
.chk-in-window.isInWindow
{
	animation-name:fncScrollIn;
	animation-duration:0.5s;
	animation-timing-function:ease;
	animation-iteration-count:1;
	animation-fill-mode:forwards;
}

@keyframes fncScrollIn
{
	0% {
		opacity:0;
		transform:translateY(2em);
	}
	100% {
		opacity:1;
		transform:translateY(0em);
	}
}

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

	
}

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