@charset "utf-8";

/*----------------------------------------------------
	LatestInfo
----------------------------------------------------*/
.animation {
	overflow: hidden;
	position: relative;
}
.animation .title {
	position: absolute;
	width: calc(100%/3.5);
	top: calc(100%/100);
	left: calc(100%/100.0);
	animation: 10s infinite fadein;
}
@media screen and (max-width: 480px){
	.animation .title {
		position: absolute;
		width: calc(100%/2.7);
		top: calc(100%/100);
		left: calc(100%/100.0);
		animation: 10s infinite fadein;
	}
}

@keyframes fadein {
	0%,
	40% {
	    opacity: 1;
	}
	60%,
	70% {
		opacity: 0;
	}
	90% { opacity: 1; }
}