@charset "utf-8";
html,
body {
    font-size: 16px;
}
:root {
    --main-color: #28348a;
    --main-color-2: #48b070;
    --sub-color: #8b0029;
    --sub-color-2: #56b6ff;
    --sub-color-3: #d2511e;
    --sub-color-4: #8fa90d;
    --sub-color-5: #232429;
    --sub-color-6: #f2eee7;
    --c-black-1: #222;
    --c-black-2: #333;
    --c-black-3: #555;
    --c-black-4: #999;
    --c-black-5: #ccc;
    --c-black-6: #efefef;
    --c-black-7: #f0f0f0;
    --c-black-8: #f6f6f6;

    --accent-color: #faad40;

    --txt-xs: 0.75rem;/* 12px */
    --txt-sm: 0.875rem;/* 14px */
    --txt-md: 1rem;/* 16px */
    --txt-md-1: 1.063rem;/* 17px */
    --txt-lg: 1.125rem;/* 18px */
    --txt-lg-2: 1.25rem;/* 20px */
    --txt-xl: 1.375rem;/* 22px */
    --txt-2xl: 1.5rem;/* 24px */
    --txt-3xl: 1.75rem;/* 28px */
    --txt-3xl-1: 1.875rem;/* 30px */
    --txt-3xl-2: 2rem;/* 32px */
    --txt-4xl: 2.25rem;/* 36px */
    --txt-4xl-1: 2.625rem;/* 42px */
    --txt-5xl: 3rem;/* 48px */
    --txt-6xl: 3.75rem;/* 60px */
    --txt-7xl: 4.25rem;/* 68px */
    --txt-8xl: 5rem;/* 80px */

    --pad-tb-xs: 0.625rem;/* 10px*/
    --pad-tb-sm: 1.25rem;/* 20px */
    --pad-tb-md: 1.875rem;/* 30px */
    --pad-tb-md-1: 2rem;/* 32px */
    --pad-tb-lg: 2.5rem;/* 40px */
    --pad-tb-xl: 3.75rem;/* 60px */
    --pad-tb-2xl: 5.625rem;/* 90px */

    --radius-all-xxs: 5px;
    --radius-all-xs: 0.5rem;/* 8px */
    --radius-all-sm: 0.875rem;/* 14px */
    --radius-all-md: 1.875rem;/* 20px */
    --radius-all-lg: 3.125rem;/* 50px */
    --radius-all-xl: 3.75rem;/* 60px */

    --radius-2-xs: 0 0.5rem 0 0.5rem;
    --radius-2-sm: 0 0.875rem 0 0.875rem;
    --radius-2-md: 0 1.875rem;
    --radius-2-md-re: 1.875rem 0;
    --radius-2-lg: 0 3.125rem;
    --radius-2-xl: 0 3.75rem 0 3.75rem;
    --radius-2-xl-re: 3.75rem 0 3.75rem 0;

    --radius-3-sm: 0.875rem 0.875rem 0 0.875rem;
    --radius-3-md: 1.875rem 1.875rem 0 1.875rem;
    --radius-3-lg: 3.125rem 3.125rem 0 3.125rem;
    --radius-3-xl: 3.75rem 3.75rem 0 3.75rem;
    --round_max: 999rem;

    --web-width: 1250px;

    --main-font: 'Pretendard', sans-serif;
    --sub-font: 'Poppins', 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;}
.flex.align_r {justify-content: flex-end;}
.flex.valign_m {align-items: center;}
.flex.valign_b {align-items: flex-end;}
.fl { float: left;}
.fr { float: right;}
.cursor {cursor: pointer;}
.bold {font-weight: 600;}
.img_wrap {
    width: 100%;
    margin: 0rem auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--c-black-5);
    padding: var(--pad-tb-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(--c-black-5); */
}
.img_center img {
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
}

.col-lg-12 {
    width: 100%
}

.col-lg-11 {
    width: 91.66666667%
}

.col-lg-10 {
    width: 83.33333333%
}

.col-lg-9 {
    width: 75%
}

.col-lg-8 {
    width: 66.66666667%
}

.col-lg-7 {
    width: 58.33333333%
}

.col-lg-6 {
    width: 50%
}

.col-lg-5 {
    width: 41.66666667%
}

.col-lg-4 {
    width: 33.33333333%
}

.col-lg-3 {
    width: 25%
}

.col-lg-2 {
    width: 16.66666667%
}

.col-lg-1 {
    width: 8.33333333%
}


/* -------------------- text basic setting -------------------*/
.txt_center {text-align: center !important;}
.txt_justify {text-align: justify !important; word-break: break-all;}
.txt_left {text-align: left !important;}
.txt_right {text-align: right !important;}
.txt_5xl {
    font-size: var(--txt-5xl);
    line-height: 1.5em;
}
.txt_3xl {
    font-size: var(--txt-3xl);
    line-height: 1.5em;
}
.txt_2xl {
    font-size: var(--txt-2xl);
    line-height: 1.5em;
}
.txt_xl {
    font-size: var(--txt-xl);
    line-height: 1.5em;
}
.txt_lg {
    font-size: var(--txt-lg);
    line-height: 1.5em;
}
.txt_lg-2 {
    font-size: var(--txt-lg-2);
    line-height: 1.5em;
}
.txt_lg-2 span{
    font-size: 1rem;
    font-weight: 500;
}
/* .txt_lg span {
    font-weight: 500;
    color: var(--main-color-2);
} */
.txt_md-1 {
    font-size: var(--txt-md-1);
    line-height: 1.375rem;
}
.txt_lg_thin {
    font-size: var(--txt-lg);
    font-weight: lighter;
    display: block;
    color: var(--c-black-3);
    line-height: 1.6em;
}
.txt_lg_thin span {
    font-weight: normal;
    color: var(--main-color-2);
}
.txt_md {
    font-size: var(--txt-md);
}

.txt_ex {
    font-size: var(--txt-sm);
    color: var(--c-black-3);
}
.txt_sm {
    font-size: var(--txt-sm);
}
.txt_strong {
    font-weight: 500;
}
.txt_light {
    font-weight: 300;
}
.txt_normal {
    font-weight: 400;
}
/* -------------------- text color setting -------------------*/
.main_clr {
    color: var(--main-color) !important;
}
.main_clr02 {
    color: var(--main-color-2) !important;
}

.sub_clr {
    color: var(--sub-color) !important;
}
.sub_clr02 {
    color: var(--sub-color-2) !important;
}
.sub_clr03 {
    color: var(--sub-color-3) !important;
}
.sub_clr04 {
    color: var(--sub-color-4) !important;
}
.txt_grey {
    color: var(--c-black-3) !important;
}
.txt_red {
    color: #d22b28 !important;
}
.txt_blue {
    color: #2868d2 !important;
}
.txt_blk {
    color: var(--c-black-1) !important;
}
.txt_point {
    color: var(--main-color) !important;
}
.txt_accent {
    color: var(--accent-color) !important;
}

/* -------------------- text link setting -------------------*/
.txt_link {
    cursor: pointer;
    display: inline-block;
    color: var(--sub-color-2) !important;
    font-weight: 400;
}
.txt_link span.material-icons {
    vertical-align: sub;
    font-size: 18px;
    margin-right: 0.25rem;
    color: var(--main-color-2);
}

/* ------------------서브페이지 첫번째 제목------------------*/
.page_tit {
    margin: 0rem auto 3rem;
}
.page_tit h4 {
    font-size: var(--txt-5xl);
    line-height: normal;
    text-align: center;
    width: auto;
    /* letter-spacing: 1px; 
    position: relative;*/
    font-weight: 600;
}
/*
.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(--sub-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-3xl-2);
    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: rgba(40, 154, 213, 0.65);
    background-image: linear-gradient(120deg, rgba(0, 169, 169, 100%), rgba(40, 154, 213, 0.65) 100%);
    top: 4px;
    left: 0;
}
.cont_tit_m h5.bullet, .cont_tit_nm h5.bullet img {
    width: 100%;
    max-width: fit-content;
}
.cont_tit_nm h5 strong {
    display: block;
}


/* ------------------서브페이지 세번째 제목------------------*/
.cont_tit_m h6, .cont_tit_nm h6 {
    font-size: var(--txt-xl);
    display: block;
    font-weight: 500;
    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(--sub-color-3) solid; */
}
.tb_scroll table.normal {
    min-width: 640px;
}
table.normal {
    width: 100%;
    border-top: 2px var(--main-color) solid;
    /* border-right: 1px var(--c-black-5) solid;
    border-left: 1px var(--c-black-5) solid; */
    /* table-layout: fixed; */
    /* min-width: 640px; */
    border-collapse: collapse;
    line-height: 1.5em;
    text-align: center;
    background: #fff;
}
.table_min {
    min-width: 280px;
}
table.normal th:first-child {
    border-left: 1px var(--c-black-5) solid;
}
table.normal th {
    background-color: var(--c-black-8);
    /* border-top: 4px solid var(--main-color); */
    border-right: 1px var(--c-black-5) solid;
    padding: 20px;
    font-weight: 600;
}
table.normal tr {
    border-bottom: 1px var(--c-black-5) solid;
}
/* table tr:last-child {
    border-bottom: 0;
} */
table.normal tr th {
    padding: 14px;
}
table.normal td {
    padding: 14px;
    border-right: 1px var(--c-black-5) solid;
    vertical-align: middle;
}
table.normal td:first-child {
    border-left: 1px var(--c-black-5) solid;
}
table.normal .cont {
    /*    padding: 14px;*/
    text-align: left;
    word-break: keep-all;
}
table.normal .main_tit {
    background: var(--c-black-4);
    color: #fff;
    font-size: var(--txt-lg);
    font-weight: 500;
}
table.normal .sub_tit {
    background: #aaa;
    border-right: 1px #fff solid;
}
table.normal .sub_tit:last-child {
    border-right: 0;
}
.tb_txt_eng {color: var(--main-color-2); font-size: 0.925rem;}
table tr .txt_left {
    text-align: left;
}
table.normal .gray_bg {
    background: var(--c-black-4);
}
table.normal tfoot td {
    background: var(--c-black-8);
    font-weight: 600;
}
table tr .valign_top {
    vertical-align: top;
}

/*격행으로 배경 컬러*/
table.normal.tr_color thead th {
    background: #f2eee7;
    border-right: 1px #dbd3c5 solid;
}
table.normal.tr_color tbody tr:nth-child(2n) {
    background: var(--c-black-8);
}

/*열리는 tr*/
table.normal.tr_open thead th {
    background: #f2eee7;
    border-right: 1px #dbd3c5 solid;
}
table.normal.tr_open .title {
    position: relative;
    cursor: pointer;
}
table.normal.tr_open .title:hover {
    background: var(--c-black-8);
}
table.normal.tr_open .title:nth-child(2n) {
    background: var(--c-black-8);
}
table.normal.tr_open .open {
    position: relative;
}
table.normal.tr_open .open:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -5px 12px auto auto;
    vertical-align: middle;
    border-right: 1px solid var(--main-color);
    border-top: 1px solid var(--main-color);
    transform: translateY(-50%) rotate(135deg);
    position: absolute;
    top: 55%;
    right: 0px;
}
table.normal.tr_open .title:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -5px 12px auto auto;
    vertical-align: middle;
    border-right: 1px solid var(--main-color);
    border-top: 1px solid var(--main-color);
    transform: translateY(-50%) rotate(135deg);
    position: absolute;
    top: 55%;
    right: 0px;
}
table.normal .description {
    display: none;
}
table.normal .description td {
    background: #fff;
}
table.normal .description .sub_bg {
    background: var(--c-black-8);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: left;
}

/**************************************************************/
/**************************************************************/
/*************************popup setting ***********************/
/**************************************************************/
/**************************************************************/
/* ---------------------- modal popup ------------------------*/
.modal_conts .btn_close_m {
    display: inline-block;
    text-align: center;
    width: 120px;
    margin: 0 auto;
    margin-top: 20px;
    height: 38px;
    background: var(--main-color);
    line-height: 36px;
    color: #fff;
    cursor: pointer;
    font-size: var(--txt-md);
    box-sizing: border-box;
    padding: 0;
}
.modal_conts .btn_area {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: none;
}
.modal_tr table tr {
    cursor: pointer;
}
.modal_conts table th {
    color: var(--c-black-1);
    font-size: var(--txt-lg);
    padding: 16px 30px;
}
.modal_conts table td {
    padding: 16px 30px 16px 16px;
}
.modal_conts table td img {
    max-width: 600px;
}
.modal_conts {
    display: none;
    max-width: 800px;
    min-width: 300px;
    background: #fff;
    max-height: 700px;
    overflow: auto;
    border-radius: var(--radius-all-sm);
}
.modal_conts .modal_tit {
    width: 100%;
    background: var(--main-color);
    text-align: center;
    padding: 1rem;
}
.modal_conts .modal_tit h5 {
    font-size: var(--txt-2xl);
    display: inline-block;
    font-weight: 600;
    word-break: keep-all;
    color: #fff;
}
.modal_conts .modal_tit img {
    margin-top: 5px;
    cursor: pointer;
}
.modal_conts .tb {
    z-index: 999 !important;
    padding: 2rem;
    /* border: 1px solid var(--c-black-4); */
    max-width: 800px;
    min-width: 300px;
    /* max-height: 600px; */
    /* overflow-y: auto; */
}
.modal_conts .tb img {
    margin: 0 auto;
    display: block;
    max-height: 660px;
}

/* ---------------------- layer popup ------------------------*/
.layer_popup {
    position: absolute;
    width: 450px;
    /*height: 450px;*/
    top: 0px;
    left: 0px;
    z-index: 10000000002;
    cursor: pointer;
}
.layer_popup p {
    margin: 0 auto;
    text-align: center;
}
/*.layer_popup p img {width:330px;}*/
.layer_popup .close_wrap {
    background-color: rgba(0, 0, 0, 0.8);
    height: 30px;
    color: #fff;
    line-height: 30px;
    text-align: center;
}
.layer_popup .pop_close {
    float: left;
    padding: 0 6px;
}
.layer_popup .chk_close {
    float: right;
    padding: 0 6px;
}
.layer_popup .chk_close a {
    color: #fff;
}
@media screen and (max-width:580px) {
    .layer_popup {position:absolute; width:100%; height: 100%; top:0px; left: 0px; background-color: rgba(0,0,0,0.5); z-index:10000000002;cursor:pointer; }
    .layer_popup p {margin: 0 auto; margin-top:50px; text-align: center;}
    .layer_popup p img {width:300px;}
    .layer_popup .close_wrap {background-color: rgba(0,0,0,0.0); height: 50px; color: #fff; line-height: 30px;text-align: center;}
    .layer_popup .pop_close {
        float: none;
        width: 100%;
        padding: 0 6px;
    }
    .layer_popup .chk_close {
        float: none;
        width: 100%;
        padding: 0 6px;
    }
}


/* ---------------------- window popup ------------------------*/
#window_popup {padding: 20px; width: 840px; min-width: 840px; max-width: 840px; max-height: 740px;}
#window_popup table {width: 800px;}
#window_popup table td {padding: 8px 10px !important;}
.print_top {
    display: flex;
    justify-content: space-between;
    border-bottom: 4px solid var(--c-black-4);
    padding-bottom: 0.5em;
}
.print_top .left {
    display: flex;
    gap: 1em;
}
.print_top .left .img {
    max-width: 100px;
}
.print_top .left .txt {
    display: flex;
    align-items: flex-end;
}
.print_top .left .txt p {
    font-size: 12px;
}
.print_top .right {
    display: flex;
    align-items: flex-end;
    font-size: 36px;
}
.print_center {
    margin: 20px 0;
    min-height: 65vh;
}
.print_center h6 {
    font-size: 20px;
    margin-bottom: 16px;
}
.print_center .wrap {
    display: flex;
    flex-wrap: wrap;
}
.pop_print .print_tb tr {
    border-bottom: 1px solid var(--c-black-5);
    border-left: 1px solid var(--c-black-5);
}
.pop_print .print_tb th {
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
    border-right: 1px solid var(--c-black-5);
}
.pop_print .print_tb td {
    border-right: 1px solid var(--c-black-5);
    font-size: 14px;
}
.print_bottom .bottom_txt {
    margin: 30px 0;
}
.print_bottom .bottom_txt p {
    font-size: 12px;
}
.print_bottom .bottom_txt p span {font-weight: 600;font-size: 14px;}


/**************************************************************/
/**************************************************************/
/********************* button & tag setting *******************/
/**************************************************************/
/**************************************************************/
/* ------------------ basic button setting -------------------*/
.pop_btn_confirm {
    display: inline-block;
    text-align: center;
    width: 80px;
    background: var(--main-color);
    height: 35px;
    line-height: 35px;
	font-size: 15px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.pop_btn_cancel {
    display: inline-block;
    text-align: center;
    width: 80px;
    background: var(--c-black-4);
    height: 35px;
    line-height: 35px;
	font-size: 15px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.viewmore {
    cursor: pointer;
    font-size: 1rem;
    color: var(--c-black-1);
    font-weight: bold;
    letter-spacing: -0.5px;
    padding-right: 20px;
    box-sizing: border-box;
    transition: 0.5s;
    display: inline-block;
    position: relative;
}
.viewmore::after {
    content: '';
    background: url(../images/common/viewmore.png);
    position: absolute;
    top: 3px;
    right: 0;
    width: 16px;
    height: 16px;
}
.viewmore:hover {
    color: var(--c-black-2);
}
.viewmore:hover::after {
    background: url(../images/common/viewmore_bl.png);
}

/*버튼*/
.btn_wrap {margin: 0 auto;}
.btn_wrap.flex { gap: 1rem;}
.btn_wrap .material-icons-outlined { margin-right: -0.5rem; margin-left: 0.5rem;}
.btn_write {
    display: inline-block;
    text-align: center;
    float: right;
    width: 120px;
    background: var(--main-color-2);
    height: 42px;
    line-height: 42px;
    color: #fff;
    cursor: pointer;
    font-weight: 400;
    border-radius: var(--radius-all-xxs);
}
.btn_modify {
    display: inline-block;
    text-align: center;
    width: 120px;
    background: var(--sub-color);
    height: 42px;
    line-height: 42px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.btn_reply {
    display: inline-block;
    text-align: center;
    width: 120px;
    background: var(--main-color);
    height: 42px;
    line-height: 42px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.btn_delete {
    display: inline-block;
    text-align: center;
    width: 120px;
    background: #999;
    height: 42px;
    line-height: 42px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.btn_etc {
    
}

.btn_etc.color01 {
    background: var(--main-color);
}
.btn_etc.color02 {
    background: var(--sub-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(--c-black-1);
    color: var(--c-black-1);
    box-sizing: border-box;
    font-size: var(--txt-md);
    font-weight: 600;
    width: 160px;
    height: 45px;
    display: block;
    transition: 0.3s;
    position: relative;
}
.btn_line .inner {
    position: absolute;
    font-weight: 600;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.btn_line span.bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--c-black-1);
}
.btn_line:hover .inner {
    color: #fff;
}
.btn_line:hover span.bg {
    width: 100%; animation: btn1Ani 0.3s linear 1;
}
.btn_line_wht {
    border: 1px solid #fff;
    color: #fff;
    box-sizing: border-box;
    font-size: var(--txt-lg);
    font-weight: 600;
    width: 160px;
    height: 45px;
    display: block;
    transition: 0.3s;
    position: relative;
}
.btn_line_wht .inner {
    position: absolute;
    font-weight: 600;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.btn_line_wht span.bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #fff;
}
.btn_line_wht:hover .inner {
    color: var(--sub-color);
}
.btn_line_wht:hover span.bg {
    width: 100%; animation: btn1Ani 0.3s linear 1;
}
    @keyframes btn1Ani{
        0%{width: 0;}
        100%{width: 100%;}
    }
.btn_bg {
    font-size: var(--txt-lg);
    font-weight: 600;
    width: 160px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    color: #fff;
}

.btn_ic_wrap {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.btn_ic {
    display: flex;
    justify-content: space-between;
    padding: 1.75rem 2rem;
    border-radius: var(--radius-all-xs);
    align-items: center;
    transition: 0.3s;
}
.btn_ic:hover {
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 20%);
}
.btn_ic.btn_ic_red:hover {
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 50%);
}
.btn_ic .tit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.btn_ic .tit .ic {
    max-width: 2rem;
    max-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_ic .tit .ic img {
    max-height: 1.925rem;
    max-width: 1.925rem;
}
.btn_ic .tit p {
    font-size: 1.25rem;
    font-weight: 400;
}
.btn_ic .tit p span {
    font-weight: 600;
}
.btn_ic .more {position: relative;color: var(--main-color);font-weight: 800;font-family: var(--main-font);font-size: 0.825rem;}
.btn_ic .more::before {content: '';position: absolute;background: url(../images/common/symbol_round.svg) no-repeat;background-size: cover;width: 170%;aspect-ratio: 1/1;top: -95%;left: 50%;transform: translate(-50%);transition: 0.5s;}
.btn_ic.btn_ic_wht {
    background: #fff;
    border: 1px solid #fff;
}
.btn_ic.btn_ic_red {
    background: var(--main-color);
    border: 1px solid var(--main-color);
}
.btn_ic.btn_ic_yellow {
    background: var(--main-color-2);
    border: 1px solid var(--main-color-2);
}
.btn_ic.btn_ic_red, .btn_ic.btn_ic_yellow p, .btn_ic.btn_ic_red .more, .btn_ic.btn_ic_yellow .more {
    color: #fff;
}
.btn_ic.btn_ic_red .more::before, .btn_ic.btn_ic_yellow .more::before {
    background: url(../images/common/symbol_round_wht.svg) no-repeat;
}

/* new btn */
.btn_wrap .link_button img{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_wrap .download_button img{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* -------------------- state tag setting --------------------*/
.state {
	min-width: 40px;
	padding: 0.25rem 0.375rem;
	border-radius: var(--radius-all-xxs);
	text-align: center;
	font-size: 1rem;
	position: relative;
	/* height: 30px; */
	display: inline-block;
    /* background: var(--sub-color-3); */
    font-weight: 500;
}
.state.state01 { 
    color: var(--main-color);
}
.state.state02 {
	color: var(--sub-color);
}
.state.state03 {
	background: var(--c-black-3);
}


/* ------------------- top button setting --------------------*/
#top_btn {
    position: fixed;
    right: 200px;
    bottom: 140px;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    cursor: pointer;
    z-index: 999;
    background: url(/images/common/top_btn.png) no-repeat;
}





