.sub_container {
  margin: 100px auto 50px;
}

.fixed-on .nav-fixed-inner {
  z-index: 10;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.fadeIn {
  transition: all 1.5s;
  opacity: 0;
  transform: translate(0, 3rem);
}

.fadeIn.show {
  opacity: 1;
  transform: translate(0, 0);
}

.interview_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 18px;
}

.interview_item a {
  display: block;
  text-decoration: none;
}

.interview_img {
  position: relative;
}

.interview_img img {
  width: 100%;
  display: block;
}

.interview_no {
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 70px;
  line-height: 95px;
  font-weight: bold;
  color: #E60012;
}

.interview_catch {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 5px;
  align-items: flex-start;
}

.interview_catch span {
  writing-mode: vertical-rl;
  background: #000;
  color: #fff;
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
  padding: 10px 5px;
}

.interview_catch .eq {
  margin: 4px 0;
  font-size: 21px;
  line-height: 21px;
}

.interview_icon {
  position: absolute;
  right: 0;
  bottom: 0;
}

.interview_icon img {
  width: 59px;
  height: 59px;
}

.interview_info {
  margin-top: 10px;
}

.interview_top {
  display: flex;
  align-items: center;
}

.tag {
  background: #E60012;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
  padding: 12px;
}

.tag-second {
  background: #0091C6 !important;
}

.area {
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  color: #929A9F;
  margin-left: 14px;
}

.dept {
  margin: 8px 0 26px;
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  color: #929A9F;
}

.year {
  font-size: 14px;
  line-height: 20px;
  color: #333;
  margin-bottom: 1px;
}

.name {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.name strong {
  font-size: 24px;
  line-height: 35px;
  font-weight: bold;
  color: #333;
}

.name span {
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 750px) {

  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .sub_container {
    margin: 50px auto 100px;
    overflow: hidden;
    padding-right: 0px;
  }

  .interview_list_sp {
    overflow: hidden;
  }

  .interview_slider {
    overflow: visible;
    padding-right: 0px;
    position: relative;
  }

  .interview_slider .swiper-wrapper {
    align-items: flex-start;
  }

  .interview_slider .swiper-slide {
    width: calc(100vw - 150px) !important;
    margin-right: 20px !important;
    flex-shrink: 0;
  }

  .interview_item {
    height: 100%;
    width: 100%;
  }

  .interview_img {
    position: relative;
    overflow: hidden;
  }

  .interview_img img {
    width: 100%;
    aspect-ratio: 450 / 592;
    object-fit: cover;
    display: block;
  }

  .interview_no {
    top: 6px;
    left: 12px;
    font-size: 46px;
    line-height: 1;
  }

  .interview_catch {
    top: 9px;
    right: 11px;
    gap: 4px;
  }

  .interview_catch span {
    font-size: 16px;
    line-height: 16px;
    padding: 3px 3px 8px;
    margin: 4px 0px;
  }

  .interview_icon img {
    width: 30px;
    height: 30px;
  }

  .interview_info {
    margin-top: 8px;
  }

  .interview_top {
    display: inline-grid;
    gap: 6px;
  }

  .tag {
    font-size: 14px;
    line-height: 20px;
    padding: 5px 9px;
  }

  .area {
    margin: 3px 2px -3px;
    font-size: 11px;
    line-height: 16px;
  }

  .dept {
    font-size: 12px;
    line-height: 18px;
    margin: 12px 0 7px;
  }

  .year {
    font-size: 10px;
    line-height: 14.5px;
    margin-bottom: 1.5px;
  }

  .name {
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }

  .name strong {
    font-size: 18px;
    line-height: 25.5px;
  }

  .name span {
    font-size: 12px;
    line-height: 18px;
  }

  .interview_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 9px;
    padding-right: 20px;
  }

  .interview_prev,
  .interview_next {
    position: static;
    width: 60px;
    height: 60px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
  }

  .interview_prev::after,
  .interview_next::after {
    display: none;
  }

  .interview_prev img,
  .interview_next img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .interview_progress {
    position: relative;
    flex: 1;
    height: 3px;
    background: #EBEBEB;
    overflow: hidden;
    margin: 0 -3px;
  }

  .progress_bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #E60012;
    transition: width .3s ease;
  }

  .interview_nav .swiper-button-prev,
  .interview_nav .swiper-button-next {
    position: static !important;
    top: auto !important;
    margin-top: 0 !important;
    width: 30px;
    height: 30px;
    display: block !important;
  }

  .c-link-fixed li {
      margin: 0 5px !important;
  }

  .c-link-fixed .btn-link {
      height: 45px;
      width: 163px;
      padding: 0 20px;
  }
}

@media (min-width: 751px) and (max-width: 1024px) {

  .sub_container {
    margin: 70px auto 60px;
  }

  .interview_list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 16px;
  }

  .interview_no {
    top: 0;
    left: 10px;
    font-size: 52px;
    line-height: 1;
  }

  .interview_catch {
    top: 10px;
    right: 10px;
  }

  .interview_catch span {
    font-size: 18px;
    line-height: 18px;
    padding: 6px 4px;
  }

  .interview_icon img {
    width: 44px;
    height: 44px;
  }

  .interview_info {
    margin-top: 10px;
  }

  .tag {
    font-size: 13px;
    line-height: 18px;
    padding: 8px 10px;
  }

  .area {
    font-size: 12px;
    line-height: 18px;
    margin-left: 10px;
  }

  .dept {
    font-size: 13px;
    line-height: 18px;
    margin: 10px 0 14px;
  }

  .year {
    font-size: 12px;
    line-height: 16px;
  }

  .name {
    gap: 12px;
  }

  .name strong {
    font-size: 20px;
    line-height: 28px;
  }

  .name span {
    font-size: 14px;
    line-height: 20px;
  }
}


@media (min-width: 1025px) and (max-width: 1440px) {

  .sub_container {
    margin: 90px auto 60px;
  }

  .interview_list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 22px;
    row-gap: 18px;
  }

  .interview_no {
    top: -6px;
    left: 10px;
    font-size: 64px;
    line-height: 1;
  }

  .interview_catch span {
    font-size: 20px;
    line-height: 20px;
    padding: 8px 4px;
  }

  .interview_icon img {
    width: 52px;
    height: 52px;
  }

  .tag {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 12px;
  }

  .area {
    font-size: 13px;
    line-height: 20px;
  }

  .dept {
    font-size: 14px;
    line-height: 18px;
    margin: 8px 0 20px;
  }

  .year {
    font-size: 13px;
    line-height: 18px;
  }

  .name strong {
    font-size: 22px;
    line-height: 32px;
  }

  .name span {
    font-size: 16px;
    line-height: 22px;
  }
}
