/* ==========================================================
   OMAI Chat FAQ
   ========================================================== */

.om-chatfaq {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.om-chatfaq__item {
    width: 100%;
    margin: 0 0 50px;
}

.om-chatfaq__q {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 22px;
}

.om-chatfaq__q img {
    display: block !important;
    width: 76px !important;
    max-width: 76px !important;
    height: auto !important;
    flex: 0 0 76px;
}

.om-chatfaq__q .om-chatfaq__bubble {
    position: relative;
    max-width: 620px;
    padding: 17px 24px;
    background: #fff;
    border: 1px solid #e7e1d8;
    border-radius: 18px 18px 18px 4px;
    box-shadow: 0 5px 18px rgba(0,0,0,.04);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.7;
}

.om-chatfaq__a {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 16px;
}

.om-chatfaq__bubble--answer {
    position: relative;
    flex: 1 1 auto;
    max-width: 680px;
    padding: 22px 26px;
    background: #f7f8f3;
    border: 1px solid #dfe5d5;
    border-radius: 18px 18px 4px 18px;
    font-size: 16px;
    line-height: 1.9;
}

.om-chatfaq__a img {
    display: block !important;
    width: 92px !important;
    max-width: 92px !important;
    height: auto !important;
    flex: 0 0 92px;
}

.om-chatfaq__label {
    display: block;
    margin-bottom: 10px;
    color: #556B2F;
    font-size: 14px;
    font-weight: 700;
}

.om-chatfaq__bubble--answer strong {
    color: #556B2F;
}


/* ==========================================================
   FAQ セクション
   ========================================================== */

.om-chatfaq-section {
    margin: 70px 0 0;
    padding-top: 30px;
}

.om-chatfaq-section h3 {
    margin: 0 0 30px;
    padding: 10px 0 10px 16px;
    border-left: 5px solid #556B2F;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
}


/* ==========================================================
   CTA
   ========================================================== */

.om-chatfaq-cta {
    margin-top: 60px;
    padding: 40px 25px;
    text-align: center;
    background: #FAF8F3;
    border: 1px solid #E7E1D8;
    border-radius: 8px;
}

.om-chatfaq-cta h3 {
    margin: 0 0 15px;
    padding: 0;
    border: 0;
    color: #556B2F;
}

.om-chatfaq-cta p {
    line-height: 1.8;
}


/* ==========================================================
   スマホ
   ========================================================== */

@media (max-width: 768px) {

    .om-chatfaq {
        width: 100%;
    }

    .om-chatfaq__item {
        margin-bottom: 38px;
    }

    .om-chatfaq__q {
        gap: 10px;
        margin-bottom: 16px;
    }

    .om-chatfaq__q img {
        width: 58px !important;
        max-width: 58px !important;
        flex: 0 0 58px;
    }

    .om-chatfaq__q .om-chatfaq__bubble {
        max-width: calc(100% - 68px);
        padding: 13px 16px;
        font-size: 15px;
    }

    .om-chatfaq__a {
        gap: 10px;
    }

    .om-chatfaq__bubble--answer {
        max-width: calc(100% - 68px);
        padding: 15px 17px;
        font-size: 14px;
    }

    .om-chatfaq__a img {
        width: 58px !important;
        max-width: 58px !important;
        flex: 0 0 58px;
    }

    .om-chatfaq__label {
        font-size: 12px;
        margin-bottom: 7px;
    }

    .om-chatfaq-section h3 {
        font-size: 22px;
        margin-bottom: 24px;
    }

}