/* Voice Section */
.voice {
    width: 100%;
    background-color: #F7F7F7;
    position: relative;
    overflow: hidden;
    padding: 10% 0;
}

.voice_slider {
    width: 80%;
    margin: 0 auto;
    position: relative;
    display: none;
}

.voice_slider.active {
    display: block;
}

.voice_slider img {
    width: 100%;
}

.voice_cont_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voice_cont_title p {
    padding: 2% 0 0 3%;
    margin: 0;
}

.voice_right-arrow,
.voice_left-arrow {
    position: absolute;
    top: 300px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

.voice_right-arrow {
    right: 20px;
}

.voice_left-arrow {
    left: 20px;
}

.left_title {
    position: absolute;
    top: -16px;
    left: 0;
    background-color: #FFF;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 10px;
    z-index: 10;
    border-radius: 0 0 10px 0;
}

.voise_info {
    background-color: #212121;
    color: #FFF;
    position: relative;
    top: -5px;
}

.next_read {
    font-size: 14px;
    color: #FFF;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    padding: 2% 3% 0 0;
    margin: 0;
}

.next_read::after {
    content: '';
    background-image: url('../images/black_arrow.png');
    background-size: cover;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.next_read.active {
    color: #62D7C7; /* アクティブ時の色変更 */
}

.next_read.active::after {
    transform: rotate(90deg);
}

.voice_accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    background: #FFF;
    padding: 0 3%; /* 上のパディングを削除して動きやすく */
}

.q {
    color: #62D7C7;
    font-weight: bold;
    border-bottom: 2px solid #212121;
    width: 100%;
    margin-bottom: 5px;
}

.a {
    color: #212121;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.a_last {
    padding-bottom:3%;
}

