@charset "utf-8";
/*==============================================
	Q&A
==============================================*/


.cp_actab{
	padding: 3px 0;

}

.cp_qa *, .cp_qa *:after, .cp_qa * {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa{
	margin-bottom: 100px;
	background-color: #e5f2fa;
	margin-left: 20px;
    margin-right: 20px;
}
.cp_qa .cp_actab {
	position: relative;
	width: 100%;
/*	margin: 0 0 1em 0; */
	color: #1b2538;

}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
.cp_actab label{
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}
/* 質問 */
.cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 1em 1em 1em;
	background-color: #1479b9;
	text-align: left;
}
/* 答え */
.cp_actab p{
	font-size: 17px;
	font-weight: bold;
	line-height: 1.7em;

}
.cp_qa .cp_actab .cp_actab-contente {
	font-family: serif;
	font-size: 1.5em;
	position: absolute;
	margin: 0.4em 0 0 -1em;
	padding: 0;
	content: '';
}
.cp_qa .cp_actab .cp_actab-content p {
	margin: 1em 1em 1em 1em;
	text-align: left;
	color: #452704;
}


/*==============================================
	メディアクエリ
==============================================*/
@media screen and (max-width:574px){
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa{
	margin-bottom: 100px;

}
.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 0 1em 0;
	color: #1b2538;
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
.cp_actab label{
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}
.cp_actab p{
	font-size: 17px;
	font-weight: bold;
	line-height: 1.7em;
}
/* 質問 */
.cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 2em 1em 2.5em;
	cursor: pointer;
	text-indent: 1em;
	background-color: #1479b9;
	text-align: left;
}
.cp_qa .cp_actab label::before {
	font-size: 1.5em;
	margin-left: -2em;
	padding-right: 0.5em;
	content: '';
}
.cp_qa .cp_actab label:hover {
	transition: all 0.3s;
	color: #628300;
}
/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 1em;
	left: auto;
	top: 50%;
	bottom: auto;
	margin-top: -12px;
	background: url(../images/top/arrow.svg) center center no-repeat;
	background-size: 24px;
	transition: .5s;
	border: none;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	position: relative;
	overflow: hidden;
	max-height: 0;
	padding: 0 0 0 1em;
	-webkit-transition: max-height 0.2s;
	        transition: max-height 0.2s;
	text-align: left;
}
.cp_qa .cp_actab .cp_actab-content::before {
	font-family: serif;
	font-size: 1.5em;
	position: absolute;
	margin: 0.4em 0 0 -1em;
	padding: 0;
	content: '';
}
.cp_qa .cp_actab .cp_actab-content p {
	margin: 1em 1em 1em 1em;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 40em;
}

/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

}