.newfaculty-interview__inner {
    width: 100%;
    max-width: 1032px;
    padding: 0 16px;
    margin: 0 auto;
}
.newfaculty-interview__header {
    margin-bottom: 60px;
}
.heading__page--newfaculty-interview {
    margin-bottom: 10px;
    color: var(--Black, #333);
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 2.4px;
}
.newfaculty-interview__subtitle {
    margin-bottom: 40px;
    color: var(--Black, #333);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 1.6px;
}
.newfaculty-interview__description {
    color: var(--Black, #333);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 660px;
    margin: 0 auto;
}
.newfaculty-interview__items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.newfaculty-interview__item {
    overflow: hidden;
    border-radius: 20px;
}
.newfaculty-interview__link {
    display: block;
}
.newfaculty-interview__item-head {
    position: relative;
}
.newfaculty-interview__img {
    display: block;
    width: 100%;
}
.newfaculty-interview__title {
    color: var(--Black, #333);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
.newfaculty-interview__title::after {
    content: "";
    display: block;
    background-image: url(../../img/programs/newfaculty/interview/icon_btn.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
}
.newfaculty-interview__summary {
    background-color: #F9F2FF;
    padding: 16px 20px;
}
.newfaculty-interview__summary-text {
    color: var(--Black, #333);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
}
.am-common-button--newfaculty-interview {
    border: 1px solid #D6C5EF;
    background-color: var( --White, #FFF);
    color: var(--Black, #333);
    font-weight: 600;
    margin-top: 40px;
    padding: 8px;
    position: relative;
}
.am-common-button--newfaculty-interview::before {
    content: "";
    display: block;
    background-image: url(../../img/programs/newfaculty/interview/icon_btn.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    transform: rotate(180deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 6px;
    margin: auto;
}
.am-common-button--newfaculty-interview:hover {
    background-color: #D6C5EF;
}
@media screen and (min-width: 768px){
    .heading__page--newfaculty-interview {
        margin-bottom: 10px;
        font-size: 36px;
        font-weight: 600;
        letter-spacing: 3.6px;
    }
    .newfaculty-interview__subtitle {
        margin-bottom: 60px;
        font-size: 20px;
        letter-spacing: 2px;
    }
    .newfaculty-interview__items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 44px;
    }
    .newfaculty-interview__item {
        width: calc( ( 100% - 44px * 2 ) / 3 );
    }
    .newfaculty-interview__link {
        transition: .3s all;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .newfaculty-interview__link:hover {
        opacity: 0.5;
    }
    .newfaculty-interview__title {
        font-size: 18px;
    }
    .newfaculty-interview__summary {
        padding: 20px 30px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .newfaculty-interview__summary-text {
        font-size: 16px;
    }
    .am-common-button--newfaculty-interview {
        padding: 12px;
        max-width: 260px;
        height: 48px;
    }
    .am-common-button--newfaculty-interview::before {
        left: 10px;
        font-size: 16px;
        letter-spacing: 1.28px;
    }
}

.to-top__button::before{
    content: '';
    display: block;
    width: 4px;
    height: 40px;
    background-image: url(/assets/img/programs/newfaculty/to-top-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: .3s all;
}
.to-top__button{
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    color: #BE59CF;
    position: absolute;
    right: 10px;
    bottom: 0;
    writing-mode: vertical-rl;
    z-index: 200;
    transition: .3s all;
    position: fixed;
    right: 20px;
    bottom: 118px;
    cursor: pointer;
    transition: .3s all;
}
.to-top__button:hover::before{
    transform: translateY(-5px);
}
@media (min-width: 768px) {
    .to-top__button{
        bottom: 2%;
    }
}