/* 受講生の声セクションのスタイル */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e74c3c;
}

.testimonial-info h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: bold;
}

.testimonial-title {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.testimonial-content {
    color: #444;
    line-height: 1.8;
    font-size: 15px;
    flex-grow: 1;
}

.testimonial-content p {
    margin-bottom: 15px;
}

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

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-info h3 {
        font-size: 18px;
    }

    .testimonial-content {
        font-size: 14px;
    }
} 