/* total */
.bo-total {
  font-weight: 600;
  font-size: var(--fs17);
}

.bo-total .number {
  color: var(--primary-color);
}

/* align */
.bo-align {
  width: auto;
  position: relative;
  font-size: var(--fs17);
}

.bo-align .align-title {
  font-weight: 600;
}

.bo-align .toggle_bo-align {
  height: var(--btn-h32);
  padding: 0 3.4rem 0 2rem;
  background: url(/images/dgedu/template/TI01/common/ico_arrow_menu_down.png) right center / 1.6rem no-repeat;
  font-weight: 500;
}

.bo-align .toggle_menu-align {
  width: 10rem;
  height: auto;
  border: 1px solid var(--gray-300);
  background-color: white;
  border-radius: var(--radius-6);
  position: absolute;
  top: 3rem;
  right: 0;
  overflow: hidden;
  font-weight: 500;
}

.bo-align .toggle_menu-align button {
  display: block;
  width: 100%;
  padding: .3rem 0;
  background-color: transparent;
}

.bo-align .toggle_menu-align button:hover {
  background-color: var(--primary-color);
  color: white;
}

/* list */
.bo-table {
  width: 100%;
  --label-min-width: 8rem;
  --label-max-width: 10rem;
  font-size: var(--fs17);
  border-top: 1px solid var(--tbl-top);
}

.bo-table-sm {
  --label-min-width: 8rem;
}

.bo-table th, .bo-table td {
  padding: 1.2rem;
}

.bo-table thead th {
  background-color: var(--tbl-thead);
  border-bottom: 1px solid var(--tbl-btm);
}

.bo-table tbody {
  text-align: center;
}

.bo-table td {
  border-bottom: 1px solid var(--tbl-body);
  color: #33363d;
  padding: 1.6rem 1.2rem;
}

.bo-table td:not(:nth-child(1)) {
  border-left: 1px solid var(--tbl-body);
}

.bo-table tr:last-child td {
  border-bottom: 1px solid var(--tbl-btm);
}

.bo-table .subject {
  text-align: left;
}

.bo-table .subject.tac {
  text-align: center;
}

.bo-table .download {
  text-align: left;
}

.bo-table .download a {
  padding-left: 3rem;
  background: url(/images/dgedu/template/TI01/form/ico_file.png) left center no-repeat;
}

.bo-table .nodata {
  padding: 10% 0;
}

.bo-table .btn-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 .6rem;
}

@media (max-width: 1024px) {
  .bo-table {
    width: 100%;
    table-layout: fixed;
  }

  .bo-table colgroup, .bo-table thead, .bo-table .num {
    display: none;
  }

  .bo-table tbody {
    display: block;
    width: 100%;
    text-align: left;
  }

  .bo-table tr {
    display: block;
    width: 100%;
    padding: 1.2rem 1rem;
    border-bottom: 1px solid var(--tbl-body);
  }

  .bo-table tr:last-child {
    border-bottom: 1px solid var(--tbl-btm);
  }

  .bo-table td {
    display: flex;
    align-items: center;
    width: auto;
    gap: 0 .4rem;
    border: 0;
    padding: 0;
    margin: 1rem 0;
    position: relative;
  }

  .bo-table td:not(:nth-child(1)) {
    border-left: 0;
  }

  .bo-table td[data-label]::before {
    content: attr(data-label);
    display: block;
    padding-left: 1rem;
    min-width: var(--label-min-width);
    color: #1e2124;
  }

  .bo-table td[data-label]::after {
    content: '';
    display: block;
    width: var(--bul5);
    height: var(--bul5);
    background-color: var(--bg-bul-color2);
    border-radius: var(--radius-10);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .bo-table .subject {
    margin-bottom: 2rem;
    font-weight: 600;
  }

  .bo-table .nodata {
    align-items: center;
    justify-content: center;
    border-bottom: 0 !important;
  }

  .bo-table .btn-wrap {
    justify-content: flex-start;
  }
}

/* page navigation */
.ilt-pagination {
  margin: 4rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0 2.6rem;
  font-size: var(--fs17);
}

.ilt-pagination [class*=page-] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  min-width: 4rem;
  height: 4rem;
  background-color: transparent;
  border-radius: .4rem;
  gap: .6rem;
  color: #33363d;
}

.ilt-pagination .page-link.current {
  color: white;
  background-color: var(--secondary-color);
}

.ilt-pagination .page-link.current:hover {
  background-color: #052561;
}

@media (max-width: 767px) {
  .ilt-pagination {
    flex-wrap: wrap;
  }

  .ilt-pagination [class*=page-] {
    gap: .2rem;
  }

  .ilt-pagination .page-links {
    width: 100%;
    order: 3;
  }
}

/* form : search */
.bo-search {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0 .8rem;
}

.bo-search select {
  flex-shrink: 0;
  width: 16.7rem;
}

.bo-search .inp-area {
  flex: 1;
  height: 4.8rem;
  border: 1px solid var(--gray-900);
  border-radius: var(--radius-6);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bo-search .inp-area input[type="text"] {
  flex: 1;
  border: 0;
  padding: 0 2rem;
  width: 100%;
  height: 4.8rem;
}

.bo-search .inp-area .form-btn-submit {
  flex-shrink: 0;
  width: 4.8rem;
  height: 4.8rem;
  background: url(/images/dgedu/template/TI01/form/ico_sch.png) center no-repeat;
}

.bo-search .form_btn-reset {
  flex-shrink: 0;
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid var(--gray-900);
  border-radius: var(--radius-6);
  background: url(/images/dgedu/template/TI01/common/ico_reset.png) center no-repeat;
}

@media (max-width: 767px) {
  .bo-search {
    flex-wrap: wrap;
  }

  .bo-search select {
    width: 100%;
    margin-bottom: 1rem;
  }
}