@charset "utf-8";
/*.content-title{
    display: none;
}*/
.faq-list{
    padding: 0 15px;
}
/*------------ faq ------------*/
.faq-item{
    position: relative;
    margin: 0 0 20px;
    list-style-type: none;  
    background: rgba(255, 255, 255, 0.40);
    box-sizing: border-box;
}
.ic-angle-down{
    font-family: 'icon-font2' !important;
    display: inline-block;
    color: #888888;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    position: absolute;
    right: 15px;
    top: 50%;
    margin: -10px 0 0 0;
    transform: rotate(90deg);
    transition: all .3s ease;
}
.ic-angle-down:before{
    content: "\e1000";
}
.faq-item:hover .ic-angle-down{
    transform: rotate(-90deg);
    color: #014D67;
}
.faq-question{
    position: relative;
    color: #444444;
    font-weight: bold;
    font-size: 18px;
    min-height: 27px;
    padding: 11px 40px 11px 35px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 60;
}
.faq-question h3{
    margin: 0;
}
.faq-item:before{
    content: "";
    width: 14px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../../../images/layout04/common/faq/bg.png) repeat-y;
    z-index: 10;
}
.faq-item:after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #FFFFFF;
    z-index: 55;
}
.faq-item:hover:after{
    border: 3px solid #AAAAAA;
}
.faq-item:hover .faq-question,
.faq-item.active .faq-question{
    color: #014D67;
}
.faq-answer{
    padding:5px 20px 25px 35px;
    color: #444444;
    background: #fff;
    display: none;
}
.faq-answer:before{
   font-family: 'icon-font2' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
    content: "\e1030";
    font-size: 45px;
    color: #000000;
}
.faq-answer .title{
    font-size: 45px;
    font-weight: bold;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1000px){
    .faq-list .item:before{
        margin:0 8px;
    }
    .faq-answer:before{
        display: none;
    }
    .faq-question:before{
        background-size: 30px auto;
        width: 30px;
        height: 30px;
        left: 0;
    }
    .faq-question{
        font-size: 15px;
    }
    .faq-answer{
        margin: 0 0 20px;
    }
}
