@charset "UTF-8";
.recruit-page {
  background-color: var(--black);
}

.recruit-page section {
  text-align: center;
}

/* ヒーロー */
.recruit-hero {
  margin: auto;
  padding: 60px 20px 10px;
}
.recruit-hero p {
  color: var(--white);
  font-size: 18px;
}
.recruit-hero .message-img img {
  width: 60vw;
  min-width: 800px;
  margin: 40px auto;
}

/* 募集情報 */
.recruit-offer {
  width: 60vw;
  min-width: 800px;
  margin: 0 auto 80px;
}

.offer-box {
  background: var(--white);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5%;
  padding: 25px;
}

.offer-box:not(:last-child) {
  margin-bottom: 30px;
}

.offer-img {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 10px;
}
.offer-img img {
  width: 100%;
}

.offer-details {
  text-align: left;
  width: 65%;
}
.offer-details h2 {
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: var(--white);
  display: block;
  background-color: var(--gold);
  line-height: 1.7;
  padding-left: 1rem;
}
.offer-details ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.offer-details li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: solid 1px var(--black);
}
.offer-details p {
  font-size: 18px;
  margin-bottom: 0;
}
.offer-details .offer-note {
  font-size: 12px;
}

/* お申し込み方法 */
.application {
  background-image: url(../../images/background.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 20px;
}
.application p {
  font-size: 18px;
}

.application-buttons {
  margin-top: 30px;
  display: flex;
  gap: 40px;
  justify-content: center;
}

@media screen and (max-width: 959px) {
  /* ヒーロー */
  .recruit-hero {
    padding: 40px 50px 30px;
  }
  .recruit-hero p {
    font-size: 16px;
    text-align: left;
  }
  .recruit-hero .message-img img {
    width: 100%;
    margin: 20px auto 0;
    min-width: auto;
  }
  /* 募集情報 */
  .recruit-offer {
    width: 100%;
    margin: 0 auto 60px;
    padding: 0 50px;
    min-width: auto;
  }
  .offer-box {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
  .offer-img {
    order: 3;
    width: 100%;
  }
  .offer-img img {
    width: 100%;
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .offer-details {
    display: contents;
    text-align: left;
    width: 100%;
  }
  .offer-details h2 {
    order: 1;
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    padding-left: 0;
    text-align: center;
  }
  .offer-details .offer-explain {
    order: 2;
  }
  .offer-details ul {
    order: 4;
    padding: 0;
    margin-top: 10px;
  }
  .offer-details p {
    font-size: 16px;
    margin-bottom: 0;
  }
  /* お申し込み方法 */
  .application {
    background-image: url(../../images/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 50px;
  }
  .application p {
    font-size: 16px;
  }
  .application-buttons {
    display: grid;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  /* ヒーロー */
  .recruit-hero {
    padding: 40px 20px 30px;
  }
  /* 募集情報 */
  .recruit-offer {
    padding: 0 20px;
  }
  /* お申し込み方法 */
  .application {
    padding: 60px 20px;
  }
}/*# sourceMappingURL=recruit.css.map */