
.secFaq .secTtl {
	justify-content: center;
}

.faqMain {
	background: #fafafa;
}

.secFaq {
	margin-top: 25px;
}
.secFaq .catList {
	display: flex;
	flex-wrap: wrap;
	padding: 12px 7px 0;
	position: relative;
	z-index: 2;
}
.secFaq .catList .list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.secFaq .catList .list .item {
	width: 50%;
	box-sizing: border-box;
	padding: 8px 3px 0;
	display: flex;
	text-align: center;
}
.secFaq .catList .list .item a {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	border: 1px solid #707070;
	border-radius: 50px;
	line-height: 1.2;
	padding: 5px;
	text-decoration: none;
	min-height: 30px;
	font-size: 1.4rem;
	box-sizing: border-box;
	color: #333;
}

/* SP for se
-------------------------------------*/
@media screen and (max-width: 359px) {
	.secFaq .catList .list .item a {
		font-size: 1.2rem;
	}
}


.secFaq .dtlSecWrap {
	padding: 0 10px;
	margin-top: -23px;
}
.secFaq .dtlSec {
	padding-top: 64px;
}
.secFaq .dtlSec .dtlSecTtl {
	font-size: 1.9rem;
	font-weight: bold;
}
.secFaq .dtlSec .itemList {
}
.secFaq .dtlSec .item {
	border-bottom: 1px solid #ddd;
	padding: 16px 0;
}
.secFaq .dtlSec .item .qLine {
	position: relative;
	padding: 0 30px 0 35px;
	font-size: 1.6rem;
	line-height: 1.5;
	cursor: pointer;
	color: #19a59e;
}
.secFaq .dtlSec .item .js-flexBox {
	display: none;
}
.secFaq .dtlSec .item .aBox .aLine {
	padding: 15px 10px 5px 35px;
	line-height: 1.5;
	font-size: 1.5rem;
	position: relative;
}
.secFaq .dtlSec .item .qLine::before,
.secFaq .dtlSec .item .aBox .aLine::before {
	content: "";
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	display: block;
	position: absolute;
	left: 0;
	width: 24px;
	height: 24px;
	background: no-repeat center center;
	background-size: 100% auto;
}
.secFaq .dtlSec .item .qLine::before {
	background-image: url(../images/faq_icn_q.svg);
	top: 2px;
}
.secFaq .dtlSec .item .aBox .aLine::before {
	background-image: url(../images/faq_icn_a.svg);
	top: 15px;
}
.secFaq .dtlSec .item .qLine::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 12px;
	height: 7px;
	background: url(../common/images/icn_arow_gr.svg) no-repeat center center;
	background-size: 100% auto;
	transition: transform 0.3s ease-in-out;
}
.secFaq .dtlSec .item.js-open .qLine::after {
	transform: rotate(180deg);
}