/* 공지사항 목록 */

/* 헤더 메뉴 항목 */
.headerMenu4 {
  color: var(--mainColor);
}

.headerMenu4 > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}
.headerMenu4:hover > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}

.headerMenu4 .subMenuLi:first-of-type > .subMenuDiv {
  background-color: var(--mainColor);
  color:var(--whiteColor);
}
.headerMenu4 .subMenuLi:first-of-type .subMenuUl > li:nth-child(2) > a {
  color: var(--mainColor);
}

/* 메뉴 항목 */
.asideMenu > li:first-child > span {
  background-color: var(--anColor);
}

.asideMenu > li:first-child > .asideSubMenu > li:first-child > a {
  color: var(--mainColor);
}
.asideMenu > li:first-child > .asideSubMenu > li:first-child > a::before {
  color: var(--mainColor);
}

.pageContents {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

/* 테이블 */
.noticeTable > table {
  font-size: 15px;
}

.noticeTable > table thead th {
  height: 50px;
  border-top: none;
  border-left: none;
  font-weight: 700;
}
.noticeTable > table tbody tr {
  height: 50px;
}
.noticeTable > table tbody tr:hover {
  background-color: var(--anColor);
}

/* 테이블 영역 */
.noticeTable > table tbody tr > td:first-child {
  width: 5%;
  border-left: none;
}
.noticeTable > table tbody tr > td:nth-child(2) {
  width: 10%;
}
.noticeTable > table tbody tr > td:nth-child(3) {
  width: 65%;
}
.noticeTable > table tbody tr > td:nth-child(4) {
  width: 10%;
  color: var(--txt9Color);
}
.noticeTable > table tbody tr > td:nth-child(5) {
  width: 10%;
  color: var(--txt9Color);
}

.tableTit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  gap: 5px;
  color: var(--txtColor);
}
.tableTit:hover {
  color: var(--mainColor)
}

.noticeCate {
  color: var(--txtGColor);
}

.imfor {
  color: var(--warningColor);
}

/* 모바일 사이드 메뉴 */
.sideNav > li:nth-child(4) .sideSubNav {
  display: flex;
}
.sideNav > li:nth-child(4) .sideSubNav > .sideSubNavLi:first-child .sideInnerNav {
  display: flex;
}
.sideNav > li:nth-child(4) .sideSubNav > .sideSubNavLi:first-child > .sideSubNavTop {
  background-color: var(--subColor);
  color: var(--mainColor);
}

/* 반응형 */
@media screen and (max-width: 1200px) {
  .boardTable > table {
    font-size: 13px;
  }

  .noticeTable > table tbody tr > td:nth-child(3) {
    width: 60%;
  }
  .noticeTable > table tbody tr > td:nth-child(5) {
    width: 15%;
  }
}
@media screen and (max-width: 800px) {
  .boardTable > table {
    font-size: 13px;
  }

  .imfor {
    width: fit-content;
    flex-shrink: 0;
  }
}


@media screen and (max-width: 600px) {
  .noticeTable > table tbody tr > td:first-child {
    width: 10%;
  }
  .noticeTable > table tbody tr > td:nth-child(2) {
    width: 15%;
  }
  .noticeTable > table tbody tr > td:nth-child(3) {
    width: 50%;
    padding: 0 10px;
  }
  .noticeTable > table thead tr > th:nth-child(4) {
    display: none;
  }

  .noticeTable > table tbody tr > td:nth-child(4) {
    display: none;
  }
  .noticeTable > table tbody tr > td:nth-child(5) {
    width: 25%;
  }
}

@media screen and (max-width: 500px) {
  .boardTable > table {
    font-size: 13px;
  }

  .tableTit {
    gap: 1px;
  }
}
