.bluebg {
    display: flex;
    border-radius: 20px;
    background-color: #EBF2FF;
    padding: 30px 40px;
    gap:18px;
}
.bluebg-quote::before {
    content:"";
    background: url(../png/quote.png) center center / 100% 100% no-repeat;
    height: 29px;
    width: 38px;
    display: block;
}
.bluebg-cnt > *{
    margin:0 0 20px;
}
.bluebg-cnt > *:last-child{
    margin:0;
}
.bluebg.quote .bluebg-cnt p{
    font-size: 30px;
    font-weight: 500;
    line-height: 33px;
    margin-bottom: 6px;
}
.bluebg.quote .bluebg-cnt em{
    font-size: 22px;
    font-weight: 500;
    line-height: 25px;
}

@media screen and (max-width: 767px) {
    .bluebg {
        padding: 22px 22px;
        gap: 14px;
    }
    .bluebg.quote .bluebg-cnt p{
        font-size: 26px;
        line-height: 28px;
    }
    .bluebg.quote .bluebg-cnt em{
        font-size: 19px;
        line-height: 21px;
    }
    .bluebg-quote::before {
        height: 23px;
        width: 29px;
    }
}