@charset "UTF-8";
/** フォントサイズ変数（bodyの18pxを基準としたrem値） */
/** ブレークポイント */
/** トランジション・アニメーション */
/** mixinの定義 */
/** PC/SP表示切り替え用mixin */
/* ----------------------------------------
 * 共通アニメーション定義
 * ---------------------------------------- */
@keyframes skeleton_loading {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes btn_animation {
  0% {
    transform: translate(6px, 0px);
  }
  5% {
    transform: translate(-6px, 0px);
  }
  10% {
    transform: translate(6px, 0px);
  }
  15% {
    transform: translate(-6px, 0px);
  }
  20% {
    transform: translate(6px, 0px);
  }
  25% {
    transform: translate(-6px, 0px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
/** トップページ */
/** slider */
.slider__contents {
  max-width: 1530px;
  margin: 0 auto;
}
.slider__contents .swiper-slide-link {
  display: block;
}
.slider__contents .swiper-slide-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  object-fit: cover;
  aspect-ratio: 1530/817;
  background-color: #ebf0f3;
}
.slider__contents .swiper-slide-image:hover {
  opacity: 0.8;
}
.slider__contents .custom-pagination {
  gap: 8px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider__contents .custom-pagination .pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider__contents .custom-pagination .pagination-bullet.active {
  background-color: #e73273;
  transform: scale(1.2);
}

/** about */
.about__head {
  max-width: 900px;
  margin: 0 auto;
}
.about__title {
  max-width: 620px;
  margin: 0 auto;
}
.about__title .subtitle {
  color: #e73273;
  font-size: 1.167rem;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 0.2rem;
  text-align: left;
  font-weight: 600;
}
@media (max-width: 768px) {
  .about__title .subtitle {
    font-size: 0.889rem;
  }
}
.about__description {
  margin: 3rem 0;
  font-size: 1.167rem;
  text-align: center;
}
@media (max-width: 768px) {
  .about__description {
    font-size: 1rem;
    margin: 2rem 0;
  }
}
.about__image {
  margin: 0 auto;
  max-width: 1350px;
  width: 100%;
  height: auto;
}

/** recruit コンポーネントスタイル */
.recruit__head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .recruit__head {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
.recruit__title {
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .recruit__title {
    margin-right: 0;
  }
}
.recruit__catch {
  font-size: 0.889rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2rem;
  text-align: left;
  font-weight: 600;
}
@media (max-width: 768px) {
  .recruit__catch {
    font-size: 1rem;
  }
}
.recruit__image {
  padding-right: 2rem;
  border-right: 2px solid #000000;
}
.recruit__image img {
  width: 100%;
  max-width: 300px;
  /* SVGのサイズを明示的に指定 */
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .recruit__image {
    padding-right: 0;
    border-right: 0;
  }
}
.recruit__desc {
  margin-top: 1.5rem;
  font-size: 1.167rem;
}
@media (max-width: 768px) {
  .recruit__desc {
    margin-top: 0.5rem;
  }
}
.recruit__more {
  margin-top: 3rem;
  text-align: center;
}