/* {{-- JSYS-972：SEO対策 活用法ページの修正 @since 2025.07.17 @author ione.miyasaka start --}} */
.voice-section h2 {
    border-bottom: 3px dashed #98b439;
    padding-bottom: 12px;
    width: fit-content;
    margin: 0 auto;
    font-weight: 700;
}
.voice-wrap {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 30px 0;
}

.voice-item {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.voice-item img {
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

/* 吹き出しのスタイル */
.voice-text {
    position: relative;
    display: inline-block;
    margin-right: 14px;
    padding: 16px;
    border: 1px solid #8bc34a;
    border-radius: 12px;
    background-color: #ffffff;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
  }
  
  .voice-text::before {
    content: "";
    position: absolute;
    top: 38%;
    right: 0;
    border-style: solid;
    border-width: 10px 0 10px 14px;
    border-color: transparent transparent transparent #8bc34a;
    translate: 100% -50%;
  }
  
  .voice-text::after {
    content: "";
    position: absolute;
    top: 38%;
    right: 0;
    border-style: solid;
    border-width: 8.8px 0 8.8px 12.3px;
    border-color: transparent transparent transparent #ffffff;
    translate: 100% -50%;
  }
.voice-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}



/* 2番目のvoice-item（画像のみ）のスタイル */
.voice-item:nth-child(2) {
    justify-content: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .voice-section{
        padding: 40px 20px;
    }
    .voice-section h2 {
        font-size: 18px;
        font-weight: 700;
        padding-bottom: 4px;
    }
    .voice-wrap {
        flex-direction: column;
        margin: 0;
    }
    
    .voice-item {
        align-items: center;
        text-align: center;
        flex-direction: row-reverse;
        gap: 0;
    }
    
    .voice-item img {
        order: 1;
        width: 100px;
        height: auto;
    }
    
    .voice-text {
        order: 2;
        max-width: 100%;
        margin-top: 15px;
    }

}
/* JSYS-972：SEO対策 活用法ページの修正 @since 2025.07.17 @author ione.miyasaka end */