@charset "utf-8";

.interview_cont {
  max-width: 900px;
  margin: auto;
  padding-top: 80px;
}

.interview_head {
  position: relative;
  background: #FFF;
  padding: 40px;
  border: 6px solid #4E4445;
  border-radius: 12px;
  margin-top: -20px;
  z-index: 1;
}

.interview_head p {
  color: #000;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.interview_mv {
  position: relative;
  margin-top: -120px;
  z-index: 1;
}

.interview_main_cont {
  max-width: 1100px;
  width: 90%;
  margin: auto;
  margin-top: 100px;
}

.interview_main_cont.last {
  margin-bottom: 100px;
}

.question_bar {
  width: 95%;
  margin-left: 5%;
  background: #F18330;
  border-radius: 25px;
  position: relative;
  padding: 35px;
  padding-left: 90px;
  z-index: 1;
}

.question_bar img {
  position: absolute;
  width: 120px;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.question_bar p {
  font-size: 2.6rem;
  color: #FFF;
  font-weight: bold;
}

.answer_box {
  margin-top: 20px;
}

.answer_txt {
  width: 80%;
  position: relative;
  background: #FFF;
  padding: 60px 40px;
  border-radius: 24px;
}

.answer_txt::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 35px solid #ffffff;
  border-right: 0;
  border-radius: 3px;
  top: 50%;
  right: -3%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.answer_txt p {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.8;
}

.answer_ico {
  width: 16%;
  margin-left: 4%;
}


@media screen and (max-width: 768px) {

  .interview_mv {
    margin-top: -20px;
  }

  .interview_mv img {
    width: 90%;
    display: block;
    margin: auto;
  }

  .interview_head {
    width: 90%;
    margin: auto;
    margin-top: -20px;
    border: 3px solid #4E4445;
    padding: 20px;
  }

  .interview_head p {
    font-size: 1.8rem;
  }

  .interview_main_cont {
    margin-top: 60px;
  }

  .interview_main_cont.last {
    margin-bottom: 60px;
  }

  .question_bar {
    width: 90%;
    margin-left: 10%;
    padding: 15px;
    padding-left: 35px;
    border-radius: 12px;
  }

  .question_bar img {
    width: 20%;
    top: -10%;
    left: -10%;
  }

  .question_bar p {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .answer_box {
    position: relative;
  }

  .answer_txt {
    width: 90%;
    border-radius: 12px;
    padding: 18px;
  }

  .answer_txt p {
    width: 85%;
    font-size: 1.2rem;
  }

  .answer_ico {
    position: absolute;
    top: -5%;
    right: 0;
    width: 25%;
  }

  .answer_txt::after {
    display: none;
  }


}
