/*ボックス全体*/
.accbox {
    padding: 0;
    max-width: 100%;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 5px 0;
    padding : 20px 15px 20px 15px;
    font-weight: bold;
    background: #dbdbdb;
    cursor :pointer;
    transition: all 0.5s;
    font-size: 20px;

}

/*アイコンを表示*/
.accbox label:before {
    content: '\f078';
    font-family: 'FontAwesome';
    padding-right: 8px;
}


/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    background: #ffffff;
    opacity: 1;
}

.accbox .accshow p {
    margin: 5px 5px}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\f077';
}