
@charset "UTF-8";

@keyframes anime{
	0%,20%,40%,50% {
		transform: translateY(0);
	}
	10%,30% {
		transform: translateY(-20px);
	}
}

#ani+section{
	overflow: visible;
}
#ani+section>.content_wrapper:after{
	content: "";
	display: block;
	width: 140px;
	height: 141px;
	background: url(/common/upload_data/reformyasancojp/image/20230331091925.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: -80px;
	right: -20px;
	animation: anime 3s linear infinite;
	pointer-events: none;
}
@media screen and (max-width: 1350px){
	#ani+section .content_wrapper:after{
		right: 30px;
	}
}
@media screen and (max-width: 500px){
	#ani+section .content_wrapper:after{
		width: 90px;
		height: 90px;
		right: 10px;
	}
}