.job-list-section {
  margin: 40px auto;
  padding: 20px;
  background: linear-gradient(to right, #fffce4, #ffffff);
}

.job-list-bg {  
  width: 100%;
}

.job-list-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
}

.job-slider {
  position: relative;
  overflow: visible;
}

.job-card {
  background: #fff;
  padding: 10px;
  margin: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-card img {
  width: 100%;
  border-radius: 8px;
}

.job-card h3 {
  margin: 10px 0 5px;
  font-size: 16px;
}

.job-card p {
  color: #000000;
  font-weight: bold;
}

.job-list-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  padding-right: 10px;
}
@media (max-width: 896px) {
  .job-list-link {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}

.job-list-link a {
  display: inline-block;
  background-color: transparent;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  justify-items: center;
  border: 2px solid #000000;
  border-radius: 6px;
  width: 200px;
  height: 50px;
  line-height: 50px;
  transition: background-color 0.3s;
}

.job-list-link a:hover {
  background-color: #000000;
  color: #ffffff;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000 !important;
  border-radius: 50%;
  width: 60px !important;
  height: 60px !important;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.slick-prev {
  left: -80px !important;
}

.slick-next {
  right: -80px !important;
}
@media screen and (max-width: 1280px) {
  .slick-prev {
    left: -50px !important;
}
  .slick-next {
    right: -50px !important;
}
}
@media screen and (max-width: 896px) {
  .slick-prev,
  .slick-next {
    width: 30px !important;
    height: 30px !important;
  }
  .slick-prev {
    left: -30px !important;
}
  .slick-next {
    right: -30px !important;
}

}

.slick-prev:hover,
.slick-next:hover {
  background-color: #ffc8d4 !important; /* ホバー時背景色 */
}

.slick-prev::before,
.slick-next::before {
  content: '';
  font-size: 100px;
  color: white;
  opacity: 1;
}

.slick-prev::before {
  content: "←";
}

.slick-next::before {
  content: "→";
}
