@keyframes fadeInBottom{
    0%{
        transform: translateY(50%);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft{
    0%{
        transform: translateX(-10%);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-in-bottom{
    opacity: 0;
}

.inview .fade-in-bottom{
    animation:fadeInBottom 1s forwards;

}

.fade-in-left{
    opacity: 0;
}

.inview .fade-in-left{
    animation:fadeInLeft 1s forwards;

}

/* アニメーションタイミング */

.inview .delay-03{
    animation-delay: 0.3s;
}

.inview .delay-05{
    animation-delay: 0.5s;
}