@charset "utf-8";
/*==========================
Voice
==========================*/
.topic-subpage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    /* max-width: 1440px; */
    margin: 0 auto;
    background-image: url(../images/subpage-topic-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

.topic-subpage_eng {
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 9.2rem; /* フォールバック */
    font-size: clamp(6.4rem,6.38vw,9.2rem);
    font-style: normal;
    font-weight: 600;
    line-height: 1;
}

.topic-subpage_ja {
    color: #FFF;
    font-family: "Noto Serif JP";
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.8;
    margin-top: 14px;
}

.voice-list-wrapper {
    padding: 0 20px;
}

.voice-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 64px;
    max-width: 1114px;
    padding: 40px 0;
    margin: 80px auto 0;
}

.voice-wrapper {
    max-width: 100%;
    height: auto;
    padding: 8px;
    background-color: var(--primary-white);
    position: relative;
}

.voice-wrapper::before {
    display: block;
    content: "";
    background-image: url(../images/ribbon-02.svg);
    width: 6.146px;
    height: 26px;
    flex-shrink: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 76px;
    left: -5.9px  ;
}

.voice-wrapper::after {
    display: block;
    content: "";
    background-image: url(../images/ribbon-01.svg);
    width: 208px;
    height: 60.98px;
    flex-shrink: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 33px;
    left: -6.2px  ;
}

.voice-inner-wrapper {
    width: 100%;
    height: 100%;
    padding: 90px 60px 60px 60px;
    border: 1px solid #493C2E;
}

.customer {
    display: flex;
    justify-content: start;
    align-items: end;
    gap: 40px;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    height: 56px;
}

.customer span {
    font-size: 2.4rem;
    font-weight: 700;
}

.voice-text {
    font-family: "Noto Sans JP";
    margin-top: 32px;
}

.btn-list-voice {
    margin: 80px auto;
}

/* voice sp */
@media screen and (max-width:769px) {
    .topic-subpage {
        padding: 65px;
        background-image: url(../images/subpage-topic-bg-sp.webp);
    }

    .topic-subpage_eng {
        font-size: 4.8rem;
    }

    .topic-subpage_ja {
        font-size: 1.4rem;
    }

    .voice-list-wrapper {
        padding: 0 24px;
    }

    .voice-list {
        gap: 20px;
        padding: 0;
    }

    .customer {
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
        gap: 20px;
        font-size: 1.4rem;
    }

    .customer span {
        font-size: 1.8rem;
    }

    .voice-inner-wrapper {
        padding: 90px 24px 60px;
    }











}/* sp 769px */





















