/* ------------
 * interior
 */
 #interior {
    /* position: relative; */
    padding-bottom: 12vw;
}

/* movie */
.movie {
    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: 20vw auto;
            opacity: 0.5;
            transition: opacity .5s;
        }
        .movie_play.disabled {
            opacity: 0;
            pointer-events: none;
        }
        .switch_sound {
            position: absolute;
            right: 4vw;
            bottom: 4vw;
            width: 8vw;
            height: 8vw;
            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);
        }


/* overview */
.overview {

}

/* overview: wrap */
.overview_wrap {
    padding: 0 15px;
}
    .overview_btn {
        margin: 12vw auto 0;
        padding-bottom: 10vw;
        border-bottom: .99px solid #c1c1c1;
    }
        .overview_btn dl {
            text-align: center;
        }
            .overview_btn dt {
                font-size: 3.6vw;
                line-height: 1.6;
                color: #343434;
            }
            .overview_btn dd {
                font-size: 4.8vw;
                line-height: 1.6;
                color: #343434;
            }
        .overview_icon {
            width: 7.2vw;
            height: 7.2vw;
            margin: 6vw auto 0;
            background-color: #c3002f;
            background-image: url(../IMAGES/arrow_white.svg);
            background-repeat: no-repeat;
            background-position: 55% 50%;
            background-size: 2.7vw auto;
            border-radius: 50%;
        }
    .overview_link {
        margin-top: 12vw;
    }
        .overview_link a {
            position: relative;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
            height: 11.73vw;
            padding: 0 5.2vw;
            background-color:#c3002f;
            color: #fff;
        }
            .overview_link span {
                display: inline-block;
                padding-right: 4.8vw;
                font-size: 3.73vw;
                white-space: nowrap;
            }
            .overview_link a span:after {
                content: '';
                position: absolute;
                right: 5.2vw;
                top: 50%;
                display: block;
                width: 1.6vw;
                height: 2.8vw;
                margin-top: -1.4vw;
                background-image: url(../IMAGES/link_white.png);
                background-repeat: no-repeat;
                background-position: right;
                background-size: auto 2.8vw;
            }



/* overview: modal */
.overview_modal {
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    width: 100%;
    background-color: #fff;
    /* box-shadow: 0 0 8px rgba(0, 0, 0, .3); */
    transition: left .3s;
}
.overview_modal.active {
    left: 0;
}
    .modal_wrap {
        position: relative;
        padding: 7.2vw 4vw;
    }
        .modal_close {
            position: absolute;
            top: 3.73vw;
            right: 4.8vw;
            padding-right: 9.6vw;
            font-size: 4.26vw;
            background-image: url(../IMAGES/icon_close.svg);
            background-repeat: no-repeat;
            background-position: right;
            background-size: auto 4.6vw;
        }
        .modal_body {
            padding-top: 8vw;
        }
            .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: 6.93vw;
                padding: 4.8vw 0 3.2vw;
                font-size: 7.46vw;
                line-height: 1.5;
                color: #343434;
                border-bottom: .99px dashed #c1c1c1;
            }
            .modal_title:before {
                border-top: 4px solid #c3002f;
                content: " ";
                left: 0;
                top: 0;
                position: absolute;
                width: 13.33vw; // 50px
            }
            .modal_summary {
                margin-top: 4.8vw;
                font-size: 4.26vw;
                line-height: 1.75;
                color: #343434;
            }



/* interiorView */
#interiorView {
}