/*
 * animate-min.css — animate.css (95KB) から実際に使用する2アニメーションのみ抽出
 * 使用クラス: animate__animated, animate__fadeIn, animate__fadeInUp
 */

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
}

.animate__animated {
    animation-duration: var(--animate-duration);
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate__fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}
