
/*banner slide*/

@keyframes show {
		from {
				opacity: 0;
		}
		to {
				opacity: 1;
		}
}

.top_top_area__bnr_rt02 .hide img{
	opacity: 0;
	transition: opacity 3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, transform 6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.top_top_area__bnr_rt02 .show img {
		display: block;
		-moz-animation: show 2s ease -2s infinite alternate;
		-webkit-animation: show 2s ease -2s infinite alternate;
		-o-animation: show 2s ease -2s infinite alternate;
		-ms-animation: show 2s ease -2s infinite alternate;
		animation: show 2s linear 0s;
}

