/* ===== reset ===== */
* {
    box-sizing: border-box;
}
.single-customer-voices section {
    background-color: transparent;
}
/* ===== content ===== */
main {
    background-image: url("../img/customer-voices/customer-voice-back.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 80px;
}
.c-main section:last-child {
    margin-top: 80px;
}

/* ===== 社員一覧ページ（画像比率統一 Ver.） ===== */
.l-inner {
    width: min(90%, 1200px);
    margin: auto;
    background-color: transparent;
}
.c-voice__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    margin: 0 auto;
}
.c-voice__block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--case-border);
    border-radius: var(--case-radius);
    box-shadow: var(--case-shadow);
}
.c-voice__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.c-voice__inner--ttl{
    display: flex;
    align-items: baseline;
    gap: 30px;
}
.c-voice__inner--ttl h2{
    color: #1F2D5D;
    font-size: 35px;
}
.c-voice__inner--ttl > div{
    display: flex;
    gap: 10px;
}
.c-voice__inner--ttl > div > span{
    color: #1F2D5D;
    padding: 0 12px;
    border: 1px solid #1F2D5D;
    border-radius: 25px;
    font-size: 15px;
}
.c-voice__inner p {
    color: #B0B0B0;
    font-size: 15px;
}
.c-voice__block > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: var(--case-radius);
    background: #f6f7f8;
}
.c-voice__btn--outer {
    text-align: center;
}
.c-voice__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    padding: 16px 90px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #fff;
    background: #1F2D5D;
    border-radius: 6px;
    box-shadow: 0 3px 0 rgba(0, 0, 0, .15);
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    position: relative;
}

.c-voice__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .2);
    opacity: .95;
}

.c-voice__btn::after {
    content: "＋";
    display: block;
    font-size: 16px !important;
    width: clamp(10px, 2vw, 20px);
    aspect-ratio: 1 / 1;
    height: auto;
    color: #fff;
    font-weight: 400 !important;

    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-10px, 16px);
}
@media(max-width:768px) {
    main {
        padding-bottom: 40px;
    }
    .c-main section:last-child {
        margin-top: 40px;
    }
    .c-voice__inner--ttl h2 {
        font-size: 28px;
    }
    .c-voice__grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .c-voice__block {
        padding: 15px;
    }
    .c-voice__btn {
        font-size: 16px;
        padding: 10px 40px;
        min-width: 220px;
    }
    .c-voice__btn::after {
        transform: translate(-12px, 12px);
        font-size: 14px !important;
    }
}