
.poyopoyo {
    animation: poyopoyo 2s ease-out infinite;
    opacity: 1;
}

/* ================================================
        アニメーション
==================================== */
@keyframes poyopoyo {

    0%,
    40%,
    60%,
    80% {
        transform: scale(1);
    }

    50%,
    70% {
        transform: scale(0.95);
    }
}