@charset "utf-8";
html,
body {
    font-size: 16px;
}
:root {
    --main-color: #172E8E;
    --main-color-2: #BF222F;
    --sub-color-1: #77BFFF;
    --sub-color-2: #B0DAFF;
    --sub-color-3: #FFB853;

    /* Neutral Gray */
    --gray-50:  #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EFEFEF;
    --gray-300: #E1E1E1;
    --gray-400: #BEBEBE;
    --gray-500: #9F9F9F;
    --gray-600: #767676;
    --gray-700: #656565;
    --gray-800: #434343;
    --gray-900: #222222;

    /* Cool Gray */
    --cgray-50:  #F9F9FA;
    --cgray-100: #F4F4F5;
    --cgray-200: #E4E4E7;
    --cgray-300: #D4D4D8;
    --cgray-400: #A1A1AA;
    --cgray-500: #71717A;
    --cgray-600: #52525B;
    --cgray-700: #3F3F46;
    --cgray-800: #27272A;
    --cgray-900: #18181B;

    /* Display */
    --txt-display1: 3.375rem; /* 54px */
    --txt-display2: 3rem;/* 48px */
    --txt-display3: 2.25rem;/* 36px */

    /* Title */
    --txt-title1: 2rem;/* 32px */
    --txt-title2: 1.75rem;/* 28px */
    --txt-title3: 1.5rem;/* 24px */

    /* Heading */
    --txt-heading1: 1.375rem;/* 22px */
    --txt-heading2: 1.25rem;/* 20px */

    /* Body */
    --txt-body1: 1.125rem; /* 20px */
    --txt-body2: 1rem; /* 16px */

    /* Label & Caption */
    --txt-label: 0.875rem; /* 14px */
    --txt-caption: 0.75rem; /* 12px */

    --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;

    /* Box Shadow */
    --box-shadow-normal: 
        0 0 4px rgba(0, 0, 0, 0.04),
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 6px 12px rgba(0, 0, 0, 0.08);

    --web-width: 1300px;

    --main-font: 'Pretendard', 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: #0c3ec5 !important;}
.blue a { color: #0c3ec5;}
.red { color: #df0e1f !important;}
.point {color: var(--main-color);  font-weight: 600;}
.join_point { color: #ff0000;}
.align_c {text-align: center !important;}
.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(--cgray-200);
    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(--cgray-200);
    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(--cgray-200); */
}
.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_display1 {
    font-size: var(--txt-display1);
    line-height: 130%;
}
.txt_display2 {
    font-size: var(--txt-display2);
    line-height: 130%;
}
.txt_display3 {
    font-size: var(--txt-display3);
    line-height: 130%;
}
.txt_title1 {
    font-size: var(--txt-title1);
    line-height: 130%
}
.txt_title2 {
    font-size: var(--txt-title2);
    line-height: 130%
}
.txt_title3 {
    font-size: var(--txt-title3);
    line-height: 130%
}
.txt_heading1 {
    font-size: var(--txt-heading1);
    line-height: 140%;
}
.txt_heading2 {
    font-size: var(--txt-heading2);
    line-height: 140%;
}
.txt_body1 {
    font-size: var(--txt-body1);
    line-height: 150%;
}
.txt_body2 {
    font-size: var(--txt-body2);
    line-height: 150%;
}
.txt_label {
    font-size: var(--txt-label);
    line-height: 140%;
}
.txt_caption{
    font-size: var(--txt-caption);
    line-height: 130%;
}
.txt_ex {
    font-size: 0.925rem !important;
    color: var(--cgray-500);
}
.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(--cgray-700) !important;
}
.txt_red {
    color: #d22b28 !important;
}
.txt_blue {
    color: #2868d2 !important;
}
.txt_blk {
    color: var(--cgray-900) !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 2rem;
}

.page_tit h4 {
    font-size: var(--txt-display3);
    line-height: normal;
    text-align: center;
    width: auto;
    /* letter-spacing: 1px; */
    position: relative;
    font-weight: 600;
    padding-bottom: 1.5rem;
    /* border-bottom: 1px solid var(--cgray-200); */
}
/* .page_tit h4:before {
    content: '';
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 50px;
    background: var(--cgray-600);
    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-heading1);
    display: block;
    font-weight: 600;
    word-break: keep-all;
}

/* ------------------서브페이지 두번째 제목 (bullet 버전)------------------*/

.cont_tit_m h5.bullet, .cont_tit_nm h5.bullet {
    padding-left: 20px;
    position: relative;
}
.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_nm h5 strong {
    display: block;
}

.cont_tit_m h5.line, .cont_tit_nm h5.line {
    position: relative;
    border: 1px solid var(--cgray-200);
    display: inline-block;
    width: 100%;
    padding: 10px 1.5rem;
    font-size: var(--txt-title3);
}
.cont_tit_m h5.line::before, .cont_tit_nm h5.line::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 100%;
    /* border-radius: 10px; */
    background: var(--main-color);
    top: 0;
    left: 0;
}
.cont_tit_m h5 .num, .cont_tit_nm h5 .num {
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 30px;
    border-radius: 17px;
    background: var(--main-color);
    text-align: center;
    font-size: var(--txt-body1);
    color: #fff;
    border: 3px solid var(--cgray-200);
    margin-right: 5px;
}


/* ------------------서브페이지 세번째 제목------------------*/
.cont_tit_m h6, .cont_tit_nm h6 {
    font-size: var(--txt-heading2);
    display: block;
    font-weight: 600;
    word-break: keep-all;
}
.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;
}
.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);
}

.cont_tit_m h6.line, .cont_tit_nm h6.line {
    font-size: var(--txt-heading2);
    padding-top: 1rem;
    position: relative;
}
.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(--main-color-2) solid; */
}
.tb_scroll table.normal {
    min-width: 640px;
}
table.normal {
    width: 100%;
    border: 1px solid var(--cgray-200);
    /* border-right: 1px var(--cgray-200) solid;
    border-left: 1px var(--cgray-200) solid; */
    /* table-layout: fixed; */
    /* min-width: 640px; */
    border-collapse: collapse;
    line-height: 1.25em;
    text-align: center;
    background: #fff;
}
.table_min {
    min-width: 280px;
}
table.normal tr {
    border-bottom: 1px var(--cgray-200) solid;
}
table.normal th {
    background-color: var(--cgray-200);
    /* border-top: 4px solid var(--main-color); */
    border-right: 1px var(--cgray-200) solid;
    padding: 14px;
    font-weight: 600;
    font-size: var(--txt-body2-1);
}
table.normal th:first-child {
    border-left: 1px var(--cgray-200) solid;
}
table.normal tbody th {
    background-color: var(--cgray-200);
}
table.normal td {
    padding: 14px;
    border-right: 1px var(--cgray-200) solid;
    vertical-align: middle;
    line-height: 140%;
}
table.normal td:first-child {
    border-left: 1px var(--cgray-200) solid;
}
table.normal .cont {
    /*    padding: 14px;*/
    text-align: left;
    word-break: keep-all;
}
table.normal .main_tit {
    background: var(--cgray-600);
    color: #fff;
    font-size: var(--txt-body1);
    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(--cgray-200);
}
table.normal tfoot td {
    background: var(--cgray-200);
    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(--cgray-200);
}

/*열리는 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(--cgray-200);
}
table.normal.tr_open .title:nth-child(2n) {
    background: var(--cgray-200);
}
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(--cgray-200);
    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-body2);
    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(--cgray-900);
    font-size: var(--txt-body1);
    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-title3);
    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(--cgray-600); */
    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: 798px; 
    /* min-width: 840px; 
    max-width: 840px;  */
    /* max-height: 740px; */
}
#window_popup .sub_container {
    margin-top: 0;
    border-bottom: 0px;
}
#window_popup .sub_container .wrapper .max {
    padding: 0rem 0 1rem;
}
#window_popup .page_tit {
    margin: 0 auto 1rem;
}
#window_popup .cont_tit_m {
    margin: 2rem 0 1rem;
}
#window_popup .page_tit h4 {
    padding-bottom: 0;
    font-size: 24px;
}
#window_popup .page_tit h4:before {
    display: none;
}
#window_popup .sub_tit h3::before{
	top: 3px;
}
#window_popup table {
    /* width: 800px; */
}
#window_popup table th {
    padding: 8px 10px !important;
    font-size: 14px;
    width: 100px;
}
#window_popup table td {
    padding: 8px 10px !important;
    font-size: 14px;
}
#window_popup .cont_tit_m h5, #window_popup .cont_tit_nm h5 {
    font-size: 20px;
}
#window_popup .num-a > li {
    font-size: 14px;
}

.print_top {
        display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--cgray-300);
    padding-bottom: 1em;
}
.print_top .left {
    display: flex;
    gap: 1em;
}
.print_top .left .img {
    max-width: 140px;
}
.print_top .left .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.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(--cgray-200);
    border-left: 1px solid var(--cgray-200);
}
.pop_print .print_tb th {
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
    border-right: 1px solid var(--cgray-200);
}
.pop_print .print_tb td {
    border-right: 1px solid var(--cgray-200);
    font-size: 14px;
}
.print_bottom .bottom_txt {
    margin: 30px 0;
}
.print_bottom .bottom_txt p {
    font-size: 13px;
}
.print_bottom .bottom_txt p span {font-weight: 600;font-size: 14px;display: inline-block; margin-bottom: 4px;}


/**************************************************************/
/**************************************************************/
/********************* 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(--cgray-600);
    height: 35px;
    line-height: 35px;
	font-size: 15px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.viewmore {
    cursor: pointer;
    font-size: 1rem;
    color: var(--cgray-900);
    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(--cgray-800);
}
.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;
    border: 1px solid #222;
    height: 46px;
    line-height: 46px;
    color: #222;
    cursor: pointer;
    font-weight: 500;
    border-radius: var(--radius-all-xxs);
    font-size: var(--txt-body1);
}
.btn_modify {
    display: inline-block;
    text-align: center;
    width: 120px;
    background: var(--sub-color-1);
    height: 42px;
    line-height: 42px;
    color: #fff;
	cursor: pointer;
    font-size: var(--txt-body1);
	font-weight: 500;
    border-radius: var(--radius-all-xxs);
}
.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;
    float: right;
    width: 120px;
    border: 1px solid var(--cgray-900);
    height: 42px;
    line-height: 42px;
    color: var(--cgray-900);
    cursor: pointer;
    font-size: var(--txt-body1);
    font-weight: 500;
    border-radius: var(--radius-all-xxs);
}
.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: 15px;
    cursor: pointer;
    box-sizing: border-box;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-all-xxs);
    color: #fff;
    background: var(--cgray-800);
    gap: 4px;
}

.btn_etc.color01 {
    background: var(--main-color);
}
.btn_etc.color02 {
    background: var(--sub-color);
    color: #fff;
}
.btn_normal {
    border: 1px solid var(--main-color-2);
    font-size: 1rem;
    font-weight: 500;
    height: 2rem;
    width: 12rem;
    text-align: center;
    border-radius: 6px;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: 0.3s;
    max-width: 250px;
    background-color: transparent;
    color: var(--main-color-2);
}
.btn_normal:hover {
    background: var(--main-color-2);
    color: #fff;
}
.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(--cgray-900);
    color: var(--cgray-900);
    box-sizing: border-box;
    font-size: var(--txt-body2);
    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(--cgray-900);
}
.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-body1);
    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-body1);
    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;
    color: #fff;
	position: relative;
	/* height: 30px; */
	display: inline-block;
    /* background: var(--sub-color-3); */
    font-weight: 500;
}
.state.state01 { 
    background: var(--main-color);
}
.state.state02 {
    border: 1px solid var(--main-color);
	color: var(--main-color);
}
.state.state03 {
	background: var(--cgray-600);
}


/* ------------------- 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: #222;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
    background: rgb(78 78 78 / 25%);
}

#header.mainheader {
    color: #fff;
    background: none;
}

#header .logo {
    width: 296px;
}
#header .logo a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 40px;
    width: 146px;
}
#header .logo a img {
    width: 100%;
}
#header .logo a img.on {
    display: none !important;
}
#header .logo a img.off {
    display: block !important;
}
#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(--cgray-200);
}
#header.mainheader.on {
    background: rgb(255 255 255 / 100%);
    border-bottom: 1px solid #dddddd8a;
}

#header.on .logo a img.on,
#header.active .logo a img.on {
    display: block !important;
}
#header.on .logo a img.off,
#header.active .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: 200px;
    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.3);
}
#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(--cgray-900); 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(--cgray-900) !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(--cgray-900) !important;
}
#header.on .open ul li a .material-icons-round, #header.on .open ul li a .material-icons-outlined {
    color: var(--cgray-900) !important;
}

.sub_nav_wrapper {
 display: none;
  position: fixed; /* ← 중요! header 기준이 아니라 뷰포트 기준으로 */
  top: 90px; /* header 높이만큼 띄움 */
  left: 0;
  width: 100vw;
  margin-left: 0;
  background: #fff;
  border-top: 1px solid var(--cgray-200);
  z-index: 9999;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
  flex-direction: row;
  justify-content: space-between;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}
#header.on #gnb > li:hover > .sub_nav_wrapper,
#header.on #gnb > li:hover > .sub_nav_wrapper:hover {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
/* 왼쪽 영역 */
.sub_nav_wrapper .left_area {
  flex: 1;
  min-width: 350px;
  /* background: linear-gradient(to bottom, #B0DAFF 0%, #77BFFF 100%); */
  background: var(--main-color-2);
  color: #fff;
  padding: 3rem 1rem 1rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  cursor: default;
  border-bottom-right-radius: 80px;
  position: relative;
  overflow: hidden;
}
.sub_nav_wrapper .left_area::before{
	content:'';
	position: absolute;
	width: 90px;
	height: 90px;
	background: #fff;
	opacity: 0.08;
	border-radius: 50%;
	top: -35px;
	right: -4px;
}
.sub_nav_wrapper .left_area::after{
content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 180px;
  background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05));
  clip-path: polygon(
    0% 100%,   /* 좌하단 */
    40% 70%,   /* 안쪽 오목한 부분 */
    60% 85%,   /* 살짝 위 */
    100% 40%,  /* 대각선 위 */
    100% 100%  /* 우하단 */
  );
  border-top-left-radius: 50% 40%;
  border-top-right-radius: 30% 60%;
  opacity: 0.8;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.15));

}
.sub_nav_wrapper .left_area h2 {
  font-size: 1.8rem;
  font-weight: 600;

}

.sub_nav_wrapper .left_area img {
  width: 110px;
  height: 110px;
  opacity: 0.8;
  align-self: flex-end;
  z-index: 10;
}

/* 오른쪽 영역 */
.sub_nav_wrapper .right_area {
  flex: 4;
  background: #fff;
  display: flex;
  align-items: start;
  padding: 2rem 3rem;
}
.sub_nav_wrapper .sub_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1rem;
}
.sub_nav_wrapper .sub_nav li{

}
.sub_nav_wrapper .sub_nav li a{
    cursor: pointer;
   min-height:inherit;
    min-width:inherit;
    display: block;
    font-size: 17px;
    font-weight: 500;
    word-break: break-all;
    line-height: 130%;
    white-space: break-spaces;
    letter-spacing: -1px;
    color: var(--cgray-700);
    transition: 0.3s;
    border: 1px solid var(--cgray-300);
    padding: 12px 12px;
    border-radius: 4px;
    width: 240px;
    text-align: left;
}
.sub_nav_wrapper .sub_nav li a:hover {
  color: var(--main-color-2);
  border: 1px solid var(--main-color-2);
  font-weight: 500;
}
.sub_nav_wrapper .sub_nav li a:hover



#header .open {
    /* display: flex; */
    /* width: 300px; */
}
#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(--cgray-700);
}

.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-label);
    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-body2);
    line-height: 90px;
    color: #fff; 
}
#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;

    /* backdrop-filter: blur(2px); */
    /* 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;
    background-color: #fff;
}
.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-label);
    font-weight: 500;
    padding-right: 2rem;
}
#header.on .top_header .wrap {
    color: var(--cgray-900);
}
#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(--cgray-900);
}

#header .top_header .wrap li span {
    color: var(--cgray-600);
    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(--cgray-200);
    border-bottom: 1px solid var(--cgray-200);
    background: rgba(255,255,255,0.2);
    -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.7);
    transition: all 0.5s ease;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
}
#header .depth_toggle .sub_nav {
    width: 200px;
    border-right: 1px solid var(--cgray-200);
    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(--cgray-200);
}
#header .depth_toggle .sub_nav li.menu3 {
    padding-left: 0.5rem;
}
#header .depth_toggle .sub_nav li.menu3 a {
    font-size: var(--txt-label);
    color: var(--cgray-700);
    /* font-weight: 300; */
    line-height: 0.875rem;
}
#header .mini_nav {
    width: 192px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--cgray-200);
    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(--cgray-700);
}
#header .mini_nav li:hover a {
    color: var(--main-color-2);
    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-body2);
    letter-spacing: -0.6px;
    text-overflow: ellipsis;
} */
/* 두줄일 시 */
#header nav .depth_toggle .sub_nav li a {
    display: block;
    font-size: var(--txt-body2);
    /* 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(--cgray-800);
    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(--cgray-200);
    color: var(--cgray-900); */
    background: #fff;
    transition: .5s height, .2s background;
}
/* #header nav .depth_toggle .sub_nav.on li a {
    color: var(--cgray-800);
} */
#header nav .depth_toggle .sub_nav.on li a:hover {
    color: var(--main-color-2) !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.svg);
    margin-left: 5px;
}
#header nav .depth_toggle .sub_nav .link:hover:after {
    content: url(/images/common/ic_external_sm_on.svg);
}
#header .menu_area {
    height: 100%;
    width: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
	gap: 16px;
}
#header .menu_area ul {
    overflow: hidden;
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    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: auto;
    height: 90px;
    line-height: 90px;
    text-align: center;
    cursor: pointer;
}
#header .menu_area ul li:last-child {
    width: 90px;
    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) 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) center no-repeat; background-size: cover;}
.sub_visual.visual06 { background: url(../images/sub/visual06.png?ver=1.0) center no-repeat; background-size: cover;}
.sub_visual.visual07 { background: url(../images/sub/visual07.png?ver=1.0) center no-repeat; background-size: cover;}
.sub_visual.no_visual {width: 100%;height: 1px;margin-top: 134px;}
.sub {
    background: var(--cgray-200);
    font-size: 16px;
}
.sub .grid_container {
    width: var(--web-width);
    padding: 80px 0 90px;
}
.sub_visual {
    height: 350px;
    width: 100%;
    padding: 140px 0;
}
.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);
    max-width: 1300px;
    height: 132px;
    margin: 0 auto;
    position: relative;
    align-content: center;
}
/*.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 {
    max-width: 1300px;
    font-size: 3rem;
    font-weight: 600;
    /* line-height: 624px; */
    color: #fff;
    width: var(--web-width);
    margin: 0 auto;
    position: relative;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
    text-align: center;
}
.sub_visual h1 span{
    font-size: 1.25rem;
    color: #777;
    font-weight: 300;
    margin-left: 0.5rem;
    letter-spacing: 0;
}
.sub_visual .visualbg{
    width: var(--web-width);
    /* height: 13rem; */
    margin: 0 auto;
    margin-top: 2rem;
    position: relative;
}
.sub_visual h2 {
    font-size: var(--txt-xl-1);
    line-height: 1.75rem;
    font-weight: 400;
    color: rgb(255 255 255 / 100%);
    /* position: absolute;
    left: 0;
    top: 40%; */
    /* transform: translate(-50%, -50%); */
    width: var(--web-width);
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}


@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:1300px;
    margin: 24px auto 0;
    background: #fff;
    border-radius: var(--radius-all-sm);

    /* position: absolute;
    z-index: 1; */
}
.path_container.on {
    position: fixed;
    top: 100px;
    animation: smoothScroll 0.5s forwards;
    z-index: 999;
}

.path {
    height: 60px;
    line-height: 60px;
}
.path_inside {
    max-width: var(--web-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    background-color: var(--cgray-100);
    border-radius: 2rem;
    align-items: center;
}
.path .home {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-left: 6px;
    position: relative;
}
.path .home::before { 
    content: '\e88a';
    font-family: 'Material Icons';
    color: var(--main-color-2);
    font-size: var(--txt-title1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
}
.path .home span {
    color: var(--main-color-2);
}
.path a {
    color: var(--cgray-800);
}
/*
.path [class^="depth"] {
	float:left;
	position:relative;
}
*/
.path_inside > div {
    /* float: left; */
    position: relative;
}
.path [class^="depth"]:not(.depth1) > .depth_btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 1px;
  height: 24px;
  background: var(--cgray-300);
  display: block;
}
.path .depth_btn {
    cursor: pointer;
    display: block;
    width: auto;
    padding: 0 25px;
    min-width: 300px;
    /*    letter-spacing: -1;*/
    /* white-space: pre; */
    overflow: hidden;
    font-size: var(--txt-body1);
    position: relative;
    font-weight: 500;
    /* color: #fff; */
}
.path .depth_btn span {
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 24px;
    font-weight: 100;
    color: var(--cgray-500);
}
.path .depth_btn img {
    position: absolute;
    right: 20px;
    top: 32px;
    font-size: 24px;
    font-weight: 100;
    color: var(--cgray-200);
}

.path [class^="depth"] ul {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 70px;
    width: 100%;
    z-index: 1;
    background-color: #fff;
    border: 1px solid var(--cgray-200);
    border-radius: 8px;
    overflow: hidden;
    min-width: 250px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}
.path [class^="depth"].active ul {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    z-index: 998;
}
.path [class^="depth"] ul li {
    height: 44px;
    font-size: 0.875rem;
    line-height: 40px;
    border-bottom: 1px solid var(--cgray-100);
    padding: 0 20px;
    transition: 0.3s;
}
.path [class^="depth"] ul li:last-child{
	border-bottom: 0;
}
.path [class^="depth"] ul li:hover {
    background: var(--cgray-100);
  
}
.path [class^="depth"] ul li a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: var(--txt-body2);
    color: var(--cgray-600);
    align-content: center;
}
.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: #fff;
} */
.path select {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    height: 58px;
    line-height: 58px;
    padding-bottom: 4px;
}
.path select option {
    color: #555;
    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.svg);
    font-weight: 600;
    margin-left: 8px;
    font-size: 13px;
    position: absolute;
    top: 6px;
    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 #c9d0d4;
    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 #c9d0d4;
    color: #555;
    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-1);
    color: #fff;
}




/**************************************************************/
/**************************************************************/
/****************************Contents**************************/
/**************************************************************/
/**************************************************************/
.layout_sub{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.sub_container {
    min-height: 500px;
    /* margin-top: 5rem; */
    /* border-bottom: 1px solid #c9d0d4; */
}
.sub_container>.wrapper {
    /* width: var(--web-width); */
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.sub_container>.wrapper>.contents {
    margin: 3.5rem 0;
}
.sub_container .wrapper .max.line_wrapper {
    background: url('../images/sub/line_bg.png') center top repeat-y;
}
.sub_container .wrapper .max {
    max-width: var(--web-width);
    margin: 0 auto;
    /* padding: 5rem 0; */
    padding: 3rem 0 4rem;
}
.no_visual .sub_container .wrapper .max, .no_visual .sub_container .wrapper .max {
    padding: var(--pad-tb-lg);
}

.sub_container .wrapper .max_wrap_border {
    border-bottom: 1px solid var(--cgray-200);
}

.sub_container .wrapper .max_wrap_color {
    background: #f1f1ec;
}

.sub_container .wrapper .max_wrap_color2 {
    background: var(--cgray-200);
}


/**************************************************************/
/**************************************************************/
/**********************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-2);
    /* background-image: linear-gradient(to bottom, #77BFFF, #172E8E) !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-body1);
    font-weight: 500;
    height: 72px;
    /* line-height: 90px; */
    line-height: 1em;
}
.offcanvas .h_tablinks.point {
    background: #ff80c0;
}

.offcanvas .h_tablinks:hover {
    background-color: #fff;
    color: var(--gray-800);
}

.offcanvas .h_tablinks.active {
    background-color: #fff;
    color: var(--cgray-900);
    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: 82px; */
    height: auto;
    line-height: 1.2em;
    font-size: var(--txt-body1);
    color: var(--cgray-800);
    font-weight: 400;
    padding: 20px 30px;
    border-bottom: 1px solid var(--cgray-200);
    display: flex;
    vertical-align: middle;
    align-items: center;
    flex-wrap: wrap;
}
.offcanvas .h_tabcontent .sub_nav > li:hover > a {
    color: var(--main-color-2);
}
.offcanvas .h_tabcontent .sub_nav > li > a span.material-icons {
    font-size: 1rem;
    color: var(--cgray-600);
    padding-left: 0.25rem;
}

.offcanvas .h_tabcontent .sub_nav > li a.link::after {
    content: url(/images/common/ic_external_sm.svg);
    font-weight: 600;
    margin-left: 5px;
    width: 16px;
    height: 16px;
    position: relative;
    /* font-size: 0.813rem; */
}

.offcanvas .h_tabcontent .sub_nav > li:hover a.link::after {
    content: url(/images/common/ic_external_sm_on.svg);
}
.sub_nav_wrapper .sub_nav li a.link::after{
   content: url(/images/common/ic_external_sm.svg);
    font-weight: 600;
    margin-left: 5px;
    width: 16px;
    height: 16px;
    position: relative;
}
.sub_nav_wrapper .sub_nav li:hover a.link::after{
    content: url(/images/common/ic_external_sm_on.svg);
}

.offcanvas .menu_login {
    background-color: #EBEEF1;
    height: 90px;
    line-height: 100%;
    font-size: var(--txt-body1);
    color: #fff;
    padding: 0 30px;
    position: absolute;
    top: 0;
    width: calc(100% - 180px);
    z-index: 999;
}

.offcanvas .menu_login .wrapper {
    position: relative;
    width: 270px;
    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;
    align-self: anchor-center;
}

.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(--cgray-200);
    padding: 28px 32px;
}

.offcanvas .h_tabcontent .depth3 .menu3 {
    font-size: var(--txt-body2);
    line-height: 32px;
    color: var(--cgray-900);
}

.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(--cgray-900);
}

.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(--cgray-600);
    border-top: 2px solid var(--cgray-600);
    transform: rotate(135deg);
    position: absolute;
    top: 33px;
    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(--cgray-600);
    border-top: 2px solid var(--cgray-600);
    transform: rotate(-45deg);
    position: absolute;
    top: 37px;
    right: 20px;
    transition: 0.5s;
}


/**************************************************************/
/**************************************************************/
/*****************************footer***************************/
/**************************************************************/
/**************************************************************/
.footer {
    background: var(--cgray-900);
    padding: 2rem 5rem;
    position: relative;
}
.footer::before{
    content: '';
    position: absolute;
    border: 1px solid var(--cgray-800);
    width: 99%;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.footer .wrapper {
    margin: 0 auto;
    color: var(--cgray-200);
}
.footer .wrapper .top{
    
}
.footer .wrapper .top .top-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    margin: 0 auto;
}
.footer .wrapper .top .top-inner .top-links{
    display: flex;
    gap: 3rem;
}
.footer .wrapper .top .top-inner .top-links a{
    color: var(--cgray-400);
    font-weight: 600;
    font-size: var(--txt-label);
}
.footer .wrapper .top .top-inner .top-social{
    display: flex;
    gap: 12px;
}
.footer .wrapper .top .top-inner .top-social a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--cgray-700);
    border-radius: 50%;
}
.footer .wrapper .bottom{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem 0rem;
}
.footer .wrapper .bottom .logo{
    width: 160px;
    height: auto;
    margin-right: 2rem;
}
.footer .wrapper .bottom .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer .wrapper .bottom .footer-info{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer .wrapper .bottom .footer-info .campus{
    display: flex;
    gap: 1rem;
}
.footer .wrapper .bottom .footer-info .campus strong{
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: var(--txt-label);
}
.footer .wrapper .bottom .footer-info .campus span, .footer-info .copyright p{
    color: var(--cgray-400);
    font-weight: 400;
    font-size: var(--txt-label);
}
.footer .wrapper .bottom .site{
    width: 240px;
    aspect-ratio: 5/1;
    position: relative;
    transition: 0.3s;
    margin-left: auto;
}
.footer .wrapper .bottom .site .btn_toggle img{
    width: 16px;
}
.footer .wrapper .bottom .site ul{
    position: absolute;
    width: 100%;
    padding-bottom: 44px;
    bottom: 0px;
    left: 0;
    display: block;
    border-radius: 4px;
    background: var(--cgray-200);
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    transition-delay: 0s, 0s, 0.2s;
    transform: translateY(50px);
}
.footer .wrapper .bottom .site ul.on{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    z-index: 9;
    padding-bottom: 0;
    bottom: 49px;
}
.footer .wrapper .bottom .site ul.on .btn_toggle {
    z-index: 99;
}

.footer .wrapper .bottom .site ul li{
    height: 44px;
    line-height: 44px;
    width: 100%;
    padding: 0 12px;
    border-bottom: 1px solid var(--cgray-300);
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: pre;
    color: var(--cgray-800);
    cursor: pointer;
}
.footer .wrapper .bottom .site ul li:hover{
    background: var(--cgray-300);
}
.footer .wrapper .bottom .site ul li a{
    color: var(--cgray-900);
    display: block;
    width: 100%;
    height: 100%;
    font-weight: 500;
}
.footer .wrapper .bottom .site .btn_toggle{
    display: flex;
    padding: 0 0.5rem 0 1rem;
    width: 100%;
    height: 100%;
    color: var(--cgray-400);
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    /* z-index: 99; */
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    font-weight: 600;
    border-radius: 4px;
    border: 1px var(--cgray-700) solid;
}
.footer .wrapper .bottom .site .btn_toggle span{
    transition: 0.3s;
}
.footer .wrapper .bottom .site .btn_toggle:hover span{
    transform: rotate(180deg);
}


/* 탑버튼 */
.btn_move_top{
    position: fixed;
    bottom: 288px;
    right: 5rem;
    z-index: 999;
    background: var(--main-color-2);
    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(--cgray-200);
}
.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-body1);
    font-weight: 400;
    color: var(--cgray-900);
    background: var(--cgray-200);
    /* 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(--cgray-200);
    line-height: 30px;
    margin-top: 1.5rem;
    border-radius: var(--radius-all-xs);
    background: var(--cgray-200);
}
.tab_click_li dt .tit {
    width: 100%;
    font-size: var(--txt-body1-2);
    font-weight: 600;
    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(--cgray-200);
    line-height: 150%;
    padding-left: 28px;
    margin-top: -1px;
    border-radius: var(--radius-all-xs);
    /* background: var(--cgray-200); */
}
.tab_click_li p {
    margin-bottom: 20px;
}
.tab_click_li dt .tit .cate {
    color: var(--main-color);
    font-weight: 500;
    font-size: var(--txt-body1);
    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(--cgray-600);
    border-top: 2px solid var(--cgray-600);
    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(--cgray-600);
    border-top: 2px solid var(--cgray-600);
    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);
}
.tab_click_li dd .year {
    width: 100px;
    color: var(--main-color);
    font-weight: 600;
    display: inline-block;
}



/**************************************************************/
/**************************************************************/
/************************ member & form ***********************/
/**************************************************************/
/**************************************************************/
/*-------------------- form basic setting --------------------*/
input::-webkit-input-placeholder {
    font-size: var(--txt-label);
    color: var(--cgray-600);
}
input::-moz-input-placeholder {
    font-size: var(--txt-label);
    color: var(--cgray-600);
}
input:-ms-input-placeholder {
    font-size: var(--txt-label);
    color: var(--cgray-600);
}
input:-moz-input-placeholder {
    font-size: var(--txt-label);
    color: var(--cgray-600);
}
.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 {
    width: 350px;
    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(--cgray-200);
    padding: 0px 10px;
    height: 46px;
    margin: 5px 0;
}
.login_wrap input[type=password] {
    background: #fff;
    border: 1px solid var(--cgray-200);
    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(--main-color-2);
    color: #fff;
    font-size: var(--txt-body2-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(--main-color-2);
}
.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;
    padding-top: 10px;
    text-align: center;
}
.login_footer a {
    font-size: var(--txt-body2-1);
    color: var(--cgray-700);
    font-weight: 400;
}
.login_footer .id_pw span {
    color: var(--cgray-200);
    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(--cgray-700);
    font-size: var(--txt-body1-2);
}
.id_pw_sch .sch_id {
    font-size: var(--txt-title3);
    color: var(--main-color);
    padding: 0 2px;
}
.id_pw_sch span {
    /* display: block; */
    margin-top: 20px;
    color: var(--cgray-600);
    /* 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);}

.float-block.select-block{
	display: flex;
	gap: 4px;
}

/**************************************************************/
/**************************************************************/
/******************** 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(--cgray-200);
    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(--cgray-200);
    padding: 1.5rem;
    border-radius: var(--radius-all-xs);
}
.privacy .terms {
    /* border-bottom: 1px solid var(--cgray-200); */
}

.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(--cgray-700);
}
.privacy .terms ul li:before {
    content: '';
    width: 3px;
    height: 3px;
    background:  var(--cgray-600);
    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(--cgray-200);
    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-body1);
    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(--cgray-700);
    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-body2);
}
.terms p>.txt_point {
    margin-bottom: 4px;
    display: inline-block;
    font-weight: 500;
}
.terms p:first-child {
    margin-top: 0;
}

.terms ul {
    margin-top: 0rem;
}
.terms li {
    font-size: var(--txt-body2-1);
}
ul.line li {
	margin: 10px 0;
	position: relative;
	padding-left: 12px;
	line-height: 1.375rem;
    text-align: left;
}
ul.line li:before {
	content: '';
	position: absolute;
	width: 5px;
	height: 1px;
	background: var(--cgray-700);
	top: 10px;
	left: 0px;
}

.num-a > li{position:relative; padding-left:25px;margin: 6px 0;}
.num-a > li:before{position:absolute; left:0; top:0; display:block;}
.num-a > li.a1:before, .num-a > li:nth-of-type(1):before{content:'1. ';}
.num-a > li.a2:before, .num-a > li:nth-of-type(2):before{content:'2. ';}
.num-a > li.a3:before, .num-a > li:nth-of-type(3):before{content:'3. ';}
.num-a > li.a4:before, .num-a > li:nth-of-type(4):before{content:'4. ';}
.num-a > li.a5:before, .num-a > li:nth-of-type(5):before{content:'5. ';}
.num-a > li.a6:before, .num-a > li:nth-of-type(6):before{content:'6. ';}
.num-a > li.a7:before, .num-a > li:nth-of-type(7):before{content:'7. ';}
.num-a > li.a8:before, .num-a > li:nth-of-type(8):before{content:'8. ';}
.num-a > li.a9:before, .num-a > li:nth-of-type(9):before{content:'9. ';}
.num-a > li.a10:before, .num-a > li:nth-of-type(10):before{content:'10. ';}
.num-a > li.a11:before, .num-a > li:nth-of-type(11):before{content:'11. ';}
.num-a > li.a12:before, .num-a > li:nth-of-type(12):before{content:'12. ';}
.num-a > li.a13:before, .num-a > li:nth-of-type(13):before{content:'13. ';}
.num-a > li.a14:before, .num-a > li:nth-of-type(14):before{content:'14. ';}
.num-a > li.a15:before, .num-a > li:nth-of-type(15):before{content:'15. ';}

.num-c > li{position:relative; padding-left:20px;margin: 8px 0;}
.num-c > li:before{position:absolute; left:0; top:0; display:block;}
.num-c > li.c1:before, .num-c > li:nth-of-type(1):before{content:'① ';}
.num-c > li.c2:before, .num-c > li:nth-of-type(2):before{content:'② ';}
.num-c > li.c3:before, .num-c > li:nth-of-type(3):before{content:'③ ';}
.num-c > li.c4:before, .num-c > li:nth-of-type(4):before{content:'④ ';}
.num-c > li.c5:before, .num-c > li:nth-of-type(5):before{content:'⑤ ';}
.num-c > li.c6:before, .num-c > li:nth-of-type(6):before{content:'⑥ ';}
.num-c > li.c7:before, .num-c > li:nth-of-type(7):before{content:'⑦ ';}
.num-c > li.c8:before, .num-c > li:nth-of-type(8):before{content:'⑧ ';}
.num-c > li.c9:before, .num-c > li:nth-of-type(9):before{content:'⑨ ';}
.num-c > li.c10:before, .num-c > li:nth-of-type(10):before{content:'⑩ ';}
.num-c > li.c11:before, .num-c > li:nth-of-type(11):before{content:'⑪ ';}
.num-c > li.c12:before, .num-c > li:nth-of-type(12):before{content:'⑫ ';}
.num-c > li.c13:before, .num-c > li:nth-of-type(13):before{content:'⑬ ';}
.num-c > li.c14:before, .num-c > li:nth-of-type(14):before{content:'⑭ ';}
.num-c > li.c15:before, .num-c > li:nth-of-type(15):before{content:'⑮ ';}

.num-d > li{position:relative; padding-left:18px;margin: 10px 0;}
.num-d > li:before{position:absolute; left:0; top:0; display:block;}
.num-d > li.d1:before, .num-d > li:nth-of-type(1):before{content:'1) ';}
.num-d > li.d2:before, .num-d > li:nth-of-type(2):before{content:'2) ';}
.num-d > li.d3:before, .num-d > li:nth-of-type(3):before{content:'3) ';}
.num-d > li.d4:before, .num-d > li:nth-of-type(4):before{content:'4) ';}
.num-d > li.d5:before, .num-d > li:nth-of-type(5):before{content:'5) ';}
.num-d > li.d6:before, .num-d > li:nth-of-type(6):before{content:'6) ';}
.num-d > li.d7:before, .num-d > li:nth-of-type(7):before{content:'7) ';}
.num-d > li.d8:before, .num-d > li:nth-of-type(8):before{content:'8) ';}
.num-d > li.d9:before, .num-d > li:nth-of-type(9):before{content:'9) ';}
.num-d > li.d10:before, .num-d > li:nth-of-type(10):before{content:'10) ';}

.txt-k > li{position:relative; padding-left:24px;margin: 10px 0;}
.txt-k > li:before{position:absolute; left:0; top:0; display:block;}
.txt-k > li.k1:before, .txt-k > li:nth-of-type(1):before{content:'가. ';}
.txt-k > li.k2:before, .txt-k > li:nth-of-type(2):before{content:'나. ';}
.txt-k > li.k3:before, .txt-k > li:nth-of-type(3):before{content:'다. ';}
.txt-k > li.k4:before, .txt-k > li:nth-of-type(4):before{content:'라. ';}
.txt-k > li.k5:before, .txt-k > li:nth-of-type(5):before{content:'마. ';}
.txt-k > li.k6:before, .txt-k > li:nth-of-type(6):before{content:'바. ';}
.txt-k > li.k7:before, .txt-k > li:nth-of-type(7):before{content:'사. ';}
.txt-k > li.k8:before, .txt-k > li:nth-of-type(8):before{content:'아. ';}
.txt-k > li.k9:before, .txt-k > li:nth-of-type(9):before{content:'자. ';}
.txt-k > li.k10:before, .txt-k > li:nth-of-type(10):before{content:'차. ';}
.txt-k > li.k11:before, .txt-k > li:nth-of-type(11):before{content:'카. ';}
.txt-k > li.k12:before, .txt-k > li:nth-of-type(12):before{content:'타. ';}
.txt-k > li.k13:before, .txt-k > li:nth-of-type(13):before{content:'파. ';}
.txt-k > li.k14:before, .txt-k > li:nth-of-type(14):before{content:'하. ';}
/**************************************************************/
/**************************************************************/
/******************** 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(--cgray-200);
    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{
        width: 180px;
    }
    #header nav #gnb > li {
        width: 180px;
    }
    #header .depth_toggle .sub_nav {
        width: 180px;
    }
    #header .menu_area {
        width: 180px;
    }
    #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);
    }

}
@media screen and (max-width:1500px) {
    #header .logo{
        width: auto;
    }
    #header .logo a {
        margin-left: 24px;
    }
    #header nav #gnb{
        width: auto;
    }
    #header nav #gnb>li {
        width: 160px;
    }
    #header .depth_toggle .sub_nav{
        width: 160px;
    }
    #header .depth_toggle .sub_nav { padding: 0.5rem 0.5rem;}
    #header nav #gnb li .nav_dep1 { font-size: 1rem;}
    #header .open {
        
    }
    #header .depth_toggle .wrapper {}
    #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;
    }
    .footer .wrapper .bottom .logo{
        width: 140px;
    }

}