/* ===== reset ===== */
* {
    box-sizing: border-box;
}
.single-customer-voices section {
    background-color: transparent;
}
/* ===== content ===== */
.c-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;
}
.l-inner {
    width: min(90%, 1200px);
    margin: 0 auto;
}
.c-voice__outer {
    background-color: #fff;
    padding: 40px 80px 80px;
}
.c-voice__inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    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__q--container {
    display: flex;
    padding-bottom: 20px;
    border-bottom: 2px solid #B0B0B0;
    color: #1F2D5D;
    align-items: baseline;
}
.c-voice__q--container p:nth-child(1) {
    flex: 1;
    font-size: 28px;
    font-weight: bold;
}
.c-voice__q--container p:nth-child(2) {
    flex: 20;
    font-size: 20px;
    font-weight: 500;
}
.c-voice__inner--itm > div {
    margin: 40px 0;
}
.c-voice__inner--itm > div > p {
    color: #6F6F6F;
    padding-top: 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 2;
}

/* ===== 下部 他のお客様の声 ===== */
.c-bottom {
    background-image: url("../img/customer-voices/customer-voice-back-bottom.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}
.c-bottom .c-voice__inner {
    margin-bottom: 0;
}
.c-voice__info {
    margin: 0 auto;
    width: min(90%, 1200px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.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__block .initial {
    color: #1F2D5D;
    font-size: 28px;
    font-weight: 700;
}
.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) {
    .c-main {
        padding-bottom: 40px;
    }
    .c-main section:last-child {
        margin-top: 40px;
    }
    .c-voice__outer {
        padding: 20px;
    }
    .c-voice__inner {
        margin-bottom: 20px;
    }
    .c-voice__inner--ttl {
        gap: 10px;
    }
    .c-voice__inner--ttl h2 {
        font-size: 28px;
    }
    .c-voice__inner--ttl > div {
        gap: 5px;
    }
    .c-voice__inner--itm > div {
        margin: 20px 0;
    }
    .c-voice__q--container {
        padding-bottom: 10px;
    }
    .c-voice__q--container p:first-child {
        padding-right: 15px;
    }
    .c-voice__q--container p:nth-child(2) {
        font-size: 18px;
    }
    .c-voice__info {
        grid-template-columns: repeat(1, 1fr);
        gap: 28px;
    }
    .c-bottom {
        padding: 40px 0;
    }
    .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;
    }
}