@charset "utf-8";
@import url('html5_reset.css');
@import url('layout.css');

:root {
	--thead-height: 80px; /* thead height */
}
/* 로딩 */
.loading-wrap {position: fixed; top: 0; left: 0; z-index: 99999; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; background: rgba(0, 0, 0, 0.3);}
.loading-wrap .spinner {width: 60px; height: 60px; border-radius: 50%; border: 8px solid; border-color: #ececfc; border-right-color: #006a9c; animation: spinner 1s infinite linear;}
@keyframes spinner {
to {
	transform: rotate(1turn);
}
}
@media only screen and (max-width: 767px) {
.loading-wrap .spinner {width: 50px; height: 50px; border: 4px solid; border-color: #ececfc; border-right-color: #474bff;}
}

/********** skip_nav **********/
.skip_nav { position: relative; z-index: 1000; display: block; overflow: hidden; height: 0; background:#000; text-align: center; }
.skip_nav:focus { overflow: auto; height: auto; padding: 5px 0; color:#fff; }

/********** 숨김 **********/
.hide { overflow: hidden; position: absolute; width: 1px; height: 1px; margin: -1px; clip: rect(0 0 0 0); }

/********** overflow-hidden **********/
.overflow-hidden { overflow: hidden; }

/********** color **********/
:root {
	--main-color: #006a9c; /* 메인컬러 */
	--main-light-color: #f3f7fb; /* 연한 메인컬러 */
	--sub-color: #152B36; /* 서브컬러 */
	--gray-44: #444444;
	--gray-55: #555555;
	--gray-66: #666666;
	--gray-dd: #dddddd;
	--gray-e5: #e5e5e5;
	--gray-e9: #e9e9e9;
	--gray-f5: #f5f5f5;
	--gray-f7: #f7f7f7;
	--gray-f9: #f9f9f9;
	--bd-color: #bcc7d1;
	--red: #fb0000;
	--green: #459c00;
}

/* background color */
.bg-main-color {background-color: var(--main-color); color: #fff;}
.bg-main-light-color {background-color: var(--main-light-color);}
.bg-sub-color {background-color: var(--sub-color); color: #fff;}
.bg-gray-44 {background-color: var(--gray-44); color: #fff;}
.bg-gray-55 {background-color: var(--gray-55); color: #fff;}
.bg-gray-66 {background-color: var(--gray-66); color: #fff;}
.bg-gray-dd {background-color: var(--gray-dd); color: #fff;}
.bg-gray-e5 {background-color: var(--gray-e5); color: #666;}
.bg-gray-e9 {background-color: var(--gray-e9); color: #666;}
.bg-gray-f5 {background-color: var(--gray-f5); color: #666;}
.bg-gray-f9 {background-color: var(--gray-f9); color: #666;}
.bg-white {background-color: #ffffff;}

/* font color */
.fc-main-color {color: var(--main-color);}
.fc-sub-color {color: var(--sub-color);}
.fc-gray-44 {color: var(--gray-44);}
.fc-gray-55 {color: var(--gray-55);}
.fc-gray-66 {color: var(--gray-66);}
.fc-gray-dd {color: var(--gray-dd);}
.fc-gray-e5 {color: var(--gray-e5);}
.fc-gray-e9 {color: var(--gray-e9);}
.fc-gray-f5 {color: var(--gray-f5);}
.fc-gray-f9 {color: var(--gray-f9);}
.fc-red {color: var(--red);}

/* border color */
.bd-main-color {border: 1px solid var(--main-color);}
.bd-sub-color {border: 1px solid var(--sub-color);}
.bd-gray-44 {border: 1px solid var(--gray-44);}
.bd-gray-55 {border: 1px solid var(--gray-55);}
.bd-gray-66 {border: 1px solid var(--gray-66);}
.bd-gray-dd {border: 1px solid var(--gray-dd);}
.bd-gray-e5 {border: 1px solid var(--gray-e5);}
.bd-gray-e9 {border: 1px solid var(--gray-e9);}
.bd-gray-f5 {border: 1px solid var(--gray-f5);}
.bd-gray-f9 {border: 1px solid var(--gray-f9);}

/********** title **********/
.tith1 { position: relative; display: block; padding-left: 24px; font-size: 2.0rem; }
.tith1:after { content: ""; position: absolute; top: 3px; left: 0; width: 18px; height: 18px; border: 5px solid var(--main-color); border-radius: 100%; }
.tith2 { position: relative; display: block; padding-left: 18px; font-size: 1.8rem; }
.tith2::after { content: ""; position: absolute; top: 5px; left: 0; width: 6px; height: 6px; background: var(--main-color); }
.tith3 { position: relative; display: block; font-size: 2.4rem; color: var(--sub-color); }
.tith4 { position: relative; display: block; font-size: 2rem; color: #333; }
.tith5 { position: relative; display: block; font-size: 1.8rem; color: #333; }

/********** table **********/
.tableA {width: 100%; border-collapse: collapse; text-align: center; }
.tableA > thead > tr > th { padding: 12px; font-weight: 500; font-size: 1.6rem; background: var(--main-color); color: #fff; }
.tableA > tbody > tr:last-child td { border-bottom: 1px solid var(--main-color); }
.tableA > tbody > tr > td { padding: 12px; font-size: 1.5rem; color: #333; text-align: center; border-bottom: 1px solid #cdd2d5; border-right: 1px solid #cdd2d5; word-break: break-all; }
.tableA > tbody > tr > td:last-child { border-right: 0; }
.tableA > tbody > tr > td.text-lf { text-align: left; }
.tableA > tbody > tr > td a:hover { text-decoration: underline; font-weight: 500; }

.tableB { width: 100%; border-collapse: collapse; border-top: 1px solid #cdd2d5; text-align: center; /* table-layout: fixed; */ }
.tableB > thead > tr > th { padding: 10px 12px; font-weight: 600; font-size: 1.5rem; background: #f6f7f9; border-right: 1px solid #cdd2d5; border-bottom: 1px solid #cdd2d5; }
.tableB > thead > tr > th:last-child { border-right: 0; }
.tableB > tbody > tr > th { padding: 10px 12px; font-weight: 600; font-size: 1.5rem; background: #f6f7f9; border-right: 1px solid #cdd2d5; border-bottom: 1px solid #cdd2d5; }
.tableB > tbody > tr > td { padding: 10px 12px; font-weight: 300; font-size: 1.5rem; border-right: 1px solid #cdd2d5; border-bottom: 1px solid #cdd2d5; word-break: keep-all; }
.tableB > tbody > tr > td:last-child { border-right: 0; }
.tableB > tbody > tr > td a:hover { text-decoration: underline; }

.center{text-align:center!important}

.tableB > tbody > tr.sum th,.tableB > tbody > tr.sum td{border-top: 3px double #757575;padding:15px 12px;font-weight:600}
.tableB > tbody > tr.sum,.tableB > tbody > tr.sum th{background: #eff8ff !important;}

.tableB.tblfixed{table-layout: fixed;}

.origin{font-size: 1.4rem; margin-top: 10px; font-weight: 300; color: var(--gray-66);}

.table-overflow { position: relative; }
.table-overflow .table-guide { display: none; position: relative; align-items: center; justify-content: center; margin-bottom: 10px; font-weight: 500; }
.table-overflow .table-guide .icn { display: block; width: 20px; height: 15px; margin-right: 5px; 
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72.67 28'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23006a9c; stroke-linecap: round; stroke-linejoin: round; stroke-width: 4px; %7D %3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath class='cls-1' d='M58.71,2l11.95,11.84-11.95,12.16'/%3E%3Cline class='cls-1' x1='42.53' y1='13.84' x2='70.67' y2='13.84'/%3E%3C/g%3E%3Cg%3E%3Cpath class='cls-1' d='M13.95,26L2,13.84,13.95,2'/%3E%3Cline class='cls-1' x1='30.14' y1='13.84' x2='2' y2='13.84'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: left center; background-size: 20px auto;
}
.table-overflow .table-scroll-wrap { overflow-x: scroll; }
@media only screen and (max-width: 767px) {
	.table-overflow .table-guide  { display: flex; }
	.table-overflow .table-scroll-wrap { overflow-x: scroll; }
	.table-overflow .table-scroll-wrap table { width: 767px; }
	/* .popup-box .table-overflow .table-scroll-wrap table { width: 500px; } */
}

/* 테이블 반응형 */
@media only screen and (max-width: 1023px) {
	.table-responsive1 {border-top: 1px solid var(--gray-44);}
	.table-responsive1 colgroup,
	.table-responsive1 > thead {display: none;}
	.table-responsive1 > tbody > tr {border-bottom: 1px solid var(--gray-e5);}
	.table-responsive1 > tbody > tr:nth-child(even) {background: var(--gray-f9);}
	.table-responsive1 > tbody > tr > td {display: flex; width: 100%; padding: 8px 10px; text-align: left; border: 0; border-bottom: 1px dashed var(--gray-e9); border-right: 0;}
	.table-responsive1 > tbody > tr > td:last-child {border-bottom: 0;}
	.table-responsive1 > tbody > tr > td::before {content: attr(data-cell-header); flex-shrink: 0; width: 90px; font-weight: 500; text-align: left;}
	.table-responsive1 > tbody > tr:last-child td {border-bottom:var(--gray-e5);}

	.table-responsive2 {border-top: 1px solid var(--gray-44);}
	.table-responsive2 colgroup,
	.table-responsive2 thead {display: none;}
	.table-responsive2 tbody tr {border-bottom: 1px solid var(--gray-dd);}
	.table-responsive2 tbody td {position: relative; display: block; width: 100%; padding: 50px 10px 10px 10px; text-align: left; border: 0; border-bottom: 1px dashed var(--gray-e9);}
	.table-responsive2 tbody td:last-child {border-bottom: 0;}
	.table-responsive2 tbody td::before {content: attr(data-cell-header); position: absolute; top: 0; left: 0; width: 100%;padding: 8px 10px; font-weight: 600; background: var(--gray-f5);}
}


/********** checkbox & radio **********/
/* inline */
.checkbox-list1 {display: flex; flex-wrap: wrap; gap: 5px 15px; }
.checkbox-list1 li {position: relative;}

/* block */
.checkbox-list2 li {display: block; position: relative; margin-bottom: 4px;}
.checkbox-list2 li:last-child {margin-bottom: 0;}

.chk-st1-box { position: relative; }
.chk-st1-box input { appearance:none; position: absolute; top: 3px; left: 0; width: 18px; height: 18px; border:none; background:transparent; }
.chk-st1-box input + label { position: relative; padding-left: 25px; font-size: 1.6rem; color: #444; cursor: pointer; }
.chk-st1-box input + label:before { content: ""; position: absolute; top: 0; left: 0; width: 18px; height: 18px; border: 1px solid #a6a6a6; border-radius: 2px; }
.chk-st1-box input:checked + label { font-weight: 600; }
.chk-st1-box input:checked + label:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50.38 37.05' width='11'%3E%3Cg%3E%3Cpolygon fill='%23fff' points='16.53 37.05 0 20.53 6.61 13.91 16.91 24.2 44.17 0 50.38 7 16.53 37.05'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center center; background-color: var(--main-color); border-color: var(--main-color);
}

.chk-st2-box { position: relative; display: block; width: 18px; height: 18px; margin: 0 auto; }
.chk-st2-box input { appearance:none; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; width: 18px; height: 18px; border:none; background:transparent; cursor: pointer; }
.chk-st2-box input + label { position: relative; line-height: 18px; padding-left: 18px; font-size: 1.6rem; color: #444; cursor: pointer; }
.chk-st2-box input + label:before { content: ""; position: absolute; top: 0; left: 0; width: 18px; height: 18px; border: 1px solid var(--gray-e5); }
.chk-st2-box input:checked + label { font-weight: 600; }
.chk-st2-box input:checked + label:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50.38 37.05' width='11'%3E%3Cg%3E%3Cpolygon fill='%23006a9c' points='16.53 37.05 0 20.53 6.61 13.91 16.91 24.2 44.17 0 50.38 7 16.53 37.05'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center center; border-color: #006a9c4a;
}
.chk-st2-wh-box input:checked + label:before { 
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50.38 37.05' width='11'%3E%3Cg%3E%3Cpolygon fill='%23006a9c' points='16.53 37.05 0 20.53 6.61 13.91 16.91 24.2 44.17 0 50.38 7 16.53 37.05'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center center; background-color: #fff; border-color: #fff;
 }


.rdo-st1-box { position: relative; }
.rdo-st1-box input { appearance: none; position: absolute; top: 1px; left: 0; width: 18px; height: 18px; margin: 0; border: none; background: transparent; }
.rdo-st1-box input + label { position: relative; padding-left: 25px; line-height: 18px; font-size: 1.5rem; color: #555; cursor: pointer; }
.rdo-st1-box input + label:before { content: ""; position: absolute; top: 1px; left: 0; width: 18px; height: 18px; border: 1px solid var(--gray-e5); border-radius: 100%; transition: border .1s; }
.rdo-st1-box input:checked + label { font-weight: 600; }
.rdo-st1-box input:checked + label:before { content: ""; position: absolute; top: 1px; left: 0; width: 18px; height: 18px; background: #fff; border: 6px solid var(--main-color); }


/********** list **********/
.list1 > li {position: relative; line-height: 2.0rem; padding-left: 10px; font-size: 1.4rem; color: #666;}
.list1 > li:before {content: ""; position: absolute; top: 9px; left: 0; width: 5px; height: 1px; background: var(--gray-66); border-radius: 100%;}
.list2 > li {position: relative; padding-left: 11px;}
.list2 > li:before {content: ""; position: absolute; top: 10px; left: 0; width: 5px; height: 1px; background: var(--gray-66);}
.list3 > li { position: relative; line-height: 2.3rem; padding-left: 11px; font-size: 1.5rem; }
.list3 > li:before { content: ""; position: absolute; top: 9px; left: 0; width: 3px; height: 3px; background: var(--main-color); border-radius: 100%; }
.list4 > li {position: relative; line-height: 2.0rem; padding-left: 15px; font-size: 1.4rem; color: #666; counter-increment: number-counter;}
.list4 > li:before {content: counter(number-counter) "."; position: absolute; top: 0; left: 0; font-size: 1.4rem; color: #666;  }
.list5 > li {position: relative; line-height: 2.0rem; margin-bottom: 5px; padding-left: 15px; font-size: 1.5rem; color: #444; counter-increment: number-counter2;}
.list5 > li:before {content: counter(number-counter2) "."; position: absolute; top: 0; left: 0; font-size: 1.5rem; color: #666;  }

.tx-list1 {position: relative; display: block; padding-left: 11px;}
.tx-list1:before {content: ""; position: absolute; top: 9px; left: 0; width: 4px; height: 4px; background: var(--main-color); border-radius: 100%;}
.tx-list2 {position: relative; display: block; padding-left: 11px;}
.tx-list2:before {content: ""; position: absolute; top: 10px; left: 0; width: 5px; height: 1px; background: var(--gray-66);}

/********** note text **********/
.note-text { position: relative; line-height: 2.3rem; padding: 12px 15px 12px 38px; font-family: 'The Jamsil'; font-weight: 300; font-size: 1.5rem; color: var(--gray-55); background: var(--gray-f5); border-radius: 5px; }
.note-text:after { content: "!"; position: absolute; top: 15px; left: 15px; width: 16px; height: 16px; line-height: 16px; font-size: 9px; font-weight: 600; color: #fff; text-align: center; background: #b62d2d; border-radius: 100%; }

/********** tab **********/
.tab-st1 .tab-btn { display: flex; align-items: center; gap: 15px; }
.tab-st1 .tab-btn li a { display: block; font-weight: 500; font-size: 1.7rem; color: #999; }
.tab-st1 .tab-btn li.on a { font-weight: 700; color: var(--main-color); }

.tab-st4 { max-width: 450px; margin: 0 auto; padding: 6px; background: #f4f5f6; border-radius: 50px; overflow: hidden; }
.tab-st4 .tab-btn { position: relative; display: flex; justify-content: center; width: 100%;  }
.tab-st4 .tab-btn li { position: relative; z-index: 2; flex: 1; padding: 10px 0; }
.tab-st4 .tab-btn li a { display: block; font-weight: 500; font-size: 1.7rem; color: #555; transition: color 0.25s linear; text-align: center; }
.tab-st4 .tab-btn li.on a { color: #fff; }
.tab-st4 .tab-btn li.slider { position: absolute; top: 50%; left: 0; z-index: 0; transform: translateY(-50%); width: 33.3333%; height: 100%; background: var(--main-color); border-radius: 50px; transition: all 0.2s ease-in-out; }


.tab-st3 {  }
.tab-st3 .tab-btn { display: flex; justify-content: center; }
.tab-st3 .tab-btn li { flex: 1; max-width: 180px; margin-top: -1px; margin-left: -1px; }
.tab-st3 .tab-btn li:last-child a { border-radius: 0 50px 50px 0; overflow: hidden; }
.tab-st3 .tab-btn li:first-child a { border-radius: 50px 0 0 50px; overflow: hidden; }
.tab-st3 .tab-btn li.one a { border-radius: 50px; overflow: hidden; }
.tab-st3 .tab-btn li a { display: flex; align-items: center; justify-content: center; min-height: 50px; padding: 10px; line-height: 1.4rem; font-weight: 500; font-size: 1.6rem; color: var(--sub-color); background: #fff; border: 1px solid var(--sub-color); transition: all .2s ease-in-out; word-break: keep-all; }
.tab-st3 .tab-btn li.on a { font-weight: 600; color: #fff; background: var(--sub-color); }

.tab-conts .tab-cont { display: none; }
.tab-conts .tab-cont.on { display: block; }
@media only screen and (max-width: 767px) {
	.tab-st1 .tab-btn { gap: 10px; }
	
	.tab-st2 { padding: 4px; }
	.tab-st2 .tab-btn li { padding: 8px 0; }
	.tab-st2 .tab-btn li a { font-size: 1.5rem; }
	
	.tab-st3 .tab-btn { flex-wrap: wrap; }
	.tab-st3 .tab-btn li { flex: auto; max-width: unset; width: 50%; }
	.tab-st3 .tab-btn li a { border-radius: 0 !important; }
}

/********** btn **********/
/* 버튼 정렬 */
.btn-lf {display: flex; justify-content: flex-start;}
.btn-ce {display: flex; justify-content: center;}
.btn-rg {display: flex; justify-content: flex-end;}
@media only screen and (max-width: 560px) {
	.btn-ce { flex-wrap: wrap; }
	.btn-ce > a, .btn-ce > button { flex: 1; min-width: fit-content; }
}

.btn-bace1 {display: inline-block; min-width: 60px; max-width: 200px; height: 54px; line-height: 54px; padding: 0 10px;font-family: "Pretendard"; font-weight: 600; font-size: 1.6rem; text-align: center; }
.btn-bace2 {display: inline-block; min-width: 50px; height: 30px; line-height: 32px; padding: 0 10px; font-family: "Pretendard"; text-align: center; border-radius: 50px; }
.btn-bace3 {display: inline-block; min-width: 150px; height: 46px; line-height: 46px; padding: 0 20px; font-family: "Pretendard"; font-weight: 400; font-size: 1.5rem; text-align: center; }
.btn-bace4 {display: inline-block; min-width: 100px; height: 50px; line-height: 50px; padding: 0 20px; font-family: "Pretendard"; font-weight: 600; font-size: 1.6rem; }
.btn-bace5 {display: inline-block; height: 40px; line-height: 40px; padding: 0 15px; font-family: "Pretendard"; font-weight: 500; font-size: 1.4rem; white-space: nowrap; }
.btn-icn { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.btn-icn .icn { display: block; width: 20px; height: 20px; background-repeat: no-repeat; background-size: 15px auto; background-position: center; }
.btn-icn .icn1 { background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72.47 75'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23006a9c; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='3 47.65 3 72 69.47 72 69.47 47.65'/%3E%3Cline class='cls-1' x1='36.24' y1='3' x2='36.24' y2='54'/%3E%3Cpolyline class='cls-1' points='57.24 36.08 36.24 54.08 15.24 36.08'/%3E%3C/svg%3E"); background-size: 12px auto; }
.btn-icn .icn2 { background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72.47 75'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23006a9c; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='3 47.65 3 72 69.47 72 69.47 47.65'/%3E%3Cline class='cls-1' x1='36.24' y1='54.08' x2='36.24' y2='3.08'/%3E%3Cpolyline class='cls-1' points='57.24 21 36.24 3 15.24 21'/%3E%3C/svg%3E");background-size: 12px auto; }
.btn-icn .icn3 { background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 74.08'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cline class='cls-1' x1='36' y1='12.08' x2='3' y2='12.08'/%3E%3Cline class='cls-1' x1='69' y1='12.08' x2='54' y2='12.08'/%3E%3Cline class='cls-1' x1='15' y1='37.08' x2='3' y2='37.08'/%3E%3Cline class='cls-1' x1='69' y1='37.08' x2='33' y2='37.08'/%3E%3Cline class='cls-1' x1='38.83' y1='62.08' x2='3' y2='62.08'/%3E%3Cline class='cls-1' x1='69' y1='62.08' x2='57' y2='62.08'/%3E%3Ccircle class='cls-1' cx='45' cy='12' r='9'/%3E%3Ccircle class='cls-1' cx='48' cy='62.08' r='9'/%3E%3Ccircle class='cls-1' cx='24' cy='37.08' r='9'/%3E%3C/svg%3E"); }

/* 버튼 화살표 */
.btn-arrow {position: relative; display: inline-block; width: 8px; height: 10px; margin-left: 20px;}
.btn-arrow:before {content: ""; position: absolute; top: 50%; left: 0; width: 6px; height: 1px; margin-top: -3px; transform: rotate(45deg); background: #444;}
.btn-arrow:after {content: ""; position: absolute; bottom: 50%; left: 0; width: 6px; height: 1px; margin-bottom: -3px; transform: rotate(-45deg); background: #444;}
.btn-arrow.wh:before, .btn-arrow.wh:after {background: #fff;} /* White Arrow */
.btn-arrow.main-c:before, .btn-arrow.main-c:after {background: var(--main-color);} /* Main Color Arrow */
.btn-arrow.sub-c:before, .btn-arrow.sub-c:after {background: var(--main-color);} /* Sub Color Arrow */

@media only screen and (max-width: 767px) {
	.btn-bace1 { height: 46px; line-height: 46px; }
	.btn-bace4 { height: 45px; line-height: 45px; padding: 0 15px; }
	.btn-bace5 { height: 42px; line-height: 42px; }
}
@media only screen and (max-width: 480px) {
	.btn-bace5 { height: 40px; line-height: 40px; padding: 0 10px; }
	
}

/********** 카테고리 **********/

.cate-prog { color: #1c5ba5; background: #f3f7fa; }
.cate-wait { color: #844eaa; background: #f8f4fb; }
.cate-intr { color: var(--main-color); background: #f8fbf4; }
.cate-end { color: #666; background: #f7f7f7; }
@media only screen and (max-width: 767px) {
	.cate1 { font-size: 13px; }
	.cate2 { font-size: 13px; }
}

/********** 링크연결 버튼 **********/
.link-bt1 { display: inline-block; padding-right: 17px; font-size: 1.5rem; color: var(--gray-66); background: url(../img/common/link-bt1.png) right center no-repeat; }

/********** 더보기 버튼 **********/
.more-bt1 { position: relative; z-index: 0; display: flex; align-items: center; font-weight: 500; font-size: 1.5rem; color: var(--gray-66); text-transform: uppercase; }
.more-bt1:after { 
	content: "";
	display: block;
	width: 8px; height: 10px;
	margin-left: 7px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21.35 21.35'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; stroke: %233a3a3a; stroke-linecap: square; stroke-linejoin: round; stroke-width: 2.5px; %7D %3C/style%3E%3C/defs%3E%3Cline class='cls-1' x1='10.68' y1='20.1' x2='10.68' y2='1.25'/%3E%3Cline class='cls-1' x1='1.25' y1='10.68' x2='20.1' y2='10.68'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center center;
	transform: rotate(90deg);
	transition: all 0.4s;
}
.more-bt1:hover:after, 
.more-bt1:focus:after { 
	transform: rotate(-90deg);
}


/********** 첨부파일 **********/
.file-list1 {  }
.file-list1 li  { padding-left: 15px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 72'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23666; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='57 69 3 69 3 3 36 3 57 26 57 69'/%3E%3Cpolygon class='cls-1' points='57 26 36 26 36 3 57 26'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-size: 10px auto; background-position: left top;
}
.file-list1 li + li { margin-top: 5px; }
.file-list1 li > a { font-size: 1.4rem; }



/********** 이미지 **********/
.img-wrap img { max-width: 100%; }
.video-wrap video { max-width: 100%; }


/********** 텍스트 ...처리 **********/
.txt-over1 {display: -webkit-box; display: -ms-flexbox; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 1;} /* 1줄 */
.txt-over2 {display: -webkit-box; display: -ms-flexbox; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 2;} /* 2줄 */
.txt-over3 {display: -webkit-box; display: -ms-flexbox; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 3;} /* 3줄 */

/********** 텍스트 정렬 **********/
.text-lf {text-align: left;}
.text-ce {text-align: center;}
.text-rg {text-align: right;}

/********** font-weight **********/
.fw-300 {font-weight: 300;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}

/********** font-size **********/
.fz-15 { font-size: 1.5rem; }
.fz-14 { font-size: 1.4rem; }
.fz-13 { font-size: 1.3rem; }

/********** flex **********/
.flex {display: flex;}
.flex-shrink {flex-shrink: 0;}

/* 정렬 */
.flex-align-center {display: flex; align-items: center;}
.flex-justify-between {display: flex; justify-content: space-between;}
.flex-justify-between-center {display: flex; justify-content: space-between; align-items: center;}

/* gap */
.gap5 { gap: 5px; }
.gap10 { gap: 10px; }
.gap15 { gap: 15px; }
.gap20 { gap: 20px; }
.gap25 { gap: 25px; }
.gap30 { gap: 30px; }

/********** width **********/
.wh100p {width: 100%;}
.wh90p {width: 90%;}
.wh80p {width: 80%;}
.wh70p {width: 70%;}
.wh60p {width: 60%;}
.wh50p {width: 50%;}
.wh40p {width: 40%;}
.wh30p {width: 30%;}
.wh20p {width: 20%;}
.wh5p {width: 5%;}

/********** margin **********/
.mg0 {margin:0;}
/*** margin_top ***/
.mt-33 {margin-top:-33px;}
.mt0 {margin-top:0;}
.mt3 {margin-top:3px;}
.mt5 {margin-top:5px;}
.mt10 {margin-top:10px;}
.mt15 {margin-top:15px;}
.mt20 {margin-top:20px;}
.mt25 {margin-top:25px;}
.mt30 {margin-top:30px;}
.mt35 {margin-top:35px;}
.mt40 {margin-top:40px;}
.mt45 {margin-top:45px;}
.mt50 {margin-top:50px;}
.mt55 {margin-top:55px;}
.mt60 {margin-top:60px;}
.mt65 {margin-top:65px;}
.mt70 {margin-top:70px;}
.mt75 {margin-top:75px;}
.mt80 {margin-top:80px;}
.mt85 {margin-top:85px;}
.mt90 {margin-top:90px;}
.mt95 {margin-top:95px;}
.mt100 {margin-top:100px;}
/*** margin_bottom ***/
.mb0 {margin-bottom:0;}
.mb5 {margin-bottom:5px;}
.mb10 {margin-bottom:10px;}
.mb15 {margin-bottom:15px;}
.mb20 {margin-bottom:20px;}
.mb25 {margin-bottom:25px;}
.mb30 {margin-bottom:30px;}
.mb35 {margin-bottom:35px;}
.mb40 {margin-bottom:40px;}
.mb45 {margin-bottom:45px;}
.mb50 {margin-bottom:50px;}
.mb55 {margin-bottom:55px;}
.mb60 {margin-bottom:60px;}
.mb65 {margin-bottom:65px;}
.mb70 {margin-bottom:70px;}
.mb75 {margin-bottom:75px;}
.mb80 {margin-bottom:80px;}
.mb85 {margin-bottom:85px;}
.mb90 {margin-bottom:90px;}
.mb95 {margin-bottom:95px;}
.mb100 {margin-bottom:100px;}
/*** margin_left ***/
.ml0 {margin-left:0;}
.ml5 {margin-left:5px;}
.ml10 {margin-left:10px;}
.ml15 {margin-left:15px;}
.ml20 {margin-left:20px;}
.ml25 {margin-left:25px;}
.ml30 {margin-left:30px;}
.ml35 {margin-left:35px;}
.ml40 {margin-left:40px;}
.ml45 {margin-left:45px;}
.ml50 {margin-left:50px;}
.ml55 {margin-left:55px;}
.ml60 {margin-left:60px;}
.ml65 {margin-left:65px;}
.ml70 {margin-left:70px;}
.ml75 {margin-left:75px;}
.ml80 {margin-left:80px;}
.ml85 {margin-left:85px;}
.ml90 {margin-left:90px;}
.ml95 {margin-left:95px;}
.ml100 {margin-left:100px;}
/*** margin_right ***/
.mr0 {margin-right:0;}
.mr5 {margin-right:5px;}
.mr10 {margin-right:10px;}
.mr15 {margin-right:15px;}
.mr20 {margin-right:20px;}
.mr25 {margin-right:25px;}
.mr30 {margin-right:30px;}
.mr35 {margin-right:35px;}
.mr40 {margin-right:40px;}
.mr45 {margin-right:45px;}
.mr50 {margin-right:50px;}
.mr55 {margin-right:55px;}
.mr60 {margin-right:60px;}
.mr65 {margin-right:65px;}
.mr70 {margin-right:70px;}
.mr75 {margin-right:75px;}
.mr80 {margin-right:80px;}
.mr85 {margin-right:85px;}
.mr90 {margin-right:90px;}
.mr95 {margin-right:95px;}
.mr100 {margin-right:100px;}

@media only screen and (max-width: 560px) {
	.mt60 {margin-top: 30px;}
}

/******************** padding ********************/
.pd0 {padding:0;}
/*** padding_top ***/
.pt0 {padding-top:0;}
.pt5 {padding-top:5px;}
.pt10 {padding-top:10px;}
.pt15 {padding-top:15px;}
.pt20 {padding-top:20px;}
.pt25 {padding-top:25px;}
.pt30 {padding-top:30px;}
.pt35 {padding-top:35px;}
.pt40 {padding-top:40px;}
.pt45 {padding-top:45px;}
.pt50 {padding-top:50px;}
.pt55 {padding-top:55px;}
.pt60 {padding-top:60px;}
.pt65 {padding-top:65px;}
.pt70 {padding-top:70px;}
.pt75 {padding-top:75px;}
.pt80 {padding-top:80px;}
.pt85 {padding-top:85px;}
.pt90 {padding-top:90px;}
.pt95 {padding-top:95px;}
.pt100 {padding-top:100px;}
/*** padding_bottom ***/
.pb0 {padding-bottom:0;}
.pb5 {padding-bottom:5px;}
.pb10 {padding-bottom:10px;}
.pb15 {padding-bottom:15px;}
.pb20 {padding-bottom:20px;}
.pb25 {padding-bottom:25px;}
.pb30 {padding-bottom:30px;}
.pb35 {padding-bottom:35px;}
.pb40 {padding-bottom:40px;}
.pb45 {padding-bottom:45px;}
.pb50 {padding-bottom:50px;}
.pb55 {padding-bottom:55px;}
.pb60 {padding-bottom:60px;}
.pb65 {padding-bottom:65px;}
.pb70 {padding-bottom:70px;}
.pb75 {padding-bottom:75px;}
.pb80 {padding-bottom:80px;}
.pb85 {padding-bottom:85px;}
.pb90 {padding-bottom:90px;}
.pb95 {padding-bottom:95px;}
.pb100 {padding-bottom:100px;}
/*** padding_left ***/
.pl0 {padding-left:0;}
.pl5 {padding-left:5px;}
.pl10 {padding-left:10px;}
.pl15 {padding-left:15px;}
.pl17 {padding-left:17px;}
.pl20 {padding-left:20px;}
.pl25 {padding-left:25px;}
.pl30 {padding-left:30px;}
.pl35 {padding-left:35px;}
.pl40 {padding-left:40px;}
.pl45 {padding-left:45px;}
.pl50 {padding-left:50px;}
.pl55 {padding-left:55px;}
.pl60 {padding-left:60px;}
.pl65 {padding-left:65px;}
.pl70 {padding-left:70px;}
.pl75 {padding-left:75px;}
.pl80 {padding-left:80px;}
.pl85 {padding-left:85px;}
.pl90 {padding-left:90px;}
.pl95 {padding-left:95px;}
.pl100 {padding-left:100px;}
/*** padding_right ***/
.pr0 {padding-right:0;}
.pr5 {padding-right:5px;}
.pr10 {padding-right:10px;}
.pr15 {padding-right:15px;}
.pr17 {padding-right:17px;}
.pr20 {padding-right:20px;}
.pr25 {padding-right:25px;}
.pr30 {padding-right:30px;}
.pr35 {padding-right:35px;}
.pr40 {padding-right:40px;}
.pr45 {padding-right:45px;}
.pr50 {padding-right:50px;}
.pr55 {padding-right:55px;}
.pr60 {padding-right:60px;}
.pr65 {padding-right:65px;}
.pr70 {padding-right:70px;}
.pr75 {padding-right:75px;}
.pr80 {padding-right:80px;}
.pr85 {padding-right:85px;}
.pr90 {padding-right:90px;}
.pr95 {padding-right:95px;}
.pr100 {padding-right:100px;}