@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul, li {
  list-style: none;
}
a {
  text-decoration: none;
}
body {
  width: 100%;
  font-family: 'Noto Sans KR';
}

img {
  width: 100%;
}

/* 영역 구분 */
.frame {
  width: 100%;
}
.frameInner {
  width: 100%;
  display: flex;
}

/* 사이드 메뉴 */
aside {
  width: 15%;
  min-height: 100vh;
  background-color: #006699;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 60%;
  margin: 20px 0;
}

.menuBar {
  width: 100%;
  height: 100%;
}

/* 메뉴 스타일 */
.categoryMenu {
  width: 100%;
  height: 55px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  justify-content: space-between;
}

.categoryMenuDiv {
  display: flex;
  align-items: center;
  gap: 10px;
}

.categoryIcon {
  width: 35px;
  height: 35px;
}

.categoryBox > i {
  font-size: 18px;
}

/* 하위메뉴 */
.subMenu > li {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  background-color: #DCE6F2;
  font-size: 15px;
}
.subMenu a {
  display: block;
  width: 100%;
  height: 50px;
  color: #333;
  font-weight: 600;
}

.subMenu > li:hover > a {
  color: #006699;
}

.subMenu  {
  display: none;
}
.category > li.on .subMenu {
  display: block;
}

/* 페이지 오른쪽 영역 */
.pageInner {
  width: 85%;
}

/* 헤더 */
header {
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #888;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admins {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admins > span {
  font-size: 15px;
  color: #222;
  font-weight: 500;
}

.logout {
  width: 85px;
  height: 30px;
  background-color: #333;
  line-height: 30px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
}

.pageTit {
  font-size: 18px;
  color: #222;
  font-weight: 700;
}

/* 메인 콘텐츠 영역 */
.main {
  width: 100%;
  height: calc(100vh - 50px);
  overflow-y: auto;
  padding: 20px;
}

/* 첫 화면 텍스트 */
.main_first {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.main_first > p:first-child {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}
.main_first > p:nth-child(2) {
  font-size: 18px;
  color: #888;
}