@charset "UTF-8";
.top-section {
  position: relative;
  height: 846px;
}

.top-section .top-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.top-section h3 {
  position: absolute;
  bottom: 15vw;
  left: 5vw;
  color: white;
  letter-spacing: 0.5rem;
}

.movie-section {
  text-align: center;
  padding: 5vw;
}

.movie-section h2 {
  color: #37aa05;
}

.movie-section iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 1000px;
  height: 100%;
  object-fit: cover;
}

.voice-section {
  background: linear-gradient(90deg, #37aa05, #056baa);
  text-align: center;
  padding: 5vw 0;
}

.voice-section .title h2 {
  color: #fff;
}

.voice-section .title h6 {
  color: #fff;
}

.voice-section .voice-swiper {
  padding: 5vw 0;
}

.voice-section .voice-swiper img {
  max-width: 537px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.voice-section .voice-swiper .swiper-button-prev,
.voice-section .voice-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
}

.voice-section .voice-swiper .swiper-button-prev::after,
.voice-section .voice-swiper .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}

.voice-section .voice-swiper .swiper-button-prev::after {
  background-image: url(../image/icon/arrow-next.svg);
}

.voice-section .voice-swiper .swiper-button-next::after {
  background-image: url(../image/icon/arrow-prev.svg);
}

.benefits-section {
  padding: 10vw 5vw;
}

.benefits-section .title {
  text-align: center;
  margin-bottom: 2vw;
}

.benefits-section .title h6 {
  color: #056baa;
}

.benefits-section .bene-content-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5vw;
  justify-items: center;
  width: fit-content;
  margin: auto;
}

.benefits-section .bene-content-wrap .card-set {
  max-width: 491px;
  display: grid;
  grid-template-rows: 1fr 0.4fr;
  gap: 1vw;
}

.benefits-section .bene-content-wrap .card-set .img-card {
  background-color: #37aa05;
  text-align: center;
  padding: 2vw;
  max-width: 491px;
}

.benefits-section .bene-content-wrap .card-set .img-card img {
  object-fit: contain;
  max-height: 241px;
  max-width: 241px;
  height: 100%;
  width: 100%;
}

.benefits-section .bene-content-wrap .card-set .img-card h5 {
  color: #fff;
}

.benefits-section .bene-content-wrap .card-set h6 {
  color: #272727;
}

.benefits-section .bene-content-wrap .card-set:nth-of-type(even) .img-card {
  background-color: #056baa;
}

.job-section {
  padding: 5%;
  background-image: url(../image/job-background.png);
  background-size: cover;
  width: 100%;
  height: 100%;
}

.job-section .title {
  color: #fff;
  text-align: center;
}

.job-section .text {
  color: white;
  text-align: center;
  font-size: 1.5rem;
  line-height: 5rem;
  background: rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}

.custom-select {
  position: relative;
  font-family: sans-serif;
  user-select: none;
  cursor: pointer;
  margin: 3vw 10vw;
}

.selected {
  padding: 10px;
  background-color: var(--white, #fff);
  color: black;
  border: 1px solid #37aa05;
  font-size: 32px;
  font-weight: bold;
}

.selected::before {
  content: "";
  position: absolute;
  background-image: url(../image/down-b.png);
  background-size: contain;
  height: 35px;
  width: 35px;
  right: 2%;
  bottom: 25%;
}

.options {
  position: absolute;
  width: 100%;
  border: 1px solid #37aa05;
  background: white;
  display: none;
  z-index: 1;
}

.options li {
  color: #37aa05;
  background: white;
  padding: 1%;
  padding-right: 10px;
  border-bottom: 1px solid;
}

.options li:hover {
  background-color: #ffe6cc;
}

.recruit-content ul {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.recruit-content ul li {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2vw;
  align-items: stretch;
}

.recruit-content ul li .b {
  display: flex;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2vw 0vw 2vw 5vw;
  align-items: center;
}

.recruit-content ul li:nth-of-type(even) .b {
  background-color: rgba(185, 228, 255, 0.9);
}

.more-b {
  text-align: center;
  margin: auto;
  background-color: #37aa05;
  padding: 2vw 10vw;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -2vw;
}

.more-b:hover {
  background-color: #ddff88;
}

.more-b:hover h6 {
  color: #37aa05;
}

@media (max-width: 768px) {
  .top-section {
    height: 492px;
  }
  .top-section h3 {
    position: absolute;
    bottom: 15vw;
    left: 5vw;
  }
  .movie-section {
    text-align: center;
    padding: 5vw;
  }
  .voice-section {
    padding: 5vw 10vw;
  }
  .benefits-section {
    padding: 10vw 5vw;
  }
  .benefits-section .bene-content-wrap {
    gap: 10.5vw;
    display: flex;
    flex-direction: column;
  }
  .benefits-section .bene-content-wrap .card-set {
    max-width: 100%;
    padding: 2vw;
  }
  .benefits-section .bene-content-wrap .card-set .img-card {
    padding: 0;
    max-width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    position: relative;
    min-height: 124px;
    height: 100%;
  }
  .benefits-section .bene-content-wrap .card-set .img-card img {
    position: absolute;
    object-fit: contain;
    max-height: 94px;
    max-width: 94px;
    bottom: -5px;
    right: -5px;
  }
  .benefits-section .bene-content-wrap .card-set .img-card h5 {
    margin: auto;
  }
  .job-section {
    padding: 2vw 0;
    padding-bottom: 15vw;
  }
  .custom-select {
    position: relative;
    font-family: sans-serif;
    user-select: none;
    cursor: pointer;
    margin: 3vw 10vw;
  }
  .selected {
    padding: 10px;
    background-color: var(--white, #fff);
    color: black;
    border: 1px solid #37aa05;
    font-size: 14px;
    font-family: "FP-ヒラギノ角ゴ ProN W6";
  }
  .selected::before {
    height: 20px;
    width: 20px;
    right: 5%;
    bottom: 25%;
  }
  .options {
    position: absolute;
    width: 100%;
    border: 1px solid #37aa05;
    background: white;
    display: none;
    z-index: 1;
  }
  .recruit-content ul {
    display: flex;
    flex-direction: column;
    gap: 1vw;
  }
  .recruit-content ul li {
    grid-template-columns: auto;
  }
  .recruit-content ul li:nth-of-type(even) h6.b {
    background-color: transparent;
  }
  .recruit-content ul li h6.b {
    background-color: transparent;
    color: #fff;
  }
  .more-b {
    padding: 1vw 5vw;
    margin-top: -2vw;
  }
}
