#university {
  .gradation {
    background: #e5f0fb;
    margin-top: 50px;
    .innerWrap {
      text-align: center;
      h4 {
        color: #000;
        font-size: 2.4rem;
        font-weight: 400;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      h4::before {
        content: "＼";
        margin-right: 1em;
      }
      h4::after {
        content: "／";
        margin-left: 1em;
      }
    }
  }
}
.borderBanner {
  max-width: 800px;
  margin: 25px auto 0;
  position: relative;
}
.borderBanner::before {
  content: "";
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 5px;
  position: absolute;
  right: -4px;
  bottom: -4px;
  background: #b5d0ea;
}
.borderBanner a {
  height: 100%;
  border: 1px solid #094067;
  border-radius: 5px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #094067;
  font-weight: 500;
  text-decoration: none;
  background: #fff;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  min-height: 56px;
}
.borderBanner a:hover {
  translate: 4px 4px;
  transition: 0.2s;
}
.cols-university {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.cols-university__item  {
  position: relative;
}
.cols-university__item figure {
  position: relative;
}
.cols-university__item figure figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 1rem;
  box-sizing: border-box;
  font-size: 1.3rem;
  line-height: 1.5;
  padding: 1rem;
}
.cols-university__item__text {
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1.4;
}
.cols-university__item figure figcaption span {
  display: block;
}

.cols-university__item__graduation {
  font-size: 1rem;
  font-style: normal;
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(0,0,0,60%);
  color: #fff;
  padding: 0 1rem;
  border-radius: 9999px;
}
.is-hotel .cols-university__item__graduation {
  background-color: #FF7B48;
}
.is-english .cols-university__item__graduation {
  background-color: #40B769;
}
.is-airline .cols-university__item__graduation {
  background-color: #13B7CD;
}

.is-airline figure figcaption {
  background-color: rgba(19,183,205,60%);
}
.is-hotel figure figcaption {
  background-color: rgba(255,123,72,60%);
}
.is-english figure figcaption {
  background-color: rgba(64,183,105,60%);
}

.table-recruit  {
  overflow-x: auto;
}
.table-recruit table {
  width: 100%;
}
.table-recruit th:not(:last-child), .table-recruit td:not(:last-child) {
  border-right: 1px solid #B5C6D1;
}
.table-recruit table thead tr th {
  border-bottom: 1px solid #B5C6D1 !important;
  text-align: center;
  padding: 10px;
  width: auto;
}
.table-recruit table td {
  padding: 10px;
}
@media screen and (max-width: 1023px) {
  .table-recruit::after {
    content:"左右にスクロールしてご覧ください。"
  }
  .table-recruit table {
    width: 1000px;
  }
  .table-recruit table thead tr th,
  .table-recruit table tbody tr td {
    display: table-cell;
  }
}

.cols-merit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.cols-merit__item {
  padding: 2rem;
  background: #ECF4FC;
}
#university.index .cols-merit__item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 5px 0;
}
#university.index .cols-merit__item p {
  line-height: 1.6;
}