/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 27 2026 | 00:47:40 */
/* モバイル時にVKSlider非表示 */

@media (max-width: 768px) {

    .top-slider {
        display: none !important;
    }

}


/* モバイルヒーローを完全幅化 */

.mobile-hero {

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    width: 100vw;
    max-width: 100vw;

    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* 初期状態：PCでは非表示 */

.mobile-hero {
    display: none;
}

/* モバイル時だけ表示 */

@media (max-width: 768px) {

    .mobile-hero {
        display: block;
    }

}