@charset "utf-8";
.accordion-area {
    text-align: left;
    list-style: none;
    width: 50%;
    color: #333;
    padding-left: 20px;
}

.accordion-area li {
    margin: 10px 0;
    left: 0;
    background: #fff;
    border-radius: 30px;
}

.accordion-area section {
    border: 1px solid #333;
    border-radius: 30px;
}

.title {
    position: relative;
    cursor: pointer;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

.title::before,
.title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #333;
}

.title::before {
    top: 48%;
    left: 15px;
    transform: rotate(0deg);
}

.title::after {
    top: 48%;
    left: 15px;
    transform: rotate(90deg);
}

.title.close::before {
    transform: rotate(45deg);
}

.title.close::after {
    transform: rotate(-45deg);
}

.acc-box {
    display: none;
    background: #fff;
    margin: 0 3% 3% 3%;
    padding: 3%;
}

@media only screen and (max-width: 850px) {
    .accordion-area {
        width: 90%;
    }
}