/*****************************/
/** Notice Archive          **/
/*****************************/

.notices-cat-area {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 2.5em;
}

.notice-cat-m-nav {
  padding: 1.5em;
  display: flex;
  justify-content: space-between;
}

.notice-cat-m-nav .current-cat-name {
  margin-bottom: 0;
}



ul.notices-cat-list > li {
  position: relative;
  padding: 0 3em;
}



ul.notices-cat-list > li > a {
  display: block;
  padding: 1.5em 0;
}

ul.notices-cat-list > li.current-item > a {
  color: #52549a;
}




.board-list {
  width: 100%;
  position: relative;
  padding-top: 2px;
  table-layout: fixed;
}

.board-list tr {
  width: 100%;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

.board-list thead th {
  border-bottom: 1px solid #ddd;
  border-top: 2px solid #666;
}

.board-list th {
  padding: 19px 10px;
  position: relative;
  font-size: 15px;
  text-align: center;
  font-weight: 700;
  vertical-align: middle;
}

.board-list .num {
    width: 8%;
    padding: 0;
}

.board-list .title {
    width: auto;
}

.board-list .cat {
  width: 15%;
}

.board-list td.cat {
  color: #52549a;
}

.board-list .date {
    width: 18%;
}

.board-list .files {
  width: 10%;
}

.board-list td.files {
  font-size: 1.15rem;
}

.board-list th:before {
  content: '';
  display: block;
  width: 1px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  background: ;
}

.board-list th:first-child:before {
  display: none;
}

.board-list tbody td {
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

.board-list td {
  padding: 19px 10px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

/*.board-list td a {
  color: #eaeaea;
}*/

.board-list td a:hover {
  color: #e94746;
}

.board-list td.title {
  text-align: left;
}

.board-list td.title a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}



.loco .wp-pagenavi {
  border-top: 0;
  clear: both;
  margin-bottom: 30px;
  padding-top: 1.5em;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  border: 0;
  /*color: #eaeaea;*/
}

.loco .wp-pagenavi a:hover, 
.loco .wp-pagenavi span.current {
  font-weight: 700;
}


@media all and (min-width: 981px) {
  .notice-cat-m-nav {
    display: none;
  }

  ul.notices-cat-list {
    display: flex;
    justify-content: center;
  }

  ul.notices-cat-list > li:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 10px;
    margin-top: -5px;
    background-color: #ddd;
  }

  ul.notices-cat-list > li:last-child:before {
    display: none;
  }

  ul.notices-cat-list > li.current-item:after {
    width: 100%;
  }

  ul.notices-cat-list > li:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #52549a;
    -webkit-transition: 300ms cubic-bezier(.4, 0, .2, 1);
    -ms-transition: 300ms cubic-bezier(.4, 0, .2, 1);
    transition: 300ms cubic-bezier(.4, 0, .2, 1);
  }

  ul.notices-cat-list > li:hover {
    color: #52549a;
  }

  ul.notices-cat-list > li:hover:after {
    width: 100%;
  }
}

@media all and (max-width: 980px) {
  .notice-cat-m-nav i .i-minus {
    display: none;
  }

  .notices-cat-list {
    display: none;
  }

  ul.notices-cat-list > li {
    border-top: 1px solid #eaeaea;
    padding: 0 1.5em;
  }

  .notice-search .searchandfilter ul {
    display: flex;
  }
}

@media all and (max-width: 767px) {
  .board-list .num {
    display: none;
  }

  .board-list th.title:before {
    display: none;
  }

  .board-list th,
  .board-list td {
    padding: 15px 6px;
    font-size: .85rem;
  }

  .board-list .cat {
    width: 30%;
  }

  .board-list .date,
  .board-list .files {
      display: none;
  }
}




/*****************************/
/** Notice Single           **/
/*****************************/


.notice-wrap {
  padding: 50px 0;
}

.single-con-wrap {
  padding-bottom: 5.8em;
}

.post-title-container .post-title-wrap {
  border-top: 2px solid #666;
  padding: 1.5em 2.4em;
  border-bottom: 1px solid #ddd;
}

.post-title-container .post-title-wrap .post-content-title {
  flex: 5;
  margin-bottom: 0;
}

.post-title-container .post-title-wrap p {
  flex: 1;
  text-align: right;
  margin-bottom: 0;
}

.entry-content .content-body {
  padding: 2.4em;
}

@media all and (min-width: 768px) {
  .post-title-container .post-title-wrap {
    display: flex;
    align-items: center;
  }

}

@media all and (max-width: 767px) {
  .post-title-container .post-title-wrap {
    padding: 1.5em 0;
  }

  .entry-content .content-body {
    padding: 2.4em 0;
  }

  .post-title-container .post-title-wrap .content-title {
    margin-bottom: 15px;
  }
}



