.top_staff {
    background-color: #FAFAFA;
    padding: 6rem 0 8rem;
    position: relative;
}

@media screen and (max-width: 480px) {
    .top_staff {
        padding: 4rem 0 15rem;
    }
}

.top_staff::after {
    content: '';
    background-image: url(../img/top_staff_cat.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 25.5rem;
    height: 27.2rem;
    position: absolute;
    bottom: 0;
    right: 5%;
}

@media screen and (max-width: 480px) {
    .top_staff::after {
        width: 40%;
        height: 14rem;
        right: 0;
    }
}

.top_staff_list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem;
    margin-top: 3rem;
}

@media screen and (max-width: 480px) {
    .top_staff_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
        margin-top: 3rem;
    }
}

.top_staff_list_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top_staff_list_item__name {
    width: 100%;
    max-width: 20rem;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.16rem;
    color: #FF8612;
    text-align: center;
    padding: 1rem 0;
    border-bottom: solid 1px #ADADAD;
    margin-bottom: 0.8rem;
}

.top_staff_list_item__text {
    max-width: 20rem;
    font-size: 1.4rem;
    line-height: 2.6rem;
    letter-spacing: 0.02rem;
}

.top_staff__btn {
    margin-top: 4rem;
}

@media screen and (max-width: 480px) {
    .top_staff__btn {
        margin-top: 2rem;
    }
}