.header-inner {
  background-color: #fff;
}
.menu-bar {
  position: fixed;
  width: 100%;
  height: 60px;
  margin-top: 100px;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  background-color: #f4f4f4;
}
section {
  padding-top: 370px;
  /* height: 100vh; */
}
section > .inner > h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0em;
  margin-bottom: 30px;
}
section > .inner > h3 {
  font-size: 26px;
  font-weight: bold;
  color: #b2b2b2;
  letter-spacing: 0em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
section > .inner > h3 a {
  font-size: 18px;
  font-weight: 800;
  color: #006468;
  letter-spacing: 0em;
  border: 1px solid #006468;
  border-radius: 25px;
  padding: 12px 22px;
}
.menu-bar .inner {
  height: 100%;
}
.menu-bar .inner ul {
  display: flex;
  height: 100%;
}
.menu-bar .inner ul li > .sub-menu {
  display: flex;
  flex-direction: column;
  display: none;
  transition: ease 0.3s;
}
.menu-bar .inner ul li > .sub-menu.act {
  display: block;
}
.menu-bar .inner ul li > .sub-menu li {
  width: 250px;
  height: 100%;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  background-color: #f4f4f4;
  border-bottom: 1px solid #d8d8d8;
}
.menu-bar .inner .home {
  width: 60px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}
.menu-bar .inner .depth {
  width: 250px;
  height: 100%;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-right: 1px solid #d8d8d8;
}
.menu-bar .inner .depth i {
  font-size: 14px;
  transition: ease 0.3s;
}
.menu-bar .inner .depth.act i {
  transform: rotate(180deg);
}
.board-wrap {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 180px;
}
.board-wrap.r3 {
  grid-template-columns: repeat(3, 1fr);
}
.board-wrap .board-thumb {
  width: 325px;
  height: 250px;
  background-color: #f4f4f4;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.board-view-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 18px;
}
.board-view-wrap .board-thumb {
  width: 621px;
  height: 408px;
  background-color: #f4f4f4;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.board-view-wrap .content {
  font-size: 18px;
  color: #000;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: 0em;
  padding-bottom: 100px;
  border-bottom: 1px solid #d8d8d8;
}
.board-wrap.r3 .board-thumb {
  width: 446px;
}
.board-list h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0em;
  margin-bottom: 10px;
}
.board-list p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0em;
  color: #9b9b9b;
  margin-bottom: 20px;
}
.board-list p b {
  color: #000;
}
.paginate {
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 250px;
}
.paginate-complex {
  margin: 0 auto;
  color: #9b9b9b;
}
.paginate-complex strong {
  color: #006468;
  border-bottom: 2px solid #006468;
}
section.board-view {
  height: auto;
}
.board-view > .inner > h2 {
  font-size: 36px;
  margin-bottom: 18px;
}
.board-view > .inner > p {
  font-size: 18px;
  font-weight: 500;
  color: #b2b2b2;
  letter-spacing: 0em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.board-view > .inner > p b {
  color: #000;
}
.list-btn-div {
  width: 100%;
  height: auto;
}
.list-btn {
  width: 84px;
  height: 46px;
  margin-top: 18px;
  margin-bottom: 250px;
  font-size: 16px;
  font-weight: 500;
  color: #9b9b9b;
  letter-spacing: 0em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d8d8d8;
}
.board-wrap .board-thumb > img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  section {
    padding-top: 250px;
  }
  section > .inner > h2 {
    font-size: 20px;
  }
  section > .inner > h3 {
    font-size: 20px;
  }
  .board-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .board-wrap.r3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .board-wrap .board-thumb {
    width: 100%;
  }
  .board-wrap.r3 .board-thumb {
    width: 100%;
  }
  .board-view > .inner > h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .board-view > .inner > p {
    font-size: 16px;
  }
  .board-view-wrap .board-thumb {
    width: 100%;
    height: 200px;
  }
  .menu-bar .inner {
    padding: 0;
  }
  .menu-bar .inner ul {
    width: 100%;
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
  }
  .menu-bar .inner .depth {
    font-size: 16px;
    width: 100%;
  }
  .board-wrap .board-thumb {
    height: 220px;
  }
}
