@charset "UTF-8";

/*** アコーディオン ***/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	border-bottom: 1px solid #ccc;
  font-size:104%;
}
.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-bottom: 1px;
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.6;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 2em 1em 1em;
	cursor: pointer;
	border-top: 1px solid #ccc;
}
.cp_qa .cp_actab label:hover {
	color: #f35f17;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.5s ease;
	        transition: max-height 0.5s ease;
}

/* 質問を開いた時の仕様 */
/* --アイコン */
.cp_qa .cp_actab input:checked ~ label {
	color: #f35f17;
}
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height:80em;
  border-top: 1px dashed #6e6e6e;
}
/*
.cp_actab-content p {
    width:84%;
    padding:1.5%;
    float: left;
}
 */
 .cp_actab-content div {
   padding:1em;
 }
.cp_actab-content span.sub {
  font-size:92%;
	color:#939494;
}
.cp_actab-content i {
 font-style: normal;
 border: 1px solid #8c8c8c;
 padding: 1px;
}

/*
.cp_actab-content span {
    width:10%;
    margin:1.5%;
    padding:1%;
    float: right;
    display: inline-block;
    border-radius: 150px;
    vertical-align: middle;
    background: #f6f6f6;
}
.cp_actab-content span img {
    width:100%;
}
*/
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab label::after {
	line-height: 1.6;
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 3em;
	margin-top: -12.5px;
	-webkit-transition: all 0.5s ease;
	        transition: all 0.5s ease;
	text-align: center;
}
.cp_qa .cp_actab input[type=checkbox] + label::after {
	content: '∨';
}
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}
