/* Search */
.search {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.search form {
  width: 485px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search .search-inner {
  width: calc(68% - 5px);
}

.search .search-input {
  position: relative;
  width: 100%;
  height: 50px;
  padding-right: 48px;
  border:1px solid #b3b3b3;
  overflow: hidden;
}

.search .search-input input {
  width: 100%;
  height: 100%;
  padding:0px 30px;
  border-radius: 0;
  font-size: 1.8rem;
  border: none;
}

.search .search-input button {
  display:flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  aspect-ratio: 1/1;
  background-color:#245632;
  font-size: 0px;
}

.search .search-input button::before {
  content:"";
  display: block;
  width: 100%;
  height: 100%;
  background: url('/asset/icon/bbs-search.png') no-repeat center;
}

.search .search-select{
  height: 100%;
  width: calc(32% - 5px);

}
.search .search-select select{
  width: 100%;
  height: 100%;
  border-radius: 0;
  border-color: #C9C9C9;
  background-image: url(/asset/icon/bbs-arw.png);
  font-size: 18px;
}

@media screen and (max-width:1200px) {
  .search form {
    max-width: 420px;
  }
  
  .search .search-input input {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .search {
    margin-bottom: 28px;
  }

  .search form {
    max-width: 360px;
  }

  .search .search-input {
    height: 50px;
    padding-right: 60px;
  }

  .search .search-input input {
    padding: 0px 20px;
  }


}
@media screen and (max-width:768px) {
  .search .search-input {
    height: 44px;
  }

  .search .search-input input {
    font-size: 1.4rem;
  }


  .search .search-select select{
    font-size: 1.4rem;
  }
}
@media screen and (max-width:576px) {
  .search {
    margin-bottom: 20px;
  }

  .search form {
    max-width: 100%;
  }

  .search .search-input {
    height: 38px;
    padding-right: 50px;
  }

  .search .search-input input {
    padding: 0px 16px;
    font-size: 1.3rem;
  }
}


/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:80px;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:32px;
  height:32px;
	margin:0px 4px;
  border-radius: 50%;
  background-repeat:no-repeat;
  background-position:center;
  background-color:transparent;
  text-align: center;
  font-size:1.8rem;
  transition:all ease-out .15s;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination a.current {
	font-weight: 800;
  color:#245632;
}

.pagination a.page-arw {
  width: 12px;
  padding: 0 5px;
}


.pagination a.pagination-prev {
  background-image: url('/asset/img/bbs/page_btn_prev.png');
}
.pagination a.pagination-prev-two {
  background-image: url('/asset/img/bbs/page_btn_prev02.png');
  width: 15px;
}

.pagination a.pagination-next {
  background-image: url('/asset/img/bbs/page_btn_next.png');
}
.pagination a.pagination-next-two {
  background-image: url('/asset/img/bbs/page_btn_next02.png');
  width: 15px;
}

@media screen and (max-width:1200px) {
  .pagination a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .pagination {
    margin-top: 60px;
  }

  .pagination a {
    width: 30px;
    height: 30px;
    background-size: auto 10px;
  }

  .pagination a.pagination-prev {
    margin-right: 14px;
  }

  .pagination a.pagination-next {
    margin-left: 14px;
  }
}
@media screen and (max-width:768px) {
  .pagination {
    margin-top: 40px;
  }

  .pagination a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width:576px) {
  .pagination {
    margin-top:30px;
  }

  .pagination a {
    width: 28px;
    height: 28px;
    margin: 0px 2px;
    font-size: 1.3rem;
  }

  .pagination a.pagination-prev {
    margin-right: 8px;
  }

  .pagination a.pagination-next {
    margin-left: 8px;
  }
}


/* News List */
.bbs-news .table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #898989;
}

.bbs-news .table tr {
  border-bottom: 1px solid #D9D9D9;
}

.bbs-news .table th{
  background-color: #edf1ef;
}
.bbs-news .table th,
.bbs-news .table td {
  height: 60px;
  padding: 10px;
  font-size: 1.8rem;
}

.bbs-news .table td a {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bbs-news .table tr.tr-notice {
  background-color: #EBEFF7;
}

.bbs-news .table tr.tr-notice .no {
  font-weight: 700;
  color:#245632;
}

.bbs-news .table tr.table-message .txt {
  text-align: center;
  padding: 130px 20px;
}

.bbs-news .table tr.table-message .txt p {
  font-size: 1.8rem;
}

@media screen and (max-width:1200px) {
  .bbs-news .table th,
  .bbs-news .table td {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-news .table th, 
  .bbs-news .table td {
    height: 50px;
    padding: 6px;
  }
}
@media screen and (max-width:768px) {
  .bbs-news .table thead {
    display: none;
  }

  .bbs-news .table {
    display: block;
  }

  .bbs-news .table tbody {
    display: block;
  }

  .bbs-news .table tr {
    display: flex;
    flex-wrap: wrap;
    padding: 6px 4px;
  }

  .bbs-news .table th,
  .bbs-news .table td {
    position: relative;
    height: auto;
    padding: 4px 6px;
    font-size: 1.4rem;
  }

  .bbs-news .table td.no {
    order: 2;
  }

  .bbs-news .table td.no::after {
    content: "";
    display: block;
    position: absolute;
    top:50%;
    right:0;
    transform: translateY(-50%);
    width: 1px;
    height:10px;
    background-color:#999;
  }

  .bbs-news .table td.subject {
    width: 100%;
    order: 1;
  }
  .bbs-news .table td.name{
    order: 4;
  }
  .bbs-news .table td.data {
    order: 3;
  }
}
@media screen and (max-width:576px) {
  .bbs-news .table tr {
    padding: 4px 2px;
  }

  .bbs-news .table th,
  .bbs-news .table td {
    font-size: 1.3rem;
  }
}


/* Board View */
.bbs-view {
  border-top: 3px solid #898989 ;
}

.bbs-view-head {
  padding: 30px 110px;
  border-bottom: 1px solid #D9D9D9;
  background-color: #EDF1EF;
  text-align: center;
  position: relative;
}

.bbs-view-head .data {
  position: absolute;
  right: 0;
  top: 35px;
  width: 110px;
  text-align: left;
}

/* .bbs-view-head .data::before {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left:0;
  transform: translateY(-50%);
  width: 20px;
  height: 18px;
  background: url('/asset/img/icon/ico_time.png') no-repeat center;
} */

.bbs-view-area {
  min-height: 380px;
  padding: 20px;
}

.bbs-view-file {
  padding:20px 0px;
  border-bottom: 1px solid #D9D9D9;
}

.bbs-view-file .file {
  padding: 20px 30px;
  border-radius: 10px;
  background-color: #F5F5F5;
}

.bbs-view-file .file a {
  display: flex;
  align-items: center;
  gap:20px;
}

.bbs-view-file .file i {
  display: block;
  width: 20px;
  height:20px;
  background: url('/asset/img/icon/ico_file.png') no-repeat center;
}

.bbs-view-file .file span {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: calc(100% - 40px);
}

.bbs-view-nav {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 40px;
  border-top: 1px #c9c9c9 solid;
}

.bbs-view-nav .nav-prev,
.bbs-view-nav .nav-next {
  max-width: 150px;
  width: 100%;
  background-color: #EDF1EF;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.bbs-view-nav .nav-prev i,
.bbs-view-nav .nav-next i {
  display: inline-block;
  width: 34px;
  height: 16px;
  background-repeat: no-repeat;
}

.bbs-view-nav .nav-prev i {
  background-position:left center;
  background-image: url('/asset/img/bbs/view_btn_prev.png');
}

.bbs-view-nav .nav-next i {
  background-position:right center;
  background-image: url('/asset/img/bbs/view_btn_next.png');
}

.bbs-view-nav .nav-prev span,
.bbs-view-nav .nav-next span {
  display: block;
}

.bbs-view-nav .nav-prev p,
.bbs-view-nav .nav-next p {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
  white-space: nowrap;
}

.bbs-view-nav .nav-back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 60px;
  background-color: #245632;
  transition: var(--transition-basic);
}

@media screen and (max-width:1200px) {
  .bbs-view-nav .nav-prev,
  .bbs-view-nav .nav-next {
    max-width: 320px;
  }

  .bbs-view-nav .nav-back {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-view-head {
    padding: 20px 110px;
  }

  .bbs-view-area {
    min-height: 300px;
    padding: 20px 0px;
  }

  .bbs-view-file {
    padding: 14px 0px;
  }

  .bbs-view-file .file {
    padding: 14px 20px;
  }

  .bbs-view-file .file a {
    gap:12px;
  }

  .bbs-view-file .file i {
    width: 14px;
    height: 14px;
    background-size: auto 14px;
  }

  .bbs-view-file .file span {
    width: calc(100% - 26px);
  }

  .bbs-view-nav {
    margin-top: 30px;
  }

  .bbs-view-nav .nav-prev, .bbs-view-nav .nav-next {
    max-width: 260px;
  }

  .bbs-view-nav .nav-prev i, .bbs-view-nav .nav-next i {
    width: 24px;
    height: 12px;
    background-size: auto 12px;
  }

  .bbs-view-nav .nav-prev span, .bbs-view-nav .nav-next span {
    margin: 14px 0px;
  }

  .bbs-view-nav .nav-back {
    max-width: 240px;
    height: 60px;
  }
}
@media screen and (max-width:768px) {
  .bbs-view-head{
    padding: 20px;
  }
  .bbs-view-head .data{
    position: unset;
    width: 100%;
    text-align: right;
    margin-top: 10px;
  }
  .bbs-view-file .file a {
    gap:8px;
  }

  .bbs-view-file .file span {
    width: calc(100% - 22px);
  }

  .bbs-view-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap:20px;
  }

  .bbs-view-nav .nav-prev, .bbs-view-nav .nav-next {
    max-width: none;
    width: calc(50% - 10px);
    order: 1;
  }

  .bbs-view-nav .nav-back {
    order: 3;
    position: relative;
    left: unset;
    bottom: unset;
    transform: none;
    max-width: 200px;
    height: 54px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-view-head{
    padding: 10px;
  }
  .bbs-view-area {
    padding: 14px 0px;
  }

  .bbs-view-file {
    padding: 10px 0px;
  }

  .bbs-view-file .file {
    padding: 10px 14px;
  }

  .bbs-view-file .file a {
    gap:6px;
  }

  .bbs-view-file .file i {
    width: 12px;
    height: 12px;
    background-size: auto 12px;
  }

  .bbs-view-file .file span {
    width: calc(100% - 18px);
  }

  .bbs-view-nav {
    margin-top: 20px;
  }

  .bbs-view-nav .nav-prev i, .bbs-view-nav .nav-next i {
    height: 8px;
    background-size: auto 8px;
  }

  .bbs-view-nav .nav-prev span, .bbs-view-nav .nav-next span {
    margin: 10px 0px;
  }

  .bbs-view-nav .nav-back {
    max-width: 140px;
    height: 40px;
    font-size: 1.4rem;
  }
}


@media screen and (max-width:1400px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}

.bbs-file-area{
  padding: 20px 0;
  border-top: 1px solid #dcdcdc;
}
.bbs-file-area .down-btn{
  display: flex;
  align-items: center;

}
.bbs-file-area .down-btn{
  display: flex;
  align-items: center;
  gap: 10px;
}
.bbs-file-area .down-btn .i-box{
  width: 27px;
  min-width: 27px; 
  aspect-ratio: 1/1;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: #0065a3;
}
.bbs-file-area .down-btn + .down-btn{
  margin-top: 5px;
}


.bbs-file-area .down-btn .p-box{
  width: calc(100% - 37px);
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden; 
}


/* Board Slide */
/* Facility */
.facility .bd {
	max-width:1000px;
	width: 100%;
	margin:0 auto;
}
.bbs-slide .prev,
.bbs-slide .next {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	width: 56px;
	height:56px;
	border-radius:50%;
	background-color: #676767;
	transition: all .15s ease;
	cursor: pointer;
}

.bbs-slide .prev {
	left:-110px;
}

.bbs-slide .next {
	right:-110px;
}

.bbs-slide .prev::before,
.bbs-slide .next::before {
	content: "";
	display: block;
	width:28px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: center;
}

.bbs-slide .prev::before {
	background-image: url('/asset/img/bbs/slide_prev.png');
}

.bbs-slide .next::before {
	background-image: url('/asset/img/bbs/slide_next.png');
}

.bbs-slide .slide-pagination {
	position: relative;
	top:unset;
	left: unset;
	right: unset;
	bottom: unset;
	transform: none;
	width: 100%;
	height:4px;
	background-color: #cfd2d9;
}

.bbs-slide .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background-color: #245647;
}

.bbs-slide .bbs-main-swiper {
	border-radius:10px;
	overflow: hidden;
}

.bbs-slide .bbs-main-swiper .swiper-wrapper,
.bbs-slide .bbs-main-swiper .swiper-slide {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.bbs-slide .bbs-main-swiper .thumb {
	position: relative;
	width:100%;
	height:0;
	padding-top: calc(700/1000*100%);
	overflow: hidden;
}

.bbs-slide .bbs-main-swiper .thumb .txt {
	position: absolute;
	left:0;
	bottom:0;
	width: 100%;
	padding: 16px 20px;
	background-color: rgba(0,0,0,.5);
	z-index:1;
}

.bbs-slide .bbs-main-swiper .thumb img {
	display: block;
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width: 100%;
	height:100%;
}

.bbs-slide .bbs-sub-swiper {
	overflow: hidden;
}

.bbs-slide .bbs-sub-swiper .thumb {
	position: relative;
	width:100%;
	height:0;
	padding-top: calc(134/192*100%);
	border-radius:10px;
	overflow: hidden;
	background-color: #000;
	cursor: pointer;
}

.bbs-slide .bbs-sub-swiper .thumb::before {
	content: "";
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	box-shadow:0 0 0 2px #245647 inset;
	transition: all .15s ease;
	border-radius:10px;
	opacity:0;
	visibility: hidden;
	z-index:2;
	pointer-events: none;
}

.bbs-slide .bbs-sub-swiper .thumb img {
	display: block;
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width: 100%;
	height:100%;
	pointer-events: none;
	transition: all .15s ease;
}

.bbs-slide .bbs-sub-swiper .swiper-slide-thumb-active .thumb::before {
	opacity: 1;
	visibility: visible;
}

.bbs-slide .bbs-sub-swiper .swiper-slide-thumb-active .thumb img {
	opacity: .4;
}

@media screen and (min-width:1201px) {
	.bbs-slide .prev:hover,
	.bbs-slide .next:hover {
		background-color: #245647;
	}
}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}