.movie-header{
    padding:165px 0px 0px 0px;
    background: #2B2B2B;
}
.movie-header > h2{
    width:100%;
    max-width:1000px;
    margin:auto;
    padding:0px
}
.movie-header img{width:100%;}
.movie-and-plays-contents{
    background: #2B2B2B;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.movie-and-plays-contents *{
    padding:0;
    margin:0;
}
.movie-and-plays-contents > div{
    width:100%;
    max-width:1000px;
    margin:auto;
}
.movie-and-plays-contents h3{
    color:#FFF;
    font-family: "Roboto";
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    text-transform: capitalize;
    margin:auto;
    padding:0px 20px 40px 20px;
}
.movie-and-plays-contents h3 > span{
    display: block;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 1.4px;
    padding-top:6px;
}
.news-contents{
    padding:0px 0px 60px 0px;
}
.news-contents h3{
    padding:0px 20px 30px 20px;
}
.news-box{
    max-width: 960px;
    margin:auto;
    padding:0px 20px;
}
.news-box > div{position: relative;}
.news-box img{
    width:100%;
    display:inline-block;
    vertical-align:bottom;
}
.news-box-row{
    max-width:960px;
    gap: 0px 60px;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    padding:30px 20px 0px 20px;
}
.news-box-row img{
    width:100%;
    display:inline-block;
    vertical-align:bottom;
}
.news-box-row .long{
    width:620px;
    position: relative;
}
.news-box-row .square{
    width:280px;
    position: relative;
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF4D;
    opacity: 0;
    pointer-events: none;
    border-radius: 10px;
}
.news-box > div:hover .poster-overlay,.news-box > div:active .poster-overlay{opacity: 1;}
.news-box-row > div:hover .poster-overlay,.news-box-row > div:active .poster-overlay{opacity: 1;}

.movie-contents{
    padding:0px 0px 80px 0px;
}
.plays-contents{
    background: #4B4B4B;
    padding:60px 0px 80px 0px;
}
.pv-contents{
    background: #000;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pv{
    width: 1000px;
    height: 562px; /* 16:9のアスペクト比に基づく高さ */
    position: relative;
    overflow: hidden;
}
.pv-contents video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    min-width: 1000px;
}
.movie-list,.plays-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.list{
    display: flex;
    max-width: 1000px;
    padding: 0px 20px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 40px 60px;
    align-self: stretch;
    flex-wrap: wrap;
    list-style:none;
}
.list li{
    width:280px;
    flex-shrink: 0;
}
.list img{width:100%;}

.poster-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.poster, .poster-hover {
    width: 100%;
    display: block;
}
.poster-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.list a:hover .poster-hover {opacity: 1;}
.list a:hover .poster {opacity: 0;}
@media screen and (max-width: 768px){
    .movie-header{padding:85px 0px 0px 0px;}
    .news-contents{padding:0px 0px 40px 0px;}
    .news-box{
        width:calc(85% - 40px);
        padding:0px 20px;
        max-width: 340px;
        min-width: 280px;
    }
    .news-box-row{
        width:calc(85% - 40px);
        padding:30px 20px 0px 20px;
        margin:auto;
        max-width: 340px;
        min-width: 280px;
        flex-wrap:wrap;
        gap:30px;
    }
    .movie-contents{padding-bottom:50px;}
    .plays-contents{padding:20px 0px 50px 0px;}
    .movie-and-plays-contents h3{
        font-size: 30px;
        line-height: 40px;
        text-transform: capitalize;
        padding:0px 20px 30px 20px;
        width: calc(85% - 40px);
        max-width: 340px;
        min-width: 280px;
    }
    .movie-and-plays-contents h3 > span{
        font-size: 12px;
        line-height: 14px;
        letter-spacing: 1.2px;
        padding:0px;
    }
    .list{
        justify-content: center;
        gap: 30px 60px;
        width:calc(85% - 40px);
        padding:0px 20px;
        max-width: 340px;
        min-width: 280px;
        margin:auto;
    }
    .list li{
        width:100%;
    }
    .pv{
        width: 540px;
        height: 304px; /* 16:9のアスペクト比で計算 */
    }
    .pv-contents video{
        width: 540px;
        min-width: 540px;
    }
}