@charset "utf-8";
/* ====================
Article header
==================== */
.mainVisual_contents {
 margin-top: 16px;
}

/* Article header PC */
@media screen and (min-width:769px) {
    .mainVisual {
        max-width: 1360px;
        margin: 0 auto;
        width: 94.4%;
        min-height: 300px;
        background: url(../images/top_voice.jpg);
        background-size: cover;
        background-position: center;
        border-radius: 25px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .mainTxt {
        color: var(--primary-white);
        padding: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        font-size: 4.8rem;
        font-weight: 700;
    }

    .mainTxt-sub {
        color: var(--primary-white);
        font-size: 2rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

/* Article header SP */
@media screen and (max-width:768px) {
    .mainVisual {
        max-width: 375px;
        margin: 0 auto;
        width: 94.4%;
        min-height: 200px;
        border-radius: 25px;
        background: url(../images/top_voice.jpg);
        background-size: cover;
        background-position: center;
        border-radius: 16px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .mainTxt {
        color: var(--primary-white);
        padding: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .mainTxt-sub {
        color: var(--primary-white);
        font-size: 1.6rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

/* ====================
お客様の声
==================== */
/* Voice Detail Section */
.section--voice {
    background: var(--primary-white);
    padding: 80px 20px;
}

.voice-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.voice-detail-header {
    text-align: center;
    margin-bottom: 50px;
}

.voice-detail-title {
    font-size: 3.2rem;
    color: #0066B3;
    font-weight: 700;
    margin-bottom: 12px;
}

.voice-detail-subtitle {
    font-size: 1.6rem;
    color: #0066B3;
    font-weight: 400;
    margin-bottom: 30px;
}

.voice-detail-intro {
    font-size: 1.5rem;
    color: var(--primary-black);
    line-height: 1.8;
}

/* Voice Item */
.voice-item {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 2px dashed #ddd;
}

.voice-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.voice-item-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.voice-item-image {
    width: 180px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 8px;
    object-fit: cover;
}

.voice-item-info {
    flex: 1;
}

.voice-item-company {
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
}

.voice-item-title {
    font-size: 2rem;
    color: var(--primary-deepblue);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 0;
}

.voice-item-content {
    font-size: 1.5rem;
    color: var(--primary-black);
    line-height: 2;
}

.voice-item-content p {
    margin-bottom: 20px;
}

.voice-item-content p:last-child {
    margin-bottom: 0;
}

.highlight-blue {
    color: var(--primary-deepblue);
    font-weight: 700;
}

/* SP対応 */
@media screen and (max-width: 768px) {
    .section--voice {
        padding: 50px 20px;
    }

    .voice-detail-title {
        font-size: 2.4rem;
    }

    .voice-detail-subtitle {
        font-size: 1.4rem;
    }

    .voice-detail-intro {
        font-size: 1.4rem;
    }

    .voice-item {
        margin-bottom: 60px;
        padding-bottom: 40px;
    }

    .voice-item-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .voice-item-image {
        width: 150px;
        height: 180px;
    }

    .voice-item-company {
        font-size: 1.3rem;
    }

    .voice-item-title {
        font-size: 1.8rem;
    }

    .voice-item-content {
        font-size: 1.4rem;
        line-height: 1.9;
    }
}