/*------------ faq ------------*/

.faq-list li {
    cursor: pointer;
    position: relative;
    margin: 0 0 25px;
}

.faq-list li:before {
    content: "Q";
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    font-weight: normal;
    display: inline-block;
    margin: 0 10px 0 0;
    vertical-align: middle;
}

.faq-question {
    font-weight: bold;
    font-size: 17px;
    line-height: 1.55;
    position: relative;
    padding: 0 0 0px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 70px);
}

.faq-answer {
    display: none;
    position: relative;
    padding: 20px 25px;
    margin: 15px 0 0 60px;
}

.faq-answer .title {
    font-size: 45px;
    font-weight: bold;
}


/*------------ rwd ------------*/

@media screen and (max-width: 600px) {
    .faq-list li:before {
        vertical-align: top;
    }
}

@media screen and (max-width: 480px) {
    .faq-answer {
        padding: 10px 15px;
        margin: 15px 0 0 0px;
    }
}
