@charset "utf-8";

/* Default */
body, html {
    width: 100%;
    height: 100%;
}

#wrap {
    position: relative;
    min-width: 360px;
    max-width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    overflow-x: hidden;
    background-color: #ffffff;
}

.m_only {
    display: inline-block;
}

.pc_only {
    display: none;
}

.hide {
    display: none !important;
}

.mt0 {
    margin-top: 0px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt17 {
    margin-top: 17px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.mt80 {
    margin-top: 80px !important;
}

.mt90 {
    margin-top: 90px !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mb70 {
    margin-bottom: 70px !important;
}

.mb80 {
    margin-bottom: 80px !important;
}

.mb90 {
    margin-bottom: 90px !important;
}


#wrap.w_bg {
    background-color: #ffffff;
}
/* z-index */
header {
    z-index: 10;
}

.dim {
    z-index: 100;
}

.popup_wrap,
.footer_popup_wrap,
.tel_popup_wrap {
    z-index: 200;
}

.select_wrap,
.calendar_wrap,
.loading_wrap {
    z-index: 200;
}

/* Header */
header {
    width: 100%;
    height: 60px;
    position: fixed;
    min-width: 360px;
    max-width: 480px;
    background-color: #ffffff;
    left: 50%;
    transform: translateX(-50%);
}

    header .go_back {
        display: inline-block;
        width: 24px;
        height: 24px;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        background-image: url(../image/icon_back.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
        text-indent: -999999px;
    }

    header .ham {
        display: inline-block;
        width: 24px;
        height: 24px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background-image: url(../image/icon_ham.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
        text-indent: -999999px;
    }

    header .title {
        font-weight: normal;
        font-size: 16px;
        line-height: 26px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }


/* Main */
main {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    overflow: auto;
}

/* box */
.box01 {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #d9dadc;
    box-sizing: border-box;
    border-radius: 8px;
}

.agree_font {
    font-weight: 500;
    font-size: 15px;
}

/* Input - Terms */
input[type="checkbox"] {
    width: 0px;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    display: block;
}

    input[type="checkbox"] + label {
        width: 100%;
        padding-left: 34px;
        font-weight: 500;
        font-size: 15px;
        line-height: 24px;
        position: relative;
        display: flex;
    }

        input[type="checkbox"] + label::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: #ffffff;
            border-radius: 4px;
            left: 0;
            top: 0;
            background-image: url(../image/input_chk.svg);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            overflow: hidden;
            margin-top: 1px;
        }

    input[type="checkbox"]:checked + label::before {
        background-image: url(../image/input_chk_on.svg);
    }

input[type="radio"] {
    width: 0px;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    display: block;
}

    input[type="radio"] + label {
        width: 100%;
        padding-left: 34px;
        font-weight: 500;
        font-size: 15px;
        line-height: 24px;
        position: relative;
        display: flex;
    }

        input[type="radio"] + label::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 22px;
            height: 22px;
            background-color: #ffffff;
            border: 1px solid #b8b9bb;
            border-radius: 50%;
            left: 0;
            top: 0;
            box-sizing: border-box;
        }

    input[type="radio"]:checked + label::before {
        background-image: none;
    }

input[type="checkbox"] + label.terms_type {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    word-break: keep-all;
}

    input[type="checkbox"] + label.terms_type::after {
        content: "비동의";
        display: inline-block;
        font-weight: 500;
        font-size: 13px;
        line-height: 21px;
        color: #b8b9bb;
        min-width: 36px;
    }

input[type="checkbox"]:checked + label.terms_type::after {
    content: "동의";
}

input[type="checkbox"] + label.terms_type + .terms_detail,
input[type="checkbox"] + label.terms_type + .tel_terms_detail {
    text-indent: -999999px;
    width: 30px;
    height: 21px;
    background-image: url(../image/icon_arrow_01.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px;
}

/* Input */
.input_box {
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 14px 16px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

    .input_box .label {
        display: block;
        width: 100%;
        font-weight: 500;
        font-size: 12px;
        line-height: 19px;
    }

    .input_box input[type="text"],
    .input_box input[type="password"] {
        display: block;
        margin-top: 2px;
        width: 100%;
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        z-index: 5;
        position: relative;
    }

    .input_box label {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .input_box input[type="text"]::placeholder,
    .input_box input[type="password"]::placeholder {
        color: #b8b9bb;
    }

    .input_box .clear {
        position: absolute;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        right: 11px;
        bottom: 14px;
        text-indent: -999999px;
        z-index: 30;
        display: none;
    }

        .input_box .clear::after {
            content: "";
            display: inline-block;
            width: 14px;
            height: 14px;
            background-image: url(../image/icon_exit_w.svg);
            background-repeat: no-repeat;
            background-position: center center;
            background-color: #e3e3e3;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            border-radius: 50%;
        }

        .input_box .clear.on {
            display: inline-block;
            z-index: 30;
        }

    .input_box.default {
        border: 1px solid #d9dadc;
    }

    .input_box.focus {
        border: 1px solid #2c7fdf;
    }

        .input_box.focus .label {
            color: #2C7FDF;
        }

        .input_box.focus .select_val {
            color: #111111;
        }

        .input_box.focus .file_name {
            color: #111111;
        }

    .input_box.error {
        border: 1px solid #ff4040;
    }

        .input_box.error .label {
            color: #FF4040;
        }

        .input_box.error .select_val {
            color: #111111;
        }

        .input_box.error .file_name {
            color: #111111;
        }

    .input_box.valid {
        border: 1px solid #d9dadc;
    }

        .input_box.valid .label {
            color: #8d8e90;
        }

        .input_box.valid .select_val {
            color: #111111;
        }

        .input_box.valid .file_name {
            color: #111111;
        }

    .input_box.default.disabled {
        background-color: #f3f4f6;
        border: 1px solid #d9dadc;
    }

        .input_box.default.disabled .label {
            color: #8d8e90;
        }

        .input_box.default.disabled input[type="text"],
        .input_box.default.disabled input[type="password"] {
            color: #b8b9bb;
            background-color: #f3f4f6;
        }

        .input_box.default.disabled .select_val {
            color: #b8b9bb;
        }

        .input_box.default.disabled .file_name {
            color: #b8b9bb;
        }

    .input_box.valid.disabled {
        background-color: #f3f4f6;
        border: 1px solid #d9dadc;
    }

        .input_box.valid.disabled .label {
            color: #8d8e90;
        }

        .input_box.valid.disabled input[type="text"],
        .input_box.valid.disabled input[type="password"] {
            color: #8d8e90;
            background-color: #f3f4f6;
        }

        .input_box.valid.disabled .select_val {
            color: #8d8e90;
        }

        .input_box.valid.disabled .file_name {
            color: #8d8e90;
        }

    .input_box.type02 input[type="text"],
    .input_box.type02 input[type="password"] {
        width: 56px;
        display: inline-block;
    }

    .input_box.type02 input[type="password"] {
        width: 100px;
    }

    .input_box.type02 .hyphen {
        display: inline-block;
        width: 24px;
        height: 24px;
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        color: #111111;
        text-align: center;
    }

    .input_box.type03 .select_val {
        display: inline-block;
        width: 144px;
        height: 24px;
        background-image: url(../image/icon_arrow_select.svg);
        background-repeat: no-repeat;
        background-position: center right;
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        margin-right: 20px;
    }

    .input_box.type03 input[type="text"] {
        width: calc(100% - 85px);
        display: inline-block;
    }

    .input_box.type03 .flex_box {
        display: flex;
        justify-content: space-between;
        margin-top: 2px;
    }

    .input_box.type04 {
        width: 100%;
        box-sizing: border-box;
        border-radius: 8px;
        padding: 14px 16px;
        background-color: #ffffff;
        position: relative;
        overflow: hidden;
    }

        .input_box.type04 .label {
            display: block;
            width: 100%;
            font-weight: 500;
            font-size: 12px;
            line-height: 19px;
        }

        .input_box.type04 .flex_box {
            margin-top: 2px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

    .input_box .file_name {
        display: inline-block;
        width: calc(100% - 65px);
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        color: #b8b9bb;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .input_box.type04 .file_btn {
        display: inline-block;
        width: 65px;
        height: 32px;
        line-height: 32px;
        background-color: #f3f4f6;
        border-radius: 4px;
        font-weight: 500;
        font-size: 12px;
        text-align: center;
        color: #545557;
    }

    .input_box.type04 input[type="file"] {
        opacity: 0;
        display: inline-block;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
    }

    .input_box.type04.disabled input[type="file"] {
        display: none;
    }

    .input_box.time_type .time {
        position: absolute;
        right: 93px;
        bottom: 22px;
        z-index: 10;
        font-size: 12px;
        font-weight: 500;
        line-height: 19px;
        color: #ff4040;
    }

    .input_box.time_type .send {
        padding: 6px 10px;
        background-color: #f3f4f6;
        border-radius: 4px;
        font-weight: 500;
        font-size: 12px;
        color: #545557;
        z-index: 10;
        position: absolute;
        right: 16px;
        bottom: 16px;
    }

    .input_box.time_type input[type="text"] {
        width: calc(100% - 80px);
    }

    .input_box.time_type .clear {
        right: 96px;
    }

.additional_area {}
.additional_area h3 {font-size: 14px; margin-bottom: 6px;}
.additional_area .radio_box {display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px;}
.additional_area .checkbox_box {display: flex; align-items: center; gap: 10px; flex-wrap: wrap;}
.additional_area .checkbox_box input[type="checkbox"] + label::before {display: none;}
.additional_area .checkbox_box input[type="checkbox"] + label {padding: 8px 20px; box-sizing: border-box; border: 2px solid #efefef; background: #efefef; width: fit-content; border-radius: 20px;}
.additional_area .checkbox_box input[type="checkbox"]:checked + label {border: 2px solid #2c7fdf; background-color: rgba(137, 186, 241, 0.2);}

.date_box {
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 14px 16px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

    .date_box .label {
        display: block;
        width: 100%;
        font-weight: 500;
        font-size: 12px;
        line-height: 19px;
    }

    .date_box .value {
        display: block;
        margin-top: 2px;
        width: 100%;
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        color: #b8b9bb;
        background-image: url(../image/icon_calendar.svg);
        background-repeat: no-repeat;
        background-position: center right;
    }

    .date_box.default {
        border: 1px solid #d9dadc;
    }

    .date_box.focus {
        border: 1px solid #2c7fdf;
    }

        .date_box.focus .label {
            color: #2C7FDF;
        }

        .date_box.focus .value {
            color: #111111;
        }

    .date_box.error {
        border: 1px solid #ff4040;
    }

        .date_box.error .label {
            color: #FF4040;
        }

        .date_box.error .value {
            color: #111111;
        }

    .date_box.valid {
        border: 1px solid #d9dadc;
    }

        .date_box.valid .label {
            color: #8d8e90;
        }

        .date_box.valid .value {
            color: #111111;
        }

    .date_box.default.disabled {
        background-color: #f3f4f6;
        border: 1px solid #d9dadc;
    }

        .date_box.default.disabled .label {
            color: #8d8e90;
        }

    .date_box.valid.disabled {
        background-color: #f3f4f6;
        border: 1px solid #d9dadc;
    }

        .date_box.valid.disabled .label {
            color: #8d8e90;
        }

/* Select */
.select_box {
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 14px 16px;
    background-color: #ffffff;
}

    .select_box .label {
        display: block;
        width: 100%;
        font-weight: 500;
        font-size: 12px;
        line-height: 19px;
    }

    .select_box .value {
        display: block;
        margin-top: 2px;
        width: 100%;
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        color: #b8b9bb;
        background-image: url(../image/icon_arrow_select.svg);
        background-repeat: no-repeat;
        background-position: center right;
    }

    .select_box.default {
        border: 1px solid #d9dadc;
    }

    .select_box.focus {
        border: 1px solid #2c7fdf;
    }

        .select_box.focus .label {
            color: #2C7FDF;
        }

        .select_box.focus .value {
            color: #111111;
        }

    .select_box.error {
        border: 1px solid #ff4040;
    }

        .select_box.error .label {
            color: #FF4040;
        }

        .select_box.error .value {
            color: #111111;
        }

    .select_box.selected {
        border: 1px solid #d9dadc;
    }

        .select_box.selected .label {
            color: #8d8e90;
        }

        .select_box.selected .value {
            color: #111111;
        }

    .select_box.default.disabled {
        background-color: #f3f4f6;
    }

        .select_box.default.disabled .label {
            color: #8d8e90;
        }

        .select_box.default.disabled .value {
            color: #b8b9bb;
        }

    .select_box.selected.disabled {
        background-color: #f3f4f6;
    }

        .select_box.selected.disabled .label {
            color: #8d8e90;
        }

        .select_box.selected.disabled .value {
            color: #111111;
        }


/* Button */
.main_btn_area {
    margin-top: 40px;
    width: 100%;
}

    .main_btn_area .btn,
    .popup_btn_area .btn {
        height: 52px;
        font-weight: 500;
        font-size: 15px;
        line-height: 52px;
        text-align: center;
        color: #ffffff;
        width: 100%;
        border-radius: 4px;
    }

.popup_btn_area .btn {
    filter: drop-shadow(0px 5px 8px rgba(44, 127, 223, 0.25));
}

.main_btn_area.type02 {
    display: flex;
    justify-content: space-between;
}

    .main_btn_area.type02 .btn {
        width: calc(50% - 2px);
    }

.popup.type_terms .popup_btn_area {
    width: 100%;
    padding: 40px 24px 24px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, #FFFFFF 75%, rgba(255, 255, 255, 0) 100%);
}

/* Contents */
.main_wrap {
    padding-top: 36px;
    max-width: 480px;
    margin: 0 auto;
}

.trems_wrap {
    padding: 36px 24px 24px;
}

    .trems_wrap h1 {
        text-align: center;
        font-weight: bold;
        font-size: 32px;
        line-height: 45px;
        letter-spacing: -1px;
    }

.trems_text_area {
    margin-top: 20px;
    width: 100%;
    padding-top: 20px;
    padding-left: 20px;
    height: 104px;
    border-radius: 6px;
    font-weight: normal;
    font-size: 13px;
    line-height: 21px;
    color: #8d8e90;
    background-image: url(../image/img_phone01.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 24px) center;
}

.logo_img_area img {
    display: block;
    margin: 0 auto;
    width: 64px;
}

.logo_img_area .name {
    display: block;
    margin: 8px auto;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: -0.5px;
    color: #1c1d1f;
}

.logo_img_area + .terms_guide_text,
.trems_text_area + .terms_list_title {
    margin-top: 20px;
    font-weight: bold;
    font-size: 23px;
    line-height: 32px;
}

.logo_img_area + .terms_guide_text {
    margin-top: 36px;
}

.terms_guide_text + .terms_chk_area {
    margin-top: 44px;
}

.terms_chk_area {
    margin-top: 12px;
}

    .terms_chk_area .terms_box {
        margin-bottom: 16px;
    }

.terms_box .top_area {
    margin: 24px 20px 20px;
}

    .terms_box .top_area .type_chk_area {
        margin-left: 34px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
        background-color: #f3f4f6;
        height: 60px;
        line-height: 60px;
        border-radius: 8px;
        padding-left: 48px;
    }

        .terms_box .top_area .type_chk_area .btn {
            font-weight: normal;
            font-size: 12px;
            line-height: 19px;
            letter-spacing: -0.25px;
            color: #1f78d0;
            text-decoration: underline;
        }

        .terms_box .top_area .type_chk_area span {
            font-weight: 400;
            font-size: 13px;
            line-height: 21px;
            color: #8d8e90;
        }


        .terms_box .top_area .type_chk_area .terms_btn_area .btn {
            font-weight: normal;
            font-size: 13px;
            line-height: 21px;
            letter-spacing: -0.25px;
            text-decoration: underline;
            margin-right: 12px;
        }

            .terms_box .top_area .type_chk_area .terms_btn_area .btn:last-of-type {
                margin-right: 0;
            }


.terms_box .sub_area {
    margin: 0 20px 16px;
}

    .terms_box .sub_area .terms_list {
        border-top: 1px solid #eaebed;
        padding-top: 15px;
    }

    .terms_box .sub_area dt.none_title + dd .terms_list {
        padding-top: 0;
    }

    .terms_box .sub_area .terms_list .flex_area {
        display: flex;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .terms_box .sub_area .terms_list li:last-of-type {
        margin-bottom: 0;
    }

    .terms_box .sub_area dl {
        padding-top: 24px;
        border-top: 1px solid #eaebed;
    }

    .terms_box .sub_area dt {
        font-weight: 500;
        font-size: 15px;
        line-height: 24px;
    }

        .terms_box .sub_area dt.hide + dd {
            display: none;
        }

    .terms_box .sub_area dd .terms_list {
        border-top: 0;
    }

    .terms_box .sub_area dd {
        margin-bottom: 24px;
    }

.terms_box .bot_link_area {
    border-top: 1px solid #eaebed;
    display: flex;
    padding: 15px 20px;
    justify-content: space-between;
}

    .terms_box .bot_link_area h2 {
        font-weight: 500;
        font-size: 13px;
        line-height: 21px;
    }

    .terms_box .bot_link_area .terms_detail,
    .terms_box .bot_link_area .tel_terms_detail {
        text-indent: -999999px;
        width: 30px;
        height: 21px;
        background-image: url(../image/icon_arrow_01.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 16px;
    }

    .terms_box .bot_link_area .btn {
        display: inline-block;
        width: 100%;
        height: 54px;
        padding: 0 20px;
        line-height: 54px;
        font-weight: 500;
        font-size: 13px;
        text-align: left; /*background-image: url(../image/icon_arrow_01.svg); background-repeat: no-repeat; background-position: calc(100% - 20px) center;*/
    }

    .terms_box .bot_link_area .link_text {
        padding: 0 20px;
        margin-bottom: 16px;
        color: #8d8e90;
        font-weight: 300;
    }

.insert_wrap .title_text {
    font-weight: bold;
    font-size: 23px;
    line-height: 32px;
    padding-left: 24px;
}

.insert_wrap .insert_area {
    margin-top: 60px;
}

    .insert_wrap .insert_area dt {
        padding-left: 24px;
        font-weight: bold;
        font-size: 16px;
        line-height: 26px;
    }

    .insert_wrap .insert_area dd {
        margin-top: 24px;
        padding: 0 24px;
    }

    .insert_wrap .insert_area dt.flex_type,
    .insert_wrap .insert_list dt.flex_type {
        display: flex;
        justify-content: space-between;
        padding-right: 24px;
        align-items: center;
    }

        .insert_wrap .insert_area dt.flex_type input[type="checkbox"] + label::before,
        .insert_wrap .insert_list dt.flex_type input[type="checkbox"] + label::before {
            top: 50%;
            transform: translateY(-50%);
        }

.input_list .input_sub_text {
    display: block;
    margin-top: 4px;
    font-weight: normal;
    font-size: 10px;
    line-height: 16px;
    margin-bottom: 16px;
}

.input_list.type01 li {
    margin-bottom: 8px;
}

    .input_list.type01 li:last-of-type {
        margin-bottom: 0;
    }

.input_list.type01 .process {
    margin-top: 8px;
    margin-bottom: 16px;
    width: 100%;
    height: 100px;
    background-color: #f7fbff;
    border: 1px solid #cfe3f7;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 23px 28px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

    .input_list.type01 .process::before {
        content: "";
        display: inline-block;
        width: calc(100% - 80px);
        height: 1px;
        position: absolute;
        top: 35px;
        left: 50%;
        transform: translateX(-50%);
        border-top: 1px dashed #eaebed;
    }

    .input_list.type01 .process span {
        display: inline-block;
        padding-top: 34px;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 26px;
        font-weight: normal;
        font-size: 12px;
        line-height: 19px;
        text-align: center;
        letter-spacing: -0.25px;
        color: #8d8e90;
        position: relative;
    }

        .input_list.type01 .process span:nth-child(1) {
            background-image: url(../image/icon_process_01.svg);
        }

        .input_list.type01 .process span:nth-child(2) {
            background-image: url(../image/icon_process_02.svg);
        }

        .input_list.type01 .process span:nth-child(3) {
            background-image: url(../image/icon_process_03.svg);
        }

        .input_list.type01 .process span.on:nth-child(1) {
            background-image: url(../image/icon_process_01_on.svg);
        }

        .input_list.type01 .process span.on:nth-child(2) {
            background-image: url(../image/icon_process_02_on.svg);
        }

        .input_list.type01 .process span.on:nth-child(3) {
            background-image: url(../image/icon_process_03_on.svg);
        }

.input_list.type02 li {
    margin-bottom: 8px;
}

    .input_list.type02 li.flex_line {
        display: flex;
        justify-content: space-between;
    }

        .input_list.type02 li.flex_line .select_box {
            width: calc(50% - 2px);
        }

.insert_wrap .contents_border_box {
    padding-bottom: 40px;
    border-bottom: 8px solid #f3f4f6;
}

.insert_wrap .insert_list {
    padding: 40px 24px;
}

    .insert_wrap .insert_list:last-of-type {
        padding-bottom: 24px;
    }

    .insert_wrap .insert_list dt {
        display: block;
        font-weight: bold;
        font-size: 16px;
        line-height: 26px;
    }

    .insert_wrap .insert_list dd {
        margin-top: 24px;
        margin-bottom: 32px;
    }

        .insert_wrap .insert_list dd:last-of-type {
            margin-bottom: 0;
        }

    .insert_wrap .insert_list .chk_list.type01 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

        .insert_wrap .insert_list .chk_list.type01 li {
            width: 50%;
            display: inline-block;
            margin-bottom: 24px;
        }

            .insert_wrap .insert_list .chk_list.type01 li.box_type {
                width: 100%;
                display: inline-block;
                margin-top: 8px;
            }

            .insert_wrap .insert_list .chk_list.type01 li:nth-last-child(-n+2) {
                margin-bottom: 0;
            }

        .insert_wrap .insert_list .chk_list.type01 label::before {
            top: 50%;
            transform: translateY(-50%);
        }

    .insert_wrap .insert_list .file_sub_text {
        margin-top: 8px;
        font-weight: normal;
        font-size: 10px;
        line-height: 16px;
    }

    .insert_wrap .insert_list .select_bank_area {
        margin-top: 24px;
    }

    .insert_wrap .insert_list .drop_box {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #d9dadc;
        box-sizing: border-box;
        border-radius: 8px;
    }

        .insert_wrap .insert_list .drop_box dt {
            width: 100%;
            width: 100%;
            height: 60px;
            line-height: 60px;
            padding-left: 20px;
            font-weight: 500;
            font-size: 12px;
            position: relative;
            cursor: pointer;
        }

            .insert_wrap .insert_list .drop_box dt::after {
                content: "";
                position: absolute;
                display: inline-block;
                width: 16px;
                height: 16px;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                background-image: url(../image/icon_arrow_select.svg);
                background-repeat: no-repeat;
                transition: all 0.5s;
            }

            .insert_wrap .insert_list .drop_box dt.on::after {
                transform: translateY(-50%) rotate(180deg);
            }

        .insert_wrap .insert_list .drop_box dd {
            width: calc(100% - 32px);
            height: 0;
            margin: 0 auto;
            padding: 0 8px 0px 8px;
            max-height: 190px;
            overflow: auto;
            transition: all 0.5s;
        }

        .insert_wrap .insert_list .drop_box dt.on + dd {
            border-top: 1px solid #eaebed;
            padding: 0 8px 16px 8px;
        }

        .insert_wrap .insert_list .drop_box dd::-webkit-scrollbar {
            width: 3px;
        }

        .insert_wrap .insert_list .drop_box dd::-webkit-scrollbar-thumb {
            background-color: rgba(0,0,0,0.2);
        }

        .insert_wrap .insert_list .drop_box dd::-webkit-scrollbar-track {
            background-color: transparent;
        }

        .insert_wrap .insert_list .drop_box dd ul {
            padding-top: 16px;
        }

            .insert_wrap .insert_list .drop_box dd ul li {
                margin-bottom: 8px;
            }

                .insert_wrap .insert_list .drop_box dd ul li label {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: calc(100% - 65px);
                    height: 100%;
                    z-index: 1;
                }

                .insert_wrap .insert_list .drop_box dd ul li input[type="checkbox"] + i {
                    content: "";
                    width: 20px;
                    height: 20px;
                    display: inline-block;
                    position: absolute;
                    background-color: #ffffff;
                    border: 1px solid #b8b9bb;
                    border-radius: 4px;
                    left: 0;
                    top: 0;
                    background-image: url(../image/input_chk.svg);
                    background-repeat: no-repeat;
                    background-position: center center;
                }

                .insert_wrap .insert_list .drop_box dd ul li input[type="checkbox"]:checked + i {
                    background-color: #2c7fdf;
                    border: 1px solid #2c7fdf;
                    background-image: url(../image/input_chk_on.svg);
                }

                .insert_wrap .insert_list .drop_box dd ul li .drop_list_wrap {
                    position: relative;
                    height: 46px;
                }

                .insert_wrap .insert_list .drop_box dd ul li .text_area {
                    position: absolute;
                    left: 32px;
                    top: 0;
                }

                    .insert_wrap .insert_list .drop_box dd ul li .text_area strong {
                        font-weight: 500;
                        font-size: 15px;
                        line-height: 24px;
                        display: block;
                    }

                    .insert_wrap .insert_list .drop_box dd ul li .text_area span {
                        font-weight: 500;
                        font-size: 12px;
                        line-height: 19px;
                        color: #8d8e90;
                        display: block;
                        margin-top: 2px;
                    }

                .insert_wrap .insert_list .drop_box dd ul li .btn {
                    position: absolute;
                    right: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 65px;
                    height: 32px;
                    line-height: 32px;
                    background-color: #f3f4f6;
                    border-radius: 4px;
                    font-weight: 500;
                }

.insert_wrap .contents_border_box .preview_list {
    width: 100%;
    border: 1px solid #d9dadc;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 24px;
}

    .insert_wrap .contents_border_box .preview_list li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 16px;
    }

        .insert_wrap .contents_border_box .preview_list li:last-of-type {
            margin-bottom: 0;
        }

    .insert_wrap .contents_border_box .preview_list span {
        font-weight: 500;
        font-size: 15px;
        line-height: 24px;
        display: inline-block;
        width: calc(100% - 70px);
    }

    .insert_wrap .contents_border_box .preview_list .btn {
        padding: 6px 10px;
        background-color: #f3f4f6;
        border-radius: 4px;
        font-weight: 500;
        font-size: 12px;
        color: #545557;
        min-width: 65px;
        height: 31px;
    }

.insert_wrap .contents_border_box .info_list_box {
    padding: 20px;
    border: 1px solid #d9dadc;
    box-sizing: border-box;
    border-radius: 8px;
}

    .insert_wrap .contents_border_box .info_list_box .main_list > li {
        padding: 24px 0;
        border-bottom: 1px solid #eaebed;
    }

        .insert_wrap .contents_border_box .info_list_box .main_list > li:first-of-type {
            padding-top: 0;
        }

        .insert_wrap .contents_border_box .info_list_box .main_list > li:last-of-type {
            border-bottom: 0;
        }

    .insert_wrap .contents_border_box .info_list_box .sub_list > li {
        margin-bottom: 8px;
    }

        .insert_wrap .contents_border_box .info_list_box .sub_list > li:last-of-type {
            margin-bottom: 0px;
        }

        .insert_wrap .contents_border_box .info_list_box .sub_list > li strong {
            display: inline-block;
            width: 72px;
            font-weight: 500;
            font-size: 13px;
            line-height: 21px;
        }

        .insert_wrap .contents_border_box .info_list_box .sub_list > li span {
            font-weight: normal;
            font-size: 13px;
            line-height: 21px;
            color: #8d8e90;
            display: inline-block;
            word-break: break-all;
            overflow-wrap: anywhere;
        }

    .insert_wrap .contents_border_box .info_list_box .btn {
        display: inline-block;
        width: 100%;
        height: 48px;
        line-height: 48px;
        background-color: #f3f4f6;
        border-radius: 8px;
        font-weight: 500;
        font-size: 12px;
        color: #545557;
    }

.insert_wrap .contents_border_box .center_info {
    display: flex;
    align-items: center;
}

    .insert_wrap .contents_border_box .center_info img {
        margin-right: 8px;
        display: inline-block;
        width: 32px;
    }

    .insert_wrap .contents_border_box .center_info span {
        display: inline-block;
        font-weight: 500;
        font-size: 13px;
        line-height: 21px;
        letter-spacing: -0.5px;
        color: #1c1d1f;
    }

        .insert_wrap .contents_border_box .center_info span + span {
            margin-left: 16px;
        }

.insert_wrap .contents_border_box .fax_info_box {
    margin-top: 12px;
}

    .insert_wrap .contents_border_box .fax_info_box label {
        font-weight: 500;
        font-size: 12px;
        line-height: 19px;
        display: block;
        padding: 14px 16px;
        background-color: #ffffff;
        border: 1px solid #d9dadc;
        box-sizing: border-box;
        border-radius: 8px;
    }

.insert_wrap .contents_border_box .fax_info_box input {
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    display: inline-block;
    width: calc(100% - 90px);
    background-color: #ffffff;
}

.insert_wrap .contents_border_box .fax_info_box input::placeholder {
    color: #888888;
}

.insert_wrap .contents_border_box .fax_sub_info {
    display: block;
    margin-top: 4px;
    padding-left: 20px;
    background-image: url(../image/icon_info_c.svg);
    background-repeat: no-repeat;
    background-position: left center;
    font-weight: 500;
    font-size: 12px;
    line-height: 19px;
    color: #8d8e90;
}

.insert_wrap .contents_border_box .main_btn_area.mt_set {
    margin-top: 24px;
}

.trems_list {
    padding: 40px 20px 20px;
}

    .trems_list .top_chk_area {
        padding-bottom: 16px;
        border-bottom: 1px solid #eaebed;
    }

    .trems_list .chk_list_area {
        margin-top: 24px;
    }

        .trems_list .chk_list_area li {
            margin-bottom: 12px;
        }

            .trems_list .chk_list_area li:last-of-type label:last-child {
                margin-top: 8px;
            }

        .trems_list .chk_list_area button {
            width: 100%;
            margin-bottom: 8px;
            text-align: left;
            font-weight: 500;
            font-size: 15px;
            line-height: 24px;
            color: #111111;
            background-image: url(../image/icon_arrow_01.svg);
            background-repeat: no-repeat;
            background-position: right 4px;
            padding-right: 32px;
            box-sizing: border-box;
        }

.code_wrap,
.complete_wrap {
    padding: 36px 24px 0;
    min-height: calc(100vh - 60px);
}

    .code_wrap .title_text,
    .complete_wrap .title_text {
        font-weight: bold;
        font-size: 23px;
        line-height: 32px;
    }

    .code_wrap .code_insert_area {
        margin-top: 60px;
    }

        .code_wrap .code_insert_area .certi_img_area {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

            .code_wrap .code_insert_area .certi_img_area img {
                margin-right: 12px;
            }

            .code_wrap .code_insert_area .certi_img_area .reset_btn {
                display: inline-block;
                width: 40px;
                height: 40px;
                background-color: #f7fbff;
                border: 1px solid #cfe3f7;
                box-sizing: border-box;
                border-radius: 6px;
                text-indent: -99999px;
                background-image: url(../image/icon_reset.svg);
                background-repeat: no-repeat;
                background-position: center center;
            }

    .code_wrap .security_code {
        width: 148px;
        height: 56px;
        line-height: 56px;
        border-width: 1px;
        border-style: solid;
        box-sizing: border-box;
        padding-left: 16px;
        border-radius: 6px;
        font-weight: 500;
        font-size: 23px;
        margin-bottom: 10px;
    }

.trems_list .sign_list_area {
    margin-top: 32px;
}

    .trems_list .sign_list_area li {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #d9dadc;
        box-sizing: border-box;
        border-radius: 8px;
        padding: 14px 16px;
        position: relative;
        overflow: hidden;
        height: 138px;
        margin-bottom: 8px;
    }

    .trems_list .sign_list_area strong {
        font-weight: 500;
        font-size: 12px;
        line-height: 19px;
    }

    .trems_list .sign_list_area button {
        position: absolute;
        right: 16px;
        bottom: 14px;
        width: 65px;
        height: 28px;
        background-color: #f3f4f6;
        border-radius: 4px;
        font-weight: 500;
        font-size: 12px;
        color: #545557;
    }

    .trems_list .sign_list_area canvas {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

/* 인증번호 */
.certi_wrap {
    padding: 36px 24px 24px;
}

    .certi_wrap .title_text {
        font-weight: bold;
        font-size: 23px;
        line-height: 32px;
    }

        .certi_wrap .title_text label {
            color: #2c7fdf;
        }

    .certi_wrap .certi_info_area {
        margin-top: 55px;
    }

        .certi_wrap .certi_info_area .certi_guide_text {
            margin-top: 10px;
            display: flex;
            justify-content: space-between;
        }

            .certi_wrap .certi_info_area .certi_guide_text span {
                font-weight: 500;
                font-size: 12px;
                line-height: 19px;
                color: #545557;
            }

            .certi_wrap .certi_info_area .certi_guide_text .btn {
                font-weight: 500;
                font-size: 12px;
                line-height: 19px;
                text-decoration: underline;
                color: #545557;
            }

    .certi_wrap .main_btn_area {
        margin-top: 60px;
    }

    .certi_wrap .certi_terms_area {
        margin-top: 0px;
    }

        .certi_wrap .certi_terms_area + .certi_input_area {
            margin-top: 36px;
        }

            .certi_wrap .certi_terms_area + .certi_input_area input:disabled {
                background-color: #fff;
            }

/* Footer */
footer {
    background-color: #f3f4f6;
    padding: 24px 24px 28px;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

    footer p {
        margin-top: 12px;
        font-weight: 400;
        font-size: 9px;
        line-height: 13px;
        color: #8d8e90;
    }

    footer ul {
        margin-top: 4px;
        display: flex;
    }

        footer ul li {
            display: inline-block;
            margin-right: 16px;
            font-weight: 400;
            font-size: 9px;
            color: #8d8e90;
        }

            footer ul li button {
                display: inline-block;
                font-weight: 400;
                font-size: 9px;
                color: #8d8e90;
            }

    footer.fix {
        position: fixed;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }

.code_wrap .main_btn_area {
    margin-top: 112px;
}

    .code_wrap .main_btn_area.mt_set {
        margin-top: 178px;
    }

.complete_wrap .complete_text_area {
    margin-top: 60px;
    padding: 28px 20px;
    border-radius: 8px;
    text-align: center;
}

    .complete_wrap .complete_text_area i {
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin: 0 auto;
        background-image: url(../image/icon_check.svg);
        background-repeat: no-repeat;
        background-position: center center;
    }

    .complete_wrap .complete_text_area strong {
        margin-top: 16px;
        display: block;
        font-weight: bold;
        font-size: 23px;
        line-height: 32px;
        color: #1c1d1f;
    }

    .complete_wrap .complete_text_area p {
        margin-top: 16px;
        font-weight: normal;
        font-size: 13px;
        line-height: 21px;
        color: #8d8e90;
    }

.complete_wrap .main_btn_area .btn.type01 {
    line-height: 21px;
}

/* Popup */
.dim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.75);
    display: none;
}

    .dim.on {
        display: block;
    }

.select_wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
    background-color: #ffffff;
    border-radius: 24px 24px 0 0;
    padding: 0 24px;
}

    .select_wrap.on {
        height: 405px;
        padding: 40px 24px 40px;
    }

    .select_wrap::before {
        content: "";
        position: absolute;
        display: inline-block;
        width: 48px;
        height: 3px;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #c0c0c0;
        border-radius: 3px;
    }

    .select_wrap .title {
        display: block;
        font-weight: bold;
        font-size: 20px;
        line-height: 28px;
    }

    .select_wrap .list_area {
        margin-top: 32px;
        height: 260px;
        width: 100%;
        overflow: auto;
    }

        .select_wrap .list_area li {
            font-weight: normal;
            font-size: 15px;
            line-height: 24px;
            margin-bottom: 24px;
        }

.popup_wrap,
.footer_popup_wrap,
.tel_popup_wrap {
    position: fixed;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
    background-color: #ffffff;
    transform: translateX(-50%);
    max-width: 480px;
}

    .popup_wrap.on,
    .footer_popup_wrap.on,
    .tel_popup_wrap.on {
        height: 100vh;
    }

.popup {
    display: none;
}

    .popup.on {
        display: block;
    }

    .popup.type_terms {
        width: 100%;
        height: 100vh;
    }

        .popup.type_terms .popup_header {
            width: 100%;
            height: 60px;
            line-height: 60px;
            position: relative;
        }

            .popup.type_terms .popup_header strong {
                display: inline-block;
                font-weight: normal;
                font-size: 16px;
                line-height: 26px;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%,-50%);
            }

            .popup.type_terms .popup_header .exit_pop,
            .popup.type_terms .popup_header .exit_footer_pop {
                display: inline-block;
                width: 24px;
                height: 24px;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                text-indent: -999999px;
                background-image: url(../image/icon_exit.svg);
                background-repeat: no-repeat;
                background-position: center center;
            }

        .popup.type_terms .popup_contents {
            width: 100%;
            height: calc(100vh - 60px);
            padding: 0 24px;
            overflow: auto;
        }

            .popup.type_terms .popup_contents .text_area {
                padding-top: 36px;
                height: calc(100% - 76px);
                overflow: auto;
                padding-right: 8px;
                padding-bottom: 40px;
            }

                .popup.type_terms .popup_contents .text_area.none_scroll_type {
                    height: auto;
                    margin-bottom: 40px;
                }

                    .popup.type_terms .popup_contents .text_area.none_scroll_type + .popup_btn_area {
                        margin-bottom: 24px;
                    }

.footer_popup_wrap .popup.type_terms .popup_contents .text_area {
    height: 100%;
}

.popup.type_terms .popup_contents .text_area strong {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
}

.popup.type_terms .popup_contents .text_area pre {
    font-weight: 300;
    font-size: 13px;
    line-height: 21px;
    color: #8d8e90;
    margin-top: 8px;
    font-family: 'SpoqaHanSansNeo';
    white-space: pre-wrap;
}

.popup.type_terms .popup_contents .text_area p {
    font-weight: 300;
    font-size: 13px;
    line-height: 21px;
    color: #8d8e90;
    font-family: 'SpoqaHanSansNeo';
}

.popup.type_terms .popup_contents .text_area .trems_pop_title {
    font-weight: bold;
    font-size: 23px;
    line-height: 32px;
}

.popup.type_terms .popup_contents .text_area .terms_box_area {
    padding-top: 60px;
}

    .popup.type_terms .popup_contents .text_area .terms_box_area pre + dl {
        margin-top: 24px;
    }

    .popup.type_terms .popup_contents .text_area .terms_box_area dt {
        font-weight: bold;
        font-size: 16px;
        line-height: 26px;
        margin-top: 24px;
    }

        .popup.type_terms .popup_contents .text_area .terms_box_area dt:first-of-type {
            margin-top: 0;
        }

    .popup.type_terms .popup_contents .text_area .terms_box_area .box {
        margin-top: 8px;
        border: 1px solid #d9dadc;
        box-sizing: border-box;
        border-radius: 8px;
        padding: 20px;
    }

        .popup.type_terms .popup_contents .text_area .terms_box_area .box pre {
            margin: 8px 0 24px;
        }

            .popup.type_terms .popup_contents .text_area .terms_box_area .box pre:last-of-type {
                margin-bottom: 0;
            }

        .popup.type_terms .popup_contents .text_area .terms_box_area .box strong {
            font-weight: 500;
            font-size: 13px;
            line-height: 21px;
        }

        .popup.type_terms .popup_contents .text_area .terms_box_area .box + pre {
            margin: 8px 0 24px;
        }

        .popup.type_terms .popup_contents .text_area .terms_box_area .box + .box_sub_title {
            margin-top: 24px;
        }

    .popup.type_terms .popup_contents .text_area .terms_box_area .box_sub_title {
        font-weight: 500;
        font-size: 13px;
        line-height: 21px;
        display: inline-block;
    }

    .popup.type_terms .popup_contents .text_area .terms_box_area .terms_bot_text {
        display: block;
        margin-top: 24px;
        font-weight: normal;
        font-size: 13px;
        line-height: 21px;
        color: #8d8e90;
    }

    .popup.type_terms .popup_contents .text_area .terms_box_area dl + .trems_pop_title {
        margin-top: 80px;
        display: block;
    }

        .popup.type_terms .popup_contents .text_area .terms_box_area dl + .trems_pop_title + dl {
            margin-top: 60px;
        }

.popup.type_terms .trems_table {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 24px;
}

    .popup.type_terms .trems_table.type01 thead th {
        border-top: 1px solid #8d8e90;
        background-color: #eaebed;
        line-height: 36px;
        height: 36px;
        font-weight: 500;
        font-size: 13px;
        color: #111111;
    }

    .popup.type_terms .trems_table.type01 tbody td {
        border-bottom: 1px solid #eaebed;
        font-weight: normal;
        font-size: 13px;
        color: #8d8e90;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .popup.type_terms .trems_table.type01 tbody td {
        padding-left: 16px;
        padding-right: 16px;
    }

    .popup.type_terms .trems_table.type01 .table_inner_list li::before,
    .popup.type_terms .trems_table.type02 .table_inner_list li::before {
        content: "-";
        display: inline-block;
        margin-right: 4px;
    }

    .popup.type_terms .trems_table.type02 tr th,
    .popup.type_terms .trems_table.type02 tr td {
        border-bottom: 1px solid #d9dadc;
        text-align: left;
        padding: 8px 12px
    }

    .popup.type_terms .trems_table.type02 tr:first-child th,
    .popup.type_terms .trems_table.type02 tr:first-child td {
        border-top: 1px solid #8d8e90;
        width: auto;
    }

    .popup.type_terms .trems_table.type02 tr th {
        background-color: #eaebed;
        color: #111111;
        font-weight: 500;
        font-size: 13px;
    }

    .popup.type_terms .trems_table.type02 tr td {
        color: #8d8e90;
        font-weight: normal;
        font-size: 13px;
    }

.popup.type_terms .popup_contents .text_area .terms_list_area {
    margin-top: 60px;
}

    .popup.type_terms .popup_contents .text_area .terms_list_area dt {
    }

    .popup.type_terms .popup_contents .text_area .terms_list_area dd {
        margin-top: 8px;
        width: 100%;
        height: 184px;
        overflow: auto;
        border: 1px solid #d9dadc;
        box-sizing: border-box;
        border-radius: 8px;
        margin-bottom: 24px;
    }

        .popup.type_terms .popup_contents .text_area .terms_list_area dd:last-of-type {
            margin-bottom: 0;
        }

        .popup.type_terms .popup_contents .text_area .terms_list_area dd pre {
            padding: 16px;
            margin: 0;
        }

.popup.type_terms .popup_contents .text_area .terms_text_area {
    margin-top: 60px;
    margin-bottom: 40px;
}

    .popup.type_terms .popup_contents .text_area .terms_text_area:last-of-type {
        margin-bottom: 0;
    }

    .popup.type_terms .popup_contents .text_area .terms_text_area .text-dark {
        margin-top: 20px;
        font-weight: normal;
        font-size: 13px;
        line-height: 21px;
        color: #8d8e90;
        display: inline-block;
        margin-bottom: 8px;
    }

    .popup.type_terms .popup_contents .text_area .terms_text_area .inner_data_list {
        border: 1px solid #d9dadc;
        padding: 20px;
        border-radius: 8px;
        box-sizing: border-box;
    }

        .popup.type_terms .popup_contents .text_area .terms_text_area .inner_data_list dt {
            font-weight: 500;
            font-size: 13px;
            line-height: 21px;
            display: block;
            margin-bottom: 8px;
        }

        .popup.type_terms .popup_contents .text_area .terms_text_area .inner_data_list dd {
            font-weight: normal;
            font-size: 13px;
            line-height: 21px;
            color: #8d8e90;
            margin-bottom: 24px;
        }

            .popup.type_terms .popup_contents .text_area .terms_text_area .inner_data_list dd:last-of-type {
                margin-bottom: 0;
            }

.popup.type_terms .popup_contents .text_area .terms_drop_area {
    margin-top: 60px;
    margin-bottom: 40px;
}

.popup.type_terms .popup_contents .text_area .drop_title {
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
    display: inline-block;
}

.popup.type_terms .popup_contents .text_area .terms_drop_area dl {
    padding: 20px 16px 0;
    border: 1px solid #d9dadc;
    box-sizing: border-box;
    border-radius: 8px;
    transition: all 0.5s;
    margin-bottom: 16px;
}

    .popup.type_terms .popup_contents .text_area .terms_drop_area dl + .drop_title {
        margin-top: 32px;
    }

.popup.type_terms .popup_contents .text_area .terms_drop_area dt {
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

    .popup.type_terms .popup_contents .text_area .terms_drop_area dt .input_area {
        margin-top: 4px;
    }

        .popup.type_terms .popup_contents .text_area .terms_drop_area dt .input_area span {
            font-weight: 500;
            font-size: 13px;
            line-height: 21px;
        }

    .popup.type_terms .popup_contents .text_area .terms_drop_area dt .btn {
        width: 64px;
        height: 32px;
        background-color: #f3f4f6;
        border-radius: 4px;
        line-height: 32px;
        text-align: center;
        font-weight: 500;
        font-size: 12px;
        color: #545557;
    }

.popup.type_terms .popup_contents .text_area .terms_drop_area dd {
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}

.popup.type_terms .popup_contents .text_area .terms_drop_area dt.on + dd {
    overflow: auto;
    border-top: 1px solid #eaebed;
    height: 120px;
}

    .popup.type_terms .popup_contents .text_area .terms_drop_area dt.on + dd.height_set {
        height: 50px;
    }

.loading_wrap {
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: none;
    padding: 0 24px 0;
    max-width: 480px;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.75);
}

    .loading_wrap .pos_wrap {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        text-align: center;
        color: #ffffff;
    }

    .loading_wrap.on {
        display: block;
    }

    .loading_wrap i {
        display: inline-block;
        width: 48px;
        height: 48px;
        background-image: url(../image/icon_loading.png);
        background-repeat: no-repeat;
        background-position: center center;
        animation: rotate_image 1.7s linear infinite;
        transform-origin: 50% 50%; /*background-color: #8a52dc; */
    }

    .loading_wrap .load_text {
        margin-top: 36px;
        font-weight: bold;
        font-size: 20px;
        line-height: 32px;
    }

@keyframes rotate_image {
    100% {
        transform: rotate(360deg);
    }
}

.choice_wrap {
    padding: 36px 24px 105px;
    position: relative;
}

.choice_wrap .insurance_title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 12px;
  padding-left: 8px;
}

.choice_wrap .choice_insurance .list + .insurance_title {
  padding-top: 24px;
  border-top: 1px solid #eaecf0;
  margin-top: 20px;
}

    .choice_wrap .title_text {
        font-weight: bold;
        font-size: 23px;
        line-height: 32px;
    }

    .choice_wrap .choice_insurance {
        margin-top: 40px;
    }

        .choice_wrap .choice_insurance ul {
            display: flex;
            flex-wrap: wrap;
        }

            .choice_wrap .choice_insurance ul li {
                width: calc(33% - 6px);
                height: 108px;
                margin-bottom: 12px;
                position: relative;
                overflow: hidden;
                text-align: center;
                margin-right: calc(1% + 6px);
            }

                .choice_wrap .choice_insurance ul li:nth-of-type(3n) {
                    margin-right: 0;
                }

                .choice_wrap .choice_insurance ul li label {
                    position: absolute;
                    left: 0;
                    right: 0;
                    width: 100%;
                    height: 100%;
                    border-radius: 8px;
                    border: 1px solid #f3f4f6;
                }

                .choice_wrap .choice_insurance ul li input[type="radio"]:checked + label {
                    border: 1px solid #2c7fdf;
                }

                .choice_wrap .choice_insurance ul li label::before {
                    display: none;
                }

                .choice_wrap .choice_insurance ul li div {
                    width: 32px;
                    height: 28px;
                    display: block;
                    margin: 20px auto 12px;
                }

                .choice_wrap .choice_insurance ul li img {
                    width: 100%;
                    height: 100%;
                    display: block;
                    margin: 0 auto;
                    object-fit: contain;
                }

                .choice_wrap .choice_insurance ul li strong {
                    font-weight: 500;
                    font-size: 13px;
                    line-height: 21px;
                    letter-spacing: -0.5px;
                    color: #1c1d1f;
                    width: 94px;
                    display: inline-block;
                    word-break: keep-all;
                }

    .choice_wrap .main_btn_area {
        width: 100%;
        max-width: 480px;
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0px;
        margin-top: 0;
        height: 117px;
        padding: 40px 24px;
        background: linear-gradient(0deg, #FFFFFF 75%, rgba(255, 255, 255, 0) 100%);
        box-sizing: border-box;
    }

        .choice_wrap .main_btn_area .btn {
            filter: drop-shadow(0px 5px 8px rgba(44, 127, 223, 0.25));
        }

        .choice_wrap .main_btn_area.fix {
            position: absolute;
        }

            .choice_wrap .main_btn_area.fix .btn {
                filter: none;
            }

/* Calendar */
.calendar-wrapper .weeks-container {
    position: relative;
}

.calendar-wrapper .prev-button {
    background-image: url(../image/icon_arrow_cal.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.calendar-wrapper .next-button {
    background-image: url(../image/icon_arrow_cal.svg);
    background-repeat: no-repeat;
    background-position: center center;
    transform: rotate(180deg);
}

.calendar_wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
    background-color: #ffffff;
    border-radius: 24px 24px 0 0;
    padding: 0 24px;
}

    .calendar_wrap.on {
        height: 392px;
        padding: 40px 24px 40px;
    }

    .calendar_wrap::before {
        content: "";
        position: absolute;
        display: inline-block;
        width: 48px;
        height: 3px;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #c0c0c0;
        border-radius: 3px;
    }


/* 파일 업로드 - 목록형 */
.file_upload_list_area .guide_title_area .title {
    display: block;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.file_upload_list_area .guide_title_area .sub_text {
    display: block;
    width: 100%;
    margin-top: 4px;
    font-weight: normal;
    font-size: 11px;
    line-height: 16px;
}

.file_upload_list_area .file_btn_area {
    position: relative;
    width: 100%;
    height: 32px;
    margin-top: 8px;
}

    .file_upload_list_area .file_btn_area .file_area,
    .file_upload_list_area .file_btn_area .btn_area {
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
    }

    .file_upload_list_area .file_btn_area .file_area {
        z-index: 10;
    }

        .file_upload_list_area .file_btn_area .file_area input[type="file"] {
            display: none;
            width: 65px;
            height: 32px;
            opacity: 0;
            z-index: 10;
        }

            .file_upload_list_area .file_btn_area .file_area input[type="file"]:last-child {
                display: inline-block;
            }

    .file_upload_list_area .file_btn_area .btn_area .fake_btn {
        display: inline-block;
        width: 65px;
        height: 32px;
        line-height: 32px;
        background-color: #f7f7f7;
        border-radius: 4px;
        font-weight: 500;
        font-size: 12px;
        text-align: center;
        color: #444444;
    }

.file_upload_list_area .file_view_list {
    margin-top: 8px;
}

    .file_upload_list_area .file_view_list li {
        width: 100%;
        padding: 8px 20px;
        background-color: #f7f7f7;
        border-radius: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .file_upload_list_area .file_view_list li + li {
            margin-top: 4px;
        }

    .file_upload_list_area .file_view_list .file_name {
        display: inline-block;
        width: calc(70% + 10px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }

    .file_upload_list_area .file_view_list .del_file {
        width: 20px;
        height: 20px;
        text-indent: -99999px;
        border-radius: 50%;
        background-image: url(../image/icon_close.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
