
@charset "UTF-8";

@keyframes anime{
	0%, 50% {
		transform: rotate(5deg);
	}
	20%, 40% {
		transform: rotate(-10deg);
	}
	10%, 30% {
		transform: rotate(20deg);
	}
}

#ani+section .inner_item_img{
	position: relative;
}
#ani+section .inner_item_img:after{
	content: "";
	display: block;
	width: 100px;
	height: 141px;
	background: url(/common/upload_data/reformyasancojp/image/20230331091927.png) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 20px;
	right: -20px;
	animation: anime 3s linear infinite;
	transform: rotate(5deg);
	pointer-events: none;
}
@media screen and (max-width: 900px){
	#ani+section .inner_item_img:after{
		top: -50px;
		right: 10px;
		bottom: auto;
	}
}
@media screen and (max-width: 500px){
	#ani+section .inner_item_img:after{
		width: 60px;
	}
}