@charset "utf-8";

.tb {
  display: none;
}

/* ===== top-item ====== */

.page-interview .top-item {
  margin-top: 93px;
  margin-right: 20%;
}

.page-interview .top-item .content {
  max-width: 1520px;
  width: 100%;
  padding: 20px 40px 20px 0;
  background-color: #005497;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-interview .top-item .info {
  margin-left: 22%;
  width: 525px;
}

.page-interview .top-item .info p {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.7;
}

@media (max-width: 1779px) {
  .page-interview .top-item .info {
    margin-left: 17%;
  }
}

@media (max-width: 1679px) {
  .page-interview .top-item .info {
    margin-left: 12%;
  }
}

@media (max-width: 1579px) {
  .page-interview .top-item .info {
    margin-left: 7%;
  }
}

@media (max-width: 1479px) {
  .page-interview .top-item .info {
    margin-left: 6%;
    width: 400px;
  }
}

@media (max-width: 1319px) {
  .page-interview .top-item .info {
    margin-left: 5%;
    width: 300px;
  }
}

@media (max-width: 1179px) {
  .page-interview .top-item .info {
    margin-left: 5%;
    width: 250px;
  }
}

/* ===== employee ====== */

.employee {
  margin-top: 60px;
}

.employee__inner {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.employee .content {
  display: flex;
  justify-content: space-between;
}

.employee .item--cross {
  position: relative;
}

.employee .item--cross::before {
  content: "";
  background-image: url(../img/interview/interview-cross.png);
  background-image: image-set(
    url(../img/interview/interview-cross.png) 1x,
    url(../img/interview/interview-cross@2x.png) 2x
  );
  background-image: -webkit-image-set(
    url(../img/interview/interview-cross.png) 1x,
    url(../img/interview/interview-cross@2x.png) 2x
  );
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  z-index: 1;
}

.employee .info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 20px;
}

.employee .info p {
  margin-top: 18px;
  font-size: 1.6rem;
  font-weight: 400;
}

/* ===== interview ====== */

.interview {
  margin-top: 106px;
}

.interview__inner {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.interview-ttl {
  font-size: 2rem;
  color: #005497;
  text-align: center;
  padding-bottom: 29px;
  border-bottom: 3px solid #005497;
  margin-top: 100px;
}

.interview .content {
  max-width: 908px;
  width: 100%;
  margin: 0 auto;
}

.interview .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}

.interview .item.item--top {
  margin-top: 40px;
}

.interview .item .pic-wrap {
  width: 150px;
}

.interview .item .pic-wrap p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 8px;
  text-align: center;
}

.interview .item .txt-box {
  width: 715px;
  position: relative;
}

.interview .item .txt-box .item-l,
.interview .item .txt-box .item-r {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  width: 637px;
}

.interview .item .txt-box .item-l {
  left: 50px;
}

.interview .item .txt-box .item-r {
  left: 30px;
}

/* ==========================================
/* tablet
/* ========================================== */

@media (max-width: 1079px) {

  .tb {
    display: block;
  }

  /* ===== top-item ====== */

  .page-interview .top-item {
    margin-top: 50px;
    margin-right: 0;
  }

  .page-interview .top-item .content {
    padding: 20px 0 20px 0;
    justify-content: space-around;
  }

  .page-interview .top-item .info {
    margin-left: 0;
    width: 270px;
  }

  .page-interview .top-item .pic {
    width: 416px;
    height: 280px;
  }

  .page-interview .top-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ===== employee ====== */

  .employee {
    margin-top: 70px;
  }

  .employee .content {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    max-width: 428px;
    width: 100%;
    margin: 0 auto;
  }

  .employee .item {
    position: relative;
  }

  .employee .item:not(:first-of-type) {
    margin-top: 60px;
  }

  .employee .item--cross {
    position: relative;
  }

  .employee .item--cross::before {
    content: none;
  }

  .employee .info {
    position: absolute;
    bottom: -20px;
    right: -100px;
    width: 200px;
  }

  .employee .info--orange {
    padding: 23px 0 29px 40px;
    background-color: #fff7ee;
  } 

  .employee .info--green {
    padding: 7px 0 11px 40px;
    background-color: #eef9ef;
  } 

  .employee .info--blue {
    padding: 8px 0 12px 40px;
    background-color: #e9f4fc;
  } 

  .employee .info h3 {
    margin-top: 0px;
  }

  .employee .info p {
    line-height: 1.4;
  }

  /* ===== interview ====== */

  .interview {
    margin: 53px 0 80px;
  }

  .interview-ttl {
    margin-top: 75px;
  }

  .interview .content {
    max-width: 730px;
  }

  .interview .item .pic-wrap {
    width: 130px;
  }

  .interview .item .pic-wrap .pic {
    width: 130px;
  }

  .interview .item .pic-wrap .pic img {
    width: 100%;
  }

  .interview .item .txt-box {
    width: 580px;
  }

  .interview .item .txt-box img {
    width: 580px;
    height: 60px;
  }

  .interview .item .txt-box img.txt-box__2 {
    height: 84px;
  }

  .interview .item .txt-box img.txt-box__3 {
    height: 108px;
  }

  .interview .item .txt-box img.txt-box__4 {
    height: 132px;
  }

  .interview .item .txt-box img.txt-box__5 {
    height: 156px;
  }

  .interview .item .txt-box img.txt-box__6 {
    height: 180px;
  }

  .interview .item .txt-box img.txt-box__7 {
    height: 204px;
  }
  
  .interview .item .txt-box img.txt-box__8 {
    height: 228px;
  }

  .interview .item .txt-box img.txt-box__9 {
    height: 252px;
  }

  .interview .item .txt-box .item-l,
  .interview .item .txt-box .item-r {
    width: 500px;
  }
}

/* ==========================================
/* sp
/* ========================================== */

@media (max-width: 767px) {

  /* ===== top-item ====== */

  .page-interview .top-item .content {
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column-reverse;
  }

  .page-interview .top-item .info {
    margin-left: 0;
    max-width: 89%;
    width: 100%;
    padding: 30px 10px 38px;
    background-color: #005497;
    margin-top: 10px;
  }

  .page-interview .top-item .info p {
    font-size: 1.6rem;
    line-height: 2;
  }

  .page-interview .top-item .pic {
    width: 100%;
    height: 227px;
  }

  @media (min-width: 500px) {

    .page-interview .top-item .pic {
      height: 327px;
    }
  }

  /* ===== employee ====== */

  .employee .content {
    max-width: 335px;
  }

  .employee .item:not(:first-of-type) {
    margin-top: 40px;
  }

  .employee .pic {
    width: 225px;
    height: 150px;
  }

  .employee .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .employee .info {
    position: absolute;
    bottom: -20px;
    right: -110px;
    width: 150px;
  }

  .employee .info--orange {
    padding: 23px 25px 29px 27px;
  } 

  .employee .info--green {
    padding: 7px 27px 11px;
  } 

  .employee .info--blue {
    padding: 8px 27px 12px;
  } 

  .employee .info h3 {
    font-size: 1.6rem;
  }

  .employee .info p {
    margin-top: 17px;
    font-size: 1.2rem;
    line-height: 1.3;
  }

  @media (max-width: 350px) {

    .employee .content {
      max-width: 300px;
    }

    .employee .pic {
      width: 202px;
      height: 135px;
    }

    .employee .info {
      position: absolute;
      bottom: -20px;
      right: -98px;
      width: 140px;
    }
  }

  /* ===== interview ====== */

  .interview {
    margin: 75px 0 70px;
  }

  .interview__inner {
    padding: 0 20px;
  }

  .interview-ttl {
    font-size: 1.8rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #005497;
  }

  .interview .content {
    max-width: 335px;
  }

  .interview .item {
    margin-top: 20px;
  }

  .interview .item.item--top {
    margin-top: 30px;
  }

  .interview .item .pic-wrap {
    width: 50px;
    margin-top: 20px;
  }

  .interview .item .pic-wrap .pic {
    width: 50px;
  }

  .interview .item .pic-wrap p {
    font-size: 1.1rem;
  }

  .interview .item .txt-box {
    width: 280px;
  }

  .interview .item .txt-box img {
    width: 280px;
    height: auto;
  }

  .interview .item .txt-box .item-l,
  .interview .item .txt-box .item-r {
    font-size: 1.4rem;
    line-height: 1.7;
    width: 223px;
  }

  .interview .item .txt-box .item-l {
    left: 40px;
  }

  .interview .item .txt-box .item-r {
    left: 19px;
  }
}

@media (max-width: 374px) {

  .interview__inner {
    padding: 0 5px;
  }

  .interview-ttl {
    font-size: 1.6rem;
  }


  .interview .item .txt-box {
    width: 250px;
  }

  .interview .item .txt-box img {
    width: 250px;
    height: auto;
  }

  .interview .item .txt-box .item-l,
  .interview .item .txt-box .item-r {
    font-size: 1.2rem;
    line-height: 1.7;
    width: 193px;
  }

}
