<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*clearfix*/
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clearfixLegacy {
    _overflow: visible;
    _height: 1px;
    zoom: 1;
}

.clearfixLegacy:after {
    content: ".";
    display: block;
    visibility: hidden;
    clear: both;
    height: 0px;
    font-size: 0px;
}

@keyframes bounceAnimation {
    0% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    2.9% {
        transform: matrix3d(1.309, 0, 0, 0, 0, 1.309, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    5.81% {
        transform: matrix3d(1.39, 0, 0, 0, 0, 1.39, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    10.81% {
        transform: matrix3d(1.266, 0, 0, 0, 0, 1.266, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    15.82% {
        transform: matrix3d(1.089, 0, 0, 0, 0, 1.089, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    20.82% {
        transform: matrix3d(0.99, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    25.83% {
        transform: matrix3d(0.966, 0, 0, 0, 0, 0.966, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    45.85% {
        transform: matrix3d(1.003, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    65.87% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    85.89% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    100% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
}

@keyframes bounceAnimationRight {
    0% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate(-90deg);
    }

    2.9% {
        transform: matrix3d(1.309, 0, 0, 0, 0, 1.309, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate(-90deg);
    }

    5.81% {
        transform: matrix3d(1.39, 0, 0, 0, 0, 1.39, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate(-90deg);
    }

    10.81% {
        transform: matrix3d(1.266, 0, 0, 0, 0, 1.266, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate(-90deg);
    }

    15.82% {
        transform: matrix3d(1.089, 0, 0, 0, 0, 1.089, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate(-90deg);
    }

    20.82% {
        transform: matrix3d(0.99, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate(-90deg);
    }

    25.83% {
        transform: matrix3d(0.966, 0, 0, 0, 0, 0.966, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate(-90deg);
    }

    45.85% {
        transform: matrix3d(1.003, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate(-90deg);
    }

    65.87% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate(-90deg);
    }

    85.89% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate(-90deg);
    }

    100% {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate(-90deg);
    }
}

/*-----PC/SP switch-----*/
.s-on {
    display: none;
}

.spOnly {
    display: none;
}

.br--spOnly {
    display: inline;
}

.pcOnly {
    display: block;
}

.br--pcOnly {
    display: block;
}

@media screen and (max-width: 768px) {
    .s-on {
        display: block;
    }

    br.s-on {
        display: inline;
    }

    .s-off {
        display: none !important;
    }

    .spOnly {
        display: Block;
    }

    .br--spOnly {
        display: block;
    }

    .pcOnly {
        display: none;
    }

    .br--pcOnly {
        display: inline;
    }
}</pre></body></html>