@charset "utf-8";

.recruitment__swiper {
  margin-top: 80px;
  width: 100vw;
  height: auto;
  margin-left: calc((100vw - 100%) / 2 * -1);
}
@media screen and (min-width: 768px) {
  .recruitment__swiper {
    margin-top: 110px;
  }
}

.recruitment__swiper,
.recruitment__swiper-wrapper,
.recruitment__swiper-slide {
  position: relative;
}
.recruitment__swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
  align-items: flex-start;
}
.recruitment__swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  aspect-ratio: 470 / 600;
  max-width: 470px;
  position: relative;
}
.recruitment__swiper-slide img {
aspect-ratio: 470 / 600;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.recruitment__swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.recruitment__images {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 90%;
}
@media screen and (min-width: 900px) {
  .recruitment__images {
    width: 467px;
  }
}
.recruitment__image01,
.recruitment__image02 {
  height: 100%;
  object-fit: cover;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.recruitment__image01 {
  aspect-ratio: 321 / 340;
  width: min(100%, 221px);
}
@media screen and (min-width: 500px) {
  .recruitment__image01 {
    width: 321px;
  }
}
.recruitment__image02 {
  aspect-ratio: 247 / 295;
  width: min(100%, 200px);
  margin-left: auto;
}
@media screen and (min-width: 500px) {
  .recruitment__image02 {
    width: 247px;
  }
}

.recruitment__text-wrap {
  position: absolute;
  bottom: 153px;
  left: 50%;
  transform: translateX(-50%);
}
.bg-text__wrap {
  display: flex;
  gap: 50px;
  width: 100%;
  height: 155px;
}
.bg-text {
  white-space: nowrap;
  aspect-ratio: 1664 / 155;
  flex-shrink: 0;
  width: auto;
  height: 100%;
  font-size: 107px;
  letter-spacing: 0.08em;
  line-height: 208px;
  color: #fff;
  animation: infinity-scroll-left 50s infinite linear 0.5s both;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.recruitment__title {
  display: flex;
  align-items: center;
  gap: 7px;
}
.recruitment__title::before {
  content: "";
  background: url('../images/icon-faq__title.svg') center / contain no-repeat;
  width: 19px;
  height: 18px;
}
.recruitment__wrap {
  margin-top: 111px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1010px;
    margin-inline: auto;
}
.recruitment__boxes {
  margin-top: 30px;
  border-radius: 10px;
  border: 1px solid #F8DCB9;
  overflow: hidden;
}
.recruitment__boxes + .recruitment__boxes {
  margin-top: 60px;

}
.recruitment__box {
  display: flex;
}
.recruitment__box:not(:last-of-type) {
  border-bottom: 1px solid #F8DCB9;
}
.recruitment__box-head {
  padding: 25px 18px;
  background: #FFF0DF;
  flex-shrink: 0;
  width: 100px;
  text-align: center;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .recruitment__box-head {
    padding: 35px 33px 34px;
    width: 171px;
  }
}
.recruitment__box-body {
  padding: 10px 20px;
  background: #fff;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .recruitment__box-body {
    padding: 10px 50px;
  }
}




