/* 아코디언 */
.faq-area{
    margin-top: 10px;
}
.accordion-item {
    margin-bottom: 2px;
    /* border-bottom: solid 1px #e5e5e5; */
}
.accordion-header {
    min-height: 40px;
    padding: 16px 35px 16px 0;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 16px;
    color: #212121;
    border-bottom: solid 1px #e5e5e5;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: background .2s linear;
}
.accordion-item.active .accordion-header{
    font-weight: bold;
}
/* .accordion-header .accordion-item-arrow {
    position: absolute;
    right: 15px;
    height: 20px;
    margin-top: -10px;
    top: 50%;
}
.accordion-header .accordion-item-arrow:before {
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 18px;
    float: right;
    transition: all .2s linear;
}
.accordion-item.active .accordion-header .accordion-item-arrow:before {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
} */
.accordion-content{
    padding: 15px;
    display: none;
    color: #222;
    border: none;
    font-size: 15px;
    line-height: 1.4;
    background: #f3f3f3;
}
