/*
Name:    パララックス用CSS
Version: 2020.06.22
Author:  Seiki Nishijima
copyright (c)2008-2020 BeniPong! ALL right reserved.
*/
/*===========================================================================
-----------------------------------------------------------------------------
  パララックス設定　ここから
-----------------------------------------------------------------------------
===========================================================================*/
#background .parallax {
	display: block;
	filter: Alpha(opacity=0);
	opacity: 0;
	will-change: transform;
	transform: translate3d(0,0,0);
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
	transition: all 0.8s ease;
	clear: both;
	z-index: 10;
}
#background .parallax.paraOn {
	filter: Alpha(opacity=100);
	opacity: 1;
}
#background .parallax.paraDefo {
	margin-top: 50px;
	margin-bottom: -50px;
}
#background .parallax.paraDefo.paraOn {
	margin-top: 0;
	margin-bottom: 0;
}
/** スマートフォン用分岐 **/
@media screen and (max-width: 740px) {
	#background .parallax.paraDefo {
		margin-top: 30px;
		margin-bottom: -30px;
	}
	#background .parallax.paraDefo.paraOn {
		margin-top: 0;
		margin-bottom: 0;
	}
}
/*===========================================================================

  サイドスライド 設定　ここから

===========================================================================*/
#background .parallax.paraSR ,
#background .parallax.paraSL {
	-webkit-transition: all 1.5s ease;
	-moz-transition: all 1.5s ease;
	-o-transition: all 1.5s ease;
	transition: all 1.5s ease;
	z-index: 50;
}
#background .parallax.paraSR {
	margin-left: 160px;
	margin-right: -160px;
}
#background .parallax.paraSL {
	margin-left: -160px;
	margin-right: 160px;
}
#background .parallax.paraSR.paraOn ,
#background .parallax.paraSL.paraOn {
	margin-left: 0;
	margin-right: 0;
}
/*===========================================================================

  アルファブレンダー設定　ここから

===========================================================================*/
#background .parallax.paraAB {
	-ms-filter: blur(10px);
	filter: blur(10px);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
#background .parallax.paraAB.paraOn {
	-ms-filter: blur(0);
	filter: blur(0);
}

/*===========================================================================

  シアーテキスト設定　ここから

===========================================================================*/
#background .parallax.paraSLR ,
#background .parallax.paraSRL {
	margin-top: 100px;
	margin-bottom: -100px;
	-webkit-transform: skew(0,40deg);
	-moz-transform: skew(0,40deg);
	transform: skew(0,40deg);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#background .parallax.paraSRL {
	-webkit-transform: skew(0,-40deg);
	-moz-transform: skew(0,-40deg);
	transform: skew(0,-40deg);
}
#background .parallax.paraSLR.paraOn ,
#background .parallax.paraSRL.paraOn {
	margin-top: 0;
	margin-bottom: 0;
	-webkit-transform: skew(0,0);
	-moz-transform: skew(0,0);
	transform: skew(0,0);
}
/** 小さい画面用分岐 **/
@media screen and (max-width: 1200px) {
	#background .parallax.paraSLR ,
	#background .parallax.paraSRL {
		margin-top: 50px;
		margin-bottom: -50px;
		-webkit-transform: skew(0,0);
		-moz-transform: skew(0,0);
		transform: skew(0,0);
	}
	#background .parallax.paraSLR.paraOn ,
	#background .parallax.paraSRL.paraOn {
		margin-top: 0;
		margin-bottom: 0;
	}
}
/** スマートフォン用分岐 **/
@media screen and (max-width: 740px) {
	#background .parallax.paraSLR ,
	#background .parallax.paraSRL {
		margin-top: 30px;
		margin-bottom: -30px;
	}
	#background .parallax.paraSLR.paraOn ,
	#background .parallax.paraSRL.paraOn {
		margin-top: 0;
		margin-bottom: 0;
	}
}

/*===========================================================================

  設定　ここから

===========================================================================*/

/*------------------------------------
  設定　ここから
-------------------------------------*/

/*-----------------------------------*/

/** 小さい画面用分岐 **/
@media screen and (max-width: 1200px) {
}
/** スマートフォン用分岐 **/
@media screen and (max-width: 740px) {
}