/*アコーディオン全体*/
section.open {
    padding: 5px 0;
}

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

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


/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 1% 50px 1% 0;
    color: #212529;
}

.title:hover{
    border-bottom: 2px solid #FFC333;
}

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

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
    padding: 3%;
}

/*アイコンの＋と×*/
.title::before {
    position: absolute;
    
}

.title::before{
    top:25%;
    right: 15px;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    
}









