@charset "UTF-8";
/*2022.10.07*/
/* 반응형 */
/*중앙 기준으로 280 px 까지 대응 : Mobile - 320px ~ 767px : Tablet - 768px ~ 1023px : PC - 1024px ~*/
/* color */
/* color */
@import url("//menu.mt.co.kr/font/noto/font_noto.css");
/* 바디값, 스크롤속성, margin 값, ul 속성 등 기본적으로 공통으로 쓰일 요소*/
@import url("//menu.mt.co.kr/font/noto/font_noto.css");
ul {
    list-style: none;
    padding: 0px;
}

p {
    margin: 0px;
    padding: 0px;
}

input:focus, textarea:focus {
    outline: none;
}

button {
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

div {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    text-transform: uppercase;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.pointer {
    cursor: pointer;
}

.space-around {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.space-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-start {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.mt-auto {
    margin: auto;
}

.bold {
    font-weight: 700;
}

.float-right {
    position: absolute !important;
    right: 0;
}

.float-left {
    position: absolute !important;
    left: 0;
}

.none {
    display: none !important;
}

.highlight {
    font-weight: 700;
    color: #E65959 !important;
}

.table-wrap {
    overflow: auto;
}

body {
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 400;
    margin: 0px;
    /*.layout : index 파일에서 사용*/
    -webkit-text-size-adjust: 100%;
}
body .layout {
    width: 375px;
    min-height: 200px;
    border: 1px solid gray;
}
body .layout .wrap {
    padding: 20px;
}
body .layout .wrap > div {
    margin-bottom: 20px;
}
body .main_wrapper {
    display: grid;
    grid-template-columns: auto 320px auto;
}
body .main_wrapper .container {
    grid-column: 2;
    position: relative;
}
@media (max-width: 320px) {
    body .main_wrapper {
        grid-template-columns: 0px 100% 0px;
        padding: 30px 15px;
    }
}
body .main_wrapper .footer_area {
    grid-column: 2;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 100%;
}
body .main_wrapper .footer_area span {
    font-size: 11px;
    color: #141516;
}
body .info_wrapper {
    display: grid;
    grid-template-columns: auto 1024px auto;
}
body .info_wrapper .container {
    grid-column: 2;
    position: relative;
    padding-bottom: 120px;
}
@media (max-width: 1023px) {
    body .info_wrapper {
        grid-template-columns: 10px calc(100% - 20px) 10px;
    }
}
body .layer {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: grid;
    grid-template-columns: auto 640px auto;
}
body .layer .content {
    grid-column: 2;
    height: 320px;
    background: #FFFFFF;
}
body .layer .content .close {
    cursor: pointer;
}
body .layer .content > div .title {
    font-weight: 700;
    font-size: 20px;
}

/* 반응형 */
/*중앙 기준으로 280 px 까지 대응 : Mobile - 320px ~ 767px : Tablet - 768px ~ 1023px : PC - 1024px ~*/
/* color */
/* color */
.login_df_input {
    display: grid;
}
.login_df_input > label {
    grid-row: 1;
    font-size: 14px;
    font-weight: 700;
    color: #141516;
}
.login_df_input > .input_wrap {
    grid-row: 2;
    margin-top: 5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    border: 1px solid #CBD2E0;
}
.login_df_input > .input_wrap input {
    height: calc(100% - 2px);
    width: calc(100% - 2px);
    padding: 0px 10px;
    margin: 1px;
    border: none;
}
.login_df_input > .input_wrap input::-webkit-input-placeholder {
    color: #CBD2E0;
}
.login_df_input > .input_wrap input::-moz-placeholder {
    color: #CBD2E0;
}
.login_df_input > .input_wrap input:-ms-input-placeholder {
    color: #CBD2E0;
}
.login_df_input > .input_wrap input::-ms-input-placeholder {
    color: #CBD2E0;
}
.login_df_input > .input_wrap input::placeholder {
    color: #CBD2E0;
}
.login_df_input > .guide_text {
    margin-top: 5px;
    grid-row: 3;
    font-size: 12px;
    height: 12px;
    font-weight: 400;
    color: #5F76F0;
    letter-spacing: -0.2px;
    visibility: hidden;
}
.login_df_input > .guide_text.show {
    visibility: visible;
}
.login_df_input > .guide_text.error {
    color: #E65959;
}

.login_pw_input {
    display: grid;
}
.login_pw_input > label {
    grid-row: 1;
    font-size: 14px;
    font-weight: 700;
    color: #141516;
}
.login_pw_input > .input_wrap {
    grid-row: 2;
    margin-top: 5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    border: 1px solid #CBD2E0;
}
.login_pw_input > .input_wrap input {
    height: calc(100% - 2px);
    width: calc(100% - 42px);
    padding: 0px 10px;
    margin: 1px;
    border: none;
}
.login_pw_input > .input_wrap input::-webkit-input-placeholder {
    color: #CBD2E0;
}
.login_pw_input > .input_wrap input::-moz-placeholder {
    color: #CBD2E0;
}
.login_pw_input > .input_wrap input:-ms-input-placeholder {
    color: #CBD2E0;
}
.login_pw_input > .input_wrap input::-ms-input-placeholder {
    color: #CBD2E0;
}
.login_pw_input > .input_wrap input::placeholder {
    color: #CBD2E0;
}
.login_pw_input > .guide_text {
    margin-top: 5px;
    grid-row: 3;
    font-size: 12px;
    height: 12px;
    font-weight: 400;
    color: #5F76F0;
    letter-spacing: -0.2px;
    visibility: hidden;
}
.login_pw_input > .guide_text.show {
    visibility: visible;
}
.login_pw_input > .guide_text.error {
    color: #E65959;
}
.login_pw_input > .input_wrap .icon {
    position: relative;
    top: 50%;
    margin-top: -11px;
    display: block;
    width: 30px;
    background-image: url("/images/icon/eye-open.png");
    background-repeat: no-repeat;
}
.login_pw_input > .input_wrap .icon.pw_show {
    background-image: url("/images/icon/eye-open.png");
    background-repeat: no-repeat;
}

.login_bt_input {
    display: grid;
}
.login_bt_input > label {
    grid-row: 1;
    font-size: 14px;
    font-weight: 700;
    color: #141516;
}
.login_bt_input > .input_wrap {
    grid-row: 2;
    margin-top: 5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    border: 1px solid #CBD2E0;
}
.login_bt_input > .input_wrap input {
    height: calc(100% - 2px);
    width: calc(100% - 81px);
    padding: 0px 10px;
    margin: 1px;
    border: none;
}
.login_bt_input > .input_wrap input::-webkit-input-placeholder {
    color: #CBD2E0;
}
.login_bt_input > .input_wrap input::-moz-placeholder {
    color: #CBD2E0;
}
.login_bt_input > .input_wrap input:-ms-input-placeholder {
    color: #CBD2E0;
}
.login_bt_input > .input_wrap input::-ms-input-placeholder {
    color: #CBD2E0;
}
.login_bt_input > .input_wrap input::placeholder {
    color: #CBD2E0;
}
.login_bt_input > .guide_text {
    margin-top: 5px;
    grid-row: 3;
    font-size: 12px;
    height: 12px;
    font-weight: 400;
    color: #5F76F0;
    letter-spacing: -0.2px;
    visibility: hidden;
}
.login_bt_input > .guide_text.show {
    visibility: visible;
}
.login_bt_input > .guide_text.error {
    color: #E65959;
}
.login_bt_input .input_wrap .btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: bottom;
    height: 44px;
    margin-top: -1px;
}
.login_bt_input .input_wrap button {
    width: 79px;
    height: 100%;
    border: none;
    background: #141516;
    color: #FFFFFF;
    font-weight: bold;
}
.login_bt_input .input_wrap button.disable {
    background: #5e5e5e;
    cursor: default;
}
.login_bt_input .input_wrap.disable {
    background: #EEEEEE;
}
.login_bt_input .input_wrap.disable > input {
    background: transparent;
}
.login_bt_input .guide_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.login_bt_input .guide_text .timer {
    color: #E65959;
}

.login_ta_input {
    display: grid;
}
.login_ta_input > label {
    grid-row: 1;
    font-size: 14px;
    font-weight: 700;
    color: #141516;
}
.login_ta_input > .input_wrap {
    grid-row: 2;
    margin-top: 5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    border: 1px solid #CBD2E0;
}
.login_ta_input > .input_wrap input {
    height: calc(100% - 2px);
    width: calc(100% - 2px);
    padding: 0px 10px;
    margin: 1px;
    border: none;
}
.login_ta_input > .input_wrap input::-webkit-input-placeholder {
    color: #CBD2E0;
}
.login_ta_input > .input_wrap input::-moz-placeholder {
    color: #CBD2E0;
}
.login_ta_input > .input_wrap input:-ms-input-placeholder {
    color: #CBD2E0;
}
.login_ta_input > .input_wrap input::-ms-input-placeholder {
    color: #CBD2E0;
}
.login_ta_input > .input_wrap input::placeholder {
    color: #CBD2E0;
}
.login_ta_input > .guide_text {
    margin-top: 5px;
    grid-row: 3;
    font-size: 12px;
    height: 12px;
    font-weight: 400;
    color: #5F76F0;
    letter-spacing: -0.2px;
    visibility: hidden;
}
.login_ta_input > .guide_text.show {
    visibility: visible;
}
.login_ta_input > .guide_text.error {
    color: #E65959;
}
.login_ta_input > .input_wrap {
    display: block;
    height: 120px;
}
.login_ta_input > .input_wrap textarea {
    margin: 10px 10px 0px 10px;
    font-family: Noto Sans KR;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: -0.03em;
    height: 77px;
    width: calc(100% - 20px);
    resize: none;
    border: none;
}
.login_ta_input > .input_wrap textarea::-webkit-input-placeholder {
    color: #B7BDCA;
    font-family: Noto Sans KR;
    font-size: 12px;
    letter-spacing: -0.03em;
}
.login_ta_input > .input_wrap textarea::-moz-placeholder {
    color: #B7BDCA;
    font-family: Noto Sans KR;
    font-size: 12px;
    letter-spacing: -0.03em;
}
.login_ta_input > .input_wrap textarea:-ms-input-placeholder {
    color: #B7BDCA;
    font-family: Noto Sans KR;
    font-size: 12px;
    letter-spacing: -0.03em;
}
.login_ta_input > .input_wrap textarea::-ms-input-placeholder {
    color: #B7BDCA;
    font-family: Noto Sans KR;
    font-size: 12px;
    letter-spacing: -0.03em;
}
.login_ta_input > .input_wrap textarea::placeholder {
    color: #B7BDCA;
    font-family: Noto Sans KR;
    font-size: 12px;
    letter-spacing: -0.03em;
}
.login_ta_input > .input_wrap .count_ph {
    text-align: end;
    padding-right: 10px;
    font-weight: 400;
    font-size: 13px;
    color: #CBD2E0;
}

.login_disable_input {
    display: grid;
}
.login_disable_input > label {
    grid-row: 1;
    font-size: 14px;
    font-weight: 700;
    color: #141516;
}
.login_disable_input > .input_wrap {
    grid-row: 2;
    margin-top: 5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    border: 1px solid #CBD2E0;
}
.login_disable_input > .input_wrap input {
    height: calc(100% - 2px);
    width: calc(100% - 42px);
    padding: 0px 10px;
    margin: 1px;
    border: none;
}
.login_disable_input > .input_wrap input::-webkit-input-placeholder {
    color: #CBD2E0;
}
.login_disable_input > .input_wrap input::-moz-placeholder {
    color: #CBD2E0;
}
.login_disable_input > .input_wrap input:-ms-input-placeholder {
    color: #CBD2E0;
}
.login_disable_input > .input_wrap input::-ms-input-placeholder {
    color: #CBD2E0;
}
.login_disable_input > .input_wrap input::placeholder {
    color: #CBD2E0;
}
.login_disable_input > .guide_text {
    margin-top: 5px;
    grid-row: 3;
    font-size: 12px;
    height: 12px;
    font-weight: 400;
    color: #5F76F0;
    letter-spacing: -0.2px;
    visibility: hidden;
}
.login_disable_input > .guide_text.show {
    visibility: visible;
}
.login_disable_input > .guide_text.error {
    color: #E65959;
}
.login_disable_input > .input_wrap {
    background-color: #F7F8FB;
}
.login_disable_input > .input_wrap input {
    font-family: "Noto Sans KR", sans-serif;
    background-color: #F7F8FB;
    color: #141516;
}
.login_disable_input > .lb_link_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 700;
}
.login_disable_input > .lb_link_wrap > a {
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #F54141;
}

/* 반응형 */
/*중앙 기준으로 280 px 까지 대응 : Mobile - 320px ~ 767px : Tablet - 768px ~ 1023px : PC - 1024px ~*/
/* color */
.login_sbt_btn {
    width: 100%;
    height: 44px;
    font-size: 1em;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 700;
    background: #F54141;
    border: none;
    color: #FFFFFF;
}
@media (max-width: 290px) {
    .login_sbt_btn {
        font-size: 0.8em;
    }
}
.login_sbt_btn a {
    width: 100%;
    display: block;
    color: #FFFFFF;
}

.login_sbt_btn.cancle {
    background: #B7BDCA;
}

.login_move_btn {
    width: 100%;
    height: 44px;
    font-size: 1em;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: 3px solid #DBE0E9;
    background: #FFFFFF;
    color: #8E939D;
}
@media (max-width: 290px) {
    .login_move_btn {
        font-size: 0.8em;
    }
}
.login_move_btn a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #8E939D;
}
.login_move_btn a img {
    margin-right: 5px;
}

.login_link_btn .link {
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    color: #141516;
}
.login_link_btn .link .icon img {
    margin-left: 5px;
}
.login_link_btn .v_line {
    height: 20px;
    width: 1px;
    border-left: 1px solid #696969;
}

.login_info_btn {
    width: 100%;
    height: 36px;
    cursor: default;
    border: none;
    font-size: 14px;
    font-weight: 700;
    background: #B7BDCA;
    color: #FFFFFF;
}
.login_info_btn a {
    width: 100%;
    display: block;
    color: #FFFFFF;
}

.login_inline_btn {
    display: inline-block;
    height: 40px;
    position: relative;
    top: 50%;
    margin-top: -20px;
    background: #2D3648;
    border: none;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    border-radius: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0px 10px;
}
.login_inline_btn a {
    color: #FFFFFF;
}

/* color */
.login_guide_box {
    text-align: initial;
}
.login_guide_box p {
    font-weight: 400;
    font-size: 14px;
    line-height: 19.6px;
    color: #141516;
}

.login_data_box {
    border: solid 2px #2D3648;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 30px;
    text-align: initial;
}
.login_data_box label {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}
.login_data_box .data_area {
    border-bottom: solid 2px #000000;
    margin-top: 10px;
    padding: 5px 10px;
    overflow: hidden;
}

/* color */
.login_switch_tg .label_wrap {
    font-size: 14px;
    font-weight: 400;
    color: #141516;
}
.login_switch_tg .label_wrap > label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 36px;
}
.login_switch_tg .label_wrap > label > span {
    display: block;
    line-height: 36px;
}
.login_switch_tg .label_wrap > label > span.icon {
    margin-right: 8px;
}
.login_switch_tg .switch_wrap {
    padding-top: 5px;
    /* 체크박스가 체크되면 변경 이벤트 */
    /* 체크박스가 체크되면 변경 이벤트(응답이필요한 체크박스) */
}
.login_switch_tg .switch_wrap .toggleSwitch {
    width: 2.2rem;
    height: 1.2rem;
    display: block;
    position: relative;
    border-radius: 2rem;
    background-color: #fff;
    border: solid 2px #CBD2E0;
    cursor: pointer;
}
.login_switch_tg .switch_wrap .toggleSwitch .toggleButton {
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 50%;
    left: calc(100% - 2rem);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    background: #CBD2E0;
}
.login_switch_tg .switch_wrap .switch_input:checked ~ .toggleSwitch {
    border: solid 2px #F54141;
    background: #F54141;
}
.login_switch_tg .switch_wrap .switch_input:checked ~ .toggleSwitch .toggleButton {
    left: 1rem;
    background: #FFFFFF;
}
.login_switch_tg .switch_wrap .switch_ajax_input.check_true ~ .toggleSwitch {
    border: solid 2px #2D3648;
}
.login_switch_tg .switch_wrap .switch_ajax_input.check_true ~ .toggleSwitch .toggleButton {
    left: 1rem;
    background: #2D3648;
}
.login_switch_tg .switch_wrap .toggleSwitch, .login_switch_tg .switch_wrap .toggleButton {
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.login_button_tg label {
    color: #141516;
    font-weight: 700;
    font-size: 14px;
}
.login_button_tg .btn_wrap {
    margin-top: 5px;
    border: solid 1px #141516;
    height: 40px;
}
.login_button_tg .btn_wrap > div {
    width: 50%;
    text-align: center;
}
.login_button_tg .btn_wrap > div > label {
    color: #8E939D;
    font-size: 14px;
    line-height: 36px;
    display: block;
    cursor: pointer;
}
.login_button_tg .btn_wrap > div:nth-child(1) {
    border-right: 1px solid #141516;
}
.login_button_tg .btn_wrap > div.on {
    background: #141516;
}
.login_button_tg .btn_wrap > div.on > label {
    color: #FFFFFF;
}

.login_checkbox_lb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.login_checkbox_lb .cb_wrap {
    margin-right: 10px;
    /* 체크박스가 체크되면 변경 이벤트 */
}
.login_checkbox_lb .cb_wrap .cb_div {
    width: 20px;
    height: 20px;
    background-color: #FFFFFF;
    border: solid 3px #CBD2E0;
}
.login_checkbox_lb .cb_wrap .cb_div.on {
    background-image: url(../images/icon/check.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #F54141;
}
.login_checkbox_lb .cb_wrap .cb_input:checked + label > .cb_div {
    background-image: url(../images/icon/check.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #F54141;
    border: solid 2px #F54141;
}
.login_checkbox_lb .lb_wrap {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: -0.1em;
}
.login_checkbox_lb .lb_wrap span > a {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: -0.09em;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #F54141;
    width: 50px;
    margin-top: 3px;
}

.login_label {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #141516;
}

/* 반응형 */
/*중앙 기준으로 280 px 까지 대응 : Mobile - 320px ~ 767px : Tablet - 768px ~ 1023px : PC - 1024px ~*/
/* color */
/* color */
.member_service {
    position: relative;
    padding: 30px 10px 119px;
    min-height: 100vh;
}
.member_service .top_area {
    text-align: center;
}
.member_service .top_area .login_logo_title h3 {
    font-weight: 700;
    font-size: 18px;
    margin: 15px 0px 12px 0px;
}
.member_service .top_area .top_col-3 {
    display: grid;
    grid-template-columns: 26px auto 26px;
    position: relative;
}
.member_service .top_area .top_col-3 .col-1 {
    grid-column: 1;
}
.member_service .top_area .top_col-3 .col-2 {
    grid-column: 2;
}
.member_service .top_area .top_col-3 .col-3 {
    grid-column: 3;
}
.member_service .top_area .header_line {
    margin-top: 15px;
    margin-bottom: 0px;
    border: solid 1px #DBE0E9;
}
.member_service .top_area .header_line.bd-none {
    margin-top: 15px;
    margin-bottom: 0px;
    border: none;
}
.member_service .middle_area {
    padding: 15px 0px 30px 0px;
}
.member_service .middle_area .md_item:not(:last-child) {
    margin-bottom: 20px;
}
.member_service .bottom_area .control_wrap .bt_item:not(:last-child) {
    margin-bottom: 30px;
}
.member_service .bottom_area .control_wrap .join_links > button {
    margin: 5px 0px;
    padding-left: 74px;
}
.member_service .bottom_area .control_wrap .mypage_item {
    margin-bottom: 30px;
}
.member_service .bottom_area .control_wrap .mypage_item > label {
    font-size: 14px;
    font-weight: 700;
    color: #141516;
}
.member_service .bottom_area .control_wrap .mypage_item > p {
    font-size: 14px;
}
.member_service .bottom_area .control_wrap .mypage_item > hr {
    border: solid 2px #DBE0E9;
    margin-bottom: 40px;
}
.member_service .bottom_area .control_wrap .mypage_item > .switch_group .login_switch_tg {
    margin-top: 20px;
}
.member_service .bottom_area .control_wrap .mypage_item .login_link_btn {
    display: inline-block;
    width: 100%;
}
.member_service .bottom_area .control_wrap .mypage_item .login_link_btn > .link {
    display: block;
    width: 50%;
    height: 30px;
    float: left;
}
.member_service .bottom_area .control_wrap .mypage_item .login_link_btn > .link img {
    margin-left: 5px;
}
.member_service .bottom_area .control_wrap .mypage_item .login_link_btn > .link.blue {
    color: #3754EC;
}
.member_service .bottom_area .control_wrap .mypage_item .login_link_btn > .link.red {
    color: #F54141;
}
.member_service .bottom_area .link_hr {
    margin-top: 60px;
    margin-bottom: 50px;
}
.member_service .bottom_area .sns_link_wrap {
    text-align: center;
}
.member_service .bottom_area .sns_link_wrap .title {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.08em;
    color: #A2A8B3;
}
.member_service .bottom_area .sns_link_wrap .sns_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-top: 15px;
}
.member_service .bottom_area .sns_link_wrap .sns_link ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 208px;
}
.member_service .bottom_area .sns_link_wrap .sns_link ul li {
    margin-left: 16px;
    width: 40px;
}
.member_service .bottom_area .sns_link_wrap .sns_link ul li a {
    display: block;
}
.member_service .bottom_area .sns_link_wrap .sns_link ul li a span.icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #F7F8FB;
    border: 1px solid #CBD2E0;
    font-size: 0;
    line-height: 0;
}
.member_service .bottom_area .sns_link_wrap .sns_link ul li:first-child {
    margin-left: 0;
}
.member_service .bottom_area .sns_link_wrap .sns_link ul li.last_login {
    position: relative;
}
.member_service .bottom_area .sns_link_wrap .sns_link ul li.last_login:after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: -10px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #CBD2E0;
}
.member_service .bottom_area .sns_link_wrap .sns_link ul li.none {
    display: none;
}
.member_service .down_speech_bubble {
    display: none;
    position: absolute;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 208px;
}
.member_service .down_speech_bubble .pull {
    height: 30px;
    line-height: 30px;
    background-color: #CBD2E0;
}
.member_service .down_speech_bubble p {
    color: #141516;
    font-size: 12px;
}
.member_service .down_speech_bubble.show {
    display: block;
}

/* 반응형 */
/*중앙 기준으로 280 px 까지 대응 : Mobile - 320px ~ 767px : Tablet - 768px ~ 1023px : PC - 1024px ~*/
/* color */
.bold {
    font-weight: 700;
}

ul {
    margin: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-14 {
    margin-top: 14px;
}

.mt-20 {
    margin-top: 20px;
}

.pl-15 {
    padding-left: 15px;
}

.info_wrapper {
    display: grid;
    grid-template-columns: auto 1024px auto;
}
.info_wrapper .container {
    grid-column: 2;
}
@media (max-width: 1023px) {
    .info_wrapper {
        grid-template-columns: 25px calc(100% - 50px) 25px;
    }
}
.info_wrapper .container {
    font-family: "Noto Sans KR", sans-serif;
}
.info_wrapper .container .info_service {
    padding-bottom:120px;
    padding-left: 25px;
    padding-right: 25px;
}
.info_wrapper .container .top_area .login_logo_title {
    margin-top: 30px;
    margin-bottom: 30px;
}
@media (max-width: 1023px) {
    .info_wrapper .container .top_area .login_logo_title {
        margin-top: 20px;
        margin-bottom: 10px;
    }
}
.info_wrapper .container .top_area .login_logo_title .top_col-3 {
    display: grid;
    grid-template-columns: 26px auto 26px;
    position: relative;
}
.info_wrapper .container .top_area .login_logo_title .top_col-3 .col-1 {
    grid-column: 1;
}
.info_wrapper .container .top_area .login_logo_title .top_col-3 .col-2 {
    grid-column: 2;
}
.info_wrapper .container .top_area .login_logo_title .top_col-3 .col-3 {
    grid-column: 3;
}
.info_wrapper .container .top_area .login_logo_title .top_col-3 .close img {
    width: 14px;
}
.info_wrapper .container .top_area .login_logo_title .top_col-3 .logo {
    text-align: center;
}
@media (max-width: 1023px) {
    .info_wrapper .container .top_area .login_logo_title .top_col-3 .logo {
        display: none;
    }
}
.info_wrapper .container .top_area .login_logo_title .top_col-3 .logo img {
    width: 200px;
}
.info_wrapper .container .middle_area .info_title {
    color: #141414;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
}
.info_wrapper .container .middle_area .bxcn {
    font-size: 15px;
    line-height: 32px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #797A7B;
}
@media (max-width: 1023px) {
    .info_wrapper .container .middle_area .bxcn {
        font-size: 14px;
        line-height: 24px;
    }
}
.info_wrapper .container .middle_area .bxcn section.mt-0{
    margin-top: 0;
}
.info_wrapper .container .middle_area .bxcn section.mt-60{
    margin-top: 60px;
}
.info_wrapper .container .middle_area .bxcn section{
    margin-top: 30px;
}
@media (max-width: 1023px) {
    .info_wrapper .container .middle_area .bxcn section {
        margin-top: 20px;
    }
}
.info_wrapper .container .middle_area .bxcn section p.info_sub_title {
    color : #141414;
    font-size: 18px;
    font-weight: 700;
}
.info_wrapper .container .middle_area .bxcn section p.sub_title {
    font-weight: 700;
}
.info_wrapper .container .middle_area .bxcn section ul.inside {
    margin-left: 15px;
}
@media (max-width: 1023px) {
    .info_wrapper .container .middle_area .bxcn section ul.inside {
        margin-left: 5px;
    }
}
.info_wrapper .container .middle_area .bxcn section .grid_col_2 {
    display: grid;
    grid-column: 2fr;
    grid-row: 1fr;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
@media (max-width: 1023px) {
    .info_wrapper .container .middle_area .bxcn section .grid_col_2 {
        grid-column: 1fr;
        grid-row: 2fr;
        row-gap: 10px;
    }
}
.info_wrapper .container .middle_area .bxcn section .grid_col_2 table ul {
    list-style: disc;
    margin-left: 20px;
}
.info_wrapper .container .middle_area .bxcn section .grid_col_2 .officer_tb {
    grid-column: 1/2;
    grid-row: 1/1;
}
@media (max-width: 1023px) {
    .info_wrapper .container .middle_area .bxcn section .grid_col_2 .officer_tb {
        grid-column: 1/1;
        grid-row: 1/2;
    }
}
.info_wrapper .container .middle_area .bxcn section .grid_col_2 .manager_tb {
    grid-column: 2/3;
    grid-row: 1/1;
}
@media (max-width: 1023px) {
    .info_wrapper .container .middle_area .bxcn section .grid_col_2 .manager_tb {
        grid-column: 1/1;
        grid-row: 2/3;
    }
    .info_wrapper .container .middle_area .bxcn section .grid_col_2 .manager_tb table {
        margin-top: 0px;
    }
}
.info_wrapper .container .middle_area .bxcn section table {
    border-collapse: collapse;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    word-break: keep-all;
    margin-top: 20px;
}
.info_wrapper .container .middle_area .bxcn section table.no_hd {
    font-size: 14px;
}
@media (max-width: 1023px) {
    .info_wrapper .container .middle_area .bxcn section table {
        font-size: 16.8px;
        line-height: 24px;
    }
    .info_wrapper .container .middle_area .bxcn section table.no_hd {
        font-size: 12px;
    }
}
.info_wrapper .container .middle_area .bxcn section table th {
    border: 1px solid #CBCCD0;
    padding: 8px 20px;
    background-color: #E0E1E4;
    color: #000000;
    font-weight: 700;
}
.info_wrapper .container .middle_area .bxcn section table tr.tr_bg {
    background: #F7F7FA;
}
.info_wrapper .container .middle_area .bxcn section table tr.tr_bg td{
    font-weight: 500;
}
.info_wrapper .container .middle_area .bxcn section table tr td {
    border: 1px solid #CBCCD0;
    padding: 8px 20px;
    color: #141414;
}
.info_wrapper .container .middle_area .bxcn section table tr td.name {
    color: #000000;
    font-weight: 500;
    text-align: center;
}
.info_wrapper .container .middle_area .bxcn section table tr td.block {
    background-color: #E0E1E4;
}
.info_wrapper .container .middle_area .bxcn section table tr td.bold {
    font-weight: 700;
}
.info_wrapper .container .middle_area .bxcn section table tr td.blue {
    color: #0080FF;
}
.info_wrapper .container .middle_area .bxcn section table.no_hd tr td:nth-child(1) {
    width: 30%;
}
.info_wrapper .container .middle_area .bxcn section table.no_hd tr td:nth-child(2) {
    width: 70%;
}
.info_wrapper .container .middle_area .bxcn section table.no_hd tr td.name {
    background-color: #E0E1E4;
}
.info_wrapper .container .middle_area .bxcn section table.no_hd tr td.name.font_bold,
.info_wrapper .container .middle_area .bxcn section table.no_hd tr td.name.font_bold + td {
    font-weight: 700;
}
.info_wrapper .container .middle_area .bxcn section.pre_link button {
    padding: 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #F0F2F5;
    border: 1px solid #E0E1E4;
    border-radius: 5px;
    margin-top: 10px;
    position: relative;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.info_wrapper .container .middle_area .bxcn section.pre_link button span {
    font-size: 14px;
    color: #797A7B;
    display: block;
}
@media (max-width: 1023px) {
    .info_wrapper .container .middle_area .bxcn section.pre_link button span {
        font-size: 12px;
    }
}
.info_wrapper .container .middle_area .bxcn section.pre_link button .icon {
    position: absolute;
    right: 15px;
    margin-top: 2px;
    height: 11px;
    margin-left: 0px;
}
.info_wrapper .container .middle_area .bxcn section.pre_link button .icon img {
    width: 8px;
    height: 11px;
}
.info_wrapper .container .middle_area .bxcn section.pre_link button.box {
    background-color: transparent;
}
.info_wrapper .footer_area {
    text-align: center;
    margin-bottom: 40px;
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    margin-top: 120px;
}
.info_wrapper .footer_area span {
    font-size: 11px;
    color: #141516;
}

/* 추가 20230309 이원석 */
.content-area {
    max-width: 980px;
    width: 100%;
    margin: 46px auto 84px;
    font-family:'Noto Sans KR', sans-serif;
    letter-spacing: -1px;
}
.content-area .main-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    color:#141414;
    text-align: center;
}
.content-area .content-body {
    font-size: 14px;
    line-height: 24px;
    color:#797A7B;
    margin: 0 23px;
}
.content-body.promo {
    padding-top: 54px
}
#color-black{color: #141414;}
.font-semi-bold {font-weight: 500;}
.pt-18 {padding-top: 18px;}
.pt-20 {padding-top: 20px;}
.pt-29 {padding-top: 29px;}
.pt-34 {padding-top: 34px;}
.content-body .list-area .list-group {padding-left: 14px; margin: 0;}
.content-body .list-area .list-group .list-type-decimal {
    list-style-type: decimal;
}
.top-area {
    margin: 0 23px;
}
.content-body .footer_area {
    text-align: center;
    margin-bottom: 34px;
    left: 0;
    bottom: 10px;
    width: 100%;
    margin-top: 34px;
}
.content-body .footer_area span {
    font-size: 11px;
    color: #141516;
}
@media (max-width:768px) {
    .content-body {
        padding-top: 34px
    }
    .content-area {
        margin: 31px auto 84px;
    }
    .close-btn {
        margin-bottom: 15px
    }
}