@charset "UTF-8";
/*------------------------------
共通設定
------------------------------*/
/*------------------------------
求人例の詳細
------------------------------*/
.jobListSec {
  width: 100%;
  height: 100%;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, rgba(95, 216, 71, 0.14) 4px, rgba(95, 216, 71, 0.14) 8px);
}
.jobListSec > .inner {
  padding: 0.32rem 0 0.56rem;
}
.jobListSec::after {
  display: none;
}
.jobListSec .heading.heading_img {
  display: block;
  width: 70%;
  max-width: 420px;
  margin: 0 auto;
}
.jobListSec .leadBox.leadBox__heading {
  width: 100%;
  max-width: 640px;
  margin: 0.32rem auto;
  text-align: center;
  font-size: clamp(14px, 3vw, 16px);
}
.jobListSec .upperBox > .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4px;
}
.jobListSec .upperBox .ttlBox {
  width: 100%;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.jobListSec .upperBox .thumbBox {
  width: 43%;
  height: 100%;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  text-align: center;
}
.jobListSec .upperBox .thumbBox > img {
  min-height: 130px;
  max-height: 130px;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.jobListSec .upperBox .thumbBox > img.cardThumb01 {
  object-position: top 0 right -28px;
}
.jobListSec .upperBox .thumbBox > img.cardThumb02 {
  object-position: top 0 right -45px;
}
.jobListSec .upperBox .thumbBox > img.cardThumb03 {
  object-position: top 0px left -30px;
}
.jobListSec .upperBox .thumbBox > img.cardThumb04 {
  object-position: top 0px left -28px;
}
.jobListSec .lowerBox {
  margin: 0.2rem auto 0;
}
.jobListSec .lowerBox .leadBox .txt {
  font-size: clamp(12px, 3vw, 14px);
  line-height: 1.5;
  letter-spacing: 0.01rem;
}

/*求人例*/
.jobListWrap {
  width: 100%;
  margin: 0.32rem auto 0.16rem;
}

.jobList > .item {
  background: #fff;
  border-radius: 14px;
  padding: 0.32rem;
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.03);
}
.jobList .ttlBox .ttl {
  font-size: clamp(16px, 4vw, 18px);
  line-height: 1.5;
}
.jobList .tagList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0.16rem 0 0 0;
}
.jobList .tagList > .tag {
  padding: 0.12rem;
  border-radius: 4px;
  font-size: clamp(10px, 2vw, 12px);
  font-weight: bold;
  background: #FFFC4D;
}

.jokenBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin: 0.16rem auto 0;
  padding-top: 0.16rem;
  border-top: dashed rgba(0, 0, 0, 0.16) 1px;
}
.jokenBox .ttlBox {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  padding: 0.08rem 0.12rem;
}
.jokenBox .ttlBox .ttl {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: bold;
  color: #fff;
}
.jokenBox .jokenCont .txt {
  font-size: clamp(14px, 4vw, 18px);
  font-weight: bold;
}
.jokenBox .jokenCont .txt > .small {
  font-size: 0.5em;
}
.jokenBox .jokenCont .txt .detail {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.6em;
  font-weight: normal;
}

.etcBox {
  text-align: right;
  padding-right: 0.2rem;
}
.etcBox > .txt {
  font-size: clamp(10px, 2vw, 12px);
}

.nekoBox {
  width: 12%;
  position: absolute;
  bottom: -50px;
  left: 20px;
  z-index: 2;
}

.arrowBox {
  width: 100%;
  max-width: 600px;
  margin: 0.32rem auto 0.16rem;
  text-align: center;
}
.arrowBox > .txt {
  display: block;
  font-weight: bold;
  font-size: clamp(16px, 4vw, 21px);
  color: #333;
  position: relative;
}
.arrowBox > .txt::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-top: 16px solid #333;
  border-bottom: 0;
  position: absolute;
  bottom: -0.56rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  animation-name: downArrow;
  animation-iteration-count: infinite;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

@keyframes downArrow {
  0% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
/*------------swiper上書き-----------*/
.swiper .swiper-slide {
  height: auto;
}

.swiper .swiper-slide-item {
  height: 100%;
}

.swiperArea {
  position: relative;
}

.swiper-button-prev:after, .swiper-button-next:after {
  font-size: 0.4rem;
  color: #333;
}

/*-----------------------------------
PC版上書き
-----------------------------------*/
@media screen and (min-width: 768px) {
  .jobListSec {
    position: relative;
  }
  .jobListSec::after {
    display: block;
    content: "";
    width: 100vw;
    height: 100%;
    background-size: auto auto;
    background-color: rgb(255, 255, 255);
    background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, rgba(95, 216, 71, 0.14) 4px, rgba(95, 216, 71, 0.14) 8px);
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
  }
  .jobListSec .upperBox > .inner {
    flex-direction: column-reverse;
    gap: 8px;
  }
  .jobListSec .upperBox .thumbBox {
    width: 100%;
  }
  .jobListSec .upperBox .thumbBox > img.cardThumb01 {
    object-position: inherit;
  }
  .jobListSec .upperBox .thumbBox > img.cardThumb02 {
    object-position: inherit;
  }
  .jobListSec .upperBox .thumbBox > img.cardThumb03 {
    object-position: inherit;
  }
  .jobListSec .upperBox .thumbBox > img.cardThumb04 {
    object-position: inherit;
  }
  .jobListSec .lowerBox .leadBox {
    min-height: 150px;
  }
  .jobListWrap {
    width: 90vw;
    position: relative;
    z-index: 2;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .jobList {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
  }
  .jobList .ttlBox {
    text-align: center;
  }
  .jobList > .item {
    width: 100%;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    padding: 0.2rem;
  }
  .jobList .tagList .tag {
    padding: 0.05rem;
  }
  .jokenBox {
    flex-direction: column;
    text-align: center;
  }
  .jokenBox .ttlBox {
    padding-top: 0.04rem;
    padding-bottom: 0.04rem;
  }
  .jokenBox .jokenCont .txt {
    text-align: center;
  }
  .jokenBox .jokenCont .txt > .small {
    display: block;
    margin-top: 0.04rem;
  }
  .nekoBox {
    width: 8%;
    position: absolute;
    bottom: -50px;
    left: 80px;
    z-index: 2;
  }
} /*media query end*/
/**//*# sourceMappingURL=style-job.css.map */