@charset "UTF-8";

:root {
   --bs-main-bg-color: #0066a4; /* 홈페이지 메인 컬러(탑메뉴, 메뉴 호버, 전체메뉴) */
   --bs-hacc: #6b9bb2;
}

* {
   padding: 0;
   margin: 0;
   box-sizing: border-box;
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
}

html,
body {
   font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
   font-size: 16px;
   color: #000;
   font-weight: 400;
   height: 100%;
}

ul,
ol,
li {
   list-style: none;
}

a {
   text-decoration: none;
   color: #000;
}

a:hover {
   text-decoration: none;
}

a:visited {
   text-decoration: none;
}

a:active {
   text-decoration: none;
}

table {
   border-collapse: collapse;
}

input:-ms-input-placeholder {
   color: #f00;
}

input::-webkit-input-placeholder {
   color: #f00;
}

input::-moz-placeholder {
   color: #f00;
}

input::-moz-placeholder {
   color: #f00;
}

[tabindex='-1']:focus {
   outline: 0 !important;
}

input[type='radio'],
input[type='checkbox'] {
   box-sizing: border-box;
   padding: 0;
}

.text_str {
   text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
   -webkit-appearance: button;
   border: none;
}

button,
input[type='button'] {
   margin: 0;
   padding: 0;
   border: none;
   background: none;
   font: inherit;
   font-size: 1em;
}

img {
   vertical-align: top;
}

.b1r {
   border: 1px solid red !important;
}

.b1b {
   border: 1px solid #000000 !important;
}

.b1d {
   border: 1px solid #dddddd;
}

.br1d {
   border-right: 1px solid #dddddd;
}

.bb1e {
   border-bottom: 1px solid #eeeeee;
}

/**************************************************/
/****************** 게시판 공통 S ******************/
/**************************************************/
/* 게시판 공통  */
#bo_list_total {
   font-size: 14px;
}

.jsBoardBtn {
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   background-color: #6c757d;
   color: #fff;
   padding: 0.5rem 0.75rem;
   min-width: 50px;
   min-height: 38px;
   border-radius: 5px;
}

.jsBoardBtn:hover {
   color: #fff;
}

.jsBoardBtnList {
   background-color: #6c757d;
}

.jsBoardBtnWrite {
   background-color: var(--bs-blue);
}

.jsBoardBtnUpdate {
   background-color: #343a40;
}

.jsBoardBtnDel {
   background-color: #343a40;
}

.jsBoardBtnSeldel {
   background-color: #ff0000;
}

.jsBtn {
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   background-color: #6c757d;
   color: #fff;
   padding: 10px;
   border-radius: 5px;
}

.jsBtn:hover {
   color: #fff;
}

.jsBtnList {
   background-color: #6c757d;
}

.jsBtnWrite {
   background-color: #17a2b8;
}

.jsBtnUpdate {
   background-color: #343a40;
}

.jsBtnDel {
   background-color: #343a40;
}

.jsBtnSeldel {
   background-color: #6c757d;
}
.jsBoardSearchBtn {
   min-width: 38px;
   min-height: 38px;
   border-radius: 4px;
   background-color: #0066a4;
}
.jsBoardSearchBtn i {
   font-size: 17px;
   color: #fff;
}

/* 기본테이블 */
.jsTable table {
   width: 100%;
   border-collapse: collapse;
   border-spacing: 0 5px;
   background: #fff;
   border-top: 1px solid #666666;
   border-bottom: 1px solid #dedede;
}
.jsTable caption {
   padding: 10px 0;
   font-weight: bold;
   text-align: left;
}
.jsTable {
   margin: 0 0 10px;
}
.jsTable caption {
   padding: 0;
   font-size: 0;
   line-height: 0;
   overflow: hidden;
}
.jsTable thead {
   background: #f9fafb;   
}
.jsTable thead th {
   padding: 20px 0;
   font-weight: 500;
   text-align: center;
   border-bottom: 1px solid #dedede;
   height: 40px;
   color: #444444;
   background: url('/img/bg_jsTh.jpg') no-repeat right center;
}
.jsTable thead th:last-child {
   background: none;
}
.jsTable thead th input {
   vertical-align: middle;
}
@media (max-width: 768px) {
   .jsTable thead th {
      background: none;
   }
}

/* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.jsTable tfoot td,
.jsTable tfoot th {
   padding: 10px 0;
   border-top: 1px solid #c1d1d5;
   border-bottom: 1px solid #c1d1d5;
   background: #d7e0e2;
   text-align: center;
}
.jsTable tbody th {
   padding: 8px 0;
   border-bottom: 1px solid #dedede;
}
.jsTable td {
   color: #666;
   padding: 10px 5px;
   font-size: 16px;
   border-top: 1px solid #dedede;
   border-bottom: 1px solid #dedede;
   line-height: 1.4em;
   height: 60px;
   word-break: break-all;
}
.jsTable tbody tr:hover td {
   background: #fafafa;
}
.jsTable a:hover {
   text-decoration: underline;
}
/* paging S */
.pg_wrap {
   clear: both;
   margin: 30px 0;
   text-align: center;
}

.pg_wrap:after {
   display: block;
   visibility: hidden;
   clear: both;
   content: '';
}

.pg {
}

.pg_current,
.pg_page {
   display: inline-block;
   vertical-align: middle;
}

.pg a:focus,
.pg a:hover {
   text-decoration: none;
}

.pg_page {
   color: #555;
   font-size: 14px;
   height: 1.5rem;
   line-height: 1.5rem;
   padding: 0 5px;
   min-width: 1.5rem;
   text-decoration: none;
}

@media (min-width: 1200px) {
   .pg_page {
      height: 36px;
      line-height: 36px;
      min-width: 36px;
   }
}

.pg_page:hover {
   background-color: #ddd;
}

.pg_arrow {
   background-color: #fff;
}

.pg_start {
   text-indent: -999px;
   overflow: hidden;
   background: url('../img/btn_first.jpg') no-repeat 50% 50% #fff;
   padding: 0;
   margin-right: 10px;
}

.pg_prev {
   text-indent: -999px;
   overflow: hidden;
   background: url('../img/btn_prev.jpg') no-repeat 50% 50% #fff;
   padding: 0;
   margin-right: 20px;
}

.pg_next {
   text-indent: -999px;
   overflow: hidden;
   background: url('../img/btn_next.jpg') no-repeat 50% 50% #fff;
   padding: 0;
   margin-left: 20px;
}

.pg_end {
   text-indent: -999px;
   overflow: hidden;
   background: url('../img/btn_end.jpg') no-repeat 50% 50% #fff;
   padding: 0;
   margin-left: 10px;
}

.pg_end:hover,
.pg_next:hover,
.pg_prev:hover,
.pg_start:hover {
   background-color: #fafafa;
}

.pg_current {
   display: inline-block;
   background: var(--bs-hacc);
   color: #fff;
   font-weight: bold;
   height: 1.5rem;
   line-height: 1.5rem;
   padding: 0 10px;
   min-width: 1.5rem;
}

@media (min-width: 1200px) {
   .pg_current {
      height: 36px;
      line-height: 36px;
      min-width: 36px;
   }
}

/* paging E */

/**************************************************/
/****************** 게시판 공통 E ******************/
/**************************************************/

@media (max-width: 576px) {   
   .br_m {
      display: none;
   }
}


.back-to-top {
	position: fixed;
	display: none;
	background: #f04219;
	color: #fff;   
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 1;
	font-size: 12px;
	border-radius: 50%;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s;
	z-index: 99999999911;
   display: flex;   
   justify-content: center;
   align-items: center;
}


/* 하단 footer S */
#footer {
   width: 100%;
   min-height: 222px;
   border-top: 1px solid #dee2e6;
}
#footer .wrap {
   display: flex;
}

/* 하단 footer E */

/********* font-weight S *********/
.fw-100 {
   font-weight: 100 !important;
}
.fw-200 {
   font-weight: 200 !important;
}
.fw-300 {
   font-weight: 300 !important;
}
.fw-400 {
   font-weight: 400 !important;
}
.fw-500 {
   font-weight: 500 !important;
}
.fw-600 {
   font-weight: 600 !important;
}
.fw-700 {
   font-weight: 700 !important;
}
.fw-800 {
   font-weight: 800 !important;
}
.fw-900 {
   font-weight: 900 !important;
}
/********* font-weight E *********/




 /* 팝업레이어 */
#hd_pop {
	z-index: 1000;
	position: relative;
	margin: 0 auto;
	height: 0;
}

#hd_pop h2 {
	position: absolute;
	font-size: 0;
	line-height: 0;
	overflow: hidden
}

.hd_pops {
	position: absolute;
	border: 1px solid #e9e9e9;
	background: #fff;
}

.hd_pops2 {
	position: absolute;
	background: #fff;
}
.hd_pops img {
	max-width: 100%
}
.hd_pops2 img {
	max-width: 100%;	
	height: auto;
}

.hd_pops_con2 {
	border:10px solid #e7eeff; 
	padding:10px;
	
}
.hd_pops_con .title_wrap {
	display:flex;	
	justify-content:space-between;
	border-bottom:2px solid #e7eeff;
	margin-bottom:10px;
	min-height:70px;
	padding-bottom:10px;
	font-size: 24px;
	font-weight: 700;
	color: #ff0000;
}
.hd_pops_con .title_wrap h1 {
	align-self:flex-end;
}
.hd_pops_con .title_wrap h5 {
	font-size:12px;
	font-weight: 400;
	color: #000;
	align-items:flex-start;
}

.hd_pops_footer {
	padding: 0;
	background: #000;
	color: #fff;
	text-align: left;
	position: relative;	
}

.hd_pops_footer:after {
	display: block;
	visibility: hidden;
	clear: both;
	content: ""
}

.hd_pops_footer button {
	padding: 10px;
	border: 0;
	color: #fff
}

.hd_pops_footer .hd_pops_reject {
	background: #000;
	text-align: left
}

.hd_pops_footer .hd_pops_close {
	background: #393939;
	position: absolute;
	top: 0;
	right: 0
}

.ff-montserrat {
   font-family: 'Montserrat',sans-serif;
}
.fc-0066b3 {
   color: #0066b3;
}
.fc-333333 {
   color: #333333;
}
.fc-666666 {
   color: #666666;
}
.fc-0066a4 {
   color: #0066a4;
}
.border-dedede {
   border: 1px solid #dedede;
}
.border-white {
   border: 1px solid #ffffff;
}

/********* font-size S *********/
.fs-12 {
   font-size: 12px !important;
}
.fs-13 {
   font-size: 13px !important;
}
.fs-14 {
   font-size: 14px !important;
}
.fs-15 {
   font-size: 15px !important;
}
.fs-16 {
   font-size: 16px !important;
}
.fs-17 {
   font-size: 17px !important;
}
.fs-18 {
   font-size: 18px !important;
}
.fs-19 {
   font-size: 19px !important;
}
.fs-20 {
   font-size: 20px !important;
}
.fs-21 {
   font-size: 21px !important;
}
.fs-22 {
   font-size: 22px !important;
}
.fs-23 {
   font-size: 23px !important;
}
.fs-24 {
   font-size: 24px !important;
}
.fs-25 {
   font-size: 25px !important;
}
.fs-26 {
   font-size: 26px !important;
}
.fs-27 {
   font-size: 27px !important;
}
.fs-28 {
   font-size: 28px !important;
}
.fs-29 {
   font-size: 29px !important;
}
.fs-30 {
   font-size: 30px !important;
}
.fs-31 {
   font-size: 31px !important;
}
.fs-32 {
   font-size: 32px !important;
}
.fs-33 {
   font-size: 33px !important;
}
.fs-34 {
   font-size: 34px !important;
}
.fs-35 {
   font-size: 35px !important;
}
.fs-36 {
   font-size: 36px !important;
}
.fs-37 {
   font-size: 37px !important;
}
.fs-38 {
   font-size: 38px !important;
}
.fs-39 {
   font-size: 39px !important;
}
.fs-40 {
   font-size: 40px !important;
}
.fs-41 {
   font-size: 41px !important;
}
.fs-42 {
   font-size: 42px !important;
}
.fs-48 {
   font-size: 48px !important;
}
.fs-54 {
   font-size: 54px !important;
}
.fs-60 {
   font-size: 60px !important;
}
.fs-72 {
   font-size: 72px !important;
}
/********* font-size E *********/