@charset "UTF-8";
/* CSS Document */

/* =========================
  recruit-page
========================= */

.recruit-page {
  padding-top: 90px;
}
.breadcrumb {
    margin: 5px 0;
}

@media screen and (max-width: 768px) {
  .recruit-page {
    padding-top: 80px;
  }
}

@media screen and (max-width: 500px) {
  .recruit-page {
    padding-top: 65px;
  }
}

/* =========================
  recruit-mv
========================= */

.recruit-mv {
  position: relative;
  margin-bottom: 0;
}
.recruit-mv__movie {
  height: 770px;
  overflow: hidden;
}
.recruit-mv__movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-mv__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 2%;
}
.recruit-mv__txt-area {
  width: 100%;
  max-width: 770px;
  text-align: center;
  transform: translateY(-100px);
}
.recruit-mv__ttl {
  color: #274870;
  line-height: 1.4;
}
.recruit-mv__txt {
  margin-top: 30px;
  line-height: 1.8;
}
.recruit-mv__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  min-height: 56px;
  margin-top: 30px;
  color: #fff;
  background: #00bce3;
  border-radius: 4px;
}
.recruit-mv__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-55%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .recruit-mv__movie {
    height: 620px;
  }
  .recruit-mv__content {
    padding: 0 4%;
  }
  .recruit-mv__txt {
    margin-top: 20px;
  }
}

@media screen and (max-width: 500px) {
  .recruit-mv__movie {
    height: 520px;
  }
  .recruit-mv__content {
    padding: 0 6%;
  }
  .recruit-mv__txt-area {
    transform: translateY(-80px);
  }
  .recruit-mv__txt {
    margin-top: 15px;
  }
  .recruit-mv__btn {
    max-width: none;
    min-height: 50px;
  }
}

/* =========================
  recruit-message
========================= */

.recruit-message {
  padding: 80px 0;
  background: #f7f8fa;
}
.recruit-message__ttl {
  color: #274870;
  text-align: center;
  line-height: 1.4;
}
.recruit-message__txt {
  margin-top: 50px;
  text-align: center;
}
.recruit-message__txt p {
  line-height: 1.8;
}
.recruit-message__txt p + p {
  margin-top: 40px;
}
.recruit-message__btn-wrap {
  margin-top: 80px;
  text-align: center;
}
.recruit-message__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 255px;
  min-height: 44px;
  color: #fff;
  background: #00bce3;
  border-radius: 4px;
}
.recruit-message__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-55%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .recruit-message__txt {
    margin-top: 40px;
  }
  .recruit-message__txt p + p {
    margin-top: 30px;
  }
  .recruit-message__btn-wrap {
    margin-top: 60px;
  }
}

@media screen and (max-width: 500px) {
  .recruit-message {
    margin-bottom: 80px;
  }
  .recruit-message__txt {
    margin-top: 30px;
  }
  .recruit-message__txt p + p {
    margin-top: 25px;
  }
  .recruit-message__btn-wrap {
    margin-top: 50px;
  }
  .recruit-message__btn {
    max-width: none;
    min-height: 50px;
  }
}

/* =========================
  recruit-fit
========================= */

.recruit-fit {
  margin-top: 100px;
  margin-bottom: 80px;
}
.recruit-message__btn-blue {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 90px;
  background: #274870;
  font-size: 2.8rem;
  padding: 10px;
  color: #fff;
  border-radius: 8px;
  margin-bottom: 120px;
}
.recruit-message__btn-blue::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-55%) rotate(45deg);
}
.recruit-fit__ttl {
  color: #274870;
  text-align: center;
  line-height: 1.4;
}
.recruit-fit__list {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
}
.recruit-fit__item {
  width: calc((100% - 100px) / 5);
  text-align: center;
}
.recruit-fit__icon img {
  max-width: 160px;
}
.recruit-fit__txt {
  margin-top: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 850px) {
  .recruit-fit {
    margin-top: 80px;
    margin-bottom: 60px;
  }
  .recruit-fit__list {
    flex-wrap: wrap;
    gap: 30px 20px;
    margin: 40px auto 0;
    max-width: 600px;
  }
  .recruit-fit__item {
    width: calc((100% - 20px) / 2);
  }
  .recruit-fit__icon img {
    max-width: 180px;
  }
}

@media screen and (max-width: 500px) {
  .recruit-fit {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .recruit-fit__list {
    gap: 25px 0;
    margin-top: 30px;
  }
  .recruit-fit__item {
    width: 50%;
  }
  .recruit-fit__icon img {
    max-width: 120px;
  }
  .recruit-fit__txt {
    margin-top: 15px;
  }
}


/* =========================
  contact
========================= */

.contact-page {
    padding-top: 20px;
}