@charset "utf-8";
/* CSS Document */

/* pc横・タブレット横 */
.top-game {
    display: block;
    margin-top: 0 !important;
    width: 100%;
    height: 800px;
}

/* タブレット縦 */
@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .top-game {
        display: block;
        margin-top: 0 !important;
        width: 100%;
        height: 500px;
    }
}

/* タブレット横 */
@media screen and (min-width: 480px)and (max-width: 1400px) and (orientation: landscape) {
    .top-game {
        display: block;
        margin-top: 0 !important;
        width: 100%;
        height: 550px;
    }
}

/* スマホ縦 */
@media only screen and (max-width: 480px) {
    .top-game {
        display: block;
        margin-top: 0 !important;
        width: 100%;
        height: 300px;
    }
}

/* スマホ横 */
@media only screen and (max-width: 932px) and (orientation: landscape) {
    .top-game {
        display: block;
        margin-top: 0 !important;
        width: 100%;
        height: 330px;
    }

    nav {
        width: 80%;
    }
}