@charset "utf-8";

/*
Font Size(10px Base)
--------------------
10px * 1rem -> 10px
10px * 1.5rem -> 15px
10px * 2rem -> 20px
10px * 2.5rem -> 25px
*/

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

	Base CSS

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


.faq_block {
	margin: 70px 0 0 0;
	position: relative;
}

	.faq_block:first-of-type {
		margin: 0;
	}

.btn_ctrl li {
	display: inline-block;
}

	.btn_ctrl .btn_open:before {
		margin: 0 7px 0 0;
		content: "\e800";
	}

	.btn_ctrl .btn_close:before {
		margin: 0 7px 0 0;
		content: "\e803";
	}

.faq_list_body {
	text-align: left;
	border-top: solid 2px #bcd5df;
}

.faq_list_body section {
	margin: 0;
	padding: 0;
	border-bottom: solid 2px #bcd5df;
}

.faq_list_body section h4 {
	padding: 0;
	position: relative;
}

.faq_list_body section h4:after {
	margin: -0.6em 0 0 0;
	font-size: 2rem;
	line-height: 1;
	color: #0065ac;
	content: "\e800";
	position: absolute;
	top: 50%;
}

.faq_list_body section h4 span:before {
	margin: 0;
	text-align: center;
	color: #fff;
	content: 'Q';
	border-radius: 3px;
	background: #0065ac;
	position: absolute;
}

.faq_list_body section h4 span {
	line-height: 1.5;
	border-radius: 2px;
	position: relative;
	display: block;
	cursor: pointer;
}

.faq_list_body section h4 span:hover,
.faq_list_body section.simpleFAQShowing h4 span:hover {
	background: #fafdff;
}

.faq_list_body section.simpleFAQShowing h4 {
	color: #0065ac;
	background: #fff;
}

.faq_list_body section.simpleFAQShowing h4:after {
	margin: -0.6em 0 0 0;
	font-size: 2rem;
	line-height: 1;
	color: #0065ac;
	content: '\e803';
	position: absolute;
	top: 50%;
}

.answer {
	background: #fbf8f0;
}

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

	PC Style

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

@media only screen and (min-width: 768px) {

.btn_ctrl {
	margin: 20px 0 0 0;
	text-align: right;
}

.btn_ctrl li {
	margin: 0 0 0 5px;
}

.btn_ctrl .btn_open,
.btn_ctrl .btn_close {
	padding: 7px 20px;
	font-size: 1.4rem;
}

.faq_list_body {
	margin: 15px 0 0 0;
}

.faq_list_body section h4:after {
	right: 25px;
}

.faq_list_body section h4 span:before {
	font-size: 2rem;
	line-height: 30px;
	width: 30px;
	height: 30px;
	top: 13px;
	left: 20px;
}

.faq_list_body section h4 span {
	padding: 16px 45px 17px 65px;
	font-size: 1.6rem;
}

.faq_list_body section.simpleFAQShowing h4:after {
	right: 25px;
}

.answer {
	padding: 15px 30px 15px 65px;
}

}/* End min-width 768px */

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

	SP Style

=================================================================== */
@media only screen and (max-width: 767px) {

.btn_ctrl {
	margin: 15px 0 0 0;
}

.btn_ctrl li {
	margin: 0 2px;
}

.btn_ctrl .btn_open,
.btn_ctrl .btn_close {
	padding: 10px 15px;
}

.faq_list_body {
	margin: 20px 0 0 0;
}

.faq_list_body section h4:after {
	right: 5px;
}

.faq_list_body section h4 span:before {
	font-size: 1.2rem;
	line-height: 20px;
	width: 20px;
	height: 20px;
	top: 18px;
	left: 5px;
}

.faq_list_body section h4 span {
	padding: 16px 20px 17px 35px;
	line-height: 1.5;
}

.faq_list_body section.simpleFAQShowing h4:after {
	right: 5px;
}

.answer {
	padding: 15px;
}

}/* End max-width 767px */

