.movie-section-title{
    font-size: 0.4rem;
    text-align: center;
    margin-bottom: 30px;
}
.movie-list{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    max-width: 1100px;
    gap:50px;
    margin: 0 auto;
}
.movie{
    max-width: 525px;
    width: 100%;
    margin: 0 auto;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
}
.movie-title{
    text-align: center;
    font-size: 0.2rem;
    margin: 10px 0;
}
.movie-description{
    font-size: 0.18rem;
    letter-spacing: 0.06em;
    line-height: 2.2222222222;
}
.banner-wrapper {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    position: relative;
}
.banner-wrapper::before{
    content: "";
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    display: block;
    position: relative;
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background: none;
    position: absolute;
    background: url(/wp-content/themes/kuratomo2022/common/img/icon_play_01.svg) center center / contain no-repeat;
}
@media (max-width:768px) {
    .movie-list{
        flex-direction: column;
    }
    .movie-section-title{
        font-size: 0.28rem;
        margin-bottom: 15px;
    }
    .movie-description{
        font-size: 0.14rem;
    }
}