.recruit_interview{
  background-color: #f5f5f7;
}

.nav-fixed-inner, .nav-fixed-wrap {
  background-color: transparent;
}

.sub_intro {
  border-bottom: 1px solid #e60012;
  padding-bottom: 25px;
}

.interview_head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: -10px;
  margin-top: -36px;
}

.interview_en {
  color: #e60012;
  font-size: 64px;
  line-height: 86px;
  font-weight: bold;
}

.interview_num {
  color: #e60012;
  font-size: 100px;
  line-height: 135px;
  font-weight: bold;
}

/* Animation Interview */

.interview_catch {
  display: inline-block;
  margin-top: 20px;
  background: transparent;
  color: transparent;
  font-size: 36px;
  line-height: 52px;
  font-weight: bold;
  padding: 6px 16px;

  position: relative;
  overflow: hidden;
  z-index: 1;
}

.interview_catch::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: #000;
  z-index: -1;
}

.interview_catch.is-show {
  color: #fff;
}

.interview_catch.is-show::before {
  animation: slideBg 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slideBg {
  0% {
    left: -120%;
  }
  100% {
    left: 0%;
  }
}

.interview_profile {
  margin-top: -41px;
}

.interview_info_top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.interview_tag {
  background: #e60012;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  padding: 10px;
}

.interview_tag-second {
    background: #0091C6 !important;
}

.interview_area {
  color: #e60012;
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
}

.interview_department {
  margin-top: 14px;
  margin-bottom: 14px;
  color: #e60012;
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
}

.interview_join {
  color: #333333;
  font-size: 20px;
  line-height: 29px;
  font-weight: 400;
}

.interview_name_wrap {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-top: -2px;
}

.interview_name_jp {
  color: #333333;
  font-size: 36px;
  line-height: 52px;
  font-weight: bold;
}

.interview_name_en {
  color: #333333;
  font-size: 24px;
  line-height: 35px;
  font-weight: bold;
}

.interview_work_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 100px;
}

.interview_work_q {
  color: #e60012;
  font-size: 24px;
  line-height: 1.4;
  font-weight: bold;
}

.interview_work_title_wrap {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 14px;
}

.interview_work_title_wrap_top {
  margin-top: 24px;
}

.interview_work_line {
  width: 60px;
  height: 2px;
  background: #e60012;
  margin-top: 25px;
  flex-shrink: 0;
}

.interview_work_title {
  color: #333333;
  font-size: 32px;
  line-height: 48px;
  font-weight: bold;
}

.interview_work_right p {
  color: #333333;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
}

.interview_marker {
  font-weight: bold;
  background: linear-gradient(
    to bottom,
    transparent calc(100% - 10px),
    rgba(230, 0, 18, 0.16) calc(100% - 10px)
  );
}

.interview_marker-bold{
  background: none !important;
}

.interview_img_second {
  padding: 100px 0 0;
}

.interview_gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  padding: 100px 0 0;
}

.interview_img_full {
  padding: 100px 0 0;
}

/* Animation Text */
.split-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.split-text.is-show span {
  opacity: 1;
  transform: translateY(0);
}

.interview_img {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.interview_img.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* Animation Fade Up */
.fade-up {
  opacity: 0;
  transform: translate3d(0, 80px, 0);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.fade-up.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 750px) {
  .sub_intro {
    margin-bottom: 58px;
    padding-bottom: 12px;
  }

  .nav-fixed-inner, .nav-fixed-wrap {
    background-color: #f5f5f7;
  }

  .sub_container {
    margin: 50px auto 100px;
  }

  .interview_head {
    gap: 14px;
    margin-top: -55px;
    margin-bottom: -5px;
  }

  .interview_en {
    font-size: 34px;
    line-height: 48px;
  }

  .interview_num {
    font-size: 50px;
    line-height: 78px;
  }

  .interview_catch {
    font-size: 21px;
    line-height: 12.5px;
    padding: 10px;
  }

  .interview_work_wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 50px;
    align-items: start;
  }

  .interview_work_q {
    font-size: 18px;
  }

  .interview_work_title {
    font-size: 21px;
    line-height: 1.4;
  }

  .interview_work_line {
    width: 30px;
    margin-top: 14px;
  }
  .interview_gallery {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 50px 0 0;
  }
  .interview_tag {
    padding: 6px;
  }
  .interview_info_top {
    display: inline-block;
  }
  .interview_area {
    font-size: 12px;
    line-height: 17.5px;
    margin-top: 6px;
  }
  .interview_department {
    font-size: 12px;
    line-height: 17.5px;
  }
  .interview_join {
    font-size: 10px;
    line-height: 16px;
  }
  .interview_name_jp {
    font-size: 21px;
    line-height: 30.5px;
  }
  .interview_name_en {
    font-size: 14px;
    line-height: 20px;
  }
  .interview_work_title_wrap {
    gap: 8px;
  }
  .interview_work_wrap {
    gap: 17.5px;
  }
  .interview_work_right p {
    font-size: 14px;
    line-height: 26px;
  }
  .interview_marker {
    background: linear-gradient(
      to bottom,
      transparent calc(100% - 9px),
      rgba(230, 0, 18, 0.16) calc(100% - 9px)
    );
  }
  .interview_img_second {
    padding: 50px 0 0;
  }
  .interview_work_title_wrap_top {
    margin-top: 14px;
  }
  .interview_img_full {
    padding: 50px 0 0;
  }
}
