@charset "UTF-8";
/***********
* 募集要項  一覧
**************/
.header-crumb[data-title="Job description"] {
  background: url(../img/recruit_job/header-crumb.webp) no-repeat top center/cover;
}
@media (max-width: 768px) {
  .header-crumb[data-title="Job description"] {
    background-image: url(../img/recruit_entry/header-crumb_sp.webp);
  }
}

.joblist-item + .joblist-item {
  margin-top: 144px;
}
@media (max-width: 960px) {
  .joblist-item + .joblist-item {
    margin-top: 60px;
  }
}

.joblist-wrap {
  margin-top: 144px;
}
@media (max-width: 960px) {
  .joblist-wrap {
    margin-top: 60px;
  }
}

.joblist-btn-wrap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
@media (max-width: 960px) {
  .joblist-btn-wrap {
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
  }
}
.joblist-btn-wrap * + * {
  margin-left: 56px;
}
@media (max-width: 960px) {
  .joblist-btn-wrap * + * {
    margin-top: 30px;
    margin-left: 0;
  }
}

.joblist-search {
  margin-top: 144px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 960px) {
  .joblist-search {
    margin-top: 60px;
    flex-direction: column;
  }
}

.joblist-search__select {
  margin-left: 24px;
  width: 327px;
}
@media (max-width: 960px) {
  .joblist-search__select {
    margin-top: 20px;
    margin-left: 0;
  }
}

.joblist-search__button {
  margin-left: 48px;
}
@media (max-width: 960px) {
  .joblist-search__button {
    margin-top: 30px;
    margin-left: 0;
  }
}

/***********
* 募集要項 共通
**************/
.header-crumb.--jobdescription {
  background: url(../img/recruit_job/header-crumb.webp) no-repeat top center/cover;
}
@media (max-width: 768px) {
  .header-crumb.--jobdescription {
    background-image: url(../img/recruit_entry/header-crumb_sp.webp);
  }
}

.joblist-item {
  padding: 72px 84px;
}
@media (max-width: 960px) {
  .joblist-item {
    padding: 36px 6.5%;
  }
}

.joblist-contents {
  position: relative;
}

* + .joblist-contents {
  margin-top: 56px;
}
@media (max-width: 960px) {
  * + .joblist-contents {
    margin-top: 30px;
  }
}

.joblist-item__title {
  position: relative;
  padding-left: 32px;
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0.1em;
}
@media (max-width: 960px) {
  .joblist-item__title {
    padding-left: 25px;
    font-size: 20px;
  }
}
.joblist-item__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 6px;
  height: 75%;
  background-color: var(--primary-color, #004CBD);
}

.joblist-detail {
  position: relative;
  display: flex;
  padding: 32px 0;
}
@media (max-width: 960px) {
  .joblist-detail {
    flex-direction: column;
  }
}
.joblist-detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: rgb(0, 76, 189);
  background: linear-gradient(90deg, rgb(0, 76, 189) 0%, rgb(0, 76, 189) 10%, rgb(177, 198, 229) 10%, rgb(177, 198, 229) 100%);
}
.joblist-detail:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: rgb(0, 76, 189);
  background: linear-gradient(90deg, rgb(0, 76, 189) 0%, rgb(0, 76, 189) 10%, rgb(177, 198, 229) 10%, rgb(177, 198, 229) 100%);
}

.joblist-detail__title {
  width: 14.9090909091%;
  font-weight: 700;
  font-size: 16px;
  line-height: 190%;
  letter-spacing: 0.1em;
}
@media (max-width: 960px) {
  .joblist-detail__title {
    font-size: 14px;
    width: 100%;
  }
}

.joblist-detail__text {
  padding-right: 10.2673796791%;
  width: 85%;
  font-weight: 400;
  font-size: 16px;
  line-height: 190%;
}
@media (max-width: 960px) {
  .joblist-detail__text {
    margin-top: 1em;
    padding-right: 0;
    width: 100%;
    font-size: 14px;
  }
}

/*****************
* 詳細
******************/
.joblist-detail__imglist {
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 632px;
}
.joblist-detail__imglist > * {
  width: calc(50% - 16px);
  aspect-ratio: 3/2;
}
.joblist-detail__imglist > * img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.joblist-detail__imglist > *:nth-child(even) {
  margin-left: 32px;
}
.joblist-detail__imglist > *:nth-child(3) {
  margin-top: 32px;
}
@media (max-width: 960px) {
  .joblist-detail__imglist > * {
    width: 100%;
  }
  .joblist-detail__imglist > *:nth-child(even) {
    margin-left: 0;
  }
  .joblist-detail__imglist > *:nth-child(2) {
    margin-top: 32px;
  }
}