.p-front-voice {
    padding-block: var(--section-space);
    background-color: var(--color-surface-light);
}

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

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

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

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

.p-front-voice__grid {
    display: grid;
    grid-template-columns: repeat(3, 1.0fr);
    gap: 32.0px;
    margin-bottom: 56.0px;
}

.p-front-voice__item {
    background-color: #ffffff;
    border-radius: 12.0px;
    overflow: hidden;
    box-shadow: 0.0 10.0px 20.0px rgba(0, 0, 0, 0.05);
}

.p-front-voice__image {
    aspect-ratio: 16.0 / 9.0;
    overflow: hidden;
}

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

.p-front-voice__body {
    padding: 24.0px;
}

.p-front-voice__meta {
    display: flex;
    align-items: center;
    gap: 12.0px;
    margin-bottom: 16.0px;
}

.p-front-voice__tag {
    font-size: 11.0px;
    font-weight: 700;
    background-color: var(--color-main);
    color: #ffffff;
    padding: 2.0px 8.0px;
    border-radius: 2.0px;
}

.p-front-voice__area {
    font-size: 12.0px;
    font-weight: 500;
    color: var(--color-text-sub);
}

.p-front-voice__item-title {
    font-size: 17.0px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12.0px;
    color: var(--color-text-main);
}

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

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

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

@media screen and (max-width: 1024.0px) {
    .p-front-voice__grid {
        grid-template-columns: repeat(2, 1.0fr);
        gap: 20.0px;
    }
}

@media screen and (max-width: 767.0px) {
    .p-front-voice__grid {
        grid-template-columns: 1.0fr;
    }

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