/* 기업 소개 영역 */

.bottomUl > li:nth-child(4) .bottomIconBox {
  background-color: var(--whiteColor);
}

/* 내용 영역 */
.infoContents {
  display: flex;
  flex-direction: column;
}

/* 내용 */
.infoInner {
  flex: 1;
}

.infoMoreTit {
  background-color: var(--backBlue);
  padding: 15px 0;
  text-align: center;
  font-size: 1.4rem;
  color: var(--mainColor);
  font-weight: 700;
}

/* 인사말 내용 */
.greetingInner {
  width: 100%;
  overflow: auto;
  padding: 10px;
}

/* 연혁 */
.historyInner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.historyCates {
  display: flex;
  align-items: center;
  justify-content: center;
}

.historyMenus {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.historyMenu {
  width: 33.3%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  color: var(--txtGColor);
}
.historyMenu.on {
  background-color: var(--hoverColor);
  color: var(--whiteColor);
}

.historyContents {
  overflow: auto;
  display: none;
  flex: 1;
  max-height: 600px;
}

.historyContents.on {
  display: block;
}


/* 연구성과 */
.researchInner {
  width: 100%;
  overflow: auto;
  padding: 10px;
}



/* 조직현황 */
.groupInner {
  width: 100%;
  overflow: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.groupList {
  display: flex;
  align-items: center;
}

.groupMenus {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: auto;
  scrollbar-width: none; /* 파이어폭스 */
  height: 50px;
}
.groupMenus::-webkit-scrollbar {
    display: none;
}


.groupMenus > li {
  width: auto;
  flex-shrink: 0;
  height: 45px;
  background-color: var(--whiteColor);
  color: var(--txtGColor);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  padding: 0 20px;
}

.groupMenus > li.on {
  background-color: var(--hoverColor);
  color: var(--whiteColor);
  font-weight: 600;
}


/* 내용 영역 */
.groupContent {
  display: none;
}
.groupContent.on {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 소속기관 */
.groupAddMore {
  width: 100%;
  background-color: var(--backBlue);
  border-radius: 5px;
  border: 1px solid var(--hoverColor);
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
}

.groupTit {
  font-size: 1.3rem;
  color: var(--mainColor);
  font-weight: 700;
}

.groupAddList {
  width: 100%;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.groupAddBox {
  font-size: 1.2rem;
  padding: 5px 0;
  display: flex;
  align-items: center;
  color: var(--txtColor);
  font-weight: 500;
  gap: 5px;
}
.groupAddBox::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: var(--mainColor);
}

.groupMoreBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.groupMoreTit {
  color: var(--hoverColor);
  font-weight: 600;
  font-size: 1.2rem;
}

.groupMoreTxt {
  font-size: 1.1rem;
  color: var(--txtColor);
  font-weight: 500;
}

.groupMoreTxt textarea {
  width: 100%;
  border: none;
  font-size: 1.1rem;
  color: var(--txtColor);
  font-weight: 500;
}