@charset "utf-8";
/* CSS Document */

#banner_area {
	width: 100%;
	direction: rtl;
	text-align: center;
	background-image: url("../img/banner_bk.png");
	background-size: 100% 100%;
}
#banner_box {
	display: inline-block;
	position: relative;
	width: 100%;
}
#img_slide_box {
	display: block;
	width: 100%;
}
.img_slide {
	display: block;
	position: absolute;
	width: 0;
	/*height: 50%;*/
	left: 100%;
	top: 0;
}
.slide_in {
	animation-name: slide_in;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}
.slide_out {
	animation-name: slide_out;
	animation-duration: 0.5s;
}

@keyframes slide_in {
	0%   {left: 100%; top:0; width: 0; height: 100%}
	100% {left:0; top:0; width: 100%; height: 100%}

}
@keyframes slide_out {
	0%   {left: 0; top:0; width: 100%; height: 100%}
	100% {left:0; top:0; width: 0; height: 100%}
}

/*
@media screen and (max-width: 1020px) {
	#webinfo_block { padding: 0 5% }
	#ctr_stripe p {font-size: 20px }
}
*/

