@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

html, body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

h4 {
  margin-bottom: 17px;
  font-size: 22px;
  font-weight: bold;
  display: none;
}

p {
  margin-bottom: 21px;
  font-size: 14px;
}

p a {
  color: #D00F31;
  font-weight: bold;
}

main.container {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 25px 0 15px !important;
}

.table thead th {
  background: #F4BB2D;
  color: #101010;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #C2C2C2;
  text-align: center;
}

.table tbody td {
  vertical-align: middle;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #C2C2C2;
  padding: 10px 12px;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  background: #F1F0EE;
  --bs-table-bg-type: #F1F0EE;
}

.table tbody td .lh-lg {
  margin-bottom: 0;
  padding-left: 1.3em;
}

.table tbody td .lh-lg li {
  font-weight: 400;
  font-size: 14px;
  line-height: calc(32em / 14);
}

.table tbody td .lh-lg li::marker {
  color: #D00F31;
}

.table tbody tr:nth-of-type(even) td:nth-child(2) {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(24em / 14);
  vertical-align: top;
}
.table tbody tr:nth-of-type(even) td:nth-child(3) {
  padding: 10px 20px;
}

.btn-outline-primary {
  --bs-btn-color: #D00F31;
  --bs-btn-border-color: #D00F31;
  --bs-btn-hover-color: #D00F31;
  --bs-btn-hover-bg: #D00F31;
  --bs-btn-hover-border-color: #D00F31;
  --bs-btn-active-bg: #D00F31;
  --bs-btn-active-border-color: #D00F31;
  --bs-btn-disabled-color: #D00F31;
  --bs-btn-disabled-color: #D00F31;
  --bs-btn-disabled-border-color: #D00F31;
}
.btn:hover {
  color: #fff;
}

.table .btn-outline-primary {
  background: #D00F31;
  color: #FFF;
  border: 1px solid #D00F31;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
}

.table .btn-outline-primary:hover {
  background: #fff;
  color: #D00F31;
}

.pagination {
  --bs-pagination-color: #D00F31;
  --bs-pagination-hover-color: #D00F31;
  --bs-pagination-focus-color: #D00F31;
  --bs-pagination-active-bg: #D00F31;
  --bs-pagination-active-border-color: #D00F31;
}

@media (max-width: 767px){
  main.container {
    padding: 0 !important;
  }
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row .col-md-6 {
    padding-left: 0;
    padding-right: 0;
  }
  .row .col-md-6 select {
    width: 100% !important;
  }
  .table-responsive {
    margin-bottom: 1rem;
  }
  .table {
    margin-bottom: 0;
  }
  .table tbody td {
    word-break: keep-all;
    white-space: nowrap;
  }
  .page-link {
    font-size: calc(12 / 375 * 100vw);
  }
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-item:first-child .page-link,
  .page-item:last-child .page-link {
    border-radius: 0;
  }
}