.movie-wrap {
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}
.movie-wrap::before {
    content: '';
    padding-top: 56.25%;
    display: block;
}
.movie-wrap__movie {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.movie-wrap__image {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 1;
}
.movie-wrap__logo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.movie-wrap__logo::before {
    content: '';
    background: url('./img/icon_mono.png') no-repeat center center;
    width: 70px;
    height: 49px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 35px);
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.movie-wrap__logo:hover::before {
    background-image: url('./img/icon_red.png');
}
