/* ===== 実際に導入いただいた嬉しいお声セクション ===== */
.testimonials-section {
    padding: 60px 20px;
    background-image: url('/assets/images/bg1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

/* 薄い白レイヤー */
.testimonials-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 0;
}

.testimonial-section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    padding-bottom: 15px;
}

.testimonial-section-title::after {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #004aad;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.testimonials-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    overflow: visible;
    padding: 40px 20px 20px 20px;
    display: flex;
    justify-content: center;
    text-align: left;
}

.testimonial-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 4rem;
    font-weight: bold;
    color: #ffbd59;
    z-index: 10;
}

.testimonial-body.no-image {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.testimonial-content {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    text-align: left;
    margin-bottom: 5px;
}

.testimonial-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 15px;
    text-align: left;
}

.testimonial-title .highlight {
    color: #ffbd59;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}