@charset "utf-8";

.page-section {
	margin-bottom: 40px;
}

.faq-index__section-title {
	color: #000;
	font-weight: bold;
	background: rgba(0,0,0,0.05);
	border-top: 2px solid rgba(0,0,0,0.05);
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 20px;
	border-radius: 2px;
	counter-reset: iq;
}

.faq-index_group {
	margin-bottom: 30px;
	padding-left: 10px;
}

.faq-index__item {
	position: relative;
	margin: 10px 0;
	padding-left: 40px;
	line-height: 2.0rem;
	margin-bottom: 5px;
}

.faq-index__item:before {
	counter-increment: iq;
	content: "Q " counter(iq);
	display: inline-block;
	position: absolute;
	font-size: 1.5rem;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-weight: bold;
	letter-spacing: -0.1rem;
	margin-right: 15px;
	color: rgba(0,0,0,0.75);
	left: 0;
}

.faq__section-container {
	counter-reset: aa aq;
}

.faq__article {
	margin-top: -40px;
	padding-top: 80px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq__article:target .faq__q {
	-webkit-animation: targetAnimation 0.2s ease-out 0s 4 alternate;
	        animation: targetAnimation 0.2s ease-out 0s 4 alternate;
}

.faq__q,
.faq__a {
	padding-left: 70px;
	position: relative;
}

.faq__q {
	margin-bottom: 10px;
	font-weight: bold;
	line-height: 1.2;
}

.faq__a {
	line-height: 1.7;
	font-size: 1.5rem;
}

.faq__q:before,
.faq__a:before {
	position: absolute;
	display: block;
	font-size: 2.2rem;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-weight: bold;
	letter-spacing: -0.1em;
	text-align: right;
	float: left;
	left: 0px;
	width: 50px;
}

.faq__q:before {
	counter-increment: aq;
	content: "Q " counter(aq);
	color: #000;
}

.faq__a:before {
	counter-increment: aa;
	content: "A " counter(aa);
	color: rgba(0,0,0,0.5);
}


/* ---------------------------------------------------------------------------------------------- */
/* SmartPhone                                                                                     */

/*@media screen and (max-width: 414px) {*/
@media screen and (max-width: 540px) {
	.faq__a:before,
	.faq__q:before {
		font-size: 1.6rem;
		width: 35px;
	}
	.faq__q,
	.faq__a {
		padding-left: 40px;
	}
}

