.board-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: white;
}
.board-section .board-container {
  position: relative;
  width: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  grid-gap: 30px;
}
.board-section .board-container .list-aside {
  position: sticky;
  top: 170px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 100px 0;
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.board-section .board-container .list-aside .aside-tit {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
.board-section .board-container .list-aside .aside-nav-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.board-section .board-container .list-aside .aside-nav-list .aside-nav {
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.board-section .board-container .list-aside .aside-nav-list .aside-nav:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}
.board-section .board-container .list-aside .aside-nav-list .aside-nav > a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  line-height: 1;
  color: #aaa;
}
.board-section .board-container .list-aside .aside-nav-list .aside-nav > a.emph {
  font-size: 16px;
  font-weight: 600;
  color: black;
}
.board-section .board-container .list-aside .mobile-aside-toggle {
  display: none;
}
.board-section .board-container .boxy-warp {
  flex: 1 1 auto;
}

@media (max-width: 1620px) {
  .board-section .board-container {
    padding: 0 16px;
  }
}
@media (max-width: 1024px) {
  .board-section .board-container .list-aside {
    position: fixed;
    left: 0;
    top: 90px;
    transform: translateX(-100%);
    width: 320px;
    height: 100%;
    padding: 30px 16px;
    background-color: white;
    z-index: 5;
    border-right: 1px solid #aaa;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
  }
  .board-section .board-container .list-aside.active {
    transform: translateX(0);
  }
  .board-section .board-container .list-aside .mobile-aside-toggle {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    padding: 8px;
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: white;
    writing-mode: vertical-rl;
    background-color: black;
  }
}/*# sourceMappingURL=board_custom.css.map */