@charset "utf-8";

/* CSS Document */

.movie_top_banner {
    max-width: 1100px;
    margin: 0 auto 40px auto;
}

.movie_top_banner img {
    width: 100%;
}

.movie_top_banner ul li:first-child {
    width: 98%;
    margin: 0 1%;
}

.movie_top_banner ul li:nth-child(n+2) {
    float: left;
    width: 48%;
    margin: 1%;
}

.container {
    /*margin: 0 auto 40px auto!important;*/
}

#movie {
    text-align: center;
    padding: 4% 0 5%;
    color: #fff;
    background: rgba(1, 1, 1, 0.8);
}

.movie_list li {
    float: left;
    width: calc(96% / 2);
    box-sizing: border-box;
    margin: 1%;
    border: 1px solid #333;
    padding: 1%;
}

.movie_list li iframe {
    width: 100%
}

.movie_list li h3 {
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: center;
}

.movie_list li h3 span {
    color: #ccc;
    display: block;
    font-size: 0.8rem;
}

@media screen and (max-width: 680px) {
    .movie_list li h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
}

@media screen and (max-width: 480px) {
    .movie_top_banner {
        width: 98%;
        margin: 0 auto 20px auto;
    }
    .movie_top_banner ul li:first-child {
        width: 99%;
        margin: 1% 0.5%;
    }
    .movie_top_banner ul li:nth-child(n+2) {
        width: 99%;
        margin: 1% 0.5%;
    }
    .movie_list li {
        float: none;
        width: 100%;
        margin: 1% 0 2%;
    }
    .movie_list li iframe {
        height: 200px;
    }
}