/* -------------------------------- */
/* responsive set                   */
/* -------------------------------- */
/* -------------------------------- */
/* common
/* -------------------------------- */
#wrap_pagenavi {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 440px) {
  #wrap_pagenavi {
    width: calc(100% - 60px);
  }
}
#wrap_pagenavi ul {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 440px) {
  #wrap_pagenavi ul {
    flex-direction: column;
    gap: 15px;
  }
}
#wrap_pagenavi ul li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 440px) {
  #wrap_pagenavi ul li {
    width: 100%;
  }
}
#wrap_pagenavi ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: #fff;
  width: 100%;
  text-decoration: none;
  padding: 20px 25px;
  box-sizing: border-box;
  font-size: 1.25rem;
  line-height: 1;
  transition: 0.4s;
}
#wrap_pagenavi ul li a:hover {
  background: #404040;
}
@media screen and (max-width: 440px) {
  #wrap_pagenavi ul li a {
    font-size: 0.875rem;
    padding: 15px 20px;
  }
}

.content {
  width: 1300px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 0 90px 90px 90px;
  margin-top: 90px;
  box-sizing: border-box;
}
@media screen and (max-width: 440px) {
  .content {
    width: calc(100% - 40px);
    padding: 0 30px 90px 30px;
    margin-top: 40px;
  }
}
.content h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  padding: 90px 0;
}
@media screen and (max-width: 440px) {
  .content h2 {
    font-size: 1.0625rem;
    padding: 90px 0 50px 0;
  }
}
.content p {
  font-size: 0.8125rem;
  font-weight: 400;
}
@media screen and (max-width: 440px) {
  .content p {
    font-size: 0.75rem;
  }
}
.content table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.content table tr {
  border-bottom: 1px solid #000;
}
.content table tr:last-child {
  border-bottom: none;
}
.content table tr th,
.content table tr td {
  padding: 40px 30px;
  text-align: left;
  box-sizing: border-box;
}
.content table tr th {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 440px) {
  .content table tr th {
    font-size: 1.0625rem;
    padding: 40px 0px 25px 0px;
  }
}
.content table tr td {
  font-size: 0.8125rem;
  font-weight: 400;
}
@media screen and (max-width: 440px) {
  .content table tr td {
    font-size: 0.75rem;
    padding: 0px 0px 40px 0px;
  }
}
.content table tr td ol {
  list-style: disc;
  padding-left: 1.5em;
}
.content table tr td ol li span {
  margin-left: -1.5em;
}
@media screen and (max-width: 440px) {
  .content table table,
  .content table tbody,
  .content table tr,
  .content table th,
  .content table td {
    display: block;
    width: 100%;
  }
}
.content > ul li {
  display: flex;
  align-items: center;
  border: 1px solid #000;
  position: relative;
  margin-bottom: 30px;
  padding: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 440px) {
  .content > ul li {
    flex-direction: column;
    justify-content: center;
  }
}
.content > ul li::after {
  content: "";
  background-color: #000;
  width: 1px;
  height: 30px;
  position: absolute;
  bottom: -30px;
  left: 50%;
}
.content > ul li:nth-last-of-type(1)::after {
  display: none;
}
@media screen and (max-width: 440px) {
  .content > ul li div:nth-of-type(1) {
    margin-top: -48px;
  }
}
.content > ul li div:nth-of-type(1) p {
  font-size: 1.4375rem;
  font-weight: 400;
  color: #fff;
  background: #000;
  border-radius: 50%;
  line-height: 1;
  margin-right: 85px;
  box-sizing: border-box;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 440px) {
  .content > ul li div:nth-of-type(1) p {
    font-size: 1.0625rem;
    margin-right: 0px;
    height: 36px;
    width: 36px;
  }
}
.content > ul li div:nth-of-type(2) h3 {
  font-size: 1.4375rem;
  font-weight: 400;
}
@media screen and (max-width: 440px) {
  .content > ul li div:nth-of-type(2) h3 {
    text-align: center;
    font-size: 1.0625rem;
    margin-top: 12px;
    margin-bottom: 20px;
  }
}
.content > ul li div:nth-of-type(2) p {
  font-size: 0.8125rem;
  font-weight: 400;
}
@media screen and (max-width: 440px) {
  .content > ul li div:nth-of-type(2) p {
    font-size: 0.75rem;
  }
}
.content a {
  display: inline-block;
  text-align: center;
  position: relative;
  width: 100%;
  background: #000;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 1.4375rem;
  line-height: 1;
  padding: 45px 0;
  transition: 0.4s;
  margin-top: 20px;
}
@media screen and (max-width: 440px) {
  .content a {
    font-size: 0.875rem;
    padding: 25px 0;
  }
}
.content a:hover {
  background: #404040;
}
.content a img {
  position: absolute;
  right: 90px;
  top: 45px;
  height: 1em;
  width: auto;
}
@media screen and (max-width: 440px) {
  .content a img {
    top: 26px;
    right: 30px;
  }
}

#content03 a {
  margin-top: 0px;
}

footer {
  margin-top: 0px;
}

#recruit {
  padding-bottom: 100px;
}/*# sourceMappingURL=style.css.map */