.cp_qa *, .cp_qa *:before, .cp_qa *:after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	display: inline-block;
}
.cp_qa {
	margin: 0 auto;
	background: #ffffff;
}
.cp_qa input {
	display: none;
}
/* カテゴリー */
.cp_qa #cp_content1,
.cp_qa #cp_content2,
.cp_qa #cp_content3{
	display: none;
	padding: 20px 0 0;
	border-top: 0.5px solid #dddddd;
}
.cp_qa label.cp_tabitem {
	display: inline-block;
	margin: 0 0 -1px;
	padding: 15px 25px;
	text-align: center;
	color: #ffffff;
	border: 1.5px solid #FF4500;
	border-bottom:0;
	background-color:#ff9973;
	border-radius: 10px 10px 0px 0px;
}
.cp_qa label.cp_tabitem:before {
	margin-right: 10px;
}
.cp_qa label.cp_tabitem[for*='1']:before { content: '\f15c'; }
.cp_qa label.cp_tabitem[for*='2']:before { content: '\f013'; }
.cp_qa label.cp_tabitem[for*='3']:before { content: '\f05a'; }
.cp_qa label.cp_tabitem:hover {
	cursor: pointer;
	background-color: #ff4500;
}
.cp_qa input:checked + label{
	color: #555555;
	border-bottom: 1px solid #ffffff;
	
}
/* --ブロックのバーの色 */
.cp_qa input:checked + label[for*='1'] {
	border-top: 10px solid #FF4500;
	background-color:#FF4500;
	color:#ffffff;
}
.cp_qa input:checked + label[for*='2'] {
	border-top: 10px solid #FF4500;
	background-color:#FF4500;
	color:#ffffff;
}
.cp_qa input:checked + label[for*='3'] {
	background-color:#FF4500;
	border-top: 10px solid #FF4500;
	color:#ffffff;
}

@media screen and (max-width: 650px) {
	.cp_qa label.cp_tabitem {
		font-size: 0;
	}
	label:before {
		font-size: 18px;
		margin: 0;
	}
}
@media screen and (max-width: 400px) {
	.cp_qa label.cp_tabitem {
		padding: 15px;
	}
	.cp_qa label.cp_tabitem:before {
		margin-right: 0px;
	}
}
/* QAブロック */
.cp_qa #cp_conttab1:checked ~ #cp_content1,
.cp_qa #cp_conttab2:checked ~ #cp_content2,
.cp_qa #cp_conttab3:checked ~ #cp_content3,
.cp_qa #cp_conttab4:checked ~ #cp_content4 {
  display: block;
}
.cp_qa .cp_qain {
	overflow-x: hidden;
	margin: 0 auto;
	color: #333333;
}
.cp_qa .cp_qain .cp_actab {
	padding: 20px 0;
	border-bottom: 1px dotted #cccccc;
}
/* 質問 */
.cp_qa .cp_qain label {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 10px 0 48px;
	cursor: pointer;
}
/* ＋アイコン */
.cp_qa .cp_qain .cp_plus {
	font-size: 2.0em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin-top: 5px;
	margin-left: 10px;
	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
}

/* 答え */
.cp_qa .cp_qain .cp_actab-content {
	position: relative;
	font-weight:normal;
	overflow: hidden;
	height: 0;
	margin: 0 10px 0 48px;
	padding: 14px 0;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
/* 質問を開いた時の仕様 */
.cp_qa .cp_qain .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	opacity: 1;
}
/* 質問をクリックした時の▼アイコンの動き */
.cp_qa .cp_qain .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
