/* =============================================
   vrstaging LP - support_vrstaging.css
   クラス名はすべて vrstaging_ で始まる
   ブレークポイント: 640px (既存サイトに合わせる)
   ============================================= */

/* ---------- 変数 ---------- */
:root {
    --vr-bg:         #E8F2F4;
    --vr-bg-light:   #F6FBFC;
    --vr-teal:       #0096B1;
    --vr-orange:     #E58310;
    --vr-text:       #393939;
    --vr-text-light: #565656;
    --vr-label-grad: linear-gradient(90deg, #0096B1 0%, #1E9390 50%, #91C21F 100%);
    --vr-inner-max:  1140px;
}



/* ---------- 共通 ---------- */

.vrstaging{
    overflow-x: clip;
    .container#contents{
        width: auto;
        margin: unset;
    }
    .container.pan-wrap{
        @media screen and (max-width: 640px) {
            width: auto;
            margin: unset;
                #pan_sp{
                    overflow-x: auto;
                }
        }
    }
}


.vrstaging_kv,
.vrstaging_main{
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
}

.vrstaging_inner {
    max-width: 960px; 
    padding: 0 24px;
    margin: 0 auto;
    box-sizing: border-box;
}

.pc_only{
    @media screen and (max-width: 640px) {
        display: none!important;
    }
}
.sp_only{
    @media screen and (min-width: 641px) {
        display: none!important;
    }
}


/* セクションラベル (ABOUT, GALLERY …) */
.vrstaging_section_label {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.5;
    background: var(--vr-label-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 auto 20px;
    width: fit-content;
    @media screen and (max-width: 640px) {
        font-size: 14px;
    }
}

/* セクション見出し */
.vrstaging_section_heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--vr-text);
    line-height: 1.5;
    margin: 0 0 56px;

    @media screen and (max-width: 640px) {
        font-size: 22px;
        /* margin-bottom: 32px; */
    }
}

/* =============================================
   KV
   ============================================= */
.vrstaging_kv {
    background: var(--vr-bg-light);
    overflow: hidden;
    display: flex;
    min-height: 482px;

    @media screen and (max-width: 768px) {
        min-height: unset;
    }
}

.vrstaging_kv_inner {
    padding-top: 48px;
    width: 100%;
    display: flex;
    align-items: stretch;

    @media screen and (max-width: 640px) {
        flex-direction: column;
        padding-top: unset;
    }
}

.vrstaging_kv_text {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 左パディングをページグリッド（max-width:1200px 中央寄せ）に合わせる */
    padding: 86px 64px 86px max(40px, calc((100vw - var(--vr-inner-max)) / 2));
    box-sizing: border-box;

    @media screen and (max-width: 640px) {
        flex: none;
        padding: 48px 24px 48px;
        /* background: #eef8fa; */
    }
}

.vrstaging_kv_tagline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 24px;
    align-self: flex-start;
    color: var(--vr-text);
    box-shadow: 2px 4px 24px rgba(87, 136, 145, 0.24);

    /* @media screen and (max-width: 640px) { */
    @media screen and (max-width: 768px) {
        font-size: 16px;
        margin: 0 0 20px;
    }
}

.vrstaging_kv_tagline_em {
    background: var(--vr-teal);
    color: #fff;
    border-radius: 999px;
    padding: 2px 12px;
    font-style: normal;
    @media screen and (max-width: 768px) {
        padding: 2px 10px;
    }
}

.vrstaging_kv_tagline_small {
    font-size: 16px;
    @media screen and (max-width: 768px) {
        font-size: 14px;
    }
}


.vrstaging_kv_heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--vr-text);
    margin: 0 0 24px;

    @media screen and (max-width: 768px) {
        font-size: 28px;
        margin: 0 0 20px;
        line-height: 1.6;
    }
}

.vrstaging_kv_heading_colored {
    color: var(--vr-teal);
    font-weight: 900;
}

.vrstaging_kv_desc {
    font-size: 16px;
    color: var(--vr-text-light);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;

    @media screen and (max-width: 768px) {
        font-size: 14px;
    }
}

.vrstaging_kv_photo {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    border-radius: 16px 0 0 16px;
    background: #d8e8ec;

    @media screen and (max-width: 640px) {
        flex: none;
        border-radius: unset;
        aspect-ratio: 375 / 339;
    }
}

.vrstaging_kv_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =============================================
   SERVICE
   ============================================= */
.vrstaging_service {
    background: var(--vr-bg-light);
    padding: 104px 0 80px;

    @media screen and (max-width: 640px) {
        padding: 64px 0 44px;
    }
}

.vrstaging_service_heading{
    font-size: 32px;
    @media screen and (max-width: 640px) {
        font-size: 26px;
    }
}

.vrstaging_pre_label {
    text-align: center;
    font-size: 18px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
    padding: 6px 28px;
    margin: 0 auto 10px;
    font-weight: 700;
    box-shadow: 2px 4px 24px rgba(87, 136, 145, 0.24);
    position: relative;
    white-space: nowrap;
    @media screen and (max-width: 640px) {
        letter-spacing: 0;
        font-size: 14px;
        padding: 2px 6px;
    }
    &::after{
        content: "";
        display: block;
        position: absolute;
        bottom: -9px;
        width: 8px;
        height: 10px;
        background-color: #fff;
        clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
        @media screen and (max-width: 640px) {
            bottom: -6.5px;
            width: 5.6px;
            height: 7px;
        }
    }
}

.vrstaging_pre_label em {
    font-style: normal;
    font-size: 20px;
    color: var(--vr-orange);
    font-weight: 800;
    @media screen and (max-width: 640px) {
        font-size: 16px;
    }
}

.vrstaging_section_title_wrap {
    position: relative;
    text-align: center;
    margin: 12px 0 78px;
    padding: 65px 0 0;
    @media screen and (max-width: 640px) {
        margin: 16px 0 48px;
        padding: 36px 0 0;
    }
}

.vrstaging_section_bg_text {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 160px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    opacity: 0.1;
    background: var(--vr-label-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    @media screen and (max-width: 640px) {
        font-size: 82px;
        top: -8px;
    }
}

.vrstaging_section_badge {
    display: inline-block;
    background: var(--vr-teal);
    color: #fff;
    border-radius: 999px;
    padding: 6px 32px;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
    @media screen and (max-width: 640px) {
        font-size: 14px;
        padding: 4px 16px;
        margin: 0 0 16px;
    }
}

.vrstaging_section_title_wrap .vrstaging_section_heading {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.vrstaging_service_cards {
    display: flex;
    gap: 16px 8px;

    @media screen and (max-width: 640px) {
        flex-direction: column;
    }
}

.vrstaging_service_card {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 32px 32px 40px;
    text-align: center;
    box-shadow: 2px 4px 24px rgba(87, 136, 145, 0.24);
    font-feature-settings: "palt";

    @media screen and (max-width: 640px) {
        padding: 40px 38.5px;
    }
}

.vrstaging_service_card_img {
    /* height: 200px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;

    @media screen and (max-width: 640px) {
        /* height: 160px; */
    }
}

.vrstaging_service_card_img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.vrstaging_service_card_title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--vr-text);
    margin: 0 0 10px;
    @media screen and (max-width: 640px) {
        font-size: 20px;
    }
}

.vrstaging_service_card_desc {
    font-size: 16px;
    font-weight: 600;
    color: var(--vr-text-light);
    line-height: 1.8;
    margin: 0;
    @media screen and (max-width: 640px) {
        font-size: 14px;
    }
}

/* =============================================
   ABOUT
   ============================================= */
.vrstaging_about {
    background: var(--vr-bg-light);
    padding: 80px 0 160px ;

    @media screen and (max-width: 640px) {
        padding: 44px 0 88px;
    }
}

.vrstaging_about_heading {
    margin-bottom: 40px;
}

.vrstaging_about_tabs_wrap {
    margin-bottom: 32px;
    @media screen and (max-width: 640px) {
        margin-bottom: 16px;
    }
}

.vrstaging_about_tabs {
    box-shadow: 2px 4px 24px rgba(87, 136, 145, 0.24);
    display: flex;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: #fff;
    border-radius: 999px;
    gap: 8px;
    /* width: fit-content; */
    width: 100%;
    margin: 0 auto; 
    @media screen and (max-width: 640px) {
        gap: 4px; 
    }
}


.vrstaging_about_tab {
    flex: 1;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 8px;
    align-items: center;
    padding: 10px 28px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    color: var(--vr-text-light);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    user-select: none;

    @media screen and (max-width: 640px) {
        padding: 8px 14px;
        font-size: 12px;
        line-height: 1.25;
    }
}

.vrstaging_about_tab:hover {
    color: var(--vr-teal);
}

.vrstaging_about_tab.active {
    background: var(--vr-teal);
    color: #fff;
    font-weight: 700;
    .vrstaging_tab_icon{
        background: #ffffff;
    }
}

.vrstaging_tab_icon {
    display: block;
    height: 17px;
    width: 21px;
    background: #565656;
    -webkit-mask-image: url(../image/icon_kira.svg);
    mask-image: url(../image/icon_kira.svg);
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    @media screen and (max-width: 640px) {
        display: none;
    }
}
.vrstaging_tab_icon_kagu {
    -webkit-mask-image: url(../image/icon_kagu.svg);
    mask-image: url(../image/icon_kagu.svg);
}

.vrstaging_about_panels_wrap {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    filter: drop-shadow(2px 4px 24px rgba(87, 136, 145, 0.24));
    margin-bottom: 96px;
    @media screen and (max-width: 640px) {
        margin-bottom: 72px;
    }
}

.vrstaging_about_panel {
    display: none;
}

.vrstaging_about_panel.active {
    display: block;
}

.vrstaging_about_main_img {
    width: 100%;
    aspect-ratio: 960 / 537;
    overflow: hidden;
    background: #d0dfe3;

    @media screen and (max-width: 640px) {
        aspect-ratio: 327/217;
    }
}

.vrstaging_about_main_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vrstaging_about_caption {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px 27px;
    @media screen and (max-width: 640px) {
        padding: 16.5px 16px;
    }
}

.vrstaging_about_badge {
    aspect-ratio: 67/39;
    width: 67px;
    height: auto;
    display: block;
    flex-shrink: 0;
    @media screen and (max-width: 640px) {
        width: 58px;
    }
}

.vrstaging_about_caption p {
    font-size: 16px;
    color: var(--vr-text-light);
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
    @media screen and (max-width: 640px) {
        line-height: 1.4;
        font-size: 12px;
        font-weight: 500;
    }
}

.vrstaging_about_rooms_title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--vr-text);
    margin: 0 0 16px;

    @media screen and (max-width: 640px) {
        font-size: 18px;
    }
}

.vrstaging_about_rooms_line {
    display: block;
    width: 52px;
    height: 5px;
    background: var(--vr-teal);
    margin: 0 auto 48px;
    @media screen and (max-width: 640px) {
    margin: 0 auto 32px;
    width: 41px;
    height: 4px;
    }
}

.vrstaging_about_rooms_grid {
    display: flex;
    gap: 32px;

    @media screen and (max-width: 640px) {
        flex-direction: column;
        gap: 24px;
    }
}

.vrstaging_about_room_fig {
    flex: 1;
    margin: 0;
}

.vrstaging_about_room_fig img {
    width: 100%;
    aspect-ratio: 464/313;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    background: #d0dfe3;
    @media screen and (max-width: 640px) {
        aspect-ratio: 327/221;
    }
}

.vrstaging_about_room_fig figcaption {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    color: var(--vr-text-light);
    margin-top: 16px;
    @media screen and (max-width: 640px) {
        margin-top: 8px;
        font-size: 16px;
    }
}

/* =============================================
   GALLERY
   ============================================= */
.vrstaging_gallery {
    overflow-x: clip;
    background: var(--vr-bg);
    padding: 128px 0;

    @media screen and (max-width: 640px) {
        padding: 72px 0;
    }

    .splide__track{
        overflow: visible;
    }

    .vrstaging_inner{
        position: relative;
        &::before{
            content: "";
            display: block;
            background-image: url(../image/straddling01.png);
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            width: 181px;
            height: 175.56px;
            position: absolute;
            top: calc(-84px - 128px);
            right: 24px;
            @media screen and (max-width: 640px) {
                width: 79px;
                height: 76.63px;
                top: calc(-40px - 72px);
                right: 32px;
            }
        }
    }

}

.vrstaging_gallery_desc { 
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--vr-text-light);
    line-height: 1.6;
    margin: -24px 0 56px;

    @media screen and (max-width: 640px) {
        font-size: 14px;
        margin: -32px 0 56px;
    }
}

.vrstaging_gallery_slider_outer {
    position: relative;
    max-width: 1263px;
    margin: 0 auto;
}

.vrstaging_gallery_slide {
    box-sizing: border-box;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    background: #fff;
    filter: drop-shadow(2px 4px 24px rgba(87, 136, 145, 0.24));
    border-radius: 8px;
    overflow: hidden;
}

.vrstaging_gallery_slide.is-active {
    opacity: 1;
}

.vrstaging_gallery_caption {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 16px 24px; 
    text-align: center;
    color: var(--vr-text-light);
    box-sizing: border-box;
    min-height: 90px;
    @media screen and (max-width: 640px) {
        padding: 16px;
        min-height: 66px;
    }
}

.vrstaging_gallery_label{
    font-size: 18px;
    font-weight: 800;
    @media screen and (max-width: 640px) {
        font-size: 14px;
    }
}
.vrstaging_gallery_text{
        font-size: 16px;
        font-weight: 600;
    @media screen and (max-width: 640px) {
        font-size: 12px;
        font-weight: 500;
        text-align: left;
        line-height: 1.4;
    }
}


/* Before/After比較スライダー */
.vrstaging_compare {
    position: relative;
    overflow: hidden;
    /* border-radius: 8px 8px 0 0; */
    cursor: col-resize;
    user-select: none;
    background: #d0dfe3;
    aspect-ratio: 960 / 537;

    @media screen and (max-width: 640px) {
        aspect-ratio: 327 / 217;
    }
}

.vrstaging_compare_before,
.vrstaging_compare_after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.vrstaging_compare_after {
    clip-path: inset(0 0 0 50%);
}

.vrstaging_compare_before img,
.vrstaging_compare_after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* ラベルは .vrstaging_compare 直下に置き、clip-path の影響を受けない */
.vrstaging_compare_label {
    position: absolute;
    top: 16px;
    z-index: 5;
    background: rgba(255,255,255,0.8);
    color: var(--vr-text-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 50px;
    padding: 6px 16px;
    pointer-events: none;
    @media screen and (max-width: 640px) {
        font-size: 12px;
        padding: 4px 8px;
        top: 8px;
    }
}

.vrstaging_compare_label_before {
    left: 16px;
    @media screen and (max-width: 640px) {
        left: 8px;
    }
}

.vrstaging_compare_label_after {
    right: 16px;
    @media screen and (max-width: 640px) {
        right: 8px;
    }
}

.vrstaging_compare_handle { 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 2px 4px 24px rgba(87, 136, 145, 0.24);
    cursor: col-resize;
    z-index: 10;
    pointer-events: none;
    @media screen and (max-width: 640px) {
    width: 40px;
    height: 40px;
    gap: 6px;
    }
}

.vrstaging_compare_handle_l,
.vrstaging_compare_handle_r {
    width: 15px;
    height: auto;
    aspect-ratio: 15/16;
    display: block;
    flex-shrink: 0;
    @media screen and (max-width: 640px) {
        width: 10.3px;
    }
}

.vrstaging_compare_handle_l {
    transform: rotate(180deg);
}

.vrstaging_compare_divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5px;
    height: 100%;
    background: #fff;
    z-index: 9;
    pointer-events: none;
}

.vrstaging_gallery_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    @media screen and (max-width: 640px) {
        gap: 16px;
        margin-top: 20px;
    }
}

.vrstaging_gallery_arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: unset;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
    box-shadow: 2px 4px 24px rgba(87, 136, 145, 0.24);
}

.vrstaging_gallery_arrow:hover {
    background: var(--vr-bg-light);
}

.vrstaging_gallery_arrow img {
    width: 15.14px;
    height: auto;
    aspect-ratio: 15.14/10;
    display: block;
    @media screen and (max-width: 640px) {
        width: 13.87px;
    }
}

.vrstaging_gallery_prev img {
    transform: rotate(180deg);
}
 
.vrstaging_gallery_dots {
    display: flex;
    gap: 16px;
    @media screen and (max-width: 640px) {
        gap: 12px;
    }
}

.vrstaging_gallery_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D9D9D9;
    cursor: pointer;
    transition: background 0.2s;
    @media screen and (max-width: 640px) {
    width: 7px;
    height: 7px;
    }
}

.vrstaging_gallery_dot.active {
    background: var(--vr-teal);
}


/* =============================================
   FLOW
   ============================================= */
.vrstaging_flow {
    background: var(--vr-bg-light);
    padding: 128px 0;

    @media screen and (max-width: 640px) {
        padding: 72px 0 ;
    }
}

.vrstaging_flow_steps {
    display: flex;
    gap: 24px;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        gap: 8px;
    }
}

.vrstaging_flow_step {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 46px 16px 48px;
    text-align: center;
    box-shadow: 2px 4px 24px rgba(87, 136, 145, 0.24);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;

    @media screen and (max-width: 768px) {
        flex-direction: row;
        gap: 8px;
        padding: 16px;
        text-align: left;
    }
}

.vrstaging_flow_num {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: var(--vr-teal);
    line-height: 1;
    position: absolute;
    top: -.5em;

    @media screen and (max-width: 768px) {
        position: static;
        font-size: 19px;
        flex-shrink: 0;
        line-height: 1.5;
    }
}

.vrstaging_flow_title {
    font-size: 18px;
    font-weight: 700;
    color: var(--vr-text);
    margin: 0 0 8px;
    line-height: 1.5;
    min-width: 84px;

    @media screen and (max-width: 768px) {
        font-size: 16px;
        margin: unset;
    }
}

.vrstaging_flow_desc {
    font-size: 14px;
    color: var(--vr-text-light);
    line-height: 1.6;
    margin: 0;

    @media screen and (max-width: 768px) {
        line-height: 1.4;
        margin-left: 8px;
        & br { display: none; }
    }
}

/* =============================================
   Q&A
   ============================================= */
.vrstaging_qa {
    background: var(--vr-bg);
    padding: 128px 0;

    @media screen and (max-width: 640px) {
        padding: 72px 0;
    }

    .vrstaging_inner{
        position: relative;
        &::before{
            content: "";
            display: block;
            background-image: url(../image/straddling02.png);
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            width: 64px;
            height: 132px;
            position: absolute;
            top: calc(-66px - 128px);
            @media screen and (max-width: 640px) {
                width: 37px;
                height: 76px;
                top: calc(-21px - 72px);
                left: 40px;
            }
        }
    }
}

.vrstaging_qa_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    @media screen and (max-width: 640px) {
        gap: 8px;
    }
}

.vrstaging_qa_item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 4px 24px rgba(87, 136, 145, 0.24);
}

.vrstaging_qa_question {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--vr-text);
    cursor: pointer;
    list-style: none;
    user-select: none;

    @media screen and (max-width: 640px) {
        line-height: 1.3;
        font-size: 16px;
        padding: 16px;
    }
}

.vrstaging_qa_q {
    color: var(--vr-teal);
    font-weight: 600;
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1.6;
    @media screen and (max-width: 640px) {
        font-size: 19px;
        line-height: 1.5;
    }
}

.vrstaging_qa_toggle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--vr-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    @media screen and (max-width: 640px) {
    width: 28px;
    height: 28px;
    }
}

.vrstaging_qa_toggle::before {
    content: '';
    -webkit-mask-image: url(../image/icon_plus.svg);
    mask-image: url(../image/icon_plus.svg);
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    background: #fff;
    width: 14px;
    height: 14px;
}

.vrstaging_qa_item.open .vrstaging_qa_toggle {
    background: #B2B2B2;
}

.vrstaging_qa_item.open .vrstaging_qa_toggle::before {
    -webkit-mask-image: url(../image/icon_minus.svg);
    mask-image: url(../image/icon_minus.svg);
}

.vrstaging_qa_answer {
    padding: 8px 24px 32px;
    font-size: 16px;
    color: var(--vr-text-light);
    line-height: 1.6;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-weight: 600;

    @media screen and (max-width: 640px) {
        padding: 8px 16px 24px;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 500;
    }
}

.vrstaging_qa_a {
    color: var(--vr-orange);
    font-weight: 600;
    font-size: 24px; 
    flex-shrink: 0;
    line-height: 1.6;
    @media screen and (max-width: 640px) {
        font-size: 19px;
        font-weight: 700;
        line-height: 1.5;
    }
}

/* =============================================
   OVERVIEW
   ============================================= */
.vrstaging_overview {
    background: var(--vr-bg-light);
    padding: 128px 0;

    @media screen and (max-width: 640px) {
        padding: 72px 0;
    }
}

.vrstaging_overview_card {
    background: #fff;
    border-radius: 8px;
    padding: 48px;
    box-shadow: 2px 4px 24px rgba(87, 136, 145, 0.24);

    @media screen and (max-width: 640px) {
        padding: 16px;
    }
}

.vrstaging_overview_list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    @media screen and (max-width: 640px) {
        gap: 6px;
        margin: 0 0 8px;
    }
}

.vrstaging_overview_list li {
    padding-left: 20px;
    font-weight: 500;
    position: relative;
    font-size: 16px;
    color: var(--vr-text-light);
    line-height: 1.5;
    @media screen and (max-width: 640px) {
        font-size: 14px;
        padding-left: 12px;
    }
}

.vrstaging_overview_list li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
    background-color:#b1b1b1;
    @media screen and (max-width: 640px) {
        width: 6px;
        height: 6px;
    }
}

.vrstaging_overview_box { 
    background: #EFF5F6;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--vr-text-light);
    line-height: 1.5;

    @media screen and (max-width: 640px) {
        font-size: 12px;
        line-height: 1.4;
    }
}

.vrstaging_overview_box:last-child {
    margin-bottom: 0;
}

.vrstaging_overview_box_title {
    font-size: 16px;
    margin: 0 0 8px;
    @media screen and (max-width: 640px) {
        font-size: 14px;
    }
}

.vrstaging_overview_box p {
    margin: 0 0 6px;
    &:last-child{
        margin: unset;
    }
}

.vrstaging_overview_sub_list {
    list-style: none;
    margin: 0 0 12px;
    &:last-child{
        margin: unset;
    }
}

.vrstaging_overview_sub_list li {
    position: relative;
    padding-left: 12px;
    font-size: 14px;
    color: var(--vr-text-light);
    line-height: 1.5;
    @media screen and (max-width: 640px) {
        font-size: 12px;
        line-height: 1.4;
        padding-left: 10px;
    }
}

.vrstaging_overview_sub_list li::before {
    content: '';
    position: absolute; 
    left: 0;
    top: 9px;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #b1b1b1;
}

/* =============================================
   CONTACT
   ============================================= */
.vrstaging_contact {
    background: linear-gradient(180deg, #F6FBFC 0%, #FFFFFF 100%);
    padding: 0 0 128px;
    position: relative;
    overflow: hidden;
    text-align: center;

    @media screen and (max-width: 640px) {
        padding: 0 0 72px;
    }
}

.vrstaging_contact_bg_text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 160px;
    font-weight: 600;
    background: var(--vr-label-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;

    @media screen and (max-width: 640px) {
        font-size: 82px;
    }
}

.vrstaging_contact_inner {
    margin-top: 80px;
    position: relative;
    z-index: 1;
    @media screen and (max-width: 640px) {
        margin-top: 40px;
    }
}

.vrstaging_contact_badge {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--vr-teal);
    color: #fff;
    border-radius: 999px;
    padding: 6px 32px;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
    min-height: 38px;
    @media screen and (max-width: 640px) {
        min-height: 30px;
        padding: 4px 16px;
        font-size: 14px;
        margin: 0 0 16px;
    }
}

.vrstaging_contact_heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--vr-text);
    line-height: 1.5;
    margin: 0 0 48px;

    @media screen and (max-width: 640px) {
        font-size: 26px;
        margin: 0 0 32px;
    }
}

.vrstaging_contact_desc {
    font-size: 18px;
    font-weight: 600;
    color: var(--vr-text-light);
    line-height: 1.8;
    margin: 0 0 48px;
    @media screen and (max-width: 640px) {
        line-height: 1.6;
        font-size: 14px;
        margin: 0 0 40px;
    }
}

.vrstaging_contact_btn {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 999px;
    box-shadow: 2px 4px 32px rgba(87, 136, 145, 0.24);
    text-decoration: none;
    overflow: hidden;
    min-width: 614px;
    padding: 12px 96px;
    position: relative;
    height: 96px;

    @media screen and (max-width: 640px) {
        min-width: 0;
        width: 100%;
        max-width: 327px;
        padding: 16px 80px 16px 32px;
        height: 80px;
        justify-content: flex-start;
    }
}

.vrstaging_contact_btn_text {
    flex: 1;
    font-size: 22px;
    font-weight: 700;
    color: var(--vr-orange);

    @media screen and (max-width: 640px) {
        font-size: 18px;
        line-height: 1.5;
    }
}

.vrstaging_contact_btn_arrow {
    width: 72px;
    height: 72px;
    background: var(--vr-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    position: absolute;
    right: 12px;

    @media screen and (max-width: 640px) {
        width: 48px;
        height: 48px;
        right: 16px;
    }

    &::before{
        content: "";
        display: block;
        aspect-ratio: 24/16;
        height: auto;
        width: 24px;
        background: #fff;
        -webkit-mask-image: url(../image/icon_arrow.svg);
        mask-image: url(../image/icon_arrow.svg);
        mask-position: center;
        mask-size: contain;
        mask-repeat: no-repeat;
        @media screen and (max-width: 640px) {
            width: 17.71px;
        }
    }
}

.vrstaging_contact_btn:hover .vrstaging_contact_btn_text {
    /* text-decoration: underline; */
}
