
.recruit-section {
  padding-top: 75px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .recruit-section {
    padding-top: 35px;
    padding-bottom: 80px;
  }
}

.recruit-section__header {
  padding-bottom: 0;
}

.workplace-section::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  min-width: 2400px;
  max-width: none;
  height: 100%;
  padding-top: 0;
  max-height: 1085px;
  aspect-ratio: 1512 / 1085;
  background: url("/recruit/common/img/recruit_cmn_sub-pages_bg_01.webp") center top/100% 100% no-repeat;
  z-index: -1;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .workplace-section::before {
    top: 127px;
    width: 100%;
    min-width: auto;
    left: 0;
    transform: none;
    background: url(/recruit/common/img/recruit_cmn_sub-pages_bg_01_sp.webp) center top / contain no-repeat;
  }
}

/* Movie */
.workplace-movie {
  width: 100%;
  max-width: 910px;
  cursor: pointer;
}

.workplace-movie__inner {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.workplace-movie__thumb,
.workplace-movie__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.workplace-movie__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.workplace-movie__video {
  display: none;
  object-fit: cover;
  z-index: 1;
}

.workplace-movie__inner:hover .workplace-movie__thumb {
  opacity: 0.7;
  transform: scale(1.05);
}

.workplace-movie__play::before,
.workplace-movie__play::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.workplace-movie__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.workplace-movie__play::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/recruit/common/img/recruit_cmn_icon_movie.svg") center center / contain no-repeat;
}

@media screen and (max-width: 768px) {
  .workplace-movie__play {
    width: 32px;
    height: 32px;
  }

  .workplace-movie__play::after {
    background-image: url("/recruit/common/img/recruit_cmn_icon_movie_sp.svg");
  }

}

.workplace-movie__pause {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  z-index: 10;

  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;

  cursor: pointer;
}

.workplace-movie__pause::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/recruit/common/img/recruit_cmn_icon_movie_pause.svg") center center / contain no-repeat;
}

@media (hover: hover) {
  .workplace-movie.is-play:hover .workplace-movie__pause {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 768px) {
  .workplace-movie__pause {
    width: 32px;
    height: 32px;
  }
  .workplace-movie__pause::after {
    background: url("/recruit/common/img/recruit_cmn_icon_movie_pause_sp.svg") center center / contain no-repeat;
  }
}

.workplace-movie.is-play .workplace-movie__thumb,
.workplace-movie.is-play .workplace-movie__play {
  display: none;
}

.workplace-movie.is-play .workplace-movie__video{
  display: block;
}


/* Common */
.banner-section__content {
  position: relative;
}

@media screen and (max-width: 768px) {
  .banner-section__content {
    margin-top: 90px !important;
  }
}

.banner-section__content .ico.pos07 {
  position: absolute;
  top: -226px;
  right: 44px;
  width: 178px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .banner-section__content .ico.pos07 {
    position: absolute;
    top: clamp(-87px, -16.992vw, -174px);
    right: 0px;
    width: clamp(87px, 16.992vw, 174px);
  }
}

@media screen and (max-width: 768px) {
  .banner-section__content .ico img {
    width: 100%;
  }
}
.banner-section__content .ico.hide {
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .banner-section__content .banner img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1400px) {
  .banner-section__content .ico.pos04 {
    top: -13vw;
    width: 32%;
  }
}

.page-cmn-wrap--w910 {
  width: 80vw;
  max-width: 910px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-cmn-wrap--w910 {
    width: 100%;
    max-width: none;
  }
}

.--bg-cyan {
  background: #E8F8F4;
}

.video-wrap {
    height: 0;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 56.266%;
    position: relative
}

.video-wrap iframe {
    border: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%
}

.interview-list {
  column-gap: min(0.521vw, 4px);
}

@media screen and (max-width: 768px) {
  .interview-list .slick-track {
    gap: min(0.521vw, 4px);
  }
}

@media screen and (max-width: 768px) {
  .interview-list .slick-list {
    margin-top: 0;
    padding-top: 0;
  }
}

.interview-list .interview-card {
  max-width: 464px;
  width: calc((100% - min(0.521vw, 4px) * 2) / 3);
}

@media screen and (max-width: 768px) {
  .interview-list .interview-card {
    max-width: 308px;
  }
}

.interview-list .interview-card__image {
  aspect-ratio: 464 / 271;
}

@media screen and (max-width: 768px) {
  .interview-list .interview-card__image {
    aspect-ratio: inherit;
    width: 308px;
    height: inherit;
  }
}

.interview-list .interview-card__image img {
  height: auto;
}

@media screen and (max-width: 768px) {
  .interview-list .interview-card__image img {
    position: inherit;
    max-width: 100%;
    max-height: inherit;
  }
}

@media screen and (max-width: 768px) {
  .cmn-section__title--main {
    font-size: 5.6rem;
  }
}

@media screen and (max-width: 768px) {
  .recruit__container .kurashiki-head-office-pager,
  .recruit__container .yakage-factory-pager {
    display: flex !important;
  }
}

.yakage-factory-pager,
.kurashiki-head-office-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 192px;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .yakage-factory-pager,
  .kurashiki-head-office-pager {
    margin: 40px auto 32px auto;
  }
}

.workplace h1.cmn-section__title {
  width: 70%;
}

.workplace .workplace-section__header .cmn-text-wrap {
  width: 65%;
}

@media screen and (max-width: 768px) {
  .workplace h1.cmn-section__title {
    width: 100%;
  }

  .workplace .workplace-section__header .cmn-text-wrap {
    width: 100%;
  }
}

@media screen and (max-width: 374px) {
  .cmn-section__title--main {
    font-size: 4.6rem;
  }
}

.interview-list .interview-card.slick-cloned[data-slick-index="-1"] {
  visibility: hidden;
}



@media screen and (max-width: 768px) {
  .recruit__container .--sp-mB-16 {
    margin-bottom: 16px !important;
  }

  .recruit__container .--sp-mT-70 {
    margin-top: 70px;
  }
}