@charset "utf-8";

.entry .home_a h2 span {
	color: transparent;
	animation: blur 1s ease-out forwards;
	-webkit-animation: blur 1s ease-out forwards;
}

.entry .home_a h2 span:nth-child(1) {
	animation-delay: 1.1s;
	-webkit-animation-delay: 1.1s;
}
.entry .home_a h2 span:nth-child(2) {
	animation-delay: 1.2s;
	-webkit-animation-delay: 1.2s;
}
.entry .home_a h2 span:nth-child(3) {
	animation-delay: 1.3s;
	-webkit-animation-delay: 1.3s;
}
.entry .home_a h2 span:nth-child(4) {
	animation-delay: 1.4s;
	-webkit-animation-delay: 1.4s;
}
.entry .home_a h2 span:nth-child(5) {
	animation-delay: 1.5s;
	-webkit-animation-delay: 1.5s;
}
.entry .home_a h2 span:nth-child(6) {
	animation-delay: 1.6s;
	-webkit-animation-delay: 1.6s;
}
.entry .home_a h2 span:nth-child(7) {
	animation-delay: 1.7s;
	-webkit-animation-delay: 1.7s;
}
.entry .home_a h2 span:nth-child(8) {
	animation-delay: 1.8s;
	-webkit-animation-delay: 1.8s;
}

@keyframes blur {
	0% {text-shadow: 0 0 50px #fff; opacity: 0;}
	33% {text-shadow: 0 0 40px #fff;}
	67% {opacity: 1;}
	100% {text-shadow: 0 0 0px #fff;}
}

@-webkit-keyframes blur {
	0% {text-shadow: 0 0 50px #fff; opacity: 0;}
	33% {text-shadow: 0 0 40px #fff;}
	67% {opacity: 1;}
	100% {text-shadow: 0 0 0px #fff;}
}
