@charset "UTF-8";

/* --------------------------------------------------
 .list-img-blc
-------------------------------------------------- */
.list-img-blc {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}

.list-img-blc li {
  width: calc((100% - 4%) / 3);
  min-height: 150px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 2%;
  margin-right: 2%;
}

.list-img-blc li:nth-child(3n+3), .list-img-blc li:last-child {
  margin-right: 0;
}

.list-img-blc li:nth-child(-n+3) {
  margin-top: 0;
}

@media screen and (max-width:870px) {
  .list-img-blc li {
    min-height: 18.5vw;
  }
}

/* --------------------------------------------------
 job-box
-------------------------------------------------- */

#job-box .ttl-desc {
  text-align: center;
}

#job-box .ttl-desc .txt-inline-blc {
  text-align: left;
  display: inline-block;
}

#job-box .ttl-desc .txt-inline-blc.big {
  font-size: 120%;
}

#job-box .list li {
  margin-bottom: 2%;
}

#job-box .list li a {
  background-color: #006ab5;
  color: #fff;
  text-decoration: none;
  border: 1px solid #006ab5;
  padding: 15px calc(3% + 24px) 15px 3%;
  display: block;
  position: relative;
  transition: all 300ms cubic-bezier(.25, .46, .45, .94);
}

#job-box .list li a:hover {
  color: #006ab5;
  background-color: #fff;
}

#job-box .list li a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
  font-weight: 900;
  width: 12px;
  line-height: 1;
  height: 24px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3%;
}

#job-box .btn-blc {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

#job-box .btn-blc a {
  font-size: 120%;
  line-height: 1.2;
  border: 2px solid #0075c2;
  background-color: #0075c2;
  text-decoration: none;
  color: #fff;
  max-width: 320px;
  width: 100%;
  text-align: center;
  padding: 18px 40px;
  box-sizing: border-box;
  font-weight: 500;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

#job-box .btn-blc a:hover {
  background-color: rgb(246, 250, 252);
  color: #0075c2;
}

.blc-mg-top {
  margin-top: 120px;
}

.blc-mg-top:first-child {
  margin-top: 0;
}

@media screen and (max-width:767px) {
  #job-box .list li a {
    padding-right: calc(3% + 18px);
  }

  #job-box .list li a::after {
    font-size: 18px;
    width: 9px;
    height: 18px;
  }

  .blc-mg-top {
    margin-top: 100px;
  }
}

@media screen and (max-width:640px) {
  .blc-mg-top {
    margin-top: 60px;
  }
}

@media screen and (max-width:480px) {
  #job-box .btn-blc {
    flex-wrap: wrap;
  }

  #job-box .btn-blc a {
    max-width: 240px;
    padding: 12px 20px;
    font-size: 100%;
  }

  .blc-mg-top {
    margin-top: 4rem;
  }
}

/* --------------------------------------------------
 tbl-blc
-------------------------------------------------- */

.tbl-blc:first-child {
  margin-top: 0;
}

.tbl-blc {
  margin-top: 4rem;
}

.tbl-blc .txt {
  margin-top: 2rem;
}

/* tbl-style01 ------------------------------------*/

.tbl-style01 {
  margin-top: 2rem;
}

.tbl-style01 thead th {
  font-size: 110%;
  background: #0075c2;
  color: #fff;
  text-align: center;
  border-right: 2px solid #fff;
  padding: 10px;
  box-sizing: border-box;
}

.tbl-style01 tbody th, .tbl-style01 tbody td {
  padding: 20px 50px;
  box-sizing: border-box;
  border-bottom: 1px solid #0075c2;
}

.tbl-style01 tbody th {
  background: #f6fafc;
  color: #0075c2;
  width: 200px;
}

@media screen and (max-width:767px) {
  .tbl-style01 tbody {
    width: 30%;
  }
}

@media screen and (max-width:640px) {
  .tbl-style01 tbody th, .tbl-style01 tbody td {
    padding: 10px 25px;
    width: 100%;
    display: block;
  }
}

@media screen and (max-width:480px) {
  .tbl-style01 {
    margin-top: 1rem;
  }

  .tbl-blc .txt {
    margin-top: 1rem;
  }

  .tbl-blc {
    margin-top: 2rem;
  }

  .tbl-style01 thead th {
    padding: 10px 5px;
    font-size: 120%;
  }

  .tbl-style01 tbody th, .tbl-style01 tbody td {
    padding: 15px;
  }
}