/* 
===================================
LuXion - アニメーションスタイルシート
Version: 1.0
Author: 麓光星
Website: https://luxion.jp
===================================
目次:
1. フェードインアニメーション
2. スクロールアニメーション
3. ホバーアニメーション
4. ローディングアニメーション
===================================
*/

/* 1. フェードインアニメーション
===================================*/
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards 0.3s;
}

.fade-in-delay-more {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. スクロールアニメーション
===================================*/
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 3. ホバーアニメーション
===================================*/
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 4. レスポンシブアニメーション
===================================*/
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .fade-in-delay,
    .fade-in-delay-more,
    .reveal {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}