@charset "utf-8";
/*-----------------------------------------------
 * MOVIE
-------------------------------------------------*/
.subSecCont {
    padding: 0 0 min(calc(70 / var(--vw-min) * 100vw),70px);
}
@media screen and (max-width:768px){
    .subSecCont {
        padding-bottom: calc(120 / var(--vw-min) * 100vw);
    }
}
.movie__lists {
    display: flex;
    flex-wrap: wrap;
}
.movie__item {
    width: calc(100% / 2);
    position: relative;
    z-index: 1;
}
.movie__itemIn {
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}
.movieBtn {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;  
    overflow: hidden;
}
.movieBtn::before {
    content: "";
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: .3s ease;
}
.movie__play {
    width: min(calc(97 / var(--vw-min) * 100vw), 97px);
    height: min(calc(135 / var(--vw-min) * 100vw), 135px);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    margin: auto;
    background: url(../img/common/deco/deco_movieplay.png)no-repeat center/contain;
    transition: .3s ease;
}
@media screen and (max-width:768px){
    .movie__play {
        width: calc(97 / var(--vw-min) * 100vw);
        height: calc(135 / var(--vw-min) * 100vw);
    }
}
.movieBtn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: .3s ease;
}