@charset "utf-8";

.pv_visual{
  background: url(../../img/page_visual.png) no-repeat center/cover;
}

.staff_intro{
  padding-top: 30px;
}
.si_inner{
  max-width: 1120px;
  width: 100%;
  margin: auto;
}
.si_box{
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/intro_bg.png) no-repeat center/cover;
}
.sb_l{
  max-width: 460px;
  width: 100%;
  & h2{
    font-size: 3.2rem;
    line-height: 1.75;
    letter-spacing: 1.28px;
  }
}
.charge{
  font-size: 2.4rem;
  color: var(--main-color);
  font-weight: bold;
  margin-top: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #3D77EB;
  max-width: 390px;
}
.name{
  margin-top: 20px;
  & span{
    font-size: 1.4rem;
    font-family: "Montserrat";
    font-weight: normal;
  }
}
.name_maga{
  font-size: 2.4rem !important;
  font-weight: bold !important;
}
.location{
  font-size: 1.4rem;
  font-weight: bold;
}

.interview{
  padding: 80px 0 110px 0;
}
.inter_box{
  margin-top: 60px;
  &:first-child{
    margin-top: 0;
  }
}
.ib_inner{
  max-width: 1024px;
  width: 100%;
  margin: auto;
}
.ib_top{
  display: flex;
  align-items: center;
  gap: 30px;
}
.number{
  color: var(--main-color);
  font-size: 1.2rem;
  font-family: "Montserrat";
  font-weight: bold;
  text-align: center;
  & span{
    font-size: 6.4rem;
    font-weight: 700;
    display: block;
    margin-top: -15px;
  }
}
.reason{
  font-size: 2.4rem;
  font-weight: bold;
}
.answer{
  line-height: 2;
  font-weight: 500;
}
.ib_flex{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.ii_txt_box{
  max-width: 650px;
  width: 100%;
}

.schedule{
  background: #F8F8F8;
  padding: 65px 0 95px 0;
}
.sch_inner{
  max-width: 800px;
  width: 100%;
  margin: auto;
}
.sch_detail{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
  &::before{
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background: var(--main-color);
    position: absolute;
    left: 55px;
    z-index: -1;
  }
}
.sd_box{
  display: flex;
  align-items: center;
  gap: 30px;
}
.sd_box:last-child::before{
  display: none;
}
.sch_time{
  width: 110px;
  height: 110px;
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: var(--main-color);
  background: url(../img/time_bg.png) no-repeat center/contain;
}
.job_detail{
  line-height: 2;
  font-weight: 500;
}

.person{
  padding: 100px 0 160px 0;
  position: relative;
}
.per_swiper{
  margin-top: 20px;
  & a{
      color: #333333;
  }
}
.ps_txt_top{
  font-size: 1.4rem;
  & span{
      font-size: 1.8rem;
      font-weight: bold;
  }
}
.ps_txt_bottom{
  font-size: 1.4rem;
  font-family: "Montserrat";
  .ptb_mega{
      font-size: 2.4rem;
      font-weight: bold;
      font-family: "Zen Kaku Gothic Antique";
  }
}
.per_swiper-slide{
  margin-right: 40px;
}
.per_slide_allow{
  position: relative;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 350px;
  width: 100%;
  &::before{
      position: absolute;
      content: "";
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 205px;
      width: 100%;
      height: 1px;
      background-color: #FFF;
  }
}
/* 幅・高さを指定 */
.swiper-button-prev,
.swiper-button-next {
  height: 50px;
  width: 50px;
}
/* 矢印を消す、画像に変更 */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: 50px;
  width: 50px;
  margin: auto;
}
/* 前に戻る画像パス */
.swiper-button-prev:after {
  background-image: url(../../img/per_prev.svg);
}
/* 次に進む画像パス */
.swiper-button-next:after {
  background-image: url(../../img/next_prev.svg);
}


@media screen and (max-width: 767px){
  .si_inner{
    padding: 0 5%;
  }
  .si_box{
    flex-direction: column;
    padding: 50px 5% 0;
    border-radius: 40px;
    gap: 20px
  }
  .sb_l h2{
    font-size: 2.8rem;
  }
  .charge {
    margin-top: 20px;
  }

  .interview {
    padding: 50px 0;
  }
  .inter_box {
    margin-top: 50px;
  }
  .ib_inner{
    padding: 0 5%;
  }
  .ib_top {
    flex-direction: column;
    gap: 0;
  }
  .ib_flex{
    flex-direction: column-reverse;
    padding: 0 5%;
  }
  .number span{
    font-size: 4.8rem;
  }
  .answer{
    margin-top: 30px;
  }

  .schedule {
    padding: 50px 0;
  }
  .sch_inner{
    padding: 0 5%;
  }
  .sch_time{
    font-size: 1.6rem;
    width: 60px;
    height: 60px;
  }
  .sch_detail::before {
    left: 30px;
  }
  .sd_box {
    gap: 15px;
  }
  .job_detail {
    width: calc(100% - 75px);
  }

  .person{
    padding: 70px 0 100px 0;
  }
  .pi_top{
    flex-direction: column;
    padding: 0 5%;
    align-items: flex-start;
  }
  .per_btn{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .per_swiper-slide {
    margin-right: 0;
  }
  .per_slide_allow{
    display: none;
  }
}