@charset "utf-8";

/*  */

.accbox label{
	display: block;
	margin: 5px 0;
	padding : 11px 12px;
	cursor :pointer;
	transition: all 0.5s;
	border: solid 1px #c9a746;
	border-radius: 5px;
}

.accbox label:hover{
	background :#f2ebd2;
}

.accbox input{
	display: none;
}

.accbox .accshow{
	height: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.8s;
}

.cssacc:checked + .accshow{
	height: auto;
	padding: 20px 0;
	opacity: 1;
}
