
@media  print, screen and (min-width: 900px) {
	div.concert_bw_flex a div.concert_b_sub.mv {
		opacity: 0;
	    -webkit-transform: translate3d(0,100px,0);
	    transform: translate3d(0,100px,0);
	    transition: all .6s cubic-bezier(.4,.8,.74,1) 0s;
	}
	div.concert_bw_flex a div.concert_b_sub.mv.act {
		opacity: 1;
	    -webkit-transform: translate3d(0,0,0);
	    transform: translate3d(0,0,0);
	    transition: all .6s cubic-bezier(.4,.8,.74,1) 0s;
	}
	
	div.concert_bw_flex a div.concert_w_sub.mv {
		opacity: 0;
	    -webkit-transform: translate3d(0,-100px,0);
	    transform: translate3d(0,-100px,0);
	    transition: all .6s cubic-bezier(.4,.8,.74,1) 0s;
	}
	div.concert_bw_flex a div.concert_w_sub.mv.act {
		opacity: 1;
	    -webkit-transform: translate3d(0,0,0);
	    transform: translate3d(0,0,0);
	    transition: all .6s cubic-bezier(.4,.8,.74,1) 0s;
	}
}

@media screen and (max-width: 899px) {
	div.concert_bw_flex a div.concert_b_sub.mv {
		opacity: 0;
	    -webkit-transform: translate3d(0,50px,0);
	    transform: translate3d(0,50px,0);
	    transition: all .6s cubic-bezier(.4,.8,.74,1) 0s;
	}
	div.concert_bw_flex a div.concert_b_sub.mv.act {
		opacity: 1;
	    -webkit-transform: translate3d(0,0,0);
	    transform: translate3d(0,0,0);
	    transition: all .6s cubic-bezier(.4,.8,.74,1) 0s;
	}
	
	div.concert_bw_flex a div.concert_w_sub.mv {
		opacity: 0;
	    -webkit-transform: translate3d(0,-50px,0);
	    transform: translate3d(0,-50px,0);
	    transition: all .6s cubic-bezier(.4,.8,.74,1) 0s;
	}
	div.concert_bw_flex a div.concert_w_sub.mv.act {
		opacity: 1;
	    -webkit-transform: translate3d(0,0,0);
	    transform: translate3d(0,0,0);
	    transition: all .6s cubic-bezier(.4,.8,.74,1) 0s;
	}
}

