@charset "UTF-8";
/* ------------------------------------------------------------
// design
------------------------------------------------------------ */
#recruit {
  scroll-margin-top: 40px;
}

.about-page-title-img {
  background: url(../images/about/page-title-image.jpg) no-repeat center center/cover;
}

.anchor-select {
  text-align: center;
  margin: 0 auto;
}
.anchor-select ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.anchor-select ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  min-width: 280px;
  height: 64px;
  padding-bottom: 10px;
  background-color: #ffffff;
  border: 2px solid #f49e4c;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.anchor-select ul li a::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 2px solid #f49e4c;
  border-bottom: 2px solid #f49e4c;
  transition: transform 0.3s, border-color 0.3s;
}
.anchor-select ul li a:hover {
  background-color: #f49e4c;
  color: #ffffff;
}
.anchor-select ul li a:hover::after {
  border-color: #ffffff;
}
@media print, screen and (max-width: 767px) {
  .anchor-select ul {
    gap: 10px;
  }
}
@media screen and (max-width: 499px) {
  .anchor-select ul {
    margin: 0 15px;
  }
  .anchor-select ul li {
    width: 100%;
  }
  .anchor-select ul li a {
    height: 58px;
    padding-bottom: 8px;
  }
}

/* メインスライダーの画像 */
.slider-for img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* カスタム矢印ボタン */
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  background: rgba(244, 158, 76, 0.8);
  color: #fff;
  font-size: 24px;
  z-index: 10;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.slick-prev:focus,
.slick-next:focus {
  outline: none;
  box-shadow: none;
}

/* サムネイルスライダー */
.slider-nav {
  margin-top: 20px;
}

.slider-nav img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.slider-nav .slick-current img {
  opacity: 1;
  border: 2px solid #f49e4c;
}

.slider-nav .slick-slide {
  margin-right: 8px;
}

.slider-nav .slick-list {
  margin-right: -8px;
}

.slider-box {
  margin: 0 60px;
}
@media screen and (max-width: 767px) {
  .slider-box {
    margin: 0 15px;
  }
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 30px;
}
.link-list li {
  width: calc((100% - 40px) / 3);
}
.link-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
  width: 100%;
  height: 60px;
  background: #ffffff;
  border: 2px solid #f49e4c;
  border-radius: 30px;
  color: #333333;
  position: relative;
  overflow: hidden;
  transition: 0.6s;
}
.link-list li a:hover {
  color: #ffffff;
  background: #f49e4c;
}
.link-list li a::before {
  content: "▶";
  font-size: 12px;
  color: #f49e4c;
  margin-right: 12px;
  transition: transform 0.6s;
}
.link-list li a:hover::before {
  color: #ffffff;
  transform: translateX(4px);
}
.link-list li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: left 0.5s;
}
.link-list li a:hover::after {
  left: 100%;
}
@media print, screen and (max-width: 991px) {
  .link-list li {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .link-list {
    margin: 0 15px;
  }
  .link-list li {
    width: 100%;
  }
}