.faq {
    padding: 100px 0 140px 0;
}

.faq .wrap {
    width: 1480px;
    margin: auto;
}

.faq .wrap .item {
    transition: .6s ease;
}

.faq .wrap .item:not(:last-child) {
    margin: 0 0 20px;
}

.faq .wrap .item .show {
    width: 100%;
    height: 100px;
    background: #2C2C2C;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 62px;
    cursor: pointer;
}

.faq .wrap .item .show p {
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
}

.faq .wrap .item .show .add {
    width: 16px;
    height: 16px;
    position: relative;
}

.faq .wrap .item .show .add:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #DD562E;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: .6s ease;
}

.faq .wrap .item .show .add:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: #DD562E;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: .6s ease;
}

.faq .wrap .item .hide {
    overflow: hidden;
    display: none;
    position: relative;
}

.faq .wrap .item .hide:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: .6s ease;
    border: 1px solid transparent;
}

.faq .wrap .item .hide > div {
    margin: 40px 66px;
}

.faq .wrap .item .hide > div p {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 32px;
}

.faq .wrap .item.on .hide:after {
    border: 1px solid #2C2C2C;
}

.faq .wrap .item.on .show .add:before {
    opacity: 0;
}

@media screen and (max-width: 1919px) {
    .faq {
        padding: 5.2083333333vw 0 7.2916666667vw 0;
    }

    .faq .wrap {
        width: 77.0833333333vw;
        margin: auto;
    }

    .faq .wrap .item {
        transition: .6s ease;
    }

    .faq .wrap .item:not(:last-child) {
        margin: 0 0 1.0416666667vw;
    }

    .faq .wrap .item .show {
        width: 100%;
        height: 5.2083333333vw;
        background: #2C2C2C;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3.2291666667vw;
        cursor: pointer;
    }

    .faq .wrap .item .show p {
        font-weight: 400;
        font-size: 0.9375vw;
        color: #FFFFFF;
    }

    .faq .wrap .item .show .add {
        width: 0.8333333333vw;
        height: 0.8333333333vw;
        position: relative;
    }

    .faq .wrap .item .show .add:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 0.1041666667vw;
        background: #DD562E;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transition: .6s ease;
    }

    .faq .wrap .item .show .add:before {
        content: '';
        position: absolute;
        width: 0.1041666667vw;
        height: 100%;
        background: #DD562E;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transition: .6s ease;
    }

    .faq .wrap .item .hide {
        overflow: hidden;
        display: none;
        position: relative;
    }

    .faq .wrap .item .hide:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transition: .6s ease;
        border: 1px solid transparent;
    }

    .faq .wrap .item .hide > div {
        margin: 2.0833333333vw 3.4375vw;
    }

    .faq .wrap .item .hide > div p {
        font-weight: 400;
        font-size: 0.8333333333vw;
        color: #FFFFFF;
        line-height: 1.6666666667vw;
    }

    .faq .wrap .item.on .hide:after {
        border: 0.0520833333vw solid #2C2C2C;
    }

    .faq .wrap .item.on .show .add:before {
        opacity: 0;
    }
}


@media screen and (max-width: 1024px) {
    .faq {
        padding: 25px 0;
    }
    .faq .wrap{
        width: 90%;
    }
    .faq .wrap .item .show {
        height: 75px;
        padding: 0 5%;
    }
    .faq .wrap .item .show p {
        font-size: 13px;
        width: 82%;
    }
    .faq .wrap .item:not(:last-child) {
        margin: 0 0 10px;
    }
    .faq .wrap .item .hide > div {
        margin: 20px 5%;
    }
    .faq .wrap .item .hide > div p {
        font-size: 14px;
        line-height: 1.8;
    }
    .faq .wrap .item .show .add {
        width: 16px;
        height: 16px;
        position: relative;
    }
    .faq .wrap .item .show .add:before {
        width: 2px;
        height: 100%;
    }
    .faq .wrap .item .show .add:after {
        width: 100%;
        height: 2px;
    }
}

