/* base */
.js_in ,
.js_List_in {
}
.js_in,
.js_List_in .Target {
	transition: 1.5s;
}
.js_List_in .Target.active {
}

/* Type */
.js_Fadein {
	opacity:0;
}
.js_Fadein.active {
	opacity:1;
}
.js_upin {
	transform: translate(0,50px);
}
.js_upin.active {
	transform: translate(0,0);
}
.js_downin {
	transform: translate(0,-50px);
}
.js_downin.active {
	transform: translate(0,0);
}
.js_Slidein {
	margin-left: -100px;
}
.js_Slidein.active {
	margin-left: 0;
}

/* MV */
.MV_Up span{
	opacity: 0;
	-webkit-transition: all .6s;
	transition: all .6s;
	transform: translateY(20px);
}
.MV_Up span.active{
	opacity: 1;
	transform: translateY(0);
}
.MV_Side{
	opacity: 0;
	-webkit-transition: all .6s;
	transition: all .6s;
	transform: translateX(-20px);
}
.MV_Side.active{
	opacity: 1;
	transform: translateX(0);
}

/* ------------------------------------------------------------------------
    animation
------------------------------------------------------------------------  */
.ani_fade_in {
	animation: is-fade-in 1.5s ease 0.8s both;
}
.ani_blur_in{
  animation: is-blur-in 1.5s ease 0s both;
}
@keyframes is_fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes is_blur_in {
  0% {
	opacity: 0;
	filter: blur(60px);
	-webkit-filter:blur(60px);
	-moz-filter:blur(60px);
	-o-filter:blur(60px);
	-ms-filter:blur(60px);
  }
  90% {
	opacity: 1;
	filter: blur(0);
	-webkit-filter:blur(0);
	-moz-filter:blur(0);
	-o-filter:blur(0);
	-ms-filter:blur(0);
  }
}

/* ------------------------------------------------------------------------
    Loading
------------------------------------------------------------------------  */      
.loadingWrap {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #fff;
	z-index: 1000;
}

/* ------------------------------------------------------------------------
    Pager
------------------------------------------------------------------------  */
.counter {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.counter li{
	margin: 5px;
}
.counter li a{
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #999;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	transition: all .5s;
}
.counter li:not(.active) a:hover{
	background: #d2d2d2;
	border: 1px solid #d2d2d2;
}
.counter li.active a{
	background: #ccc;
	cursor: default;
	border: 1px solid #ccc;
}
.counter li.active a:hover{
	opacity: 1;
}
.counter li.abridgement a{
	border:none;
	cursor: default;
}

/* ------------------------------------------------------------------------
    Paging
------------------------------------------------------------------------  */ 
ul.paging{
	list-style-type: none;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	display: table;
}

ul.paging::after{
	content: "";
	display: block;
	clear: both;
}
ul.paging > li{
	float: left;
}

ul.paging > li > *{
	margin: 5px;
	width: 40px;
	height: 40px;
	display: block;
	text-align: center;
	line-height: 40px;
	color: #000;
	text-decoration: none;
	transition: all .5s;
}
ul.paging > li > a:not(.active):hover{
	background: #d2d2d2;
	border: 1px solid #d2d2d2;
}
ul.paging > li > a, ul.paging > li > .active, ul.paging > li > [data-page]{
	border: 1px solid #999;
	border-radius: 5px;
}

ul.paging > li > .active{
	background-color: #CCC;
	border: 1px solid #ccc;
}

ul.paging > li > [data-page]{
	cursor: pointer;
}