
#casts_wrapper_ver2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 200px;
}

#casts_wrapper_ver2 .movie-box {
    width: calc(100% / 2);
    overflow: hidden;
    position: relative;
    transition: all 0.2s;
}

#casts_wrapper_ver2 .movie-box:hover{
    opacity: .8;
} 
#casts_wrapper_ver2 .movie {
    position: relative;
    width: 100%;
    height: auto;
}

#casts_wrapper_ver2 .movie::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #000000b7, transparent 50%, transparent);
}
#casts_wrapper_ver2 .movie-box .data {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 2rem 50px;
    color:#fff;
    pointer-events: none;
    .newface{
        font-size:1.3rem;
        margin:0;
    }
    h3{
        font-weight: 400;
        font-size:2.6rem;
        margin:0;
        margin-bottom: 0.8rem;
        padding:0;
        letter-spacing: 0.05rem;
    }
    h3 a {
        pointer-events:auto;
        text-decoration: none;
        color: #fff; 
        border-bottom: 1px solid #fff ;
        padding-bottom: -1px;
    }
    .size{
        font-size: 1.4rem;
    }
    .schedule{
        font-size: 1.7rem;
        margin-top:0.8rem;
        .time{
            margin-left:0.8rem;
        }
    }
}
