@charset "utf-8";


#contents1 h3,
#contents1 p.ja_min,
#contents1 a,
#contents1 p.foot{
	opacity: 0;
}
#contents1.active h3{
	animation: fuwa .6s ease-in-out .8s forwards;
}
#contents1.active p.ja_min{
	animation: fuwa .6s ease-in-out 1.3s forwards;
}
#contents1.active a{
	animation: fuwa .6s ease-in-out 2s forwards;
}
#contents1.active p.foot{
	animation: fuwa .6s ease-in-out 2.7s forwards;
}

#contents2,
#contents3{
	opacity: 0;
}
#contents2.active,
#contents3.active{
	animation: fuwa .6s ease-in-out 0s forwards;
}
@keyframes fuwa {
	0%{
		opacity: 0;
		transform: translateY(25px);
	}
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}