#archive-staff {
    .staff-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .staff-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: #e9ece6;
    }
    .staff-item:nth-of-type(2n){
        background-color: #ede7df;
    }
    .staff-item img {
        width: 100%;
        aspect-ratio: 0.81;
        object-fit: cover;
        display: block;
    }
    .staff-item-contents {
        padding: 8px 0;
        text-align: center;
    }
    .staff-item-work {
        font-size: 1.2rem;
        font-weight: 500;
    }
    .staff-item-name {
        font-size: 1.5rem;
        font-weight: normal;
    }
    .staff-btn {
        display: block;
        color: white;
        background-color: var(--c3);
        padding: 8px;
        font-size: 1.2rem;
        margin: 0 20px;
        margin-top: 8px;
    }
    @media screen and (min-width:960px) {
        &{
            max-width: 1000px;
        }
        .staff-list {
            grid-template-columns: repeat(4, 1fr);
            gap: 15px 20px;    
        }
        .staff-item-contents {
            padding: 23px 0;
        }
        .staff-item-work {
            font-size: 1.7rem;
        }
        .staff-item-name {
            font-size: 2.4rem;
        }
        .staff-item-name-en {
            font-size: 2rem;
        }
    }

}

#single-staff {
    margin-bottom: 40px;
    .staff-img {
        width: 100%;
        aspect-ratio: 0.81;
        object-fit: cover;
        display: block;
    }
    .staff-item-contents {
        text-align: center;
        padding: 32px 0;

        .staff-item-work {
            font-size: 1.9rem;
        }
        .staff-item-name {
            font-size: 2.3rem;
        }
        .staff-item-name-en {
            font-size: 1.7rem;
        }
    }
    .staff-text {
        border-top: 1px solid black;
        border-bottom: 1px solid black;
        padding: 42px 0;
        p {
            font-size: 1.6rem;
        }
    }

    @media screen and (min-width: 960px) {
        & {
            max-width: 880px;
        }
        .staff-item-contents {
            padding: 72px 0;
    
            .staff-item-work {
                font-size: 3.8rem;
            }
            .staff-item-name {
                font-size: 4.5rem;

            }
            .staff-item-name-en {
                font-size: 3.5rem;
            }
        }
        .staff-text {
            padding: 80px 0;
            p {
                font-size: 2.6rem;
            }
        }
    }
}
