/* アコーディオンA */
.ac-box div.ac-small{
  display:flex;
}

/*ラベル*/
.ac-box label{
transition: all 0.5s;
 display:flex;
}

/*ラベルホバー時*/
.ac-box label:hover{
-webkit-transition: all .3s;
transition: all .3s;
}

/*チェックを隠す*/
.ac-box input{
display: none;
}

/*チェックのアイコン（↓）*/
.ac-box label:after{
    font-family: "Font Awesome 5 Free";
    content: " \f078";
    margin-left: 20px;
    font-weight: bold;
    font-size: 14px;
    color: #0a3787;
}

/*チェックのアイコン（↑）*/
.ac-box input:checked ~ label::after {
      font-family: "Font Awesome 5 Free";
content:" \f077";
}

/*中身を非表示にしておく*/
.ac-box div.ac-small{
height: 0px;
padding: 0px;
overflow: hidden;
opacity: 0;
transition: 0.5s;
}

/*クリックで中身を表示*/
.ac-box input:checked ~ div{
height: auto;
opacity: 1;
}

/*表示内容の調整*/
.ac-box div p{
color: #777;
line-height: 23px;
font-size: 14px;
padding: 20px;
text-align: justify;
}

.ac-small p{
margin-bottom: 0px;
}

