@charset "UTF-8";

@media screen and (min-width:701px) {
    .pc {
        display: block !important;
    }

    .sp {
        display: none !important;
    }
}

@media screen and (max-width:700px) {
    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }
}