.dojo-information {
  padding-bottom: 40px;
}

.dojo-information * {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.lead-text {
  margin-bottom: 40px;
}

@media all and (max-width: 767px) {
  .lead-text {
    margin-bottom: 30px;
    font-size: 15px;
  }
}

.category-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.category-select {
  position: relative;
}

.category-select:after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  background: #414141;
  width: 12px;
  height: 10px;
  margin: auto;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.category-select select {
  cursor: pointer;
  width: 10em;
  padding: 10px 30px 10px 10px;
  border: 1px solid #414141;
  border-radius: 5px;
  font-size: 17px;
}

@media all and (max-width: 767px) {
  .category-select select {
    font-size: 15px;
  }
}



.search-result-box {
  display: grid;
  gap: 5px;
  margin-bottom: 15px;
  background: #f0f0f0;
  padding: 20px;
}

@media all and (max-width: 767px) {
  .search-result-box {
    margin-bottom: 10px;
    padding: 20px 15px 15px 15px;
  }
}

.search-result-data {
  display: flex;
}

.search-clear {
  display: block;
  width: fit-content;
  margin-left: auto;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #414141;
}

.common-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

@media all and (max-width: 767px) {
  .common-table-wrap {
    overflow: scroll;
    width: 100%;
    margin-left: auto;
    padding: 0 0 0 20px;
  }
}

.common-table {
  margin-bottom: 40px;
}

@media all and (max-width: 767px) {
  .common-table {
    width: 880px;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 767px) {
  .common-table table {
    width: 860px;
  }
}



.common-table th,
.common-table td {
  vertical-align: middle;
  border: 1px solid #ccc;
  padding: 10px;
  line-height: 1.5;
  font-size: 14px;
  text-align: left;
}

.common-table th {
  padding-block: 15px;
  background: #f0f0f0;
  font-weight: 700;
  text-align: center;
}

.common-table th:nth-child(1) {
  width: 9.5em;
}

.common-table th:nth-child(2) {
  width: 15.5em;
}

.common-table th:nth-child(3) {
  width: 11.5em;
}

.common-table-small {
  display: block;
  font-size: 12px;
}

.ico-badge {
  display: inline-block;
  padding: 2px 8px 0 8px;
  border-radius: 2px;
  color: #fff;
  font-size: 13px;
}

.ico-badge.bg01 {
  background: #dc3545;
}

.ico-badge.bg02 {
  background: #198754;
}

.ico-badge.bg03 {
  background: #0d6efd;
}

.ico-badge.bg04 {
  background: #BA45FE;
}

.ico-badge.bg05 {
  background: #6c757d;
}

.pager {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 300px;
  margin-inline: auto auto;
}

@media all and (max-width: 767px) {
  .pager {
    width: 260px;
    gap: 15px;
  }
}

.pager a {
  transition: background 0.4s, border-color 0.4s;
  display: block;
  padding: 7px 12px;
  border: 1px solid #414141;
  border-radius: 5px;
  text-decoration: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .pager a:hover {
    border-color: #B51A21;
    background: #B51A21;
    color: #fff;
  }
}