/* 統計情報 */
.voice-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.voice-stats-note {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.voice-stats-note p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
}

.voice-stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.voice-stat-icon {
    font-size: 40px;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.voice-stat-number {
    font-size: 42px;
    font-weight: 500;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.voice-stat-label {
    font-size: 16px;
    color: var(--gray);
}

/* フィルター */
.voice-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--light-purple);
    color: var(--dark-gray);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.filter-btn.active {
    background: var(--gradient-main);
    color: var(--white);
    border-color: transparent;
}

/* お客様の声カード */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.voice-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: none;
}

.voice-card.show {
    display: block;
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.voice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.voice-stars {
    color: var(--gold);
}

.voice-date {
    font-size: 14px;
    color: var(--gray);
}

.voice-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.voice-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.voice-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.voice-author {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
}

.voice-menu {
    font-size: 13px;
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 5px 15px;
    border-radius: 15px;
}

/* もっと見るボタン */
.voice-more {
    text-align: center;
}

/* 感謝のメッセージ */
.thanks-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
    padding: 60px;
    border-radius: 20px;
}

.thanks-message h2 {
    font-size: 32px;
    margin-bottom: 30px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thanks-message p {
    font-size: 16px;
    line-height: 2;
    color: var(--dark-gray);
}

.thanks-signature {
    font-family: var(--font-english);
    font-size: 24px !important;
    font-style: italic;
    margin-top: 30px;
    display: inline-block;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA */
.voice-cta {
    text-align: center;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.voice-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.voice-cta p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.voice-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* レスポンシブ */
@media (max-width: 768px) {
    /* 統計情報を1列表示に */
    .voice-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .voice-grid {
        grid-template-columns: 1fr;
    }
    
    .voice-filter {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* 注意書きのスタイル調整 */
    .voice-stats-note {
        text-align: left;
        margin: 20px 0;
    }
    
    .voice-stats-note p {
        line-height: 1.3;
        text-indent: 2em;
        padding-left: 0;
    }
    
    /* 感謝メッセージを左寄せ */
    .thanks-message {
        padding: 40px 20px;
        text-align: left;
    }
    
    .thanks-message h2 {
        text-align: center;
    }
    
    .thanks-signature {
        text-align: center;
        display: block;
        margin-top: 30px;
    }
    
    .voice-cta {
        padding: 40px 20px;
    }
}