@charset "UTF-8";




/*ボックス全体*/
.accbox {
    margin: 2em auto;
    padding: 0;
	width: 90%;
    max-width: 1300px;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px auto;
    padding : 13px 15px 13px 10px;
    color: #fff;
    font-weight: bold;
    background: #3A75C4;
    cursor :pointer;
    transition: all 0.5s;
	position: relative;
	text-align: center;
	
}

/*アイコンを表示*/
.accbox label:after {
    content: '\f054';
    font-family: 'FontAwesome';
	position: absolute;
	right: 15px;
	top:50%;
	font-size: 20px;
	margin-top: -12px;
	color: #fff;
	
}



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

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

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

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 15px 5px 15px 0;
    background: #f5f5f5;
    opacity: 1;
	position: relative;
}



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

/*アイコンを入れ替える*/

/*アイコンを入れ替える*/

.cssacc:checked + label:after {
    content: '\f078';
}