@charset "utf-8";
html,
body {
    font-size: 16px;
    height: auto;
}
:root {
    --main-color: #8B0029;
    --main-color-2: #008080;
    --sub-color-1: #FAA119;
    --sub-color-2: #7C9D4A;
    --bg-color-1: #F5F5F0; 
    --bg-color-2: #EDEDE3; 

    /* 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: 1200px;

    --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: #19459d; font-weight: 600;}
.blue a { color: #19459d;}
.red { color: #ff0000; font-weight: 600;}
.point {color: var(--main-color);  font-weight: 600;}
.join_point { color: #ff0000;}
.align_c {text-align: center;}
.align_r {text-align: right;}
.align_l {text-align: left;}
.flex {display: flex;}
.flex > .btn_met {margin-right: 5px;}
.flex.align_c {justify-content: center;align-items: 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-md);
}
.img_wrap.bgno { background: none;}
.img_wrap.brno { border: none;}
.img_wrap.pdno { padding: 0;}
.img_wrap img { width: 100%; 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;
}
.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;
}
.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) !important;
    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_clr01 {
    color: var(--sub-color-1) !important;
}
.sub_clr02 {
    color: var(--sub-color-2) !important;
}
.sub_clr03 {
    color: var(--main-color-3) !important;
}
.sub_clr04 {
    color: var(--main-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;
}

/* -------------------- text link setting -------------------*/
.txt_link {
    cursor: pointer;
    display: inline-block;
    color: var(--main-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: 2rem;
    border-bottom: 1px solid var(--cgray-100); */
}
/*
.page_tit h4::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: url(../images/sub/h4_bullet.png) center no-repeat;
    top: 0px;
    left: 50%;
    z-index: 1;
}
 .page_tit h4::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: var(--main-color-4);
    bottom: 0px;
    left: 0;
    z-index: -1;
} */

/* ------서브페이지 두번째 제목 (bullet 없는 센터버전)-------*/
.cont_tit_m {
    margin: 3.125rem 0 1rem;
}
.cont_tit_nm {
    margin: 0 0 1rem;
}
.cont_tit_m h5, .cont_tit_nm h5 {
    font-size: var(--txt-title2);
    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-image: linear-gradient(120deg, rgba(0, 169, 169, 100%), rgba(40, 154, 213, 0.65) 100%); */
    top: 4px;
    left: 0;
}
.cont_tit_m h5.bullet, .cont_tit_nm h5.bullet img {
    width: 100%;
    max-width: fit-content;
}
.cont_tit_nm h5 strong {
    display: block;
}


/* ------------------서브페이지 세번째 제목------------------*/
.cont_tit_m h6, .cont_tit_nm h6 {
    font-size: var(--txt-heading1);
    display: block;
    font-weight: 600;
    word-break: keep-all;
}
.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 {
    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: 50px;
    height: 1px;
    background-color: var(--main-color);
}

/**************************************************************/
/**************************************************************/
/*************************table setting ***********************/
/**************************************************************/
/**************************************************************/
.tb_scroll {
    overflow-x: auto;
    /* border-bottom: 1px var(--main-color-3) solid; */
}
.tb_scroll table {
    min-width: 760px;
}
table.normal {
    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: left;
    position: relative;
}
.table_min {
    min-width: 280px;
}

table.normal 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.normal th:last-child {
    border-right: 1px var(--cgray-200) solid;
}
table.normal tr {
    border-bottom: 1px var(--cgray-200) solid;
}
table.normal tr.line {
    border-bottom: 1px var(--cgray-200) solid;
}
table.normal td.valign_top {
    vertical-align: top;
}

table.normal td {
    padding: 14px;
    border-right: 1px var(--cgray-200) solid;
    /* background: #fff; */
    vertical-align: middle;
}
table.normal td:last-child {
    border-right: 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-600);
}
table.normal tfoot td {
    background: var(--cgray-50);
    font-weight: 600;
}
table tr .valign_top {
    vertical-align: top;
}


/*격행으로 배경 컬러*/
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-50);
}

/*열리는 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-50);
}
table.normal.tr_open .title:nth-child(2n) {
    background: var(--cgray-50);
}
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-50);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: left;
}

table.center tr{
    text-align: center;
}

/**************************************************************/
/**************************************************************/
/*************************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: 840px; min-width: 840px; max-width: 840px; max-height: 740px;}
#window_popup table {width: 800px;}
#window_popup table td {padding: 8px 10px !important;}
.print_top {
    display: flex;
    justify-content: space-between;
    border-bottom: 4px solid var(--cgray-600);
    padding-bottom: 0.5em;
}
.print_top .left {
    display: flex;
    gap: 1em;
}
.print_top .left .img {
    max-width: 100px;
}
.print_top .left .txt {
    display: flex;
    align-items: flex-end;
}
.print_top .left .txt p {
    font-size: 12px;
}
.print_top .right {
    display: flex;
    align-items: flex-end;
    font-size: 36px;
}
.print_center {
    margin: 20px 0;
    min-height: 65vh;
}
.print_center h6 {
    font-size: 20px;
    margin-bottom: 16px;
}
.print_center .wrap {
    display: flex;
    flex-wrap: wrap;
}
.pop_print .print_tb tr {
    border-bottom: 1px solid var(--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: 12px;
}
.print_bottom .bottom_txt p span {font-weight: 600;font-size: 14px;}


/**************************************************************/
/**************************************************************/
/********************* button & tag setting *******************/
/**************************************************************/
/**************************************************************/
/* ------------------ basic button setting -------------------*/
.pop_btn_confirm {
    display: inline-block;
    text-align: center;
    width: 80px;
    background: var(--main-color);
    height: 35px;
    line-height: 35px;
	font-size: 15px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.pop_btn_cancel {
    display: inline-block;
    text-align: center;
    width: 80px;
    background: var(--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_top{
    width: 100%;
    text-align: right; /* 자식인 버튼을 오른쪽으로 밀어냄 */
    margin-bottom: 1.5rem;
}
.btn_wrap {margin: 0 auto;}
.btn_wrap.flex { gap: 1rem;}
.btn_wrap .material-symbols-outlined { margin-right: -0.5rem; margin-left: 0.5rem;}
.btn_write {
display: inline-block;
    text-align: center;
    width: 160px;
    background: var(--main-color);
    height: 45px;
    line-height: 45px;
    color: #fff;
    cursor: pointer;
    font-size: var(--txt-body1);
    font-weight: 500;
    border-radius: 6px;
}
.btn_delete {
    display: inline-block;
    text-align: center;
    float: right;
    width: 150px;
    /* background: var(--cgray-800); */
    border: 1px solid var(--cgray-700);
    height: 45px;
    line-height: 45px;
    color: var(--cgray-700);
    cursor: pointer;
    font-size: var(--txt-body1);
    font-weight: 500;
    border-radius: 3px;
}
.btn_modify {
    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_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_etc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    line-height: 36px;
    text-align: center;
    vertical-align: top;
    font-size: 0.925rem;
    cursor: pointer;
    box-sizing: border-box;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-all-xxs);
    color: #fff;
    background: var(--cgray-800);
}

.btn_etc.color01 {
    background: var(--main-color);
}
.btn_etc.color02 {
    background: var(--main-color);
    color: #fff;
}
.btn_normal {
    background: var(--main-color-2);
    /* font-size: 1.1rem; */
    color: #fff;
    /* font-weight: 500;
    width: auto; */
    /* height: 3rem; */
    text-align: center;
    /* border-radius: 6px;
    letter-spacing: 0; */
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: 0.3s;
    margin: 0 auto;
    max-width: 250px; */
}
.btn_link span {
    padding-left: 0.25rem;
    font-size: 1.125rem;
    vertical-align: sub;
    color: #fff !important;
}
.btn_down:hover {
    background: var(--main-color);
}
.btn_line {
    border: 1px solid var(--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(--main-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;
	position: relative;
	/* height: 30px; */
	display: inline-block;
    /* background: var(--main-color-3); */
    font-weight: 500;
}
.state.state01 { 
    color: var(--main-color);
}
.state.state02 {
	color: var(--main-color);
}
.state.state03 {
	background: var(--cgray-700);
}


/* ------------------- 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****************************/
/**************************************************************/
/**************************************************************/
/* --- [1] Header 기초 및 상태 설정 --- */
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    color: #222;    
    border-bottom: 1px solid var(--cgray-200);
}

#header.on {
    position: fixed;
    background: #ffffff !important;
    /* box-shadow: 0 2px 16px rgb(35 35 35 / 10%); */
}

#header.speedup {
    transition: all 0.2s ease !important;
}

/* --- [2] Top Header 영역 --- */
.top_header {
    width: 100%;
    border-bottom: 1px solid var(--cgray-200);
}

#header.on .top_header {
    border-bottom: 1px solid #eeeeee;
}

.top_header .wrap {
    max-width: var(--web-width);
    margin: 0 auto;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
}

.top_header .wrap li {
    margin-left: 20px;
    list-style: none;
}

.top_header .wrap a {
    color: #444;
    font-size: 14px;
    text-decoration: none;
    vertical-align: middle;
}
.top_header .wrap a:hover{
    text-decoration: underline;
}
.top_header .wrap li .material-symbols-outlined{
	color: #333;
	font-weight: 200;
	vertical-align: middle;
	margin-right: 2px;
}

/* --- [3] Mid Header 영역 (로고 & 유틸) --- */
.mid_header_zone {
    width: 100%;
}

.mid_header_zone .inner_wrapper {
    max-width: var(--web-width);
    margin: 0 auto;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo a img { width: 260px; display: block; }
.logo a img.on {display: block;}
.logo a img.off {display: none;}

#header.on .logo a img.off { display: none; }
#header.on .logo a img.on { display: block !important; }

/* 유틸메뉴 및 햄버거 버튼 */
.util_menu ul { display: flex; align-items: center; list-style: none; gap: 1rem;}
.util_menu ul li a{color: #222; font-weight: 500; font-size: 15px;}
.util_menu ul li .mypp{
    background: var(--main-color-2);
    border-radius: 4px;
    padding: 8px;
    color: #fff !important;
    transition: all 0.3s ease;
}
.util_menu ul li .mypp:hover{
	background-color: #049a9a;
}
.util_menu ul li:first-child{
   border-radius: 4px;
    padding: 8px;
    border: 1px solid var(--cgray-200);
}

.btn_ham_menu {
    display: block;
    width: 30px;
    height: 24px;
    background: url('../images/common/ic_ham_menu_on.png') no-repeat center;
    background-size: contain;
    text-indent: -9999px;
}

#header.on .btn_ham_menu {
    background-image: url('../images/common/ic_ham_menu_on.png');
}

/* --- [4] GNB & 가로 6컬럼 드롭다운 --- */
.gnb_bar {
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center;
}
.gnb_bar .inner_wrapper{
	max-width: var(--web-width);
	flex: 1;
}
#gnb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

#gnb > li {
    flex: 1;
    text-align: center;
}

#gnb > li > a.nav_dep1 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    display: block;
    line-height: 64px;
}

#header.on #gnb > li > a.nav_dep1 {
    color: #222 !important;
}
#header.on .util_menu ul a{
    color: #222 !important;
}
#header.on .util_menu ul .mypp{
    color: #fff !important;
}

.depth_toggle {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #a41b3a;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
    display: none; /* 기본 숨김 */
    z-index: 999;
}

.depth_toggle.active {
    display: block !important; 
}

.depth_toggle .wrapper {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    max-width: var(--web-width);
    margin: 0 auto;
}

.sub_nav {
    flex: 1;
    /* width: 230px; */
    border-right: 1px solid #f0f0f0;
    padding: 12px 16px 24px 16px;
    box-sizing: border-box;
    list-style: none;
    text-align: left;
}

.sub_nav:last-child { border-right: none; }

.sub_nav.on {
    background-color: #f9f9f9;
}

.sub_nav li {
    /* margin-bottom: 12px; */
    padding: 4px 0;
}

.sub_nav li a {
    font-size: 17px;
    color: #444 !important;
    text-decoration: none;
    transition: 0.2s;
    font-weight: 400;
    display: inline-block;
    align-content: center;
    width: 100%;
    min-height: 32px;
}

.sub_nav li a:hover {
    color: #a41b3a !important;
    text-decoration: underline;
}
.sub_nav li.menu3 a {
    font-size: 16px;
    color: #555 !important;
    display: inline;

}
.sub_nav li.menu3 a:hover {
    color: #a41b3a !important;
    text-decoration: underline;
}
.sub_nav li .depth3{
	padding-left: 4px;
}
.sub_nav li .depth3 .menu3:last-child{
	margin-bottom: 4px;
}
.sub_nav .menu2_link{
	position: relative;
}
.sub_nav .menu2_link::after{
    content: "\e313";
    font-family: 'Material Symbols Outlined';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 22px;
    color: #a1a1aa;
    transition: all 0.25s ease;
}
/**************************************************************/
/**************************************************************/
/**********************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: 480px;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
}

.offcanvas .menu_wrapper {
    -ms-overflow-style: none;
}

.offcanvas .menu_wrapper::-webkit-scrollbar {
    display: none;
}

.offcanvas .menu_wrapper .t_menu a {
    display: none;
}

#offcanvas::-webkit-scrollbar {
    display: none;
}

#offcanvas {
    margin-right: -625px;
    transition: 0.5s;
    transition: margin-right .5s;
    -ms-overflow-style: none;

}

#offcanvas.open {
    margin-right: 0;
    background: var(--main-color);
    /* background-image: linear-gradient(to bottom, #cc0e46, #8b0029) !important; */
    z-index: 999999;
}

/* Style the tab */
.offcanvas .tab {
    float: left;
    width: 180px;
    height: 100%;
    color: #fff;
    padding-top: 90px;
    position: relative;
}

.offcanvas .tab .fixed_wrapper {
    position: fixed;
    height: 100%;
    width: 180px;
}

.offcanvas .h_tablinks {
    display: block;
    color: #fff;
    padding: 0 30px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    font-size: var(--txt-body1);
    font-weight: 500;
    height: 90px;
    /* line-height: 90px; */
    line-height: 1.5rem;
}
.offcanvas .h_tablinks.point {
    background: #ff80c0;
}

.offcanvas .h_tablinks:hover {
    background-color: var(--main-color);
}

.offcanvas .h_tablinks.active {
    background-color: #fff;
    color: var(--cgray-900);
    font-weight: 600;
}


/* Style the tab content */
.offcanvas .menu_wrapper {
    width: calc(100% - 180px);
    float: left;
    height: 100%;
    background: #fff;
}

.offcanvas .h_tabcontent {
    display: none;
    margin-top: 80px;
}

.offcanvas .h_tabcontent .sub_nav {
    background: #fff;
    width: 100%;
    padding: 0;
}

.offcanvas .h_tabcontent .sub_nav > li > a {
    height: 80px;
    line-height: 80px;
    font-size: var(--txt-body1);
    color: var(--cgray-800);
    padding: 0 30px;
    border-bottom: 1px solid var(--cgray-200);
    display: block;
    text-align: left;
}
.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.png);
    font-weight: 600;
    margin-left: 5px;
    font-size: 0.813rem;
}

.offcanvas .menu_login {
    background-color: var(--bg-color-2);
    height: 80px;
    line-height: 80px;
    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: 240px;
    height: 100%;
}

.offcanvas .menu_login a, .offcanvas .menu_login a:hover {
    color: #222;
    margin-right: 10px;
}

.offcanvas .right_p {
    position: absolute;
    right: 0px;
    top: 0;
}

.offcanvas .btn_close {
    width: 30px;
    height: 30px;
    position: relative;
    text-indent: -9999px;
    top: 0;
    right: 0;
    background: none;
}

.offcanvas .btn_close:before, .offcanvas .btn_close:after {
    content: '';
    width: 30px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 4px;
    background: #53493f;
}

.offcanvas .btn_close:before {
    transform: translate(-50%, -50%) rotate(-45deg)
}

.offcanvas .btn_close:after {
    transform: translate(-50%, -50%) rotate(45deg)
}

.offcanvas .h_tabcontent .depth3 {
    display: none;
    border-bottom: 1px solid var(--cgray-200);
    padding: 8px 32px;
}

.offcanvas .h_tabcontent .depth3 .menu3 {
    font-size: var(--txt-body1);
    line-height: 32px;
    color: var(--cgray-900);
    text-align: left;
}

.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: 35px;
    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: 40px;
    right: 20px;
    transition: 0.5s;
}






/**************************************************************/
/**************************************************************/
/******************************sub*****************************/
/**************************************************************/
/**************************************************************/

.sub_visual.visual01 { background: url(../images/sub/visual01.png) top center no-repeat; background-size: cover;}
.sub_visual.visual02 { background: url(../images/sub/visual02.png?ver=1.0) center no-repeat; background-size: cover;}
.sub_visual.visual03 { background: url(../images/sub/visual03.png) 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) top center no-repeat; background-size: cover;}
.sub_visual.visual06 { background: url(../images/sub/visual06.png) top center no-repeat; background-size: cover;}
.sub_visual.visual07 { background: url(../images/sub/visual07.png) top 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-50);
    font-size: 16px;
}
.sub .grid_container {
    width: var(--web-width);
    padding: 80px 0 90px;
}
.sub_visual {
    /* height: 430px;
    width: 100%; */
    /* padding: 160px 0; */
    padding-top: 50px;
    position: relative;
} 
.sub_visual:after {
    /* content: 'MEDIA&COMMUNICATION';
    position: absolute;
    bottom: 74px;
    left: 50%;
    font-size: 6.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(247, 176, 35, 0.5), rgba(234, 90, 19, 0.5) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
    transform: translate(-50%, 0);
    width: var(--web-width) +15px;
    text-align: left; */
}
.sub_visual .tit {
    width: var(--web-width);
    /* height: 164px; */
    margin: 0 auto;
    position: relative;
}
/*.sub_visual .tit:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 162px;
    height: 164px;
     background: url(../images/sub/symbol.png) 90% no-repeat;
    animation: updown02 5s ease-in-out infinite; 
}*/
.sub_visual h1 {
    font-size: 3.75rem;
    font-weight: 600;
    /* line-height: 624px; */
    color: #fff;
    /* width: var(--web-width); */
    margin: 1rem auto 0.5rem;
    position: relative;
    text-shadow: 2px 0px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}
.sub_visual h2 {
    font-size: 1.375rem;
    line-height: 1.75rem;
    font-weight: 500;
    color: rgb(255 255 255 / 100%);
    width: var(--web-width);
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
    font-family: var(--sub-font);
    text-align: center;
}


@keyframes updown02 {
    0%{
      transform: translate(0,0);
    }
    50%{
      transform: translate(0,20px);
    }
    100%{
      transform: translate(0,0);
    }
  }
  
  
  @keyframes updown {
    0%{
      transform: translate(0,0);
      color: #aefaff60;
      text-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
    }
    50%{
      transform: translate(0,20px);
      color: #aefaff;
      text-shadow: 10px 5px 10px rgba(0, 0, 0, 1.0);
    }
    100%{
      transform: translate(0,0);
      color: #aefaff60;
      text-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
    }
  }
  
  
  @keyframes rotate {
    0%{
      transform: rotate(0);
    }
    100%{
      transform: rotate(-360deg);
    }
  }
  

/**************************************************************/
/**************************************************************/
/*****************************path*****************************/
/**************************************************************/
/**************************************************************/
/* ----------------------- 일반형태 path ---------------------*/
.path_container {
    width: 100%;
    margin: 13rem auto 0;
}


.path_container.on {
    position: fixed;
    top: 100px;
    animation: smoothScroll 0.5s forwards;
    z-index: 999;
}
@keyframes smoothScroll {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}
.path {
    height: 50px;
    line-height: 50px;
    /* padding-top: 4rem; */
    /* position: relative; */
}
.path::after {
    /* content: '';
    display: inline-block;
    width: 75px;
    height: 75px;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #e17549;
    transition: 0.5s;
    margin: -15px;
    z-index: 1; */
}
.path_inside {
    max-width: var(--web-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.path .home {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    /* padding: 0 20px; */
    position: relative;
    /* float: left; */
}

.path .home span {
    color: var(--main-color);
    font-size: 20px;
}
.path a {
    color: var(--cgray-800);
}
/*
.path [class^="depth"] {
	float:left;
	position:relative;
}
*/
.path_inside > div {
    /* float: left; */
    position: relative;
    padding-left: 1rem;
}
.path .depth_btn:before {
    position: absolute;
    left: 0px; 
    top: 22px; 
    content: '';
    width: 5px; 
    height: 5px; 
    border-top: 1px solid #222; 
    border-right: 1px solid #222;
    transform: rotate(45deg); 
}
.path .depth_btn {
    cursor: pointer;
    display: block;
    /* width: 95%; */
    /* padding: 0 20px; */
    /* min-width: 250px; */
    /*    letter-spacing: -1;*/
    /* white-space: pre; */
    overflow: hidden;
    font-size: 1rem;
    position: relative;
    font-weight: 400;
    padding-left: 24px;
}
.path .depth_btn span {
    position: absolute;
    right: 8px;
    top: 22px;
    font-size: 18px;
    display: none;
}
.path [class^="depth"] ul {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 60px;
    width: 100%;
    z-index: 1;
    background-color: #fff;
    border: 1px solid var(--cgray-200);
    overflow: hidden;
    min-width: 250px;
    padding: 4px 0;
}
.path [class^="depth"].active ul {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    z-index: 998;
}

.path [class^="depth"] ul li {
    height: 40px;
    font-size: 0.9375rem;
    line-height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
    transition: 0.3s;
}
.path [class^="depth"] ul li:hover {
    /* background: #222; */
}
.path [class^="depth"] ul li:hover a {
    color: var(--main-color);  
}

.path [class^="depth"] ul li a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.path [class^="depth"] ul li a span {
    font-size: 0.825rem;
    padding-left: 0.125rem;
    vertical-align: middle;
    opacity: 0.75;
}

.path select {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    height: 58px;
    line-height: 58px;
    padding-bottom: 4px;
}
.path select option {
    color: var(--cgray-700);
    font-size: 14px;
}
.path .depth_btn.depth_wide {
    min-width: 360px;
}
.path ul li .link {
    position: relative;
}
.path ul li .link:after {
    content: url(/images/common/ic_external_sm.png);
    font-weight: 600;
    margin-left: 8px;
    font-size: 13px;
    position: absolute;
    top: 0;
    right: 0;
}



/* ------------------------- 탭형태 path ---------------------*/
.path_tab {
    width: var(--web-width);
    margin: 0 auto;
    margin-top: 1.5rem;
}
.path_tab .tab_link_wrap .tab_link {
    border: 1px solid var(--cgray-200);
    border-radius: 12px;
    margin-bottom: 0;
    overflow: hidden;
}
.path_tab .tab_link_wrap .tab_link .tablinks {
    margin-right: 0;
    border: 0;
    border-right: 1px solid var(--cgray-600);
    color: var(--cgray-700);
    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(--main-color);
    color: #fff;
}





/**************************************************************/
/**************************************************************/
/****************************Contents**************************/
/**************************************************************/
/**************************************************************/
.layout_sub {
    position: relative;
}

.layout_pop {
    background: var(--cgray-100);
    height: 100vh;
    overflow: hidden;
}
.sub_container {
    min-height: 550px;
    /* margin-top: 7rem; */
}
.sub_container>.wrapper {
    /* width: var(--web-width); */
    margin: 0 auto;
    position: relative;
}
.sub_container>.wrapper>.contents {
    margin: 3.5rem 0;
}

.sub_container .wrapper .max {
    max-width: var(--web-width);
    margin: 0 auto;
    padding: 2rem 0 5rem 0;
}
.sub_container .wrapper .max.full {
    max-width: 100%;
    padding: 0;
}

.sub_container .wrapper .max.line_wrapper {
    border-top: 1px solid var(--cgray-200);
}

.max_bg01 {
    background: var(--main-color-4);
}


/**************************************************************/
/**************************************************************/
/**********************Hamburger&offcanvas*********************/
/**************************************************************/
/**************************************************************/

.overlay {
    display: none;
    z-index: 9999;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
    transition: background-color 2s;
    cursor: pointer;
}

.offcanvas {
    height: 100%;
    width: 480px;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
}

.offcanvas .menu_wrapper {
    -ms-overflow-style: none;
}

.offcanvas .menu_wrapper::-webkit-scrollbar {
    display: none;
}

.offcanvas .menu_wrapper .t_menu a {
    display: none;
}

#offcanvas::-webkit-scrollbar {
    display: none;
}

#offcanvas {
    margin-right: -625px;
    transition: 0.5s;
    transition: margin-right .5s;
    -ms-overflow-style: none;

}

#offcanvas.open {
    margin-right: 0;
    background: var(--main-color);
    /* background-image: linear-gradient(to bottom, #cc0e46, #8b0029) !important; */
    z-index: 999999;
}

/* Style the tab */
.offcanvas .tab {
    float: left;
    width: 180px;
    height: 100%;
    color: #fff;
    padding-top: 90px;
    position: relative;
}

.offcanvas .tab .fixed_wrapper {
    position: fixed;
    height: 100%;
    width: 180px;
}

.offcanvas .h_tablinks {
    display: block;
    color: #fff;
    padding: 0 30px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    font-size: var(--txt-body1);
    font-weight: 500;
    height: 80px;
    /* line-height: 90px; */
    line-height: 1.5rem;
}
.offcanvas .h_tablinks.point {
    background: #ff80c0;
}

.offcanvas .h_tablinks:hover {
    background-color: var(--main-color);
}

.offcanvas .h_tablinks.active {
    background-color: #fff;
    color: var(--cgray-900);
    font-weight: 600;
}





/**************************************************************/
/**************************************************************/
/*****************************footer***************************/
/**************************************************************/
/**************************************************************/
.footer {
    background: var(--cgray-900);
}
.footer .wrapper {
    margin: 0 auto;
    /* width: 100%; */
}
.footer .wrapper .top {
    max-width: var(--web-width);
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
    margin: 0 auto;
    /* border-bottom: 1px #ffffff30 solid; */
    /* gap: 3rem;*/
}
.footer .wrapper .bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    margin: 0 auto;
}
.footer .wrapper .logo {
    width: 60px;
}
.footer .wrapper .logo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.footer .wrapper .center {
    width: calc(100% - 388px);
    margin: 0 30px;
}

/* ------------------------- link ----------------------------*/
.footer .wrapper .link {
    display: flex;
    align-items: center;
    /* color: #111; */
    font-weight: 400;
    flex-wrap: wrap;
    font-size: var(--txt-body1);
    margin-bottom: 0.5rem;
}
.footer .wrapper .link a {color: #fff;}
.footer .wrapper span {
    font-size: var(--txt-body2);
    color: var(--cgray-600);
    font-weight: 200;
    margin: 0 0.75rem;
}
.footer .wrapper .txt {
    font-size: var(--txt-body2);
    color: var(--cgray-500);
    line-height: 1.625rem;
}
.footer .wrapper .bottom .txt {
    font-size: 1.125rem;
}

/* ------------------------- sns ----------------------------*/
.footer .wrapper .sns {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    /* gap: 1rem; */
    width: 180px;
}
.footer .wrapper .sns li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
   
}
.footer .wrapper .sns li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.footer .wrapper .sns li .insta {
    background: url(../images/common/sns_insta.png) top center no-repeat;
    transition: 1s;
}
.footer .wrapper .sns li .insta:hover {
    background: url(../images/common/sns_insta_on.png) top center no-repeat; 
}
.footer .wrapper .sns li .blog {
    background: url(../images/common/sns_blog.png) top center no-repeat;
    transition: 1s;
}
.footer .wrapper .sns li .blog:hover {
    background: url(../images/common/sns_blog_on.png) top center no-repeat; 
}
.footer .wrapper .sns li .youtube {
    background: url(../images/common/sns_youtube.png) top center no-repeat;
    transition: 1s;
}
.footer .wrapper .sns li .youtube:hover {
    background: url(../images/common/sns_youtube_on.png) top center no-repeat; 
}

/* ----------------------- Family Site ------------------------*/
.family_site {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.family_site span {
    color: #ccc;
    position: relative;
    font-size: 1.125rem;
    margin: 0 2rem;
}
.family_site span::after {
    content: '';
    width: 1px;
    height: 14px;
    background: #666;
    position: absolute;
    top: 2px;
    right: -1rem;
}
.family_site ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.family_site ul li a{
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
}
/* ----------------------- 관련사이트 ------------------------*/
.footer .wrapper .site {
    width: 250px;
    position: relative;
    transition: 0.3s;
    height: 50px;
}
.footer .wrapper .site .btn_toggle img {
    width: 16px;
}
.footer .wrapper .site ul {
    position: absolute;
    bottom: 49px;
    left: 0;
    display: block;
    /* border-radius: 25px; */
    background: var(--cgray-200);
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    transition-delay: 0s, 0s, 0.2s;
    transform: translateY(50px);
    z-index: 999;
    width: 100%;
    border-radius: var(--radius-all-xs);
}
.footer .wrapper .site ul.on {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.footer .wrapper .site ul li {
    height: 44px;
    line-height: 44px;
    /* width: 17.2rem; */
    padding: 0 0.5rem 0 1rem;
    z-index: 999;
    border-bottom: 1px solid var(--cgray-200);
}
.footer .wrapper .site ul li:hover {
    background: var(--cgray-50);
}
.footer .wrapper .site ul li a {
    color: var(--cgray-900);
    display: block;
    width: 100%;
    height: 100%;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: pre;
    -webkit-line-clamp: 1;
    display: block;
}
.footer .wrapper .site .btn_toggle {
    display: flex;
    padding: 0 0.5rem 0 1rem;
    width: 100%;
    height: 100%;
    color: #fff;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 9;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    font-weight: 500;
    border: 1px solid var(--cgray-600);
    border-radius: var(--radius-all-xs);

}

.footer .wrapper .site .btn_toggle img {
    transition: 0.3s;
}
.footer .wrapper .site .btn_toggle:hover img {
    transform: rotate(180deg);
}


/* 탑버튼 */
/* .btn_move_top{
    position: fixed;
    bottom: 200px;
    right: 4rem;
    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;
} */
.btn_move_top{
    position: fixed;
    bottom: 100px;
    right: 4rem;
    z-index: 999;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--main-color);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 4px rgb(140 3 44 / 32%);
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease; 
}
.btn_move_top.active {
    opacity: 1;
    visibility: visible;
}

.btn_move_top .svgIcon {
  width: 14px;
  transition-duration: 0.3s;
  vertical-align: middle;
}

.btn_move_top .svgIcon path {
  fill: white;
}

.btn_move_top:hover {
  width: 130px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: var(--main-color);
  align-items: center;
}

.btn_move_top:hover .svgIcon {
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.btn_move_top::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  font-size: 0px;
  justify-self: anchor-center;
}

.btn_move_top:hover::before {
  font-size: 15px;
  opacity: 1;
  bottom: unset;
  transition-duration: 0.3s;
}

/**************************************************************/
/**************************************************************/
/********************* 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;
    align-items: stretch;
    margin: 0 auto 1rem;
    width: 100%;
    /* gap: 2px; */
}
.tab_link-tab .tab {
    /* width: 49%; */
    height: auto;
    text-align: center;
    padding: 1rem;
    font-size: var(--txt-lg-2);
    font-weight: 500;
    color: var(--cgray-900);
    /* background: var(--cgray-100); */
    border-top: 1px solid var(--cgray-200);
    border-right: 1px solid var(--cgray-200);
    border-bottom: 1px solid var(--cgray-200);
    box-sizing: border-box;
    line-height: 1.3em;
    cursor: pointer;
    /* border-radius: var(--radius-all-xs); */
    display: flex;
    justify-content: center;
    align-items: center;
}
.tab_link-tab .tab:first-child {
    border-left: 1px solid var(--cgray-200);
}
.tab_link-tab .tab.active {
    background: #fff;
    font-weight: 600;
    color: var(--main-color);
    position: relative;
    border-top: 3px solid var(--main-color);
}
.tab_link-tab .tab.active::after {
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    content: ""; */
}
.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-50);
}
.tab_click_li dt .tit {
    width: 100%;
    font-size: var(--txt-body1);
    font-weight: 500;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.tab_click_li dt .tit div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre;
    margin-left: 1rem;
}
.tab_click_li dt .tit .material-symbols-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-50); */
}
.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);
}




/**************************************************************/
/**************************************************************/
/************************ member & form ***********************/
/**************************************************************/
/**************************************************************/
/*-------------------- form basic setting --------------------*/
input::-webkit-input-placeholder {
    font-size: var(--txt-label);
    color: var(--cgray-400);
}
input::-moz-input-placeholder {
    font-size: var(--txt-label);
    color: var(--cgray-400);
}
input:-ms-input-placeholder {
    font-size: var(--txt-label);
    color: var(--cgray-400);
}
input:-moz-input-placeholder {
    font-size: var(--txt-label);
    color: var(--cgray-400);
}
.txt_box_s {
    width: 50px;
}
.txt_box_s2 {
    width: 80px;
}
.txt_box_m {
    width: 60%;
}
.txt_box_l {
    width: 150px;
}
.txt_add {
    width: 98%;
}
.txt_email {
    width: 30% !important;
}
/*-------------------------- login ---------------------------*/
.login_one {
    max-width: 350px;
}
.login_two {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 800px;
}
.login_two .login_wrap h6 {
    font-size: 1.85rem;
    font-weight: 500;
    margin: 30px 0;
}
.login_wrap {
    min-width: 320px;
    text-align: center;
    margin: 0 auto;
}
.login_wrap .login_input {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.login_wrap .login_input .txt_box {
    width: 100%;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
}
.login_wrap input[type=text] {
    background: #fff;
    border: 1px solid var(--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);
    color: #fff;
    font-size: var(--txt-body2);
    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;
    margin-top: 2rem;
}
.login_footer .remember_id {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    text-align: left;
}
.login_footer .remember_id li {
    text-indent: -10px;
    padding-left: 10px;
}
.login_footer .id_pw {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.login_footer a {
    font-size: var(--txt-body2);
    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-lg-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(--main-color-5);}
.login_social ul li.facebook { background: url(../images/common/icon_sns_facebook_m.png) 20px center no-repeat var(--main-color-5);}
.login_social ul li.kakao { background: url(../images/common/icon_sns_kakao_m.png) 16px center no-repeat var(--main-color-5);}
.login_social ul li.google { background: url(../images/common/icon_sns_google_m.png) 16px center no-repeat var(--main-color-5);}


/**************************************************************/
/**************************************************************/
/******************** waiting 준비중페이지 ********************/
/**************************************************************/
/**************************************************************/
/*----------------------- 인덱스 준비중 ----------------------*/
.waiting_index {display: flex;align-content: center;justify-content: center;width: 100vw;height: 100vh;flex-wrap: wrap;position: relative;}
.waiting_index::before {box-shadow: 0px 7px 23px -6px rgb(0 0 0 / 40%); content:'';position: absolute;width: 400px;aspect-ratio:1/1;top: 28vh;left: 50%;transform: translate(-50%);background: url(../images/common/multi_bg.png);z-index: -1;background-size: cover;border-radius: 400px;}
.waiting_index img {margin-bottom: 1.5rem;border-bottom: 1px dashed #fff;padding-bottom: 1.5rem;}
.waiting_index p {font-size: 2rem;text-align: center;width: 100%;color: #fff;font-weight: 500;}

/*-------------------- 서브페이지 준비중 ---------------------*/
.waiting_sub {display: flex;align-content: center;justify-content: center;width: 100%;flex-wrap: wrap;position: relative;margin: 0 auto;height: 400px;}
.waiting_sub::before {
    box-shadow: 0px 7px 23px -6px rgb(77 82 79 / 17%);
    content: '';
    width: 400px;
    height: 400px;
    /* aspect-ratio: 1 / 1; */
    transform: translate(-50%);
    background: url(../images/main/mainvisual_03.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: 300px;}

/**************************************************************/
/**************************************************************/
/******** terms & privacy 이용약관 &개인정보처리방침 **********/
/**************************************************************/
/**************************************************************/
.privacy {
    background: #fff;
    border: 1px solid var(--cgray-200);
    padding: 2rem;
    border-radius: var(--radius-all-xs);
}
.privacy .terms {
    border-bottom: 1px solid var(--cgray-200);
}
/* .privacy .terms p {margin-bottom: 6px;font-weight: 500;font-size: 0.925rem;} */
.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-lg-2);
    font-weight: 600;
    margin-bottom: 8px;
    /* color: var(--main-color); */
}
.privacy .terms:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.privacy .pri_box {
    background: #e9dfe2;
    padding: 20px;
    margin-top: 20px;
}
.privacy .pri_box h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.privacy .pri_box .btn_download {
    background: var(--main-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(--main-color-5);
    padding:15px;
}
.privacy .terms .cont_box label {
    color: var(--main-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: 8px;
    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;
}



/**************************************************************/
/**************************************************************/
/******************** 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 .logo a {
        width: 252px;
    }
    #header .open {
        /* width: 252px; */
    }
    #header .menu_area {
    }
    #header .menu_area ul {
        height: 60px;
    }
    #header .menu_area ul li {
        /* width: 60px; */
        height: 60px;
        line-height: 60px;
    }
    #header .menu_area ul li:last-child {
        width: 60px;
    }
    #header .menu_area ul li a {
        /* font-size: 14px; */
        line-height: 60px;
        background-size: 25px;
    }
    #header .menu_area ul li img {
        max-width: 100%;
        max-height: 100%;
        vertical-align: middle;
    }
    #header .menu_area ul li:last-child {
        height: 60px;
        line-height: 60px;
        background-image: url(../images/common/ic_ham_bg.png);
    }
    #google_translate_element {
        margin-top: 0.875rem !important;
    }
}


@media screen and (max-width:1500px) {
    
    #header nav #gnb li .nav_dep1 { font-size: 1rem;}
    #header .depth_toggle .wrapper {/*margin-left: -8rem;*/}
    #header .open .login, #header .open .join {
        margin-left: 0.5rem;
    }
    #header .open .login, #header .open .join {
        margin-left: 0.5rem;
        font-weight: 500;
        font-size: 0.875rem;
    }
    #header nav .depth_toggle .sub_nav li a {
        font-size: 0.875rem;
    }
    .sub_visual {
        height: 414px;
        width: 100%;
        padding: 160px 20px;
    }
    .path_container {
        /* width: calc(var(--web-width) - 50px); */
    }
    .sub_visual:after {
        /* font-size: 6rem; */
    }

}
@media screen and (max-width:1350px) {

}
/* 모바일 테이블 스크롤 안내 */
.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;
    }

}


