@font-face {
    font-family: "SamsungOneKorean";
    src: url("../fonts/SamsungOneKorean-700.ttf");
    font-weight: normal;
    font-style: normal;
}

body {
    overflow: hidden;
    display: block;
}

.tour_frame {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}
.tour_frame iframe {
    width: 100%;
    height: 100%;
    margin: 0;
}

.scenario {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    visibility: hidden;
}

.scenario.active {
    z-index: 999;
    visibility: visible;
}

.scenario_modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: 100%;
    z-index: -1;
    visibility: hidden;
}

.scenario_modal.active {
    z-index: 100;
    visibility: visible;
}

.scenario_modal.bottom-fixed {
    top: unset;
    bottom: 0;
    transform: translate(-50%, 0);
    height: unset;
}

button {
    cursor: pointer;
    /* border: 3px dashed salmon; */
}

.border-dash {
    border: 10px dashed salmon;
}

.view_pc {
    display: block;
}

.view_mo {
    display: none;
}

@media (max-width: 768px) {
    .view_pc {
        display: none;
    }

    .view_mo {
        display: block;
    }

    .scenario_modal {
        width: 100%;
    }

    .scenario_modal.bottom-fixed {
        max-width: 90% !important;
        height: unset;
        aspect-ratio: 480 / 865 auto !important;
    }

    .pointer::after {
        padding: 5px 15px !important;
        font-size: 15px !important;
    }
}

img[src=""] {
    visibility: hidden;
}

.btn-back {
    display: none;
    position: fixed;
    top: 40px;
    left: 80px;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.btn-back.active {
    display: block;
}

.btn-back img {
    width: 100%;
}
.back_link{
    position: fixed;
    top: 30px;
    left: 77px;
    width: 117px;
    height: 117px;
}
.back_link::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 117px;
    height: 117px;
    border-radius: 45%;
    box-shadow: 40px 40px 100px 0px rgba(24, 48, 63, 0.20);
}
.back_link img{
    width: 100%;
}
@media screen and ( max-width: 768px) {
    .back_link{
        width: 17vw;
        height: auto;
    }
    .back_link::before{
        width: 17vw;
        height: 17vw;
    }
    .btn-back{
        top: 16px;
        left: 16px;
        border-radius: 100%;
    }
}