.interview{
    background: #FFF1E7;
    padding: 150px 0;
    margin-top: 150px;
}

.interview__items{
    gap: 30px;
    display: flex;
    margin: 0 -15px;
    margin-top: 60px;
}

.interview__item{
    text-align: center;
    margin: 0 27px;
    position: relative;
    transition: transform 0.3s ease-in-out;
    padding-top: 35px;

}

.interview__img img{
    display: block;
    width: 100%;
}


.interview__heading{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 7px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.interview__heading span{
    display: inline-block;
    background: #B81C22;
    border-radius: 10px;
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: normal;
    text-align: center;
    width: auto;
    padding: 5px 20px;
}

.interview__name{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: normal;
    color: #1B1E49;
    margin-top: 20px;
}

.interview__box{
    position: relative;
}

.interview__post{
    aspect-ratio: 130 / 118;
    background-image: url(../img/pc/top/sec4_item01_unit_hex.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 130px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: normal;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: -5px;

}

.interview__btnWrap{
    margin-top: 40px;
}

.interview__btn{
    max-width: 580px;
}


/* インタビュースライダー */
.interview__item.slick-current{
    transform: translateY(-60px);
}

.interview__items .slick-track{
    padding-top: 60px;
}

.interview__items .slick-next{
    width: 40px;
    height: 40px;
}


.interview__items .slick-prev{
    width: 40px;
    height: 40px;
}

.interview__items .slick-prev::before{
    width: 100%;
    height: 100%;
    background: url(../img/pc/top/sec4_item_arrow01.svg) no-repeat center center / contain;
    content: "";
    display: block;
}

.interview__items .slick-next::before{
    width: 100%;
    height: 100%;
    background: url(../img/pc/top/sec4_item_arrow02.svg) no-repeat center center / contain;
    content: "";
    display: block;
}

.interview__img{
    position: relative;
}

.interview__img__line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.interview__img:hover .interview__img__line__on{
    opacity: 0;
}

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

    .interview__items .slick-next{
      right: 5px;
    }
    
    
    .interview__items .slick-prev{
        left: 5px;
    }
    
}

@media screen and (max-width: 768px) {
    .interview{
        padding: 60px 0;
        margin-top: 60px;
    }
    .interview .common__title{
        font-size: 32px;
    }

    .interview .common__title strong{
        font-size: 40px;
    }

    .interview__heading span{
      font-size: 20px;
    }
    /* インタビュースライダー */
    .interview__item.slick-current{
        transform: translateY(0px);
    }
    .interview__items .slick-track{
        padding-top: 0;
    }
    .interview__items{
        margin-top: 30px;
    }
    .interview__post{
        max-width: 107px;
        font-size: 11px;
        right: 0;
    }
    .interview__name{
        font-size: 16px;
    }
    .interview__btn{
        width: 90%;
    }
}