@charset "utf-8";
html,
body {
    font-size: 16px;
}
:root {
    --main-color: #004293;
    --main-color-2: #002E66;
    --sub-color-1: #96DCFF;
    --sub-color-2: #00AFC0;
    --sub-color-3: #FCFCD4;
    --sub-color-4: #ff5c12;

    /* 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: 1400px;

    --main-font: 'Pretendard', sans-serif;

    
}


/**************************************************************/
/**************************************************************/
/****************************basic css*************************/
/**************************************************************/
/**************************************************************/
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined.fill {
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}
/* ----------------- 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%;
    max-width: 240px;
    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) !important;
}

.sub_clr {
    color: var(--sub-color-1) !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);
}

/* ------------------서브페이지 첫번째 제목------------------*/
.page_tit {
    margin: 0rem auto 1rem;
}

.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 h4, .cont_tit_nm h4 {
    font-size: var(--txt-title2);
    display: block;
    font-weight: 600;
    word-break: keep-all;
}
.cont_tit_m h4.line, .cont_tit_nm h4.line {
    position: relative;
    padding-top: 2rem;
}
.cont_tit_m h4:after, .cont_tit_nm h4.line:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-top: 1px solid var(--cgray-200);
    padding-top: 2rem;
    top: 0;
    left: 0;
}

/* ------------------서브페이지 두번째 제목 (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);
}

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

.cont_subtit {
    font-size: var(--txt-title1);
    margin-bottom: 2.25rem;
    color: #111;
    font-weight: 700;
    display: block;
    word-break: keep-all;
}
/**************************************************************/
/**************************************************************/
/*************************table setting ***********************/
/**************************************************************/
/**************************************************************/
.tb_scroll {
    overflow-x: auto;
    /* border-bottom: 1px var(--main-color) solid; */
}
.tb_scroll table{
    min-width: 640px;
}
table {
    width: 100%;
    border-top: 1px var(--cgray-900) solid;
    border-right: 1px var(--cgray-200) solid;
    border-left: 1px var(--cgray-200) solid;
    /* table-layout: fixed; */
    border-collapse: collapse;
    line-height: 1.5em;
    text-align: center;
    position: relative;
}
.table_min {
    min-width: 280px;
}

table th {
    background-color: var(--cgray-50);
    font-size: 1.075rem;
    /* border-top: 1px var(--cgray-200) solid; */
    border-right: 1px var(--cgray-200) solid;
    padding: 14px;
    font-weight: 400;
    vertical-align: middle;
    text-shadow: #000 0px 0px 0.75px;
}
table th:last-child {
    border-right: 1px var(--cgray-200) solid;
}
table tr {
    border-bottom: 1px var(--cgray-200) solid;
}
table tr.line {
    border-bottom: 1px var(--cgray-200) solid;
}
table td.valign_top {
    vertical-align: top;
}

table td {
    padding: 14px;
    border-right: 1px var(--cgray-200) solid;
    /* background: #fff; */
    vertical-align: middle;
}
table td:last-child {
    border-right: 1px var(--cgray-200) solid;
}



/*격행으로 배경 컬러*/
table.tr_color thead th {
    background: #f2eee7;
    border-right: 1px #dbd3c5 solid;
}
table.tr_color tbody tr:nth-child(2n) {
    background: var(--cgray-200);
}

/*열리는 tr*/
table.tr_open thead th {
    background: #f2eee7;
    border-right: 1px #dbd3c5 solid;
}
table.tr_open .title {
    position: relative;
    cursor: pointer;
}
table.tr_open .title:hover {
    background: var(--cgray-200);
}
table.tr_open .title:nth-child(2n) {
    background: var(--cgray-200);
}
table.tr_open .open {
    position: relative;
}
table.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.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 .description {
    display: none;
}
table .description td {
    background: #fff;
}
table .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.center{
    display: flex;       
    justify-content: center; 
    margin: 0 auto;
    width: 100%;
}
.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;
    height: 42px;
    line-height: 42px;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    border-radius: var(--radius-all-xxs);
    font-size: var(--txt-body1);
    background: var(--main-color);
    margin-left: auto;
}
.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); */
    background: var(--main-color);
    font-size: 1rem;
    font-weight: 500;
    height: auto;
    padding: 12px 24px;
    /* width: 12rem; */
    text-align: center;
    border-radius: 4px;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: 0.3s;
    max-width: 250px;
    color: #fff;
    justify-self: center;
    cursor: pointer;
}
.btn_normal span{
    
}
.btn_normal:hover {
    background: #DAEAFE;
    color: var(--main-color);
}
.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);
    border: 1px solid var(--main-color);
}
.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;
	display: inline-block;
    font-weight: 600;
}
.state.state01 { 
    color: var(--main-color); /*확인 중*/ /*수료*/ /*진행중*/
}

.state.state02 {
    color: var(--sub-color-2); /*승인*/ /*예정*/
}
.state.state03 {
    color: var(--cgray-500); /*반납완료*/ 
}
.state.state04 {
    color: #ff5c12; /*반려*/
}
.state .go_apply{
    background: var(--main-color);
    padding: 6px 24px 6px 12px;
    border-radius: var(--radius-all-xxs);
    position: relative;
    align-items: center;
    white-space: nowrap;
}
.state .go_apply::after{
    font-family: 'Material Icons Outlined';
    content: 'chevron_right';
    font-size: 1.1rem;
    position: absolute;
    top: 3px;
    right: 4px;
    color: #fff; 
}
/* ------------------- 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
========================================================= */
.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

#header {
    width: 100%;
    position: fixed; /* 항상 고정 */
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent; /* 초기엔 투명 */
    transition: background 0.3s ease, border-bottom 0.3s ease;
}

#header.on,
#header.active {
    background: #fff;
    border-bottom: 1px solid #e4e4e7;
    animation: smoothScroll 0.5s forwards;
}

.header_wrap {
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header.scrolled .header_wrap {
    transform: translateY(-40px);
}

#header.scrolled {
    height: 90px; 
    background: #fff;
    border-bottom: 1px solid #ddd;
}

/* 초기 상태 높이 (top_header 포함) */
#header.at_top {
    height: 130px;
}

/*로그인 헤더*/
.top_header {
    width: 100%;
    height: 40px;
    border-bottom: 1px solid #ededed;
    font-size: 16px;
    color: #fff;
    transition: transform 0.35s ease;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 40px;
}

.top_header_inner {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.top_header_inner .top_left .btn_univ {
  font-weight: 500;
    color: #fff;
}

.top_header_inner .top_left .btn_univ:hover {
  text-decoration: underline;
}

/* RIGHT */
.top_header_inner .top_right {
}

.top_header_inner .top_right ul{
	display:flex;
	gap: 1rem;
  align-items: center;

}


.top_header_inner .top_right a {
  font-size: 15px;
  white-space: nowrap;
  color: #fff;
}

.top_header_inner .top_right a:hover {
  text-decoration: underline;
}

.top_header_inner .top_right .dot {
  width: 4px;
  height: 4px;
  background: #DEDEE5;
  border-radius: 50%;
  display: inline-block;
}

#header.on .top_header,
#header.active .top_header {
    border-bottom-color: #ededed;
}
#header.on .top_header a,
#header.active .top_header a{
    color: #222 !important;
}

/*메인 헤더*/
#header .bottom_header {
    width: 100%;
    height: 90px;
    padding: 0 40px;
}

.float_wrapper {
    max-width: 1800px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#gnb {
    display: flex;
    gap: 0;
}


#header.on #gnb > li > .nav_dep1,
#header.active #gnb > li > .nav_dep1 {
    color: #222;
}


/**************************************************************
 * LOGO
 **************************************************************/
#header .logo a {
  display: block;
  width: 160px;
  height: 40px;
  background: url("../images/common/logo.svg") no-repeat left center;
  background-size: contain;
  text-indent: -9999px;
}

#header.on .logo a,
#header.active .logo a {
  background-image: url("../images/common/logo_on.svg");
}

/**************************************************************
 * GNB
 **************************************************************/
#header nav {
  flex: 1;
}

#gnb {
  display: flex;
  align-items: center;
  justify-content: center;
}

#gnb > li {
  width: 200px;
  height: 90px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gnb > li > .nav_dep1 {
  width: 100%;
  text-align: center;
  font-size: 1.125rem;
  align-content: center;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,0.3);
  transition: color 0.25s ease;
}

#header.on #gnb > li > .nav_dep1,
#header.active #gnb > li > .nav_dep1 {
  color: #1d1d1b;
  text-shadow: none;
}

/**************************************************************
 * MEGA MENU
 **************************************************************/
.sub_nav_wrapper {
  display: none;
  position: fixed; 
  top: calc(40px + 90px);
  left: 0;
  width: 100vw;
  min-height: 190px;
  background: url(../images/main/sub_nav_wrapper_bg.png) no-repeat center;
  background-size: auto;
  /* border-top: 1px solid #e4e4e7; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

#gnb > li:hover > .sub_nav_wrapper {
  display: flex !important;
}

/* left */
.sub_nav_wrapper .left_area {
  flex: 1;
  min-width: 340px;
  padding: 3rem 2.5rem;
  color: #fff;
}

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

/* right */
.sub_nav_wrapper .right_area {
  flex: 4;
  padding: 2.5rem 3rem;
  background: #fff;
  border-bottom-left-radius: 64px;
  position: relative;
  background-image: url("../images/main/symbol.png");
  background-repeat: no-repeat;
  background-position: right 14px bottom;
  background-size: 170px auto;
  padding-right: 200px;
}


/* 2depth */
.sub_nav_wrapper .sub_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px;
}

.sub_nav_wrapper .sub_nav > li {
  width: 254px;
  display: flex;
  flex-direction: column;
}

.sub_nav_wrapper .sub_nav > li > a {
  position: relative;   
  padding: 14px 44px 14px 14px;
  border: 1px solid #d4d4d8;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #1d1d1b;
  background: #fff;
  transition: all 0.25s ease;
}
.sub_nav_wrapper .sub_nav > li > a::after {
  content: "\e5cc";
font-family: 'Material Symbols Outlined';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 22px;
  color: #a1a1aa;
  transition: all 0.25s ease;
}
.sub_nav_wrapper .sub_nav > li > a:hover::after {
  color: var(--main-color);
  transform: translateY(-50%) translateX(4px);
}
.sub_nav_wrapper .sub_nav > li > a:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

/* 3depth */
.sub_nav_wrapper .depth3 {
  margin-top: 12px;
  padding-left: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sub_nav_wrapper .depth3 li a {
  font-size: 1.05rem;
  color: #8a8a8a;
}

.sub_nav_wrapper .depth3 li a::before {
  content: "· ";
}
.sub_nav_wrapper .depth3 li:hover a{
  color: #222;
}
/**************************************************************
 * MENU AREA (LOGIN / HAMBURGER)
 **************************************************************/
.menu_area {
  position: relative;
  z-index: 2000;
}

.menu_area ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu_area ul li a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
}

#header.on .menu_area ul li a,
#header.active .menu_area ul li a {
  color: #1d1d1b;
}

/* hamburger */
.menu_area ul li a.hambtn {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("../images/common/ic_ham_menu.png") no-repeat center;
  background-size: 32px 22px;
  cursor: pointer;
}

#header.on .menu_area ul li a.hambtn,
#header.active .menu_area ul li a.hambtn {
  background-image: url("../images/common/ic_ham_menu_on.png");
}

/**************************************************************
 * OFFCANVAS BASE
 **************************************************************/
.offcanvas {
position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    height: 100%;
    background: #fff;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform; /* 브라우저에게 애니메이션 예고 */
    visibility: hidden;
}

.offcanvas.open {
  transform: translateX(0);
  visibility: visible !important;
}

.overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9998; 
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s;
    cursor: pointer;
}
.overlay.open {
    display: block; 
    visibility: visible;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
}
.offcanvas_wrap {
display: flex;
  width: 100%;
  height: 100%;
  background: #fff;

  box-shadow: -8px 0 24px rgba(0,0,0,0.15);
}


/**************************************************************
 * LEFT TAB
 **************************************************************/
.fixed_wrapper {
  width: 160px;
  background: #00b2c3;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.fixed_wrapper .h_tablinks {
  padding: 24px 10px;
  font-size: var(--txt-body1);
  font-weight: 500;
  border: none;
  background: none;
  border-bottom: 1px solid #1dc3d2;
  cursor: pointer;
  color: #fff;
}

.fixed_wrapper .h_tablinks.active {
  background: #fff;
  color: #1d1d1b;
}

/**************************************************************
 * RIGHT AREA (중요)
 **************************************************************/
.menu_wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 상단 영역 */
.menu_login {
  height: 80px;
  border-bottom: 1px solid #e4e4e7;
  flex-shrink: 0;
  position: relative;
  background-color: var(--cgray-50);
}

.menu_login .btn_close {
    width: 30px;
    height: 30px;
    position: relative;
    text-indent: -9999px;
    top: 0;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.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)
}

/**************************************************************
 * TAB CONTENT
 **************************************************************/
.h_tabcontent {
  display: none;
  padding: 20px 20px 40px;
  flex: 1;
  overflow-y: auto;
}

/* JS에서 display:block 처리된 메뉴 */
.h_tabcontent[style*="block"] {
  display: block;
}

/**************************************************************
 * SUB NAV (2depth)
 **************************************************************/
.h_tabcontent .sub_nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.h_tabcontent .sub_nav > li > a {
  display: block;
  padding: 16px 12px;
  font-size: var(--txt-body1);
  font-weight: 400;
  color: #1d1d1b;
  border: 1px solid #d4d4d8;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.h_tabcontent .sub_nav > li > a:hover {
  border-color: #002E66;
  color: #002E66;
}

/**************************************************************
 * DEPTH3
 **************************************************************/
.h_tabcontent .depth3 {
    padding: 10px 0 10px 6px;
}

.h_tabcontent .depth3 a {
  font-size: var(--txt-body1);
  color: #505055;
  min-height: auto;
}

.h_tabcontent .depth3 a::before {
  content: "· ";
}
.h_tabcontent .depth3 a:hover{
    color: #222;
}

.offcanvas .right_p {
    position: absolute;
    right: 20px;
    top: 0;
    align-self: anchor-center;
}


/* 프로그램 신청 버튼 */
.quick-apply-btn {
    position: fixed;
    bottom: 108px;      
    right: 50px;     
    z-index: 1000;   
    display: flex;
    align-items: center;
    gap: 16px;      
    background-color: rgb(255 255 255 / 0.9);
    padding: 0px 0px 0px 26px; 
    border-radius: 50px;  
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); 
    
    text-decoration: none; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-apply-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    color: #27272A;
    letter-spacing: -0.5px;
}

.quick-apply-btn .btn-icon {
    width: 72px;
    height: 72px;
    background-color: #ff5c12;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 호버 효과 (마우스 올렸을 때) */
.quick-apply-btn:hover {
    cursor: pointer;
    transform: translateY(-3px); 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
/**************************************************************/
/**************************************************************/
/******************************sub*****************************/
/**************************************************************/
/**************************************************************/

.sub_visual.visual01 { background: url(../images/sub/visual01.png) center no-repeat; background-size: cover;}
.sub_visual.visual02 { background: url(../images/sub/visual02.png) center no-repeat; background-size: cover;}
.sub_visual.visual03 { background: url(../images/sub/visual03.png) center no-repeat; background-size: cover;}
.sub_visual.visual04 { background: url(../images/sub/visual04.png) center no-repeat; background-size: cover;}
.sub_visual.visual05 { background: url(../images/sub/visual05.png) center no-repeat; background-size: cover;}
.sub_visual.visual06 { background: url(../images/sub/visual06.png) center no-repeat; background-size: cover;}
.sub_visual.visual07 { background: url(../images/sub/visual07.png) center no-repeat; background-size: cover;}
.sub_visual.visual08 { background: url(../images/sub/visual08.png) center no-repeat; background-size: cover;}
.sub_visual.visual09 { background: url(../images/sub/visual09.png) 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: 400px;
    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: 180px;
    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 {
    max-width:1400px;
    margin: 24px auto 0;
    background: #fff;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cgray-900);
    /* border-radius: var(--radius-all-lg); */

    /* 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;
    /* gap: 1.5rem; */
    flex-wrap: wrap;
    /* background-color: var(--cgray-100);
    border-radius: 2rem; */
    align-items: center;
}
.path .home {
    width: auto;
    gap: 4px;
    height: auto;
    line-height: 120%;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    font-size: 1.05rem;
    color: var(--main-color);
}
/* .path .home::before { 
    content: '\e88a';
    font-family: 'Material Icons';
    color: var(--main-color);
    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);
    display: block;
    margin-top: -4px;
}
.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 32px;
    /* min-width: 300px; */
    min-width: 140px;
    letter-spacing: -1;
    /* white-space: pre; */
    overflow: hidden;
    font-size: var(--txt-body1);
    position: relative;
    font-weight: 500;
    /* color: #fff; */
}
.path .depth1.active .depth_btn,
.path .depth2.active .depth_btn{
	 color: var(--sub-color-2);
	font-weight: 600;
}
.path .depth1.active .depth_btn span,
.path .depth2.active .depth_btn span{
	background: var(--sub-color-2);
	color: #fff;
    transform: rotate(180deg);
}

.path .depth_btn span {
    position: absolute;
    right: 0px;
    top: 18px;
    font-size: 20px;
    font-weight: 100;
	border-radius: 50%;
    color: var(--cgray-600);
	transition: transform 0.3s ease-in-out;
}
.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: 55px;
    width: 100%;
    z-index: 1;
    background-color: #fff;
    border: 1px solid var(--cgray-200);
    border-radius: 8px;
    overflow: hidden;
    min-width: 220px;
    padding: 1rem;
    /* 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: 36px;
    font-size: 0.875rem;
    line-height: 100%;
    /* border-bottom: 1px solid var(--cgray-100); */
    /* padding: 0 20px; */
    transition: 0.3s;
}

.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;
    position: relative;
    padding-left: 10px;
}
.path [class^="depth"] ul li a::before{
	position: absolute;
	content:'';
	width: 3px;
	height: 3px;
	background: var(--cgray-400);
	left: 0;
	top: 15px;
}
.path [class^="depth"] ul li a span {
    font-size: 0.825rem;
    padding-left: 0.125rem;
    vertical-align: middle;
    opacity: 0.75;
}
.path [class^="depth"] ul li:hover a {
    color: var(--sub-color-2);
    text-decoration: underline;
}.path [class^="depth"] ul li:hover a::before{
    background: var(--sub-color-2);
}



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


/**************************************************************/
/**************************************************************/
/**************************main visual*************************/
/**************************************************************/
/**************************************************************/

/* 슬라이드 이미지 zoom-out 효과 */
.main_slider li {
    transform: scale(1.1);
    animation: zoomOut 6s ease-out forwards;
}

/* zoom-out 키프레임 */
@keyframes zoomOut {
    0%   { transform: scale(1.1); }
    100% { transform: scale(1.0); }
}

.main_slider li {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center center !important;
}


#main .visual {
    width: 100%;
    /* overflow: hidden; */
    margin: 0 auto;
    text-align: center;
    position: relative;
    /* margin-top: 100px; */
}
/* #main .visual::before {
    content: "";
    display: block;
    width: 26px;
    height: 42px;
    background: url(../images/common/ico_mainMouse.png) no-repeat center center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6.25em;
    background-size: contain;
    animation: scroll .8s infinite alternate;
    z-index: 99999;
} */

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
    }
}

/* #main .visual::after {
    content: "Scroll";
    position: absolute;
    color: #fff;
    left: 50.8%;
    transform: translateX(-50%);
    bottom: 3.8em;
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: 1px;
} */

#main .visual .visual_wrap{
    text-align: center;
    width: 100%;
    position: absolute;
    z-index: 99;
    top: 33%;
}
#main .visual .caption {
    color: #fff;
    max-width: var(--web-width);
    margin: 0 auto;
    text-align: left;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

#main .visual .caption h2 {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 5rem;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#main .visual .caption h3 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.75rem;
    margin: 1rem 0 2rem;
}

#main .visual .custom-animation{
    padding: 20px 0;
}
#main .visual .slide-left {
    opacity: 0;
    transform: translateX(-50px); 
    animation: slideInFromLeft 1s ease-out forwards;
}

#main .visual .slide-right {
    opacity: 0;
    transform: translateX(50px); 
    animation: slideInFromRight 1s ease-out forwards;
    animation-delay: 0.3s; 
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main_slider li.visual01 {background: url(../images/main/main_visual01.png) center no-repeat; background-size: cover;}
.main_slider li.visual02 {background: url(../images/main/main_visual02.png) center no-repeat;background-size: cover;}
.main_slider li.visual03 { background:url(../images/main/main_visual03.png) center no-repeat; background-size: cover;}
.main_slider li.visual04 { background:url(../images/main/main_visual04.png) center no-repeat; background-size: cover;}
.main_slider li.visual05 { background:url(../images/main/main_visual05.png) center no-repeat; background-size: cover;}
.main_slider li.visual06 { background:url(../images/main/main_visual06.png) center no-repeat; background-size: cover;}
#main .visual, #main .visual .main_visual, #main .main_visual .bx-wrapper .bx-viewport, .main_slider li {
    width: 100% !important;
    height: 100vh !important;
}
.bx-wrapper{
    max-width: 100% !important;
}


/**************************************************************/
/**************************************************************/
/*****************************footer***************************/
/**************************************************************/
/**************************************************************/
.footer {
    background: var(--cgray-900);
    padding: 3rem 5rem;
    position: relative;
}
.footer .wrapper {
    margin: 0 auto;
    color: var(--cgray-200);
    font-size: var(--txt-body2) !important;
}

.footer .wrapper .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.footer .wrapper .top .logo{
    width: 160px;
    height: auto;
    margin-right: 2rem;
}
.footer .wrapper .top .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer .wrapper .top .site{
    width: 240px;
    aspect-ratio: 5/1;
    position: relative;
    transition: 0.3s;
    margin-left: auto;
}
.footer .wrapper .top .site .btn_toggle img{
    width: 16px;
}
.footer .wrapper .top .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 .top .site ul.on{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    z-index: 9;
    padding-bottom: 0;
    bottom: 49px;
}
.footer .wrapper .top .site ul.on .btn_toggle {
    z-index: 99;
}

.footer .wrapper .top .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 .top .site ul li:hover{
    background: var(--cgray-300);
}
.footer .wrapper .top .site ul li a{
    color: var(--cgray-900);
    display: block;
    width: 100%;
    height: 100%;
    font-weight: 500;
}
.footer .wrapper .top .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 .top .site .btn_toggle span{
    transition: 0.3s;
}
.footer .wrapper .top .site .btn_toggle:hover span{
    transform: rotate(180deg);
}
.footer .wrapper .center{
    margin: 24px 0;
}
.footer .wrapper .center p{
    color: var(--cgray-400);
    font-weight: 400;
}
.footer .wrapper .bottom{
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--cgray-700);
    font-weight: 400;
    color: var(--cgray-600);
}
.footer .wrapper .bottom .links{
    display: flex;
    gap: 24px;
  
}
.footer .wrapper .bottom .links a{
  color: var(--cgray-500);
    font-weight: 600;
}

/* 탑버튼 */
.btn_move_top{
    position: fixed;
    bottom: 288px;
    right: 5rem;
    z-index: 999;
    background: var(--main-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    border-top-left-radius: var(--radius-all-xs);
    border-top-right-radius: var(--radius-all-xs);
    display: none;
}
.btn_move_top img{
    width: 30px;
}

/**************************************************************/
/**************************************************************/
/********************* tab contents setting *******************/
/**************************************************************/
/**************************************************************/
/* ------------------- 탭페이지 (스크롤) ---------------------*/
.tab_scroll-cont {
    padding: var(--pad-tb-xl);;
    border-bottom: 1px solid var(--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); */
    /* 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);
}

.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 {
    max-width: 350px;
    width: 100%;
    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%;
    max-width: max-content;
}
.login_input input[type=submit] {
    width: 100%;
    border: 0;
    height: 50px;
    line-height: 50px;
    background: var(--main-color);
    color: #fff;
    font-size: var(--txt-body1);
    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);
}
.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-body1);
    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;
    gap: 8px;
    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/main_visual01.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;
    max-width: none;
}
.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.5rem;
}
/* .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-body1);
}
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-400);
	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);
}


/*----------------------------------------1800--------------------------------*/


@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 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;
    }
    #main .visual .visual_wrap{
        padding: 0 2rem;
    }

}
@media screen and (max-width:1500px) {
    #header .logo{
        width: auto;
    }

    #header nav #gnb{
        width: auto;
    }
    #header nav #gnb>li {
        width: 150px;
    }

    #header nav #gnb li .nav_dep1 { font-size: 1rem;}
    #header .open {
        
    }
    #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;
    }

}
@media screen and (max-width:1300px) {
    #main .visual .caption h2 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
}

/* 모바일 테이블 스크롤 안내 */
.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;
    }

}