/* Jumbotronアニメーション用CSS */

/* インラインstyleの背景画像を非表示にする */
.jumbotron {
    background-image: none !important;
    background-size: initial !important;
}

.jumbotron-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* モーション軽減設定時 */
@media (prefers-reduced-motion: reduce) {
    .jumbotron-canvas {
        display: none;
    }
    .jumbotron {
        background: linear-gradient(to bottom, #f8f9fc, #edf0f7) !important;
    }
}
