
<style>
/* お客様の声スライダー - Slick用 */
.voice_slider_wrapper {
    margin-top: 40px;
}

.voice_card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.voice_card_header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.voice_card_content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice_card_content figure {
    width: 100%;
    margin: 0;
}

.voice_card_content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.voice_card_content img:hover {
    transform: scale(1.02);
}

/* 画像コンテナとクリックヒント */
.image_container {
    position: relative;
    width: 100%;
}

.click_hint {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image_container:hover .click_hint {
    opacity: 1;
}

.click_icon i {
    font-size: 16px;
}

.click_text {
    white-space: nowrap;
}

.voice_card_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.voice_industry {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.voice_amount {
    font-size: 20px;
    color: #e74c3c;
    font-weight: bold;
}

.voice_amount em {
    font-style: normal;
    font-size: 38px;
}

/* Slickカスタマイズ */
.voice_slider .slick-prev,
.voice_slider .slick-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.voice_slider .slick-prev:hover,
.voice_slider .slick-next:hover {
    background: #fff;
    transform: scale(1.1);
}

.voice_slider .slick-prev {
    left: -50px;
}

.voice_slider .slick-next {
    right: -50px;
}

.voice_slider .slick-prev:before,
.voice_slider .slick-next:before {
    color: #333;
    font-size: 20px;
}

/* .voice_slider .slick-prev:before {
    content: '‹';
}

.voice_slider .slick-next:before {
    content: '›';
} */

.voice_slider .slick-dots {
    bottom: -50px;
}

.voice_slider .slick-dots li button:before {
    color: #ddd;
    font-size: 12px;
}

.voice_slider .slick-dots li.slick-active button:before {
    color: #e74c3c;
}

/* 画像モーダル */
.image-modal {
    display: none;
    position: fixed;
    z-index: 999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.image-modal-close:hover {
    color: #fff;
}

.image-modal-zoom {
    position: absolute;
    top: -44px;
    right: 70px;
    background: none;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.image-modal-zoom i {
    color: #fff;
    font-size: 28px;
}

.image-modal-zoom.zoomed i {
    color: #fff;
}

.image-modal-zoom:hover {
    background: none;
    transform: scale(1.1);
}

.image-modal-zoom.zoomed {
    background: #e74c3c;
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* PC表示（3つ並び） */
@media (min-width: 768px) {
    .voice_slider .slick-prev {
        left: -60px;
    }
    
    .voice_slider .slick-next {
        right: -60px;
    }
}
.slick-slide{
    height: auto!important;
}
/* スマホ表示（1つずつスライダー） */
@media (max-width: 767px) {
    .voice_card {
        margin: 0 20px;
        padding: 20px;
    }
    
    .voice_card_header {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .voice_industry {
        font-size: 16px;
    }
    
    .voice_amount {
        font-size: 18px;
    }
    
    .voice_amount em {
        font-size: 32px;
    }
    
    .voice_card_content img {
        border-radius: 6px;
    }
    
    .voice_slider .slick-prev,
    .voice_slider .slick-next {
        /* display: none !important; */
    }

    .voice_slider .slick-prev {
        left: 0px;
    }

    .voice_slider .slick-next {
        right: 0px;
    }

    .image-modal-content {
        width: 100%;
    }
}
</style>