/* 권역별 집합연수 신청 */

/* 헤더 메뉴 항목 */
.headerMenu1 {
  color: var(--mainColor);
}

.headerMenu1 > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}
.headerMenu1:hover > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}

.headerMenu1 .subMenuLi:nth-of-type(2) > .subMenuDiv {
  background-color: var(--mainColor);
  color:var(--whiteColor);
}
.headerMenu1 .subMenuLi:nth-of-type(2) .subMenuUl > li:nth-child(3) > a {
  color: var(--mainColor);
}

/* 메뉴 항목 */
.asideMenu > li:nth-child(2) > span {
  background-color: var(--anColor);
}

.asideMenu > li:nth-child(2) > .asideSubMenu > li:nth-child(3) > a {
  color: var(--mainColor);
}
.asideMenu > li:nth-child(2) > .asideSubMenu > li:nth-child(3) > a::before {
  color: var(--mainColor);
}


/* 모바일 사이드 메뉴 */
.sideNav > li:first-child .sideSubNav {
  display: flex;
}
.sideNav > li:first-child .sideSubNav > .sideSubNavLi:nth-child(2) .sideInnerNav {
  display: flex;
}
.sideNav > li:first-child .sideSubNav > .sideSubNavLi:nth-child(2) > .sideSubNavTop {
  background-color: var(--subColor);
  color: var(--mainColor);
}
.sideNav > li:first-child .sideSubNav > .sideSubNavLi:nth-child(2) .sideInnerNav > li:nth-child(3) > a {
  color: var(--mainColor);
}

.pageContents {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.listTable > table thead th {
  border-top: none;
  height: 50px;
}
.listTable > table thead th:first-child {
  width: 5%;
  border-left: none;
}
.listTable > table thead th:nth-child(2) {
  width: 72%;
}
.listTable > table thead th:nth-child(3) {
  width: 8%;
}

.listTable > table tbody tr {
  height: 50px;
}
.listTable > table tbody td {
  border-left: none;
}

.listView {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--txtColor);
}

/* 반응형 */
@media screen and (max-width: 1200px) {
  .boardTable > table {
    font-size: 13px;
  }

  .listTable > table thead th:first-child {
    width: 10%;
  }
  .listTable > table thead th:nth-child(2) {
    width: 50%;
  }
  .listTable > table thead th:nth-child(3) {
    width: 15%;
  }
  .listTable > table thead th:nth-child(4) {
    width: 25%;
  }

}


