.accbox {
    margin: 2em 0;
    padding: 0;
    max-width: 750px;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 0;
	border-bottom:1px solid gainsboro;
    padding : 13px 18px;
    color: #fff ;
    font-weight: normal;
    background: seagreen;
    cursor :pointer;
    transition: all 0.5s;
}

/*アイコンを表示*/
.accbox label:before {
    content: '\e906';
    font-family: 'icomoon';
    font-size: 24px;
    padding-right: 8px;
}

/*ラベルホバー時*/
.accbox label:hover {
    background : cadetblue;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 15px;
    font-size: 14px;
	border-bottom:1px solid gainsboro;
    background: mintcream;
    opacity: 1;
}

.accbox .accshow p {
    margin: 15px 10px}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\e904';
    color: wheat ;
}