#faq-sec{
    /* margin-top: 20px; */
}
#faq-sec .faq_wrap{
    margin-top: 30px;
    font-size: 14px;
}
#faq-sec .faq_wrap dl{
    margin-bottom: 20px;
    background: #fcf6f2;
    padding: 15px 20px;
    border-radius: 8px;
}
#faq-sec .faq_wrap dl dd,
#faq-sec .faq_wrap dl dt{
    position: relative;
    padding: 26px 55px;
}
#faq-sec .faq_wrap dl dd::before,
#faq-sec .faq_wrap dl dt::before{
    position: absolute;
    font-weight: bold;
    left: 0;
    top: 15px;
    width: 43px;
    height: 43px;
    line-height: 43px;
    text-align: center;
    border-radius: 50%;
    display: block;
    font-size: 16px;
    box-sizing: border-box;
}
#faq-sec .faq_wrap dl dt::before{
    content: "Q";
    background: #f75984;
    color: #fff;
    border: 1px solid #f75984;
}
#faq-sec .faq_wrap dl dd::before{
    content: "A";
    background: #fff;
    color: #f75984;
    border: 1px solid #f75984;
}
#faq-sec .faq_wrap dl dt{
    font-weight: bold;
}
#faq-sec .faq_wrap dl dd{
    display: none;
    background: url(../../img/custom/border_pattern.png) repeat-x left top;
}
#faq-sec .faq_wrap dl dt::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 28px;
    height: 28px;
    background-image: url(../../img/custom/ico_plus.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition: all ease .3s;
    margin: auto;
}
#faq-sec .faq_wrap dl dt.active::after{
    background-image: url(../../img/custom/ico_minus.png);
}
.txt_center{
    text-align: center;
}
@media screen and ( max-width : 768px ) {
    #faq-sec .faq_wrap{
        margin-top: 20px;
    }
    #faq-sec .faq_wrap dl dd, #faq-sec .faq_wrap dl dt{
        padding: 18px 46px;
    }
    #faq-sec .faq_wrap dl dd::before, #faq-sec .faq_wrap dl dt::before{
        top: 11px;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    #faq-sec .faq_wrap dl dt::after{
        width: 18px;
        height: 18px;
    }
}