.staff_img_container {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #\0030\0032.staff_img_container {
    margin-top: 60px;
  }
}

.staff_img {
  width: 30%;
}

.staff_img img {
  width: 100%;
  border: 6px solid #244271;
}

.staff_text {
  padding: 5%;
  width: 70%;
}

@media screen and (max-width: 768px) {
  .staff_img_container {
    display: block;
  }
  .staff_img {
    margin: 0 auto;
    width: 50%;
  }
  .staff_text {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #cccccc;
  }
  .staff_text h3 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: normal;
  }
}

.staff_message {
  font-size: 1.8rem;
  font-weight: 400;
}

.staff_interview label {
  color: #eb536b;
}

@media screen and (max-width: 768px) {
  .staff_interview label {
    padding: 10px 8% 10px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cccccc;
    position:relative;
  }
  .staff_interview label::after {
    content: "▼";
    color: #244372;
    position: absolute;
    right: 2%;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    display: inline-block;
  }
  .staff_interview input:checked + label + .interview_content {
    height: auto;
    padding-bottom: 30px;
  }
  .staff_interview input:checked + label::after {
    content: "▲";
  }
}

.interview_content {
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .interview_content {
    height: 0;
    padding:0;
    overflow: hidden;
    transition: 0.5s;
  }
}
.closeBtn {
  display: none;
  float: right;
  color: #244372;
}
@media screen and (max-width: 768px) {
  .closeBtn{
    display: block;
  }
}