@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Amaranth:400,700);
/*------------ faq ------------*/
/*.content-top{
    display: none;
}*/
.faq-list{
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px 50px 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style-type: none;
}
.faq-list .faq-item{
    position: relative;
    margin: 30px 0 0px;
}
.faq-list .faq-item:before{
    position: absolute;
    left: 0;
    top: 9px;
    bottom: 0;
    width: 40px;
    height: 40px;
    font-family: 'Amaranth', serif;
    font-size: 25px;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    color: #7F0217;
    content: 'Q';
}
.faq-list .faq-item:hover:before{
    background: #7F0217;
    color: #f2f0ec;
}
.faq-question{
    position: relative;
    padding: 13px 40px 13px 50px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    transition: all .2s;
    cursor: pointer;
    font-size: 18px;
    color: #7F0217;
}
.faq-question h3{
    margin: 0;
}
.faq-question i:before{
    content: '\f107';
    display: block;
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #7B7B9B;
    font-size: 24px;
    position: absolute;
    top: 14px;
    right: 10px;
}
.faq-question:hover i:before{
    color: #d9ad91;
}
.faq-answer{
    position: relative;
    border-top: 1px solid #FFF;
    padding: 15px 10px 15px 50px;
    min-height: 26px;
    color: #434343;
    background: #FFF;
    display: none;
}
.faq-answer:before{
    position: absolute;
    left: 0;
    top: 9px;
    bottom: 0;
    width: 40px;
    height: 40px;
    font-family: 'Amaranth', serif;
    font-size: 25px;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    color: #d0b07b;
    content: 'A';
}
.faq-answer .title{
    font-size: 45px;
    font-weight: bold;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1000px){
    .faq-list{
        padding: 20px 15px 25px;
        margin: 0 -15px;
    }
}
