/* Search */
.search {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.search form {
  max-width: 485px;
  width: 100%;
}

.search .search-inner {
  width: 100%;
}

.search .search-input {
  position: relative;
  width: 100%;
  height: 60px;
  padding-right: 80px;
  border-radius: 100px;
  border:1px solid #b3b3b3;
  overflow: hidden;
}

.search .search-input input {
  width: 100%;
  height: 100%;
  padding:0px 30px;
  font-size: 1.8rem;
}

.search .search-input button {
  display:flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:50%;
  right: 10px;
  transform: translateY(-50%);
  width: 40px;
  height:40px;
  border-radius: 50%;
  background-color:#F5F5F5;
  font-size: 0px;
}

.search .search-input button::before {
  content:"";
  display: block;
  width: 100%;
  height: 100%;
  background: url('/en/asset/img/icon/ico_search.png') no-repeat center;
}

@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;
  }

  .search .search-input button {
    width: 36px;
    height: 36px;
  }

  .search .search-input button::before {
    background-size: auto 23px;
  }
}
@media screen and (max-width:768px) {
  .search .search-input {
    height: 44px;
  }

  .search .search-input input {
    font-size: 1.4rem;
  }

  .search .search-input button {
    right: 6px;
    width: 32px;
    height: 32px;
  }
  
  .search .search-input button::before {
    background-size: auto 21px;
  }
}
@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;
  }

  .search .search-input button {
    width: 28px;
    height: 28px;
  }

  .search .search-input button::before {
    background-size: auto 17px;
  }
}


/* 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:35px;
  height:35px;
	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:#315CA8;
}

.pagination a.pagination-prev,
.pagination a.pagination-next {
  background-color:#F5F5F5;
}

.pagination a.pagination-prev {
  margin-right: 20px;
  background-image: url('/en/asset/img/bbs/page_btn_prev.png');
}

.pagination a.pagination-next {
  margin-left: 20px;
  background-image: url('/en/asset/img/bbs/page_btn_next.png');
}


@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,
.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:#315CA8;
}

.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.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 0px;
  border-bottom: 1px solid #D9D9D9;
}

.bbs-view-head .data {
  position: relative;
  padding-left: 30px;
}

.bbs-view-head .data::before {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left:0;
  transform: translateY(-50%);
  width: 20px;
  height: 18px;
  background: url('/en/asset/img/icon/ico_time.png') no-repeat center;
}

.bbs-view-area {
  min-height: 380px;
  padding: 30px 0px;
}

.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('/en/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;
  margin-top: 40px;
}

.bbs-view-nav .nav-prev,
.bbs-view-nav .nav-next {
  max-width: 430px;
  width: 100%;
}

.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('/en/asset/img/bbs/view_btn_prev.png');
}

.bbs-view-nav .nav-next i {
  background-position:right center;
  background-image: url('/en/asset/img/bbs/view_btn_next.png');
}

.bbs-view-nav .nav-prev span,
.bbs-view-nav .nav-next span {
  display: block;
  margin: 20px 0px;
}

.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-prev {
  left: 0;
}

.bbs-view-nav .nav-next {
  right: 0;
  text-align: right;
}

.bbs-view-nav .nav-back {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 320px;
  height: 70px;
  background-color: #315CA8;
  font-size: 2rem;
  font-weight: 700;
  color:#fff;
  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 0px;
  }

  .bbs-view-head .data {
    padding-left: 20px;
  }

  .bbs-view-head .data::before {
    width: 16px;
    height: 14px;
    background-size: auto 14px;
  }

  .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 .data::before {
    width: 14px;
    height: 12px;
    background-size: auto 12px;
  }

  .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: 14px 0px;
  }

  .bbs-view-head .data {
    padding-left: 14px;
  }

  .bbs-view-head .data::before {
    width: 12px;
    height: 10px;
    background-size: auto 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) {

}