* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Notosans';
}

.m_show {
    display: none;
}

.innercont {
    width: 100vw;
    height: 100dvh;
    background-image: url("../img/pair_cover.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    padding: 80px 120px;
    position: relative;
}

.innercont img {
    margin-bottom: 40px;
}

.innercont h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.48px;
    margin-bottom: 48px;
}

.innercont p.desc {
    font-size: 20px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.4px;
    margin-bottom: 100px;
}

.innercont .comingsoon {
    width: 394px;
    height: 87px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(110, 138, 228, 0.20);
    backdrop-filter: blur(6px);
    border: 1.5px solid #0000;
    background-image: url("../img/gradient_frame.png");
    background-repeat: no-repeat;
    background-position: center;
}

.innercont .comingsoon p.label {
    font-size: 27px;
    text-shadow: 0px 0px 4px rgba(0, 9, 42, 0.50);
    font-weight: 700;
}

.innercont button.wh_r {
    position: absolute;
    right: 80px;
    bottom: 80px;
    background: #fff;
    border-radius: 999px;
    padding: 15px 24px;
    color: #000E28;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    z-index: 3;
}

.dim,
.pop_inquiry {
    display: none;
}

.dim.show {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}

.pop_inquiry.show {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    color: #1D1F25;
    text-align: center;
    align-items: center;
    z-index: 999;
}

.pop_inquiry p.label {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pop_inquiry p.desc {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 24px;
}

.pop_inquiry p.email {
    color: #4262FF;
    margin-bottom: 32px;
}

.pop_inquiry button.bl_rec {
    width: 240px;
    background: #4262FF;
    border-radius: 6px;
    border: none;
    color: #fff;
    padding: 17px 0;
    font-size: 16px;
    font-weight: 700;
}

.demo_start_btn {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .m_show {
        display: inline-block;
    }

    .mo_dim {
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
        position: absolute;
        z-index: 0;
        bottom:0;
    }

    .innercont .txt_box {
        position: relative;
        z-index: 10;
        text-align: center;
    }

    .innercont {
        background-image: url("../img/pair_cover_mo.png");
        align-items: center;
        justify-content: flex-end;
        padding: 40px 20px 60px;
    }
    @supports (-webkit-touch-callout: none) {
    .innercont {
        padding: 40px 20px 60px; /* 크롬용 다른 값 */
    }
    }

    .innercont img {
        margin-bottom: 18px;
        height: 37.5px;
    }

    .innercont h1 {
        font-size: 20px;
        font-weight: 800;
        line-height: 100%;
        letter-spacing: -0.2px;
        margin-bottom: 25px;
    }

    .innercont p.desc {
        font-size: 12px;
        line-height: 150%;
        letter-spacing: -0.48px;
        margin-bottom: 36px;
        text-align: center;
    }

    .innercont .comingsoon {
        width: 320px;
        height: 50px;
        border-radius: 8px;
        background-image: url("../img/gradient_frame_mo.png");
        margin:0 auto;
    }

    .innercont .comingsoon p.label {
        font-size: 15px;
    }

    .innercont button.wh_r {
        top: 20px;
        right: 20px;
        bottom: auto;
        padding: 8px 12px;
        font-size: 9px;
    }

    .pop_inquiry.show {
        padding: 20px;
        border-radius: 5px;
        width: 280px;
    }

    .pop_inquiry p.label {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .pop_inquiry p.desc {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .pop_inquiry p.email {
        margin-bottom: 20px;
    }

    .pop_inquiry button.bl_rec {
        width: 100%;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: auto;
        font-size: 14px;
    }
}