
.example1 {
	 padding: 0 0 0 0;
	 font-size: 1rem;
	 line-height: 1.8em;
	 color: #525252;
     font-weight: 300;
}
.example2 {
	padding: 0 0 0 35px;
	font-weight:bold;
	font-size: 1rem;
	line-height: 1.8em;
	color: rgb(8, 82, 148);
	font-weight: 300;
}
.example3 {
	padding: 0 0 0 50px;
	font-weight:bold;
	font-size: 2.2em;
	color: #444444;
}
.img {
	padding: 0 0 0 35px;
}


.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
			width: px;
}

.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-bottom: 1px;
	color: #444444;
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}

/* 質問 */
.cp_qa .cp_actab label {
	line-height: 1.8em;
	color: rgb(8, 82, 148);
	font-weight: 600;
	font-size: 1.1rem;
	line-height: 2;
	position: relative;
	display: block;
	padding: 1.7em;
	cursor: pointer;
	margin-right : 50px ;
}
.cp_qa .cp_actab label:hover {
	color: #94b8d2;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	margin : 10px ;
	margin-left : 50px ;
	margin-right : 100px ;
	-webkit-transition: max-height 0.5s ease;
	        transition: max-height 0.5s ease;
	color: #0e0e0e;
	background-color: #ebeef5;
	margin : 0 5em 0 0 ;
}
.cp_qa .cp_actab .cp_actab-content p {
	margin: 1.5em 2em 1.5em 2em;
}
/* 質問を開いた時の仕様 */
/* --アイコン */
.cp_qa .cp_actab input:checked ~ label {
	color: rgb(8, 82, 148);
}
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 400em;
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab label::after {
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top: rgb(8, 82, 148) 2px solid;
	border-right: rgb(8, 82, 148) 2px solid;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	position:absolute;
	right: 2%;
	top: 0;
	bottom: 15%;
	margin: auto;
}

.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top: rgb(8, 82, 148) 2px solid;
	border-right: rgb(8, 82, 148) 2px solid;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position:absolute;
	right: 2%;
	top: 7%;
	bottom: 0;
	margin: auto;
}