/* interview page */

.interview__fv{
  width: 100%;
  padding-top: calc(500 / 1440 * 100%);
  background-image: url(../../img/interview/fv.jpg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 30px;
}

.interview__top {
    margin-top: 100px;
}

.top__img {

}

.name__items-wrapper {
    display: flex;
    max-width: 600px;
    width: 100%;
    margin: 20px auto 0;
      justify-content: space-between;
}

.name__item {
    display: flex;
    gap: 20px;

}

.name__img {
    width: 70px;
}

.name__text {
    margin: auto;
}

.interview__items {

}

.interview__item {
    margin-top: 100px;
}

.interview__item2 .interview__item-bottom,
.interview__item4 .interview__item-bottom{
    flex-direction: row-reverse;
}

.interview__item-q {
    color: #0071bc;
    font-size: 30px;
    font-weight: 700;
    width: fit-content;
    margin: auto;
    padding: 10px 50px;
    position: relative;


}

.interview__item-q::before{
    position: absolute;
    content: "「";
    top: 0;
    left: 0;
    font-size: 30px;
}

.interview__item-q::after{
    position: absolute;
    content: "」";
    bottom: 0;
    right: 0;
    font-size: 30px;
}

.interview__item-bottom {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.interview__item-left {
    width: 50%;
}

.interview__item-img{
    width: 50%;
}

.interview__item-a {
    display: flex;
    gap: 15px;
}

.interview__item-a-img {
    width: 70px;
}

.interview__item-a-text {
    width: calc(100% - 70px);
}


@media ( max-width: 767.98px) {
    .interview__top{
        margin-top: 50px;
    }
    .name__item{
        gap: 5px;
    }
    .name__img{
        width: 45px;
    }
    .name__text{
        font-size: 11px;
    }
    .interview__item-q{
        font-size: 22px;
        padding: 10px 30px;
    }
    .interview__item-q::before{
        font-size: 18px;
    }
    .interview__item-q::after{
        font-size: 18px;
    }
    .interview__item-bottom{
        flex-direction: column-reverse;
    }
    .interview__item-img{
        width: 100%;
    }
    .interview__item-left{
        width: 100%;
    }
    .interview__item-a-text{
        width: calc(100% - 45px);
    }
    .interview__item-a-img{
        width: 45px;
    }
    .interview__item2 .interview__item-bottom, .interview__item4 .interview__item-bottom{
        flex-direction: column-reverse;
    }
    .interview__item-bottom{
        margin-top: 20px;
    }
}