@charset "UTF-8";

.accordion-area{
    list-style: none;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
border: 1px solid #ccc;
background: #dffff2;
}
.open_title {
    position: relative;
    cursor: pointer;
    font-size:1rem;
	color:#565656;
    font-weight: bold;
    padding: 1% 1% 1% 25px;
    transition: all .5s ease;
}
.title {
    position: relative;
    cursor: pointer;
    font-size:1rem;
	color:#565656;
    font-weight: bold;
    padding: 1% 1% 1% 50px;
    transition: all .5s ease;
}

.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #3366cc;
    
}
.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);
}

.open_box {
    background: #fff;
	margin:0 3% 3% 3%;
    padding: 1% 2%;
}

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



