.img_hover:hover {
    transition: .5s;
    opacity: .85;
    filter: brightness(110%);
}


/* --------------------------
       Bnr
----------------------------*/

.bt_bnr_wrap .bnr_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* --------------------------
       Modal
----------------------------*/
.tp_hero_movie {
}
.tp_hero_movie a {
    position: relative;
}
.tp_hero_movie a:before {
    content: '';
    background: url(../img/common/btn_play.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.tp_hero_movie a figure img {
    opacity: .5;
}
.tp_hero_movie a:hover figure img {
    transition: all .5s ease;
    opacity: 1;
    transform: scale(1.1);
}
.modal_containts {
	z-index: 10;
}
.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 1000;
    overflow: auto;
}
.modal__bg {
    height: 100%;
    position: absolute;
    width: 100%;
	/* background: rgba(0, 0, 0, 0.9); */
    z-index: -1;
}
.modal a.js-modal-close {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
}
.modal a.js-modal-close:hover {
    transition: .5s;
    transform: translate(-50%, -50%) rotate(360deg);
}
.modal a.js-modal-close img {
    width: 95px;
    height: 95px;
}
.modal__content {
    left: 50%;
    position: absolute;
    top: 45%;
    transform: translate(-50%,-50%);
    max-width: 850px;
    width: 100%;
}


/* pc
===================================== */
@media screen and (min-width: 769px) {
    .pc_only {
        display: block;
    }
    .sp_only {
        display: none;
    }

    /* --------------------------
       TOP
    ----------------------------*/
    .bt_bnr_wrap {
        margin-top: 100px;
    }
    .bt_bnr_wrap .bnr_item {
        width: 17vw;
    }
    .bt_bnr_wrap .bnr_item:not(:last-child) {
        margin-right: 20px;
    }

    .modal__content {
        max-height: 475px;
        height: 100%;
    }
}


/* sp
===================================== */
@media screen and (max-width: 768px) {
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }

    /* --------------------------
       TOP
    ----------------------------*/
    .bt_bnr_wrap {
        margin: 10vw auto 0;
        width: 88.8vw;
        position: relative;
    }
    .bt_bnr_wrap .bnr_item {
        width: 48%;
    }
    .bt_bnr_wrap .bnr_item:nth-child(even) {
        margin-left: 4%;
    }
    .bt_bnr_wrap .bnr_item:nth-child(n+3) {
        margin-top: 3vw;
    }

    /* --------------------------
       NEWS
    ----------------------------*/
    #news .bl_article .movie_wrap {
        position: relative;
        height: 0;
        padding: 30px 0 56.25%;
        overflow: hidden;
    }
    #news .bl_article .movie_wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}