.p-front-staff {
    padding-block: var(--section-space);
    background-color: var(--color-base);
}

.p-front-staff__inner {
    width: min(100.0%, var(--content-width));
    margin-inline: auto;
    padding-inline: var(--inline-gutter);
}

.p-front-staff__header {
    text-align: center;
    margin-bottom: 56.0px;
}

.p-front-staff__title {
    font-size: 28.0px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 16.0px;
}

.p-front-staff__lead {
    font-size: 16.0px;
    color: var(--color-text-sub);
}

.p-front-staff__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40.0px 24.0px;
    margin-bottom: 56.0px;
}

.p-front-staff__item {
    width: calc(20.0% - 19.2px);
    min-width: 200.0px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.p-front-staff__image {
    width: 100.0%;
    aspect-ratio: 1.0 / 1.0;
    border-radius: 50.0%;
    overflow: hidden;
    margin-bottom: 20.0px;
    background-color: var(--color-surface-light);
    border: 4.0px solid #ffffff;
    box-shadow: 0.0 10.0px 20.0px rgba(0, 0, 0, 0.05);
}

.p-front-staff__image img {
    width: 100.0%;
    height: 100.0%;
    object-fit: cover;
}

.p-front-staff__post {
    font-size: 12.0px;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 4.0px;
}

.p-front-staff__name {
    font-size: 18.0px;
    font-weight: 700;
    margin-bottom: 12.0px;
}

.p-front-staff__text {
    font-size: 14.0px;
    line-height: 1.6;
    color: var(--color-text-main);
}

.p-front-staff__action {
    text-align: center;
}

.p-front-staff__action .c-button {
    min-width: 240.0px;
}

@media screen and (max-width: 1200.0px) {
    .p-front-staff__item {
        width: calc(33.333% - 16.0px);
    }
}

@media screen and (max-width: 767.0px) {
    .p-front-staff__grid {
        gap: 32.0px 16.0px;
    }

    .p-front-staff__item {
        width: calc(50.0% - 8.0px);
        min-width: 140.0px;
    }

    .p-front-staff__name {
        font-size: 16.0px;
    }

    .p-front-staff__text {
        font-size: 13.0px;
    }
}