/* js trigger */
/* fv popup */
.p-firstView__popup--left > img,
.p-firstView__popup--right > img {
	display: none;
}

.p-firstView__popup--left > img.active,
.p-firstView__popup--right > img.active {
	display: block;
}

/* monthly title */
.p-firstView__popup--left, .p-firstView__popup--right, .p-monthly__imageTitle {
	opacity: 0;
  transform: scale(0.1);
  transition: 1s;
}
.p-firstView__popup--left.is-zoom, .p-firstView__popup--right.is-zoom, .p-monthly__imageTitle.is-zoom {
	opacity: 1;
  transform: scale(1);
}
.p-firstView__popup--right.is-zoom {
  transition-delay: .3s;
}

/* popup anime */
@keyframes fuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.anime-fuwa {
  animation: 2s fuwa infinite;
	animation-delay: 2s
}

.anime-fuwa-delay {
  animation: 2s fuwa infinite;
	animation-delay: 2.5s
}
