/* ------------
 * interior
 */
#interior {
    clear: both;
}

/* movie */
.movie {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
    .movie_wrap {
        position: relative;
    }
        .movie_play {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-image: url(../IMAGES/icon_play.svg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: 75px auto;
            opacity: 0.5;
            transition: opacity .5s;
        }
        .movie_play:hover {
            opacity: 1;
        }
        .movie_play.disabled {
            opacity: 0;
            pointer-events: none;
        }
        .switch_sound {
            position: absolute;
            right: 8px;
            bottom: 8px;
            width: 32px;
            height: 32px;
            display: none;
            background-image: url(../IMAGES/icon_volume_on.png);
            background-repeat: no-repeat;
            background-size: contain;
        }
        .switch_sound.mute {
            background-image: url(../IMAGES/icon_volume_off.png);
        }
@media screen and (min-width: 581px) and (max-width: 1169px) {
    .movie_play {
        background-size: 6.41vw auto;
    }
}


/* overview */
.overview {
    /* position: relative; */
    max-width: 1256px;
    margin: 0 auto;
    padding: 0 43px;
    overflow-x: hidden;
}
@media screen and (min-width: 581px) and (max-width: 1169px) {
    .overview {
        padding: 0 3.68vw;
    }
}

/* overview: wrap */
.overview_wrap {

}
    .overview_btn {
        width: 330px;
        margin: 50px auto 0;
        padding-bottom: 36px;
        border-bottom: 1px solid #c1c1c1;
    }
        .overview_btn dl {
            text-align: center;
        }
            .overview_btn dt {
                font-size: 15px;
                line-height: 1.6;
                color: #343434;
            }
            .overview_btn dd {
                font-size: 18px;
                line-height: 1.6;
                color: #343434;
            }
        .overview_icon {
            width: 40px;
            height: 40px;
            margin: 24px auto 0;
            background-color: #c3002f;
            background-image: url(../IMAGES/arrow_white.svg);
            background-repeat: no-repeat;
            background-position: 55% 50%;
            background-size: 14px auto;
            border-radius: 50%;
        }
        .overview_icon:hover {
            background-color: #000;
        }
    .overview_link {
        margin-top: 80px;
        padding-left: 1%;
    }
        .overview_link a {
            position: relative;
            display: table;
            height: 44px;
            background-color:#c3002c;
            color: #fff;
            }
            .overview_link span {
                display: table-cell;
                padding: 0 46px 0 20px;
                font-size: 14px;
                line-height: 1.1;
                vertical-align: middle;
                white-space: nowrap;
            }
        .overview_link a:after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            display: block;
            width: 7px;
            height: 10px;
            margin-top: -5px;
            background-image: url(../IMAGES/arrow_white.png);
            background-repeat: no-repeat;
            background-position: right;
            background-size: auto 10px;
            transition: right .4s;
        }
        .overview_link a:hover {
            background: #920023;
        }
            .overview_link a:hover:after {
                right: 15px;
            }
@media screen and (min-width: 581px) and (max-width: 1169px) {

}

/* overview: modal */
.overview_modal {
    position: absolute;
    left: -100%;
    top: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    background-color: rgba(255,255,255,.8);
    opacity: 0;
    transition: opacity .5s;
    pointer-events: none;
}
.overview_modal.show {
    left: 0;
    pointer-events: auto;
}
.overview_modal.active {
    opacity: 1;
}
    .modal_wrap {
        position: relative;
        width: 67%;
        transform: translateX(67%);
        padding: 30px;
        background-color: #fff;
        box-shadow: 0 0 8px rgba(0, 0, 0, .3);
        transition: transform .5s;
    }
    .overview_modal.show .modal_wrap {
        transform: translateX(0);
    }
        .modal_close {
            position: absolute;
            top: 16px;
            right: 16px;
            padding-right: 40px;
            font-size: 16px;
            background-image: url(../IMAGES/icon_close.svg);
            background-repeat: no-repeat;
            background-position: right;
            background-size: auto 18px;
        }
        .modal_body {
            width: 80%;
            margin: 0 auto;
            padding-top: 30px;
        }
            .modal_image {
                aspect-ratio: 1200 / 660;
                background-image: url(../IMAGES/modal_img.jpeg);
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center;
            }
            .modal_title {
                position: relative;
                margin-top: 26px;
                padding: 22px 0 20px;
                font-size: 36px;
                line-height: 1.5;
                color: #343434;
                border-bottom: 1px dashed #c1c1c1;
            }
            .modal_title:before {
                border-top: 4px solid #c3002f;
                content: " ";
                left: 0;
                top: 0;
                position: absolute;
                width: 50px;
            }
            .modal_summary {
                margin-top: 18px;
                font-size: 14px;
                line-height: 1.75;
                color: #343434;
            }
@media screen and (min-width: 581px) and (max-width: 1169px) {

}



/* interiorView */
#interiorView {
    margin-top: 80px;
}