.board_banner a {
  display: block;
}
.board_banner a img {
  width: 100%;
  border-radius: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .board_banner a img {
    border-radius: 0.625rem;
  }
}

.board_category {
  display: flex;
  gap: 1.25rem;
}
.board_category li a {
  display: block;
}
.search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2.5rem 0 1.25rem;
}
@media only screen and (max-width: 767px) {
  .search {
    display: block;
    margin: 3.125rem 0 0.5rem;
  }
}
.search span strong {
  font-weight: 700;
}
.search .board_search {
  display: flex;
  align-items: center;
  padding: 0.4375rem 0.625rem;
  border: 1px solid var(--line2);
  border-radius: 0.25rem;
}
@media only screen and (max-width: 767px) {
  .search .board_search {
    margin-top: 1rem;
  }
}
.search .board_search input {
  border: none;
  height: 2rem;
  font-size: 1rem;
  width: 16.75rem;
}
.search .board_search input:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  .search .board_search input {
    width: 17.25rem;
  }
}
.search .board_search button {
  padding: 0;
}
.search .board_search button img {
  display: block;
  width: 2rem;
  height: 2rem;
}
table {
  border: none;
  border-collapse: collapse;
  border-top: 0.0625rem solid var(--line1);
  table-layout: fixed;
}
table th, table td {
  border: none;
  border-bottom: 0.0625rem solid var(--line2);
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  table th, table td {
    font-size: 0.875rem;
  }
}
table th {
  padding: 1.6563rem 1.25rem;
  background: var(--bg2);
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  table th {
    padding: 1rem 1.25rem;
  }
}
table th:nth-of-type(1) {
  width: 72.5rem;
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  table th:nth-of-type(1) {
    width: 31.75rem;
  }
}
@media only screen and (max-width: 767px) {
  table th:nth-of-type(1) {
    width: 13.75rem;
  }
}
table td {
  padding: 1.6563rem 1.25rem;
}
table td:nth-of-type(1) {
  text-align: left;
}
table td.time {
  color: var(--font3);
}
@media only screen and (max-width: 767px) {
  table td.time {
    font-size: 0.75rem;
  }
}
table tr:last-of-type td {
  border-bottom: 0.0625rem solid var(--line1);
}
.pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .pagination {
    margin-top: 1.25rem;
  }
}
.pagination strong {
  display: block;
  position: relative;
  min-width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  font-weight: 400;
  color: var(--color-brand);
}
.pagination strong:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0.6875rem;
  height: 0.0625rem;
  background: var(--color-brand);
  transform: translateX(-50%);
}
.pagination a {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
}
.pagination a:not(.direction) {
  width: auto;
  min-width: 2.5rem;
  color: var(--font3);
}
.pagination a.direction {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a.direction img {
  display: block;
  width: 50%;
}