.cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto 1em;
	color: #ffffff;
}
.cp_actab input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.cp_actab label {
	/*font-weight: bold;*/
	line-height: 1.2em;
	position: relative;
	display: block;
	padding: 1em 2em 1em 1em;
	cursor: pointer;
	margin: 0 0 1px 0;
	background: #445F78;
	border-radius: 1em 1em 0  0;
}
.cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
	color: #333333;
	background: #fff;
	border-radius: 0  0 1em 1em;
	border: thin #999;
	border-style: none solid solid solid;
}
.cp_actab-content {
	overflow: scroll;
}
.cp_actab-content a {
	display:inline; /*A：中のリンクタグを勝手に改行させないため*/
}
.cp_actab-content i {
	display:inline; /*A：中のアイコンのレイアウト崩れのため*/
}
.cp_actab .cp_actab-content p {
	margin: 1em 0.5em 1em 1em;
	line-height: 1.2em;
	padding-left: 1.6em; /*A：の2行目1文字空ける*/
	text-indent: -1.7em; /*A：の2行目1文字空ける*/
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
	max-height: 100em; /*★高さ*/
}
/* Icon */
.cp_actab label::after {
	line-height: 3;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 2em;
	height: 3em;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	text-align: center;
	color: #00F3FF;
}
.cp_actab input[type=checkbox] + label::after {
	content: '▼';
	font-weight: bold;
}
.cp_actab input[type=checkbox]:checked + label::after {
	transform: rotate(180deg);
}