@charset "UTF-8";

/*---import CSS-----------------------------------*/
@import "common_setting.css";
@import "base_layout.css";
/*---import CSS-----------------------------------*/

/*
======== table of content. ===============

summary : 「よくあるご質問」設定

- content
  - section faq

==========================================
*/

/*----------------------------------------
content
------------------------------------------*/

/*--- section faq -----------------------------------*/

#faqBox {
	margin: 0px;
	padding: 0px;
	display: block;
	overflow: hidden;
}

#faqBox tbody {
	display: block;
	overflow: hidden;
}

#faqBox tr {
	width: 100%;
	margin: 0px;
	padding: 0px 0px 40px;
	display: flex;
	overflow: hidden;
}

#faqBox tr:last-child {
	padding-bottom: 0;
}

#faqBox tr th {
	width: 20%;
	margin: 0px;
	padding: 0px 10px;
}

#faqBox tr th h3 {
	margin: 0;
	color: #009e00;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

#faqBox tr td {
	width: 80%;
	margin: 0px;
	padding: 0px 0px 0px 30px;
	text-align: left;
	border-left: 2px solid #ff6e00;
}

#faqBox tr td dl {
	display: block;
	overflow: hidden;
}

#faqBox tr td dl dt {
	width: 100%;
	margin: 0px 0px 10px 0px;
	padding-left: 1.9em;
	color: #009e00;
	font-size: 16px;
	font-weight: bold;
	display: block;
	overflow: hidden;
}

#faqBox tr td dl dt span {
	margin: 0px 5px 2px -2.3em;
	padding: 2px 7px 1px;
	font-size: 13px;
	color: #ffffff;
	display: inline-block;
	background: #ff6e00;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
}

#faqBox tr td dl dd {
	width: 100%;
	margin: 0px 0px 25px 0px;
	display: block;
	overflow: hidden;
}

#faqBox tr td dl dd:last-child {
	margin-bottom: 0px;
}


/*--- 追記 -----------------------------------*/

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	overflow-x: hidden;
	margin: 0 auto;
	color: #333333;
}
.cp_qa .cp_actab {
	padding: 0px 0;
}
.cp_qa label {
	font-size: 1.2em;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 10px 0 0px;
	cursor: pointer;
}
.cp_qa .cp_actab-content {
	font-size: 1em;
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 0px;
	padding: 0 14px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	padding: 14px;
	opacity: 1;
}
.cp_qa .cp_plus {
	font-size: 2.4em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin: 3px 0 0 10px;
	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}

/*----------------------------------------
520px以下
------------------------------------------*/
@media screen and (max-width: 520px) {
	/* BODY --------------------------- */
	/*テーブル*/
	#faqBox tr {
		flex-direction: column;
	}
	#faqBox tr th,
	#faqBox tr td,
	#yakuinBox tr td.sub {
		width: 100%;
	}
	#faqBox tr th {
		padding: 0 0 0 0 ;
	}
	#faqBox tr th h3 {
		margin-bottom: 15px;
		padding-bottom: 3px;
		border-bottom: 2px solid #ff6e00;
	}
	#faqBox tr td {
		padding: 0;
		border: none;
	}
}