.voice-section {
    box-sizing: border-box;
}

.voice-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 0;
    background-color: #fff;
    box-sizing: border-box;
}

.voice-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #D32F2F;
    border-radius: 10px;
    padding: 15px;
    flex-wrap: wrap;
}

.voice-image-container {
    flex: 0 0 40%;
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.voice-image-container img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.voice-title-container {
    flex: 1;
}

.voice-title {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: bold;
}

.voice-name-box {
    margin-top: 10px;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.voice-label {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.voice-name {
    font-size: 14px;
    margin: 0;
    color: #000;
    margin-top: 5px;
}

.plus-icon {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    position: absolute;
    right: 10px;
    bottom: 5px;
    cursor: pointer;
}

.voice-contents-container {
    display: none;
    overflow: hidden;
    padding: 0 20px;
    max-height: 0;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.voice-contents-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px;
}

.voice-contents-message {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.voice-line {
    width: 100%;
    height: 1px;
    background-color: #D32F2F;
    margin-top: 20px;
}


/* スマートフォン表示時のスタイル */

@media (max-width: 600px) {
    .voice-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .voice-image-container {
        flex: 0 0 auto;
        width: 100%;
        padding-right: 0;
        margin-bottom: 15px;
    }
    .voice-title-container {
        width: 100%;
    }
}