@charset "utf-8";
.effect-active {
	visibility: visible;
}
.effect-target {
	opacity: 0;
}
.effect-top {
	opacity: 0;
}
/* フェードイン */
.effect-active {
	animation: effect-fadeIn .5s ease-out both;
}
@keyframes effect-fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
/* ディレイ */
.delay01 {
	animation-delay: 0s !important;
}
.delay02 {
	animation-delay: .3s !important;
}
.delay03 {
	animation-delay: .5s !important;
}
.delay04 {
	animation-delay: .7s !important;
}
.delay05 {
	animation-delay: .9s !important;
}
.delay06 {
	animation-delay: 1.1s !important;
}
.delay07 {
	animation-delay: 1.3s !important;
}
.delay08 {
	animation-delay: 1.5s !important;
}
.delay09 {
	animation-delay: 1.8s !important;
}
.delay10 {
	animation-delay: 2s !important;
}
.delay11 {
	animation-delay: 2.2s !important;
}
.delay12 {
	animation-delay: 2.4s !important;
}
.delay13 {
	animation-delay: 2.6s !important;
}
.delay14 {
	animation-delay: 2.8s !important;
}
.delay15 {
	animation-delay: 3s !important;
}
/* 下から上にスライドイン */
.effect-active .effect-slide {
	animation: effect-slideIn .4s ease-in-out both;
}
@keyframes effect-slideIn {
	from {
		opacity: 0;
		translate: 0 16rem;
	}
	to {
		opacity: 1;
		translate: 0 0;
	}
}
/* 上から下にスライドイン */
.effect-active .effect-slide-t {
	animation: effect-slideIn-t .6s ease-in-out both;
}
@keyframes effect-slideIn-t {
	from {
		opacity: 0;
		translate: 0 -16rem;
	}
	to {
		opacity: 1;
		translate: 0 0;
	}
}
/* 25%OFF_矢印 */
.effect-active .plan_ttl::before {
	animation: down-arrow .6s ease-in-out both;
}
@keyframes down-arrow {
	from {
		opacity: 0;
		translate: 0 -24rem;
	}
	to {
		opacity: 1;
		translate: 0 0;
	}
}
/* フェードイン */
.effect-active .effect-fade-in {
	animation: effect-fadeIn .6s ease-in-out both;
}
/* ぽよぽよ弾むアニメーション */
.effect-active .poyopoyo {
	animation: poyopoyo 2s ease-out infinite;
	opacity: 1;
}
@keyframes poyopoyo {
	0%, 40%, 60%, 80% {
		scale: 1;
	}
	50%, 70% {
		scale: .9;
	}
}
/* CVボタン */
.effect-active .cv_poyo {
	animation: cv_poyo 1.8s ease-out infinite;
	opacity: 1;
}
@keyframes cv_poyo {
	0%, 40%, 60%, 80% {
		scale: 1;
	}
	50%, 70% {
		scale: .96;
	}
}
/* ふわっと拡大 */
.effect-active .expansion {
	animation: motion-expansion .5s ease-in-out both;
}
@keyframes motion-expansion {
	0% {
		scale: 1;
		opacity: 0;
	}
	60% {
		scale: 1.1;
		opacity: .9;
	}
	100% {
		scale: 1;
		opacity: 1;
	}
}
/* 王冠_ぴょこっと飛び出す */
.effect-active .crown img {
	animation: crown .5s ease-in-out both;
}
@keyframes crown {
	0% {
		scale: 0;
		opacity: 0;
	}
	60% {
		scale: 1.2;
		opacity: .9;
	}
	100% {
		scale: 1;
		opacity: 1;
	}
}
/* アンダーライン */
.effect-active .line_motion::after {
	animation: line-motion .5s ease-in-out both;
}
@keyframes line-motion {
	0% {
		width: 0;
	}
	100% {
		width: 102%;
	}
}
.solicit_in_2.effect-active span:nth-of-type(1)::after {
	animation-delay: .4s !important;
}
.solicit_in_2.effect-active span:nth-of-type(2)::after {
	animation-delay: .6s !important;
}
.solicit_in_2.effect-active span:nth-of-type(3)::after {
	animation-delay: .8s !important;
}
