@charset "utf-8";
.cp_actab{
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	color: #ffffff;
	transition: all 0.46s;
}
.cp_actab input{
	position: absolute;
	z-index: -1;
	opacity: 0;
	transition: all 0.46s;
}
.cp_actab label{
	font-weight: bold;
	line-height: 3;
	position: relative;
	display: block;
	padding: 0 0 0 1em;
	cursor: pointer;
	margin: 0 0 1px 0;
	background: #58bee4;
	transition: all 0.46s;
}
.cp_actab .cp_actab-content{
	overflow: auto;
	max-height: 0;
	transition: all 0.46s;
	color: #000000;
	background: #ffffff;
}
.cp_actab .cp_actab-content p{
	margin: 1em;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content{
	max-height: none;
	transition: all 0.46s;
}
/* Icon */
.cp_actab label::after{
	line-height: 3;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 3em;
	height: 3em;
	transition: all 0.46s;
	text-align: center;
}
.cp_actab input[type="checkbox"] + label::after{
	content: '⊿';
}
.cp_actab input[type=checkbox]:checked + label::after {
	transform: rotate(225deg);
}