@charset "UTF-8";

/* movie */

.movie_wrap {
    display: flex;
    justify-content: center;
    gap: 100px 50px;
    flex-wrap: wrap;
}

.movie_cnt {
    width: calc(50% - 25px);
}

.movie_link {
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 10px;
}

.movie_cnt iframe {
    width: 100%;
    height: 100%;
}


@media screen and (max-width:767px) {

    /* movie */

    .movie_cnt {
        width: 100%;
    }
}