@charset "utf-8";
html,
body {
    font-size: 16px;
}
:root {
    --main-color: #00704a;
    /* --main-color: #c0d72f; */
    --main-color-2: #38cee6;
    --sub-color: #ff7e73;
    --sub-color-2: #56b6ff;
    --sub-color-3: #d2511e;
    --sub-color-4: #8fa90d;
    --sub-color-5: #232429;
    --sub-color-6: #f2eee7;
    --c-black-1: #222;
    --c-black-2: #333;
    --c-black-3: #555;
    --c-black-4: #999;
    --c-black-5: #ddd;
    --c-black-6: #efefef;
    --c-black-7: #f0f0f0;
    --c-black-8: #f6f6f6;
    --c-black-9: #fafafa;

    --logo-color: #ffc20e;
    --accent-color: #e3a900;

    --txt-xs: 0.75rem;/* 12px */
    --txt-sm: 0.875rem;/* 14px */
    --txt-md: 1rem;/* 16px */
    --txt-md-1: 1.063rem;/* 17px */
    --txt-lg: 1.125rem;/* 18px */
    --txt-lg-2: 1.25rem;/* 20px */
    --txt-xl: 1.375rem;/* 22px */
    --txt-2xl: 1.5rem;/* 24px */
    --txt-3xl: 1.625rem;/* 26px */
    --txt-3xl-1: 1.875rem;/* 30px */
    --txt-3xl-2: 2rem;/* 32px */
    --txt-4xl: 2.25rem;/* 36px */
    --txt-4xl-1: 2.625rem;/* 42px */
    --txt-5xl: 3rem;/* 48px */
    --txt-6xl: 3.75rem;/* 60px */
    --txt-7xl: 4.25rem;/* 68px */
    --txt-8xl: 5rem;/* 80px */

    --pad-tb-xs: 0.625rem;/* 10px*/
    --pad-tb-sm: 1.25rem;/* 20px */
    --pad-tb-md: 1.875rem;/* 30px */
    --pad-tb-md-1: 2rem;/* 32px */
    --pad-tb-lg: 2.5rem;/* 40px */
    --pad-tb-xl: 3.75rem;/* 60px */
    --pad-tb-2xl: 5.625rem;/* 90px */

    --radius-all-xxs: 5px;
    --radius-all-xs: 0.5rem;/* 8px */
    --radius-all-sm: 0.875rem;/* 14px */
    --radius-all-md: 1.25rem;/* 20px */
    --radius-all-lg: 3.125rem;/* 50px */
    --radius-all-xl: 3.75rem;/* 60px */

    --radius-2-xs: 0 0.5rem 0 0.5rem;
    --radius-2-sm: 0 0.875rem 0 0.875rem;
    --radius-2-md: 0 1.875rem;
    --radius-2-md-re: 1.875rem 0;
    --radius-2-lg: 0 3.125rem;
    --radius-2-xl: 0 3.75rem 0 3.75rem;
    --radius-2-xl-re: 3.75rem 0 3.75rem 0;

    --radius-3-sm: 0.875rem 0.875rem 0 0.875rem;
    --radius-3-md: 1.875rem 1.875rem 0 1.875rem;
    --radius-3-lg: 3.125rem 3.125rem 0 3.125rem;
    --radius-3-xl: 3.75rem 3.75rem 0 3.75rem;
    --round_max: 999rem;

    --web-width: 1300px;

    --main-font: 'Pretendard', sans-serif;
    --sub-font: 'Ubuntu', sans-serif;
}


/**************************************************************/
/**************************************************************/
/****************************basic css*************************/
/**************************************************************/
/**************************************************************/

/* ----------------- pc mobile hidden & show -----------------*/
.pc_hidden {
    display: none !important;
}
.m_hidden {
    display: block !important;
}
.pc_hidden_f {
    display: none !important;
}
.m_hidden_f {
    display: flex !important;
}
.br_hidden {
    display: none !important;
}

/* ---------------------- margin setting -----------------------*/
.mb_0 {
    margin-bottom: 0 !important;
}
.mb_10 {
    margin-bottom: 0.625rem !important;
}
.mb_20 {
    margin-bottom: 1.25rem !important;
}
.mb_30 {
    margin-bottom: 1.875rem !important;
}
.mb_40 {
    margin-bottom: 2.5rem !important;
}
.mb_60 {
    margin-bottom: 3.75rem !important;
}
.mb_90 {
    margin-bottom: 5.625rem !important;
}
.mt_0 {
    margin-top: 0 !important;
}
.mt_4 {
    margin-top: 0.25rem !important;
}
.mt_10 {
    margin-top: 0.625rem !important;
}
.mt_20 {
    margin-top: 20px !important;
}
.mt_30 {
    margin-top: 1.875rem !important;
}
.mt_40 {
    margin-top: 2.5rem !important;
}
.mt_50 {
    margin-top: 3rem !important;
}
.mt_60 {
    margin-top: 3.75rem !important;
}
.mt_90 {
    margin-top: 5.625rem !important;
}
.mt_100 {
    margin-top: 6.25rem !important;
}
.ml_10 {
    margin-left: 10px !important;
}
.mr_10 {
    margin-right: 10px !important;
}
/* -------------------- basic flex setting -------------------*/
.flex {
    display: flex;
    /* flex-wrap: wrap; */
}
.flex.flex_end {
    justify-content: flex-end;
}
.flex.flex_bet {
    justify-content: space-between;
}
.blue { color: #19459d; font-weight: 600;}
.blue a { color: #19459d;}
.red { color: #ff0000;}
.point {color: var(--main-color);  font-weight: 600;}
.join_point { color: #ff0000;}
.align_c {text-align: center;}
.align_r {text-align: right;}
.align_l {text-align: left;}
.flex {display: flex;}
.flex > .btn_met {margin-right: 5px;}
.flex.align_c {justify-content: center;}
.flex.align_r {justify-content: flex-end;}
.flex.valign_m {align-items: center;}
.flex.valign_b {align-items: flex-end;}
.fl { float: left;}
.fr { float: right;}
.cursor {cursor: pointer;}
.bold {font-weight: 600;}
.img_wrap {
    width: 100%;
    margin: 0rem auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--c-black-5);
    padding: var(--pad-tb-lg);
    border-radius: var(--radius-all-sm);
}

.img_wrap.bgno { background: none;}
.img_wrap.brno { border: none;}
.img_wrap.pdno { padding: 0;}
.img_wrap img { width: 100%; max-width: fit-content;}
.min_img {
    width: 100%;
    margin: 0rem auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--c-black-5);
    padding: var(--pad-tb-lg);
    border-radius: var(--radius-all-sm);
}
.min_img img {
    width: 100%;
    min-width: 800px;
    max-width: fit-content;
}
.img_center {
    width: 100%;
    margin: 0rem auto;
    text-align: center;
    /* border: 1px solid var(--c-black-5); */
}
.img_center img {
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
}

.col-lg-12 {
    width: 100%
}

.col-lg-11 {
    width: 91.66666667%
}

.col-lg-10 {
    width: 83.33333333%
}

.col-lg-9 {
    width: 75%
}

.col-lg-8 {
    width: 66.66666667%
}

.col-lg-7 {
    width: 58.33333333%
}

.col-lg-6 {
    width: 50%
}

.col-lg-5 {
    width: 41.66666667%
}

.col-lg-4 {
    width: 33.33333333%
}

.col-lg-3 {
    width: 25%
}

.col-lg-2 {
    width: 16.66666667%
}

.col-lg-1 {
    width: 8.33333333%
}


/* -------------------- text basic setting -------------------*/
.txt_center {text-align: center !important;}
.txt_justify {text-align: justify !important; word-break: break-all;}
.txt_left {text-align: left !important;}
.txt_right {text-align: right !important;}
.txt_5xl {
    font-size: var(--txt-5xl);
    line-height: 1.5em;
}
.txt_4xl {
    font-size: var(--txt-4xl);
    line-height: 1.5em;
}
.txt_3xl {
    font-size: var(--txt-3xl);
    line-height: 1.5em;
}
.txt_2xl {
    font-size: var(--txt-2xl);
    line-height: 1.5em;
}
.txt_xl {
    font-size: var(--txt-xl);
    line-height: 1.5em;
}
.txt_lg {
    font-size: var(--txt-lg);
    line-height: 1.5em;
}
.txt_lg-2 {
    font-size: var(--txt-lg-2);
    line-height: 1.625em;
}
.txt_lg-2 span{
    font-size: 1rem;
    font-weight: 500;
}
/* .txt_lg span {
    font-weight: 500;
    color: var(--main-color-2);
} */
.txt_md-1 {
    font-size: var(--txt-md-1);
    line-height: 1.375rem;
}
.txt_lg_thin {
    font-size: var(--txt-lg);
    font-weight: lighter;
    display: block;
    color: var(--c-black-3);
    line-height: 1.6em;
}
.txt_lg_thin span {
    font-weight: normal;
    color: var(--main-color-2);
}
.txt_md {
    font-size: var(--txt-md);
}

.txt_ex {
    font-size: var(--txt-sm);
    color: var(--c-black-3);
}
.txt_sm {
    font-size: var(--txt-sm);
}
.txt_strong {
    font-weight: 500;
}
.txt_light {
    font-weight: 300;
}
.txt_normal {
    font-weight: 400;
}
/* -------------------- text color setting -------------------*/
.main_clr {
    color: var(--main-color) !important;
}
.main_clr02 {
    color: var(--main-color-2) !important;
}

.sub_clr {
    color: var(--sub-color) !important;
}
.sub_clr02 {
    color: var(--sub-color-2) !important;
}
.sub_clr03 {
    color: var(--sub-color-3) !important;
}
.sub_clr04 {
    color: var(--sub-color-4) !important;
}
.txt_grey {
    color: var(--c-black-3) !important;
}
.txt_red {
    color: #d22b28 !important;
}
.txt_blue {
    color: #2868d2 !important;
}
.txt_blk {
    color: var(--c-black-1) !important;
}
.txt_point {
    color: var(--main-color) !important;
}
.txt_accent {
    color: var(--accent-color) !important;
}
.logo_clr {
    color: var(--logo-color) !important;
}
/* -------------------- text link setting -------------------*/
.txt_link {
    cursor: pointer;
    display: inline-block;
    color: var(--sub-color-2) !important;
    font-weight: 400;
}
.txt_link span.material-icons {
    vertical-align: sub;
    font-size: 18px;
    margin-right: 0.25rem;
    color: var(--main-color-2);
}

/* ------------------서브페이지 첫번째 제목------------------*/
.page_tit {
    margin: 0rem auto 3rem;
}

.page_tit h4 {
    font-size: var(--txt-5xl);
    line-height: normal;
    text-align: center;
    width: auto;
    /* letter-spacing: 1px; */
    position: relative;
    font-weight: 600;
    padding-bottom: 5rem;
}
.page_tit h4:before {
    content: '';
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 50px;
    background: var(--c-black-4);
    position: absolute;
}

/* ------서브페이지 두번째 제목 (bullet 없는 센터버전)-------*/
.cont_tit_m {
    /* margin: 3.5rem 0 1.25rem; */
}
.cont_tit_nm {
    margin: 0 0 1rem;
}
.cont_tit_m h5, .cont_tit_nm h5 {
    font-size: var(--txt-3xl);
    display: block;
    font-weight: 600;
    word-break: keep-all;
    margin: 3.5rem 0 1.25rem;
}

/* ------------------서브페이지 두번째 제목 (bullet 버전)------------------*/

.cont_tit_m h5.bullet, .cont_tit_nm h5.bullet {
    padding-left: 20px;
    position: relative;
    margin: 3.5rem 0 1.25rem;
}
.cont_tit_m h5.bullet::before, .cont_tit_nm h5.bullet::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 26px;
    border-radius: 10px;
    background: var(--main-color);
    /* background: rgba(40, 154, 213, 0.65);
    background-image: linear-gradient(120deg, rgba(0, 169, 169, 100%), rgba(40, 154, 213, 0.65) 100%); */
    top: 4px;
    left: 0;
}
.cont_tit_m h5.bullet, .cont_tit_nm h5.bullet img {
    width: 100%;
    max-width: fit-content;
}
.cont_tit_nm h5 strong {
    display: block;
}


/* ------------------서브페이지 세번째 제목------------------*/
.cont_tit_m h6, .cont_tit_nm h6 {
    font-size: var(--txt-2xl);
    display: block;
    font-weight: 500;
    word-break: keep-all;
    margin: 2rem 0 1.25rem;
}
.cont_tit_m h6.txt_color, .cont_tit_nm h6.txt_color {
    color: var(--accent-color);
    font-weight: 500;
}
.cont_tit_m h6.bullet, .cont_tit_nm h6.bullet {
    padding-left: 2.5rem;
    position: relative;
    margin: 2rem 0 1.25rem;
}
.cont_tit_m h6.bullet::before, .cont_tit_nm h6.bullet::before {
    position: absolute;
    content: '\e871';
    font-family: 'Material Icons';
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    font-size: 1.875rem;
    color: var(--main-color);
}

.cont_tit_m h6.bg, .cont_tit_nm h6.bg {
    padding: 0.75rem 2rem;
    position: relative;
    background: rgba(187, 142, 91, 0.5);
    border: 1px solid var(--main-color-2);
    margin: 2rem 0 1.25rem;
}

.cont_tit_m h6.line, .cont_tit_nm h6.line {
    font-size: var(--txt-xl);
    padding-top: 1rem;
    position: relative;
    margin: 2rem 0 1.25rem;
}
.cont_tit_m h6.line::before, .cont_tit_nm h6.line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 36px;
    height: 2px;
    background-color: var(--main-color);
}

/**************************************************************/
/**************************************************************/
/*************************table setting ***********************/
/**************************************************************/
/**************************************************************/
.tb_scroll {
    /* overflow-x: auto; */
    /* border-bottom: 1px var(--sub-color-3) solid; */
}
.tb_scroll table.normal {
    min-width: 640px;
}
table.normal {
    width: 100%;
    border-top: 2px var(--main-color) solid;
    /* border-right: 1px var(--c-black-5) solid;
    border-left: 1px var(--c-black-5) solid; */
    /* table-layout: fixed; */
    /* min-width: 640px; */
    border-collapse: collapse;
    line-height: 1.5em;
    text-align: center;
    background: #fff;
}
.table_min {
    min-width: 280px;
}
table.normal tr {
    border-bottom: 1px var(--c-black-5) solid;
}
table.normal th {
    background-color: var(--c-black-7);
    /* border-top: 4px solid var(--main-color); */
    border-right: 1px var(--c-black-5) solid;
    padding: 14px;
    font-weight: 600;
    font-size: var(--txt-md-1);
}
table.normal th:first-child {
    border-left: 1px var(--c-black-5) solid;
}
table.normal tbody th {
    background-color: var(--c-black-9);
}
table.normal td {
    padding: 14px;
    border-right: 1px var(--c-black-5) solid;
    vertical-align: middle;
}
table.normal td:first-child {
    border-left: 1px var(--c-black-5) solid;
}
table.normal .cont {
    /*    padding: 14px;*/
    text-align: left;
    word-break: keep-all;
}
table.normal .main_tit {
    background: var(--c-black-4);
    color: #fff;
    font-size: var(--txt-lg);
    font-weight: 500;
}
table.normal .sub_tit {
    background: #aaa;
    border-right: 1px #fff solid;
}
table.normal .sub_tit:last-child {
    border-right: 0;
}
.tb_txt_eng {color: var(--main-color-2); font-size: 0.925rem;}
table tr .txt_left {
    text-align: left;
}
table.normal .gray_bg {
    background: var(--c-black-4);
}
table.normal tfoot td {
    background: var(--c-black-8);
    font-weight: 600;
}
table tr .valign_top {
    vertical-align: top;
}
table th.main_title {
    background: #38322d;
    color: #fff;
}

/*격행으로 배경 컬러*/
table.normal.tr_color thead th {
    background: #f2eee7;
    border-right: 1px #dbd3c5 solid;
}
table.normal.tr_color tbody tr:nth-child(2n) {
    background: var(--c-black-8);
}

/*열리는 tr*/
table.normal.tr_open thead th {
    background: #f2eee7;
    border-right: 1px #dbd3c5 solid;
}
table.normal.tr_open .title {
    position: relative;
    cursor: pointer;
}
table.normal.tr_open .title:hover {
    background: var(--c-black-8);
}
table.normal.tr_open .title:nth-child(2n) {
    background: var(--c-black-8);
}
table.normal.tr_open .open {
    position: relative;
}
table.normal.tr_open .open:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -5px 12px auto auto;
    vertical-align: middle;
    border-right: 1px solid var(--main-color);
    border-top: 1px solid var(--main-color);
    transform: translateY(-50%) rotate(135deg);
    position: absolute;
    top: 55%;
    right: 0px;
}
table.normal.tr_open .title:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -5px 12px auto auto;
    vertical-align: middle;
    border-right: 1px solid var(--main-color);
    border-top: 1px solid var(--main-color);
    transform: translateY(-50%) rotate(135deg);
    position: absolute;
    top: 55%;
    right: 0px;
}
table.normal .description {
    display: none;
}
table.normal .description td {
    background: #fff;
}
table.normal .description .sub_bg {
    background: var(--c-black-8);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: left;
}

/**************************************************************/
/**************************************************************/
/*************************popup setting ***********************/
/**************************************************************/
/**************************************************************/
/* ---------------------- modal popup ------------------------*/
.modal_conts .btn_close_m {
    display: inline-block;
    text-align: center;
    width: 120px;
    margin: 0 auto;
    margin-top: 20px;
    height: 38px;
    background: var(--main-color);
    line-height: 36px;
    color: #fff;
    cursor: pointer;
    font-size: var(--txt-md);
    box-sizing: border-box;
    padding: 0;
}
.modal_conts .btn_area {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: none;
}
.modal_tr table tr {
    cursor: pointer;
}
.modal_conts table th {
    color: var(--c-black-1);
    font-size: var(--txt-lg);
    padding: 16px 30px;
}
.modal_conts table td {
    padding: 16px 30px 16px 16px;
}
.modal_conts table td img {
    max-width: 600px;
}
.modal_conts {
    display: none;
    max-width: 800px;
    min-width: 300px;
    background: #fff;
    max-height: 700px;
    overflow: auto;
    border-radius: var(--radius-all-sm);
}
.modal_conts .modal_tit {
    width: 100%;
    background: var(--main-color);
    text-align: center;
    padding: 1rem;
}
.modal_conts .modal_tit h5 {
    font-size: var(--txt-2xl);
    display: inline-block;
    font-weight: 600;
    word-break: keep-all;
    color: #fff;
}
.modal_conts .modal_tit img {
    margin-top: 5px;
    cursor: pointer;
}
.modal_conts .tb {
    z-index: 999 !important;
    padding: 2rem;
    /* border: 1px solid var(--c-black-4); */
    max-width: 800px;
    min-width: 300px;
    /* max-height: 600px; */
    /* overflow-y: auto; */
}
.modal_conts .tb img {
    margin: 0 auto;
    display: block;
    max-height: 660px;
}

/* ---------------------- layer popup ------------------------*/
.layer_popup {
    position: absolute;
    width: 450px;
    /*height: 450px;*/
    top: 0px;
    left: 0px;
    z-index: 10000000002;
    cursor: pointer;
}
.layer_popup p {
    margin: 0 auto;
    text-align: center;
}
/*.layer_popup p img {width:330px;}*/
.layer_popup .close_wrap {
    background-color: rgba(0, 0, 0, 0.8);
    height: 30px;
    color: #fff;
    line-height: 30px;
    text-align: center;
}
.layer_popup .pop_close {
    float: left;
    padding: 0 6px;
}
.layer_popup .chk_close {
    float: right;
    padding: 0 6px;
}
.layer_popup .chk_close a {
    color: #fff;
}
@media screen and (max-width:580px) {
    .layer_popup {position:absolute; width:100%; height: 100%; top:0px; left: 0px; background-color: rgba(0,0,0,0.5); z-index:10000000002;cursor:pointer; }
    .layer_popup p {margin: 0 auto; margin-top:50px; text-align: center;}
    .layer_popup p img {width:300px;}
    .layer_popup .close_wrap {background-color: rgba(0,0,0,0.0); height: 50px; color: #fff; line-height: 30px;text-align: center;}
    .layer_popup .pop_close {
        float: none;
        width: 100%;
        padding: 0 6px;
    }
    .layer_popup .chk_close {
        float: none;
        width: 100%;
        padding: 0 6px;
    }
}


/* ---------------------- window popup ------------------------*/
#window_popup {padding: 20px; width: 840px; min-width: 840px; max-width: 840px; max-height: 740px;}
#window_popup table {width: 800px;}
#window_popup table td {padding: 8px 10px !important;}
.print_top {
    display: flex;
    justify-content: space-between;
    border-bottom: 4px solid var(--c-black-4);
    padding-bottom: 0.5em;
}
.print_top .left {
    display: flex;
    gap: 1em;
}
.print_top .left .img {
    max-width: 100px;
}
.print_top .left .txt {
    display: flex;
    align-items: flex-end;
}
.print_top .left .txt p {
    font-size: 12px;
}
.print_top .right {
    display: flex;
    align-items: flex-end;
    font-size: 36px;
}
.print_center {
    margin: 20px 0;
    min-height: 65vh;
}
.print_center h6 {
    font-size: 20px;
    margin-bottom: 16px;
}
.print_center .wrap {
    display: flex;
    flex-wrap: wrap;
}
.pop_print .print_tb tr {
    border-bottom: 1px solid var(--c-black-5);
    border-left: 1px solid var(--c-black-5);
}
.pop_print .print_tb th {
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
    border-right: 1px solid var(--c-black-5);
}
.pop_print .print_tb td {
    border-right: 1px solid var(--c-black-5);
    font-size: 14px;
}
.print_bottom .bottom_txt {
    margin: 30px 0;
}
.print_bottom .bottom_txt p {
    font-size: 12px;
}
.print_bottom .bottom_txt p span {font-weight: 600;font-size: 14px;}


/**************************************************************/
/**************************************************************/
/********************* button & tag setting *******************/
/**************************************************************/
/**************************************************************/
/* ------------------ basic button setting -------------------*/
.pop_btn_confirm {
    display: inline-block;
    text-align: center;
    width: 80px;
    background: var(--main-color);
    height: 35px;
    line-height: 35px;
	font-size: 15px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.pop_btn_cancel {
    display: inline-block;
    text-align: center;
    width: 80px;
    background: var(--c-black-4);
    height: 35px;
    line-height: 35px;
	font-size: 15px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.viewmore {
    cursor: pointer;
    font-size: 1rem;
    color: var(--c-black-1);
    font-weight: bold;
    letter-spacing: -0.5px;
    padding-right: 20px;
    box-sizing: border-box;
    transition: 0.5s;
    display: inline-block;
    position: relative;
}
.viewmore::after {
    content: '';
    background: url(../images/common/viewmore.png);
    position: absolute;
    top: 3px;
    right: 0;
    width: 16px;
    height: 16px;
}
.viewmore:hover {
    color: var(--c-black-2);
}
.viewmore:hover::after {
    background: url(../images/common/viewmore_bl.png);
}

/*버튼*/
.btn_wrap {margin: 0 auto;}
.btn_wrap.flex { gap: 1rem;}
.btn_wrap .material-icons-outlined { margin-right: -0.5rem; margin-left: 0.5rem;}
.btn_write {
    display: inline-block;
    text-align: center;
    float: right;
    width: 120px;
    background: var(--main-color);
    height: 42px;
    line-height: 42px;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    border-radius: var(--radius-all-xxs);
    font-size: var(--txt-lg);
}
.btn_modify {
    display: inline-block;
    text-align: center;
    width: 120px;
    background: var(--sub-color);
    height: 42px;
    line-height: 42px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.btn_reply {
    display: inline-block;
    text-align: center;
    width: 120px;
    background: var(--main-color);
    height: 42px;
    line-height: 42px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.btn_delete {
    display: inline-block;
    text-align: center;
    width: 120px;
    background: #999;
    height: 42px;
    line-height: 42px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.btn_etc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    line-height: 36px;
    /* width: 120px; */
    text-align: center;
    vertical-align: top;
    font-size: 0.925rem;
    cursor: pointer;
    /* border: 1px solid var(--main-color); */
    /* margin: 2px 10px; */
    box-sizing: border-box;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-all-xxs);
    color: #fff;
    background: var(--c-black-3);
}

.btn_etc.color01 {
    background: var(--main-color);
}
.btn_etc.color02 {
    background: var(--sub-color);
    color: #fff;
}
.btn_normal {
    background: var(--main-color);
    /* font-size: 1.1rem; */
    color: #fff;
    /* font-weight: 500;
    width: auto; */
    /* height: 3rem; */
    text-align: center;
    /* border-radius: 6px;
    letter-spacing: 0; */
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: 0.3s;
    margin: 0 auto;
    max-width: 250px; */
}
.btn_link span {
    padding-left: 0.25rem;
    font-size: 1.125rem;
    vertical-align: sub;
    color: #fff !important;
}
.btn_down:hover {
    background: var(--main-color);
}
.btn_line {
    border: 1px solid var(--c-black-1);
    color: var(--c-black-1);
    box-sizing: border-box;
    font-size: var(--txt-md);
    font-weight: 600;
    width: 160px;
    height: 45px;
    display: block;
    transition: 0.3s;
    position: relative;
}
.btn_line .inner {
    position: absolute;
    font-weight: 600;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.btn_line span.bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--c-black-1);
}
.btn_line:hover .inner {
    color: #fff;
}
.btn_line:hover span.bg {
    width: 100%; animation: btn1Ani 0.3s linear 1;
}
.btn_line_wht {
    border: 1px solid #fff;
    color: #fff;
    box-sizing: border-box;
    font-size: var(--txt-lg);
    font-weight: 600;
    width: 160px;
    height: 45px;
    display: block;
    transition: 0.3s;
    position: relative;
}
.btn_line_wht .inner {
    position: absolute;
    font-weight: 600;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.btn_line_wht span.bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #fff;
}
.btn_line_wht:hover .inner {
    color: var(--sub-color);
}
.btn_line_wht:hover span.bg {
    width: 100%; animation: btn1Ani 0.3s linear 1;
}
    @keyframes btn1Ani{
        0%{width: 0;}
        100%{width: 100%;}
    }
.btn_bg {
    font-size: var(--txt-lg);
    font-weight: 600;
    width: 160px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    color: #fff;
}

.btn_ic_wrap {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.btn_ic {
    display: flex;
    justify-content: space-between;
    padding: 1.75rem 2rem;
    border-radius: var(--radius-all-xs);
    align-items: center;
    transition: 0.3s;
}
.btn_ic:hover {
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 20%);
}
.btn_ic.btn_ic_red:hover {
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 50%);
}
.btn_ic .tit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.btn_ic .tit .ic {
    max-width: 2rem;
    max-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_ic .tit .ic img {
    max-height: 1.925rem;
    max-width: 1.925rem;
}
.btn_ic .tit p {
    font-size: 1.25rem;
    font-weight: 400;
}
.btn_ic .tit p span {
    font-weight: 600;
}
.btn_ic .more {position: relative;color: var(--main-color);font-weight: 800;font-family: var(--main-font);font-size: 0.825rem;}
.btn_ic .more::before {content: '';position: absolute;background: url(../images/common/symbol_round.svg) no-repeat;background-size: cover;width: 170%;aspect-ratio: 1/1;top: -95%;left: 50%;transform: translate(-50%);transition: 0.5s;}
.btn_ic.btn_ic_wht {
    background: #fff;
    border: 1px solid #fff;
}
.btn_ic.btn_ic_red {
    background: var(--main-color);
    border: 1px solid var(--main-color);
}
.btn_ic.btn_ic_yellow {
    background: var(--main-color-2);
    border: 1px solid var(--main-color-2);
}
.btn_ic.btn_ic_red, .btn_ic.btn_ic_yellow p, .btn_ic.btn_ic_red .more, .btn_ic.btn_ic_yellow .more {
    color: #fff;
}
.btn_ic.btn_ic_red .more::before, .btn_ic.btn_ic_yellow .more::before {
    background: url(../images/common/symbol_round_wht.svg) no-repeat;
}

/* new btn */
.btn_wrap .link_button img{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_wrap .download_button img{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* -------------------- state tag setting --------------------*/
.state {
	min-width: 40px;
	padding: 0.25rem 0.375rem;
	border-radius: var(--radius-all-xxs);
	text-align: center;
	font-size: 1rem;
	position: relative;
	/* height: 30px; */
	display: inline-block;
    /* background: var(--sub-color-3); */
    font-weight: 500;
}
.state.state01 { 
    color: var(--main-color);
}
.state.state02 {
	color: var(--sub-color);
}
.state.state03 {
	background: var(--c-black-3);
}


/* ------------------- top button setting --------------------*/
#top_btn {
    position: fixed;
    right: 200px;
    bottom: 140px;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    cursor: pointer;
    z-index: 999;
    background: url(/images/common/top_btn.png) no-repeat;
}





/**************************************************************/
/**************************************************************/
/****************************header****************************/
/**************************************************************/
/**************************************************************/

#header {
    position: absolute;
    top: 0;
    /* color: #fff; */
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
    /* background: #fff; */
    /* border-bottom: 1px solid #dddddd8a; */
}
#header.mainheader {
    /* background: none;
    border: none; */
}
#header .logo a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 33px;
    width: 168px;
}
#header .logo a img {
    width: 100%;
}
#header .logo a img.on {
    display: block;
}
#header .logo a img.off {
    display: none;
}
#header.on {
    position: fixed;
    top: 0;
    animation: smoothScroll 0.3s forwards;
    background: rgb(255 255 255 / 100%);
    /* background: var(--sub-color); */
    border-bottom: 1px solid var(--c-black-5);
}
#header.mainheader.on {
    background: rgb(255 255 255 / 100%);
}
#header.on .logo a img.on {
    display: block !important;
}
#header.on .logo a img.off {
    display: none !important;
}
#header.on nav {
    display: block;
}

#header nav {
    flex-grow: 3;
    width: auto;
}
#header nav #gnb {
    /* width: 1190px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
#header nav #gnb > li {
    width: 190px;
    height: 90px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    position:relative;
    transition: .5s height, .2s background;
}
#header nav #gnb li .nav_dep1 {
    font-size: 1.188rem;
    font-weight: 500;
    width: 100%;
    min-height: auto;
    color: #fff;
    letter-spacing: normal;
    /* text-transform: uppercase; */
    /* text-shadow: 0px 0px 6px rgba(51, 51, 51, 0.6); */
}
#header.active nav #gnb li .nav_dep1 {
    text-shadow: none;
}
#header.on nav #gnb li .nav_dep1 {
    text-shadow: none;
}
#header nav #gnb li .nav_dep1 span {
    display: block;
    margin-top: 2px;
}
#header.on nav #gnb li .nav_dep1 {color: var(--c-black-1); display: block;}
#header.on .open .login a, #header.on .open .join a, #header.on .open .lang .btn_lang, #header.on .open .lang .btn_lang a {color: var(--c-black-1) !important;}

#header.on .menu_area ul li a.btn_ham_menu {/*background-image: url(../images/common/ic_ham_menu_on.png) !important;*/}
#header.on .open ul li a {
    color: var(--c-black-1) !important;
}
#header.on .open ul li a .material-icons-round, #header.on .open ul li a .material-icons-outlined {
    color: var(--c-black-1) !important;
}

#header nav #gnb li .sub_nav{
    width:100%;
    position:absolute;
    top:91px;
    background-color: rgba(32,53,140,0.8);
    z-index: 99999;
    display: none;
}
#header nav #gnb li .sub_nav:hover{background-color: rgba(51,68,139,0.8);}
#header nav #gnb li .sub_nav>li{
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
}
#header nav #gnb li .on{display:block;transition: ease-in-out 0.2;}
#header nav #gnb li .sub_nav>li>a{
    min-height:inherit;min-width:inherit;
    display: block;
    font-size: var(--txt-md);
    word-break: break-all;

    min-height: auto;
    line-height: 1.3em;
    white-space: break-spaces;
    letter-spacing: -1px;
    /* color: var(--c-black-3); */
    color: #fff;
    transition: 0.3s;
}
#header nav #gnb li .sub_nav li>a:hover{font-weight:500;}


#header .open {
    /* display: flex; */
    width: 201px;
}
#header .open .login, #header .open .join  {
    margin-left: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.925rem;
}
#header .open .login a, #header .open .join a {
    color: #fff;
}
#header.on .open .login a, #header.on .open .join a, #header.on .open .lang .btn_lang, #header.on .open .lang .btn_lang a {
    color: var(--c-black-3);
}

.lang .btn_lang {
    cursor: pointer;
    text-align: center;
    /* color: #fff; */
    font-weight: bold;
    font-size: 0.925rem;
}
.lang {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 2rem;
}
.lang .lang_list {
    /* display: none; */
    position: absolute;
    margin-top: 11.4rem;
    width: 4.5rem;
    background: #fff;
    z-index: 9999999;
    font-size: var(--txt-sm);
    text-align: center;
    transition: max-height 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.lang .lang_list.on {
    /* display: block !important; */
    position: fixed;
    max-height: 500px; /* Adjust this value to match the expected expanded height */
}

.lang .lang_list li {
    margin: 20px 10px;
}
.lang .lang_list li a {
    display: block;
    width: 100%;
    margin: 0 auto;
}
#header .open ul li a {
    font-size: var(--txt-sm);
    line-height: 100px;
    /* color: #fff; */
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px; */
}
#header .open ul li a .material-icons-round, #header .open ul li a .material-icons-outlined {
    font-family: 'Material Icons Round';
    font-weight: normal;
    font-style: normal;
    font-size: 36px;
    display: inline-block;
    line-height: 100px;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    color: #fff;
    width: 100%;
}
#header .open ul li.header_search_wrap_02{
    display: flex;
    align-items: center;
    justify-content: center;
}
#header .open ul li .header_search{
    border: none;
    text-indent: -9999px;
    background: url(../images/common/ic_search_clr.png) center no-repeat;
    width: 26px;
    height: 24px;
    margin-right: 8px;
    background-size: contain;
}
.float_wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    transition: all 0.5s ease;
    /* background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0) 60%); */
}
.float_wrapper.on {
    position: fixed;
    top: 0;
    animation: smoothScroll 0.5s forwards;
    z-index: 9;
}
#header.on  .float_wrapper {
    background-image: none;
}
.float_wrapper.on nav {
    display: block;
}
/* -------------------------- topheader --------------------------*/
#header .top_header {
    width: 100%;
    border-bottom: 1px solid #dddddd00;
}
#header.on .top_header {
    border-bottom: 1px solid #dddddd;
}
#header .top_header .wrap {
    width: 100%;
    height: 44px;
    line-height: 44px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    font-size: var(--txt-sm);
    font-weight: 500;
    padding-right: 2rem;
}
#header.on .top_header .wrap {
    color: var(--c-black-1);
}
#header .top_header .wrap li {
    display: flex;
    margin-left: 1.5rem;
}
#header .top_header .wrap a {
    color: #fff;
}

#header.on .top_header .wrap a {
    color: var(--c-black-1);
}

#header .top_header .wrap li span {
    color: var(--c-black-4);
    padding: 0 5px;
    font-weight: 300;
}

/* -------------------------- midheader --------------------------*/
.mid_header_wrap {
    width: 100%;
    /* background: var(--main-color); */
}
.mid_header {
    width: var(--web-width);
    height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_search_wrap {
    padding: 10px;
    width: 400px;
    background: #fff;
    border: 1px solid var(--sub-color);
    border-radius: 8px;
}
.header_search {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_search input {
    border: none !important;
    height: inherit !important;
    padding: 0 10px 0 0 !important;
    width: -webkit-fill-available !important;
}
.header_search a {min-width: 16px;}
/* -------------------------- botheader --------------------------*/
.bot_header {
    display: flex;
    width: var(--web-width);
    height: 76px;
    margin: 0 auto;
    justify-content: space-between;
    border-radius: 12px;
}
.bot_header .menu_area {
    /* box-sizing: border-box; */
    height: 100%;
}
.bot_header .menu_area>ul, .bot_header .menu_area>ul>li {
    height: 100%;
}
/* -------------------------- header dropdown menu --------------------------*/
#header.active nav {
    display: block;
}
#header .depth_toggle {
    position: absolute;
    top: 90px;
    left: 0;
    /* transform: translateX(-50%); */
    z-index: 9999;
    transition: .5s height, .2s background;
    display: none;
    width: 100%;
    transition: all 0.5s ease;
    border-top: 1px solid var(--c-black-5);
    border-bottom: 1px solid var(--c-black-5);
    background: rgba(255,255,255,0.6);
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#header .depth_toggle.active {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255,255,255,0.6);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px); */
    transition: all 0.5s ease;
}
#header .depth_toggle .wrapper {
    /* padding-left: 120px; */
    display: flex;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.5s ease;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
}
#header .depth_toggle .sub_nav {
    width: 190px;
    border-right: 1px solid var(--c-black-5);
    padding: 1rem 1rem;
    /* -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px); */
    transition: .5s height, .2s background;
}
#header .depth_toggle .sub_nav:last-child {border: 0;}
#header .depth_toggle .sub_nav li {
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    /*    font-size: 1;*/
}
#header .depth_toggle .sub_nav li.tit a {
    font-weight: 600 !important;
    font-size: 1.125rem;
    color: var(--sub-color);
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed var(--c-black-5);
}
#header .depth_toggle .sub_nav li.menu3 {
    padding-left: 0.5rem;
}
#header .depth_toggle .sub_nav li.menu3 a {
    font-size: var(--txt-sm);
    color: var(--c-black-3);
    /* font-weight: 300; */
    line-height: 0.875rem;
}
#header .mini_nav {
    width: 192px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--c-black-5);
    transition: .5s height, .2s background;
    display: none;
    position: absolute;
    top: 76px;
    padding: 0.5rem 0;
    z-index: 99;
}
#header .mini_nav.active {
    display: block;
}
#header .mini_nav li {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    /*    font-size: 1;*/
}
#header .mini_nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.5rem;
    transition: 0.3s;
    color: var(--c-black-3);
}
#header .mini_nav li:hover a {
    color: var(--main-color);
    font-weight: 600;
}
#header .mini_nav li.menu3 {
    margin-top: -4px;
}
#header .mini_nav ul.depth3 {
    margin-top: -4px;

}

/* 한줄일 시 */
/* #header nav .depth_toggle .sub_nav li a {
    display: block;
    overflow: hidden;
    margin-bottom: -20px;
    font-size: var(--txt-md);
    letter-spacing: -0.6px;
    text-overflow: ellipsis;
} */
/* 두줄일 시 */
#header nav .depth_toggle .sub_nav li a {
    display: block;
    font-size: var(--txt-md);
    /* word-break: break-all; */
    padding-bottom: 0.75rem;
    min-height: auto;
    line-height: 1.3em;
    white-space: break-spaces;
    letter-spacing: -0.5px;
    color: var(--c-black-2);
    transition: 0.3s;
    /* text-align: center; */
}
#header nav .depth_toggle .sub_nav li a span {
    font-size: 0.925rem;
    padding-left: 0.25rem;
    vertical-align: middle;
    opacity: 0.75;
}
#header nav .depth_toggle .sub_nav.on {
    /* background: var(--c-black-7);
    color: var(--c-black-1); */
    background: #fff;
    transition: .5s height, .2s background;
}
/* #header nav .depth_toggle .sub_nav.on li a {
    color: var(--c-black-2);
} */
#header nav .depth_toggle .sub_nav.on li a:hover {
    color: var(--main-color) !important;
    /* font-weight: 500; */
}
#header.speedup {
    transition: all 0.2s ease !important;
}

#header nav .depth_toggle .sub_nav li.over {
    height: 58px;
    /* overflow: auto; */
    line-height: 18px;
    text-overflow: clip;
    white-space: pre-line;
}
#header nav .depth_toggle .sub_nav li.over a {
    overflow: visible;
    text-overflow: clip;
    white-space: initial;
}
#header nav .depth_toggle .sub_nav li.over_min {
    height: 48px;
    /* overflow: auto; */
    line-height: 21px;
    text-overflow: clip;
    white-space: pre-line;
}
#header nav .depth_toggle .sub_nav li.over_min a {
    overflow: visible;
    text-overflow: ellipsis;
    white-space: initial;
    word-break: break-word;
}
#header nav .depth_toggle .sub_nav .link:after {
    content: url(/images/common/ic_external_sm.png);
    margin-left: 5px;
}
#header nav .depth_toggle .sub_nav .link:hover:after {
    content: url(/images/common/ic_external_sm_on.png);
}
#header .menu_area ul {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    height: 90px;
    /* min-width: 90px; */
    /* background: rgba(139, 0, 41, 0.9); */
    /* position: fixed;
    top: 0;
    right: 0;
    z-index: 99999; */
}
#header .menu_area ul li {
    width: 100px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    cursor: pointer;
}
#header .menu_area ul li:last-child {
    height: 90px;
    line-height: 90px;
    /* background-image: url(../images/common/ic_ham_bg.png); */

}

#header .menu_area ul li a.btn_ham_menu {
    /* background: rgba(0, 0, 0, 0.7); */
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(../images/common/ic_ham_menu.png);
    background-repeat: no-repeat;
    background-position: center;
}
#header.on .menu_area ul li a.btn_ham_menu {
    background-image: url(../images/common/ic_ham_menu_on.png);
}
#header .menu_area ul li a.searchbtn {
    background-image: url(../images/common/ic_search.png);
    /* background: rgba(0, 0, 0, 0.7); */
    width: 100%;
    height: 100%;
    display: block;
    /* background-image: url(../images/common/ic_ham_menu.png); */
    background-repeat: no-repeat;
    background-position: center;
}
#header .menu_area ul li a.loginbtn {
    background-image: url(../images/common/ic_login.png);
    /* background: rgba(0, 0, 0, 0.7); */
    width: 100%;
    height: 100%;
    display: block;
    /* background-image: url(../images/common/ic_ham_menu.png); */
    background-repeat: no-repeat;
    background-position: center;
}
/**************************************************************/
/**************************************************************/
/******************************sub*****************************/
/**************************************************************/
/**************************************************************/

.sub_visual.visual01 { background: url(../images/sub/visual01.png?ver=1.0) top center no-repeat; background-size: cover;}
.sub_visual.visual02 { background: url(../images/sub/visual02.png?ver=1.0) center no-repeat; background-size: cover;}
.sub_visual.visual03 { background: url(../images/sub/visual03.png?ver=1.0) center no-repeat; background-size: cover;}
.sub_visual.visual04 { background: url(../images/sub/visual04.png?ver=1.0) center no-repeat; background-size: cover;}
.sub_visual.visual05 { background: url(../images/sub/visual05.png?ver=1.0) top center no-repeat; background-size: cover;}
.sub_visual.visual06 { background: url(../images/sub/visual06.png?ver=1.0) top center no-repeat; background-size: cover;}
.sub_visual.visual07 { background: url(../images/sub/visual07.png?ver=1.0) top center no-repeat; background-size: cover;}
.sub_visual.visual08 { background: url(../images/sub/visual08.png?ver=1.0) center no-repeat; background-size: cover;}
.sub_visual.visual09 { background: url(../images/sub/visual09.png?ver=1.0) center no-repeat; background-size: cover;}
.sub_visual.no_visual {width: 100%;height: 1px;margin-top: 134px;}
.sub {
    background: var(--c-black-8);
    font-size: 16px;
}
.sub .grid_container {
    width: var(--web-width);
    padding: 80px 0 90px;
}
.sub_visual {
    height: 450px;
    width: 100%;
    padding: 160px 0;
    position: relative;
} 
.sub_visual:after {
    /* content: 'MEDIA&COMMUNICATION';
    position: absolute;
    bottom: 74px;
    left: 50%;
    font-size: 6.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(247, 176, 35, 0.5), rgba(234, 90, 19, 0.5) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
    transform: translate(-50%, 0);
    width: var(--web-width) +15px;
    text-align: left; */
}
.sub_visual .tit {
    width: var(--web-width);
    /* height: 164px; */
    margin: 0 auto;
    position: relative;
}
/*.sub_visual .tit:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 162px;
    height: 164px;
     background: url(../images/sub/symbol.png) 90% no-repeat;
    animation: updown02 5s ease-in-out infinite; 
}*/
.sub_visual h1 {
    font-size: 3.75rem;
    font-weight: 600;
    /* line-height: 624px; */
    color: #fff;
    /* width: var(--web-width); */
    margin: 0rem auto 0.5rem;
    position: relative;
    text-shadow: 2px 0px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}
.sub_visual h2 {
    font-size: 1.375rem;
    line-height: 1.75rem;
    font-weight: 500;
    color: rgb(255 255 255 / 100%);
    width: var(--web-width);
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
    font-family: var(--sub-font);
    text-align: center;
}


@keyframes updown02 {
    0%{
      transform: translate(0,0);
    }
    50%{
      transform: translate(0,20px);
    }
    100%{
      transform: translate(0,0);
    }
  }
  
  
  @keyframes updown {
    0%{
      transform: translate(0,0);
      color: #aefaff60;
      text-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
    }
    50%{
      transform: translate(0,20px);
      color: #aefaff;
      text-shadow: 10px 5px 10px rgba(0, 0, 0, 1.0);
    }
    100%{
      transform: translate(0,0);
      color: #aefaff60;
      text-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
    }
  }
  
  
  @keyframes rotate {
    0%{
      transform: rotate(0);
    }
    100%{
      transform: rotate(-360deg);
    }
  }
  

/**************************************************************/
/**************************************************************/
/*****************************path*****************************/
/**************************************************************/
/**************************************************************/
/* ----------------------- 일반형태 path ---------------------*/
.path_container {
    width: var(--web-width);
    margin: -100px auto 0;
    /* background: #fff; */
    position: relative;
    box-shadow: 2px 0px 8px rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-all-sm);
    /* z-index: 1; */
}

.path_container.on {
    position: fixed;
    top: 100px;
    animation: smoothScroll 0.5s forwards;
    z-index: 999;
}
.path {
    height: 60px;
    line-height: 60px;
    /* position: relative; */
}
.path::after {
    /* content: '';
    display: inline-block;
    width: 75px;
    height: 75px;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #e17549;
    transition: 0.5s;
    margin: -15px;
    z-index: 1; */
}
.path_inside {
    max-width: var(--web-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: var(--radius-all-xs);
    
}
.path .home {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    border-radius: var(--radius-all-xs);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.path .home span {
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.path a {
    color: var(--c-black-2);
}
/*
.path [class^="depth"] {
	float:left;
	position:relative;
}
*/
.path_inside > div {
    /* float: left; */
    position: relative;
}
.path .depth_btn:before {
    content: "";
    width: 1px;
    height: 24px;
    background: var(--c-black-5);
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
.path .depth_btn {
    cursor: pointer;
    display: block;
    width: auto;
    padding: 0 30px;
    max-width: 270px;
    min-width: 270px;
    /*    letter-spacing: -1;*/
    /* white-space: pre; */
    overflow: hidden;
    font-size: var(--txt-lg);
    position: relative;
    /* color: #fff; */
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.path .depth_btn span {
    position: absolute;
    right: 20px;
    top: 0px;
    font-size: 24px;
    font-weight: 100;
    color: var(--c-black-4);
}
.path [class^="depth"] ul {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 60px;
    width: 100%;
    z-index: 1;
    background-color: var(--c-black-8);
    overflow: hidden;
    /* border-top: 1px solid rgba(255, 255, 255, 0.9); */
    border-radius: var(--radius-all-xs);
}
.path [class^="depth"].active ul {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    z-index: 999;
}
.path [class^="depth"] ul li {
    height: 50px;
    font-size: var(--txt-md);
    /* font-weight: 500; */
    line-height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
    /* border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1); */
    padding: 0 30px;
    transition: 0.3s;
}
.path [class^="depth"] ul li:hover {
    background-color: var(--c-black-7);
}
.path [class^="depth"] ul li a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.path [class^="depth"] ul li a span {
    font-size: 0.825rem;
    padding-left: 0.125rem;
    vertical-align: middle;
    opacity: 0.75;
}
.path [class^="depth"] ul li:hover a {
    color: var(--main-color);
}
.path select {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    height: 58px;
    line-height: 58px;
    padding-bottom: 4px;
}
.path select option {
    color: var(--c-black-3);
    font-size: 14px;
}
.path .depth_btn.depth_wide {
    min-width: 360px;
}
.path ul li .link {
    position: relative;
}
.path ul li .link:after {
    content: url(/images/common/ic_external_sm.png);
    font-weight: 600;
    margin-left: 8px;
    font-size: 13px;
    /* position: absolute;
    top: 0;
    right: 0; */
}



/* ------------------------- 탭형태 path ---------------------*/
.path_tab {
    width: var(--web-width);
    margin: 0 auto;
    margin-top: 1.5rem;
}
.path_tab .tab_link_wrap .tab_link {
    border: 1px solid var(--c-black-5);
    border-radius: 12px;
    margin-bottom: 0;
    overflow: hidden;
}
.path_tab .tab_link_wrap .tab_link .tablinks {
    margin-right: 0;
    border: 0;
    border-right: 1px solid var(--c-black-4);
    color: var(--c-black-3);
    width: 50%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.path_tab .tab_link_wrap .tab_link .tablinks:last-child {
    border-right: 0;
}
.path_tab .tab_link_wrap .tab_link .tablinks.active, .path_tab .tab_link_wrap .tab_link .tablinks:hover {
    background: var(--sub-color);
    color: #fff;
}





/**************************************************************/
/**************************************************************/
/****************************Contents**************************/
/**************************************************************/
/**************************************************************/
.layout_sub {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.layout_pop {
    background: var(--c-black-7);
    height: 100vh;
    overflow: hidden;
}
.sub_container {
    min-height: 550px;
    border-bottom: 30px solid #c9d0d4;
    /* margin-top: 7rem; */
}
.sub_container>.wrapper {
    /* width: var(--web-width); */
    margin: 0 auto;
    position: relative;
}
.sub_container>.wrapper>.contents {
    margin: 3.5rem 0;
}

.sub_container .wrapper .max {
    max-width: var(--web-width);
    margin: 0 auto;
    padding: 7rem 0 7rem;
}
.sub_container .wrapper .max.full {
    max-width: 100%;
    padding: 0;
}

.sub_container .wrapper .max.line_wrapper {
    border-top: 1px solid var(--c-black-5);
}

.max_bg01 {
    background: var(--sub-color-4);
}


/**************************************************************/
/**************************************************************/
/**********************Hamburger&offcanvas*********************/
/**************************************************************/
/**************************************************************/

.overlay {
    display: none;
    z-index: 9999;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
    transition: background-color 2s;
    cursor: pointer;
}

.offcanvas {
    height: 100%;
    width: 520px;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
}

.offcanvas .menu_wrapper {
    -ms-overflow-style: none;
}

.offcanvas .menu_wrapper::-webkit-scrollbar {
    display: none;
}

.offcanvas .menu_wrapper .t_menu a {
    display: none;
}

#offcanvas::-webkit-scrollbar {
    display: none;
}

#offcanvas {
    margin-right: -625px;
    transition: 0.5s;
    transition: margin-right .5s;
    -ms-overflow-style: none;

}

#offcanvas.open {
    margin-right: 0;
    background: var(--main-color);
    /* background-image: linear-gradient(to bottom, #cc0e46, #8b0029) !important; */
    z-index: 999999;
}

/* Style the tab */
.offcanvas .tab {
    float: left;
    width: 200px;
    height: 100%;
    color: #fff;
    padding-top: 90px;
    position: relative;
}

.offcanvas .tab .fixed_wrapper {
    position: fixed;
    height: 100%;
    width: 200px;
}

.offcanvas .h_tablinks {
    display: block;
    color: #fff;
    padding: 0 28px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    font-size: var(--txt-lg);
    font-weight: 500;
    height: 90px;
    /* line-height: 90px; */
    line-height: 1em;
}
.offcanvas .h_tablinks.point {
    background: #ff80c0;
}

.offcanvas .h_tablinks:hover {
    background-color: var(--main-color);
}

.offcanvas .h_tablinks.active {
    background-color: #fff;
    color: var(--c-black-1);
    font-weight: 600;
}


/* Style the tab content */
.offcanvas .menu_wrapper {
    width: calc(100% - 200px);
    float: left;
    height: 100%;
    background: #fff;
}

.offcanvas .h_tabcontent {
    display: none;
    margin-top: 90px;
}

.offcanvas .h_tabcontent .sub_nav {
    background: #fff;
}

.offcanvas .h_tabcontent .sub_nav > li > a {
    height: 90px;
    line-height: 1em;
    font-size: var(--txt-lg);
    color: var(--c-black-2);
    font-weight: 500;
    padding: 20px 30px;
    border-bottom: 1px solid var(--c-black-6);
    display: flex;
    vertical-align: middle;
    align-items: center;
    flex-wrap: wrap;
}
.offcanvas .h_tabcontent .sub_nav > li:hover > a {
    color: var(--main-color);
}
.offcanvas .h_tabcontent .sub_nav > li > a span.material-icons {
    font-size: 1rem;
    color: var(--c-black-4);
    padding-left: 0.25rem;
}

.offcanvas .h_tabcontent .sub_nav > li a.link::after {
    content: url(/images/common/ic_external_sm.png);
    font-weight: 600;
    margin-left: 5px;
    font-size: 0.813rem;
}
.offcanvas .h_tabcontent .sub_nav > li:hover a.link::after {
    content: url(/images/common/ic_external_sm_on.png);
}
.offcanvas .menu_login {
    background-color: #f0ece5;
    height: 90px;
    line-height: 90px;
    font-size: var(--txt-lg);
    color: #fff;
    padding: 0 30px;
    position: absolute;
    top: 0;
    width: calc(100% - 180px);
    z-index: 999;
}

.offcanvas .menu_login .wrapper {
    position: relative;
    width: 260px;
    height: 100%;
}

.offcanvas .menu_login a, .offcanvas .menu_login a:hover {
    color: #222;
    margin-right: 10px;
}

.offcanvas .right_p {
    position: absolute;
    right: 0px;
    top: 0;
}

.offcanvas .btn_close {
    width: 30px;
    height: 30px;
    position: relative;
    text-indent: -9999px;
    top: 0;
    right: 0;
    background: none;
}

.offcanvas .btn_close:before, .offcanvas .btn_close:after {
    content: '';
    width: 30px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 4px;
    background: #53493f;
}

.offcanvas .btn_close:before {
    transform: translate(-50%, -50%) rotate(-45deg)
}

.offcanvas .btn_close:after {
    transform: translate(-50%, -50%) rotate(45deg)
}

.offcanvas .h_tabcontent .depth3 {
    display: none;
    border-bottom: 1px solid var(--c-black-5);
    padding: 28px 32px;
}

.offcanvas .h_tabcontent .depth3 .menu3 {
    font-size: var(--txt-md);
    line-height: 32px;
    color: var(--c-black-1);
}

.offcanvas .h_tabcontent .depth3 .menu3:before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--main-color);
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    margin-bottom: 4px;
}

.offcanvas .h_tabcontent .depth3 .menu3 a {
    color: var(--c-black-1);
}

.offcanvas .h_tabcontent .depth3 .menu3 a:hover {
    text-decoration: underline;
}

.offcanvas .h_tabcontent .menu2_link {
    position: relative;
}

.offcanvas .h_tabcontent .menu2_link.active {
    color: var(--main-color) !important;
    font-weight: 500;
    transition: 0.5s;
}

.offcanvas .h_tabcontent .menu2_link:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -5px 12px auto auto;
    vertical-align: middle;
    border-right: 2px solid var(--c-black-4);
    border-top: 2px solid var(--c-black-4);
    transform: rotate(135deg);
    position: absolute;
    top: 43px;
    right: 20px;
    transition: 0.5s;
}

.offcanvas .h_tabcontent .menu2_link.active:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -5px 12px auto auto;
    vertical-align: middle;
    border-right: 2px solid var(--c-black-4);
    border-top: 2px solid var(--c-black-4);
    transform: rotate(-45deg);
    position: absolute;
    top: 47px;
    right: 20px;
    transition: 0.5s;
}


/**************************************************************/
/**************************************************************/
/*****************************footer***************************/
/**************************************************************/
/**************************************************************/
.footer {
    background: var(--c-black-1);
}
.footer .wrapper {
    margin: 0 auto;
    /* width: 100%; */
}
.footer .wrapper .top {
    width: var(--web-width);
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
    margin: 0 auto;
    /* border-bottom: 1px #ffffff30 solid; */
    /* gap: 3rem;*/
}
.footer .wrapper .bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* gap: 3rem; */
    padding: 1.5rem 0;
    margin: 0 auto;
}
.footer .wrapper .logo {
    width: 168px;
}
.footer .wrapper .center {
    width: calc(100% - 530px);
    margin-left: 50px;
}
.footer .wrapper .right {
    width: 312px;
}
.footer .wrapper .right li {
    font-size: var(--txt-lg);
    /* line-height: 1.625rem; */
    height: 30px;
    border-left: 1px solid var(--c-black-3);
    padding-left: 28px;
}
.footer .wrapper .right li strong {
    color: #fff;
    font-weight: 400;
    font-family: var(--sub-font);
}
.footer .wrapper .right li span {
    width: 70px;
    display: inline-block;
    font-weight: 400;
    color: var(--c-black-4);
    font-family: var(--sub-font);
}

/* ------------------------- link ----------------------------*/
.footer .wrapper .link {
    display: flex;
    align-items: center;
    /* color: #111; */
    font-weight: 400;
    flex-wrap: wrap;
    font-size: var(--txt-lg);
    margin-bottom: 0.5rem;
}
.footer .wrapper .link a {color: #fff;}
.footer .wrapper .link span {
    font-size: var(--txt-md);
    color: var(--c-black-4);
    font-weight: 200;
    margin: 0 0.75rem;
}
.footer .wrapper .txt {
    font-size: var(--txt-md-1);
    color: var(--c-black-4);
    line-height: 1.625rem;
}


/* ------------------------- sns ----------------------------*/
.footer .wrapper .sns {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    /* gap: 1rem; */
    width: 180px;
}
.footer .wrapper .sns li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
   
}
.footer .wrapper .sns li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.footer .wrapper .sns li .insta {
    background: url(../images/common/sns_insta.png) top center no-repeat;
    transition: 1s;
}
.footer .wrapper .sns li .insta:hover {
    background: url(../images/common/sns_insta_on.png) top center no-repeat; 
}
.footer .wrapper .sns li .blog {
    background: url(../images/common/sns_blog.png) top center no-repeat;
    transition: 1s;
}
.footer .wrapper .sns li .blog:hover {
    background: url(../images/common/sns_blog_on.png) top center no-repeat; 
}
.footer .wrapper .sns li .youtube {
    background: url(../images/common/sns_youtube.png) top center no-repeat;
    transition: 1s;
}
.footer .wrapper .sns li .youtube:hover {
    background: url(../images/common/sns_youtube_on.png) top center no-repeat; 
}

/* ----------------------- Family Site ------------------------*/
.family_site {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.family_site span {
    color: #ccc;
    position: relative;
    font-size: 1.125rem;
    margin: 0 2rem;
}
.family_site span::after {
    content: '';
    width: 1px;
    height: 14px;
    background: #666;
    position: absolute;
    top: 2px;
    right: -1rem;
}
.family_site ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.family_site ul li a{
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
}
/* ----------------------- 관련사이트 ------------------------*/
.footer .wrapper .site {
    width: 248px;
    position: relative;
    transition: 0.3s;
    height: 50px;
}
.footer .wrapper .site .btn_toggle img {
    width: 16px;
}
.footer .wrapper .site ul {
    position: absolute;
    bottom: 49px;
    left: 0;
    display: block;
    /* border-radius: 25px; */
    background: var(--c-black-6);
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    transition-delay: 0s, 0s, 0.2s;
    transform: translateY(50px);
    z-index: 999;
    width: 100%;
    border-radius: var(--radius-all-xs);
}
.footer .wrapper .site ul.on {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.footer .wrapper .site ul li {
    height: 44px;
    line-height: 44px;
    /* width: 17.2rem; */
    padding: 0 0.5rem 0 1rem;
    z-index: 999;
    border-bottom: 1px solid var(--c-black-5);
}
.footer .wrapper .site ul li:hover {
    background: var(--c-black-8);
}
.footer .wrapper .site ul li a {
    color: var(--c-black-1);
    display: block;
    width: 100%;
    height: 100%;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: pre;
    -webkit-line-clamp: 1;
    display: block;
}
.footer .wrapper .site .btn_toggle {
    display: flex;
    padding: 0 0.5rem 0 1rem;
    width: 100%;
    height: 100%;
    color: #fff;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 9;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    font-weight: 500;
    border: 1px solid var(--c-black-4);
    border-radius: var(--radius-all-xs);

}

.footer .wrapper .site .btn_toggle img {
    transition: 0.3s;
}
.footer .wrapper .site .btn_toggle:hover img {
    transform: rotate(180deg);
}


/* 탑버튼 */
.btn_move_top{
    position: fixed;
    bottom: 186px;
    right: 5rem;
    z-index: 999;
    background: var(--main-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    border-top-left-radius: var(--radius-all-xs);
    border-top-right-radius: var(--radius-all-xs);
    display: none;
}
.btn_move_top img{
    width: 30px;
}

/**************************************************************/
/**************************************************************/
/********************* tab contents setting *******************/
/**************************************************************/
/**************************************************************/
/* ------------------- 탭페이지 (스크롤) ---------------------*/
.tab_scroll-cont {
    padding: var(--pad-tb-xl);;
    border-bottom: 1px solid var(--c-black-5);
}
.tab_scroll-cont:first-child {
    padding-top: 0;
}
.tab_scroll-tab.fixed {
    position: sticky;
    z-index: 8;
    top: 100px;
    max-width: var(--web-width);
    background: #fff;
}
.tab_scroll-tab {
    overflow: hidden;
    width: 100%;
}
.tab_scroll-tab ul {
    display: flex;
    justify-content: center;
    border: 1px solid var(--main-color);
    overflow: hidden;
}
.tab_scroll-tab li {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tab_scroll-tab li a {
    color: var(--main-color);
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 1rem;
}
.tab_scroll-tab li:first-child {
    margin-left: 0;
}
.tab_scroll-tab li:hover, .tab_scroll-tab li.tab_on {
    background: var(--main-color);
    color: #fff;
}
.tab_scroll-tab li:hover a, .tab_scroll-tab li.tab_on a {
    color: #fff;
}

/* ---------------- tab contents (내용교체) -----------------*/
.tab_link-tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin:0 auto 3rem;
    width: 100%;
    gap: 2px;
}
.tab_link-tab .tab {
    /* width: 49%; */
    height: auto;
    text-align: center;
    padding: 14px;
    font-size: var(--txt-lg);
    font-weight: 400;
    color: var(--c-black-1);
    background: var(--c-black-7);
    /* border: 1px var(--main-color) solid; */
    box-sizing: border-box;
    line-height: 1.3em;
    /* margin: 0 auto; */
    cursor: pointer;
    border-radius: var(--radius-all-xs);
}
/* .tab_link-tab .tab:last-child {
    margin-right: 0;
} */
.tab_link-tab .tab:hover, .tab_link-tab .tab.active {
    background: var(--main-color);
    font-weight: 500;
    color: #fff;
}
.tab_link-cont { 
    width: 100%;
    display: none; 
}
.tab_link-tab.col-lg-2 .tab {
    width: calc((100% - 2px) /2);
}
.tab_link-tab.col-lg-3 .tab {
    width: calc((100% - 4px) /3);
}
.tab_link-tab.col-lg-4 .tab {
    width: calc((100% - 6px) /4);
}
.tab_link-tab.col-lg-5 .tab {
    width: calc((100% - 8px) /5);
}
.tab_link-tab.col-lg-6 .tab {
    width: calc((100% - 10px) /6);
}

/* -------------- tab contents (펼쳐지는 탭) ---------------*/
.tab_click_li {
    /* border-top: 3px solid var(--main-color-2); */
    /* border-bottom: 2px solid #1f4396; */
}
.tab_click_li dt {
    overflow: hidden;
    height: auto;
    padding: 1rem 2rem;
    cursor: pointer;
    border: 1px solid var(--c-black-5);
    line-height: 30px;
    margin-top: 1.5rem;
    border-radius: var(--radius-all-xs);
    background: var(--c-black-8);
}
.tab_click_li dt .tit {
    width: 100%;
    font-size: var(--txt-lg);
    font-weight: 500;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.tab_click_li dt .tit div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre;
    margin-left: 1rem;
}
.tab_click_li dt .tit .material-icons-outlined {
    color: var(--main-color-2);
}
.tab_click_li dd {
    display: none;
    height: auto;
    padding: 2rem;
    border: 1px solid var(--c-black-5);
    line-height: 150%;
    padding-left: 28px;
    margin-top: -1px;
    border-radius: var(--radius-all-xs);
    /* background: var(--c-black-8); */
}
.tab_click_li p {
    margin-bottom: 20px;
}
.tab_click_li dt .tit .cate {
    color: var(--main-color);
    font-weight: 500;
    font-size: var(--txt-lg);
    padding: 0 4px 0 6px;
    letter-spacing: normal;
    background: none !important;
}
.tab_click_li dt .tit:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -5px 12px auto auto;
    vertical-align: middle;
    border-right: 2px solid var(--c-black-4);
    border-top: 2px solid var(--c-black-4);
    transform: rotate(135deg);
    position: absolute;
    top: 13px;
    right: 0px;
    transition: 0.2s;
}
.tab_click_li dt.on .tit:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -20px 6px auto auto;
    vertical-align: middle;
    border-right: 2px solid var(--c-black-4);
    border-top: 2px solid var(--c-black-4);
    transform: rotate(-45deg);
    position: absolute;
    top: 34px;
    right: 8px;
    transition: 0.2s;

}
.tab_click_li dt .tit_l {
    padding-right: 6px;
    color: var(--main-color);
}




/**************************************************************/
/**************************************************************/
/************************ member & form ***********************/
/**************************************************************/
/**************************************************************/
/*-------------------- form basic setting --------------------*/
input::-webkit-input-placeholder {
    font-size: var(--txt-sm);
    color: var(--c-black-4);
}
input::-moz-input-placeholder {
    font-size: var(--txt-sm);
    color: var(--c-black-4);
}
input:-ms-input-placeholder {
    font-size: var(--txt-sm);
    color: var(--c-black-4);
}
input:-moz-input-placeholder {
    font-size: var(--txt-sm);
    color: var(--c-black-4);
}
.txt_box_s {
    width: 50px;
}
.txt_box_s2 {
    width: 80px;
}
.txt_box_m {
    width: 60%;
}
.txt_box_l {
    width: 150px;
}
.txt_add {
    width: 98%;
}
.txt_email {
    width: 30% !important;
}
/*-------------------------- login ---------------------------*/
.login_one {
    max-width: 350px;
}
.login_two {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 800px;
}
.login_two .login_wrap h6 {
    font-size: 1.85rem;
    font-weight: 500;
    margin: 30px 0;
}
.login_wrap {
    min-width: 320px;
    text-align: center;
    margin: 0 auto;
}
.login_wrap .login_input {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.login_wrap .login_input .txt_box {
    width: 100%;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
}
.login_wrap input[type=text] {
    background: #fff;
    border: 1px solid var(--c-black-5);
    padding: 0px 10px;
    height: 46px;
    margin: 5px 0;
}
.login_wrap input[type=password] {
    background: #fff;
    border: 1px solid var(--c-black-5);
    padding: 0px 10px;
    height: 46px;
    margin: 5px 0;
}
.login_wrap.search_complete {
    width: 100%;
}
.login_input input[type=submit] {
    width: 100%;
    border: 0;
    height: 50px;
    line-height: 50px;
    background: var(--sub-color);
    color: #fff;
    font-size: var(--txt-md-1);
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-all-xxs);
}
.login_input input[type=submit]:hover,
.login_input input[type=submit]:active {
    background: var(--sub-color);
}
.login_footer {
    width: 100%;
    text-align: center;
}
.login_footer .remember_id {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    text-align: left;
}
.login_footer .remember_id li {
    text-indent: -10px;
    padding-left: 10px;
}
.login_footer .id_pw {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.login_footer a {
    font-size: var(--txt-md-1);
    color: var(--c-black-3);
    font-weight: 400;
}
.login_footer .id_pw span {
    color: var(--c-black-5);
    padding: 0 1rem;
    font-weight: 300;
}
.login_footer .btn_s {
    color: #fff !important;
    min-width: 150px;
}
.login_footer .btn_s:first-child {
    margin-right: 10px;
}

.login_footer p {
    text-align: left;
}
.id_pw_box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.id_pw_sch {
    /* padding-bottom: 30px; */
    justify-content: center;
    align-items: center;
    color: var(--c-black-3);
    font-size: var(--txt-lg-2);
}
.id_pw_sch .sch_id {
    font-size: var(--txt-2xl);
    color: var(--main-color);
    padding: 0 2px;
}
.id_pw_sch span {
    /* display: block; */
    margin-top: 20px;
    color: var(--c-black-4);
    /* font-size: 1rem;
    line-height: 1.6em; */
}
.login_box {
    width: 350px;
    margin: 0 auto;
    text-align: left;
}
.login_box_l {
    float: left;
    width: 50%;
}
.login_box_r {
    float: right;
    width: 50%;
}
.login_social { width:100%; margin: 1.125rem auto; }
.login_social ul li {width: 350px;height: 40px;line-height: 40px;border-radius: 40px;text-align: left;padding: 0px 0 0px 50px;box-sizing: border-box;margin: 0 auto;margin-top: 10px;cursor: pointer;}
.login_social ul li.naver {background: url(../images/common/icon_sns_naver_m.png) 20px center no-repeat var(--sub-color-5);}
.login_social ul li.facebook { background: url(../images/common/icon_sns_facebook_m.png) 20px center no-repeat var(--sub-color-5);}
.login_social ul li.kakao { background: url(../images/common/icon_sns_kakao_m.png) 16px center no-repeat var(--sub-color-5);}
.login_social ul li.google { background: url(../images/common/icon_sns_google_m.png) 16px center no-repeat var(--sub-color-5);}


/**************************************************************/
/**************************************************************/
/******************** waiting 준비중페이지 ********************/
/**************************************************************/
/**************************************************************/
/*----------------------- 인덱스 준비중 ----------------------*/
.waiting_index {display: flex;align-content: center;justify-content: center;width: 100vw;height: 100vh;flex-wrap: wrap;position: relative;}
.waiting_index::before {box-shadow: 0px 7px 23px -6px rgb(0 0 0 / 40%); content:'';position: absolute;width: 400px;aspect-ratio:1/1;top: 28vh;left: 50%;transform: translate(-50%);background: url(../images/common/multi_bg.png);z-index: -1;background-size: cover;border-radius: 400px;}
.waiting_index img {margin-bottom: 1.5rem;border-bottom: 1px dashed #fff;padding-bottom: 1.5rem;}
.waiting_index p {font-size: 2rem;text-align: center;width: 100%;color: #fff;font-weight: 500;}

/*-------------------- 서브페이지 준비중 ---------------------*/
.waiting_sub {display: flex;align-content: center;justify-content: center;width: 100%;flex-wrap: wrap;position: relative;margin: 0 auto;height: 400px;}
.waiting_sub::before {
    box-shadow: 0px 7px 23px -6px rgb(77 82 79 / 17%);
    content: '';
    width: 400px;
    height: 400px;
    /* aspect-ratio: 1 / 1; */
    transform: translate(-50%);
    background: url(../images/main/mainvisual_01.png) no-repeat center;
    z-index: -1;
    background-size: cover;
    /* border-radius: 400px; */
    position: absolute;
    left: 50%;
    border-radius: 50%;
}
.waiting_sub img {max-width: fit-content;}
.waiting_sub p {font-size: 1.5rem;text-align: center;width: 100%;color: #fff;font-weight: 500;margin-top: 1.5rem;border-top: 1px dashed #fff;padding-top: 1.5rem;}


/*-------------------- 게시판 준비중 ---------------------*/
.waiting_sub.no_data{
    width: 100%;
    height: auto;
    background: var(--c-black-5);
    border-radius: var(--radius-all-sm);
    /* margin-top: 2rem; */
    padding: 2rem;
}
.waiting_sub.no_data::before{
    display: none;
}

.waiting_sub.no_data img {max-width: fit-content;}

/**************************************************************/
/**************************************************************/
/******** terms & privacy 이용약관 &개인정보처리방침 **********/
/**************************************************************/
/**************************************************************/
.privacy {
    background: #fff;
    border: 1px solid var(--c-black-5);
    padding: 2rem;
    border-radius: var(--radius-all-xs);
}
.privacy .terms {
    border-bottom: 1px solid var(--c-black-5);
}

.privacy .terms ul {
    margin-bottom: 0.325rem;
}
/* .privacy .terms ul li {
    line-height: 1.5em;
    padding-left: 10px;
    position: relative;
    font-size: 0.925rem;
    color: var(--c-black-3);
}
.privacy .terms ul li:before {
    content: '';
    width: 3px;
    height: 3px;
    background:  var(--c-black-4);
    position: absolute;
    top: 12px;
    left: 0px;
} */
.privacy h2 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
    text-align: center;
    margin-top: 3.5rem;
}
.privacy h2:first-child {margin-top: 1.5rem;}
.privacy .terms .group {
    margin-bottom: 1.5rem;
    line-height: 1.5em;
    border-top: 1px dashed var(--c-black-5);
    padding-top: 1.5rem;
}
.privacy .terms .group:first-child {
    border: 0;
    padding-top: 0;
}
.privacy .terms .group:last-child {
    margin-bottom: 0;
}
.privacy .terms .group .terms_tit {
    line-height: 1.5em;
    font-size: var(--txt-lg-2);
    font-weight: 600;
    margin-bottom: 8px;
    /* color: var(--main-color); */
}
.privacy .terms:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.privacy .pri_box {
    background: #e9dfe2;
    padding: 20px;
    margin-top: 20px;
}
.privacy .pri_box h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.privacy .pri_box .btn_download {
    background: var(--sub-color-3);
    padding: 8px 20px;
    display: inline-block;
    margin-top: 12px;
    color: #fff;
    font-size: 1rem;
}
.privacy .terms .bu_no li:before {
    display: none;
}
.privacy .terms ul li .sm {
    color: var(--c-black-3);
    margin:10px 0;
    line-height: 1.7em;
}
.privacy .terms .cont_box {
    border: 1px solid var(--sub-color-5);
    padding:15px;
}
.privacy .terms .cont_box label {
    color: var(--sub-color-5);
    margin-bottom: 12px;
    display: block;
}
.privacy .terms .cont_box ul {
    overflow:hidden;
}
.privacy .terms .cont_box ul li {
    float:left;
    margin-right:20px;
    padding-left:0;
}


/* terms */
.terms p {
    margin-top: 1rem;
    font-size: var(--txt-md-1);
}
.terms p>.txt_point {
    margin-bottom: 4px;
    display: inline-block;
    font-weight: 500;
}
.terms p:first-child {
    margin-top: 0;
}

.terms ul {
    margin-top: 1rem;
}


/**************************************************************/
/**************************************************************/
/******************** search 통합검색페이지 *******************/
/**************************************************************/
/**************************************************************/
.search_top {
    /* background: rgba(198,156,109,0.95); */
    border-radius: var(--radius-all-sm);
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--c-black-5);
    border-top: 5px solid var(--main-color);
}
.search_top .radio_wrap {
    margin-bottom: 0.75rem;
}
.search_form_center {
    width: 100%;
}
.search_form_center .search_group {
    /* border: 0; */
    border-radius: var(--radius-all-xs);
    width: 60%;
    height: 50px;
    margin: 0 auto;
}
.search_form_center .search_group input#schText {
    width: calc(100% - 54px);
    height: 50px;
}
.board_top.search_result_top {
    margin-bottom: 0.25rem;
    margin-top: 3rem;
    padding-top: 0.5rem;
    border-top: 2px solid var(--main-color);
}


/*----------------------------------------1900--------------------------------*/


@media screen and (max-width:1710px) {
    /* #header nav #gnb>li { width: 120px;}
    #header .depth_toggle .sub_nav { width: 120px;padding: 0.5rem 0.5rem;} */
    #header .logo a {
        /* width: 252px; */
    }
    #header .open {
        /* width: 252px; */
    }
    #header .menu_area {
    }
    #header .menu_area ul {
        height: 60px;
    }
    #header .menu_area ul li {
        /* width: 60px; */
        height: 60px;
        line-height: 60px;
    }
    #header .menu_area ul li:last-child {
        width: 60px;
    }
    #header .menu_area ul li a {
        /* font-size: 14px; */
        line-height: 60px;
        background-size: 25px;
    }
    #header .menu_area ul li img {
        max-width: 100%;
        max-height: 100%;
        vertical-align: middle;
    }
    #header .menu_area ul li:last-child {
        height: 60px;
        line-height: 60px;
        background-image: url(../images/common/ic_ham_bg.png);
    }
    #google_translate_element {
        margin-top: 0.875rem !important;
    }
}
@media screen and (max-width:1500px) {
    #header nav #gnb>li { width: 150px;}
    #header .depth_toggle .sub_nav { width: 150px;padding: 0.5rem 0.5rem;}
    #header nav #gnb li .nav_dep1 { font-size: 1rem;}
    #header .depth_toggle .wrapper {/*margin-left: -8rem;*/}
    #header .open .login, #header .open .join {
        margin-left: 0.5rem;
    }
    #header .open .login, #header .open .join {
        margin-left: 0.5rem;
        font-weight: 500;
        font-size: 0.875rem;
    }
    #header nav .depth_toggle .sub_nav li a {
        font-size: 0.875rem;
    }
    .sub_visual {
        height: 414px;
        width: 100%;
        padding: 160px 20px;
    }
    .path_container {
        /* width: calc(var(--web-width) - 50px); */
    }
    .sub_visual:after {
        /* font-size: 6rem; */
    }

}

/* 모바일 테이블 스크롤 안내 */
.table-container {
    position: relative;
}
.scroll-indicator {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    display: none;
    z-index: 10;
    width: 80%;
    text-align: center;
}
.scroll-indicator_small{
    top: 45%;
}

.table-container.scrollable .scroll-indicator {
    display: block;
}
.scroll_icon {
    position: relative;
}
.scroll_icon::before, .scroll_icon::after  {
    font-family: 'Material Icons outlined';
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
}
.scroll_icon::after {
    content: '\eac9';
}
.scroll_icon::before {
    content: '\eac3';
}
@media (max-width: 768px) {
    .table-container {
        border: none;
        overflow-x: auto;
    }

    .scroll-indicator {
        display: block;
    }

}