/* アニメーションの初期状態：少し下にいて透明 */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

/* 画面内に入った時の状態 */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* カードごとに時間差（ディレイ）をつける設定 */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
