/* フェードインアニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

/* 順番に表示させるための遅延設定 */
.hero-main-copy.fade-in {
    animation-delay: 0.5s;
}

.hero-sub-copy.fade-in {
    animation-delay: 1.2s;
}

.hero-info.fade-in {
    animation-delay: 1.9s;
}