@import url('base.css');
@import url('auth.css');
@import url('homePage.css');
@import url('homePageHorizontal.css');
@import url('homePageExtremeScreen.css');
@import url('commonMediaQuery.css');

@media screen and (min-width: 1200px) {
    body .homepage {
        display: none !important;
    }
}
@media screen and (max-width: 1199px) {
    body .homepage-xl {
        display: none !important;
    }
}
@media screen and (max-width: 767px){
    .top-page img.pc {
        display: none !important;
    }
}
@media screen and (min-width: 768px) {
    .top-page img.mb {
        display: none !important;
    }
}

@media screen and (orientation: portrait) {
    body .homepage-orientation {
        display: none !important;
    }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
    body .homepage {
        display: none !important;
    }
    body .homepage-orientation {
        display: block !important;
    }
}
@media screen and (min-width: 1025px) and (orientation: landscape) {
    body .homepage-orientation {
        display: none !important;
    }
}
