@charset "utf-8";
.contentsWrap {
	width: 980px;
	margin: 0 auto 40px;
}

/*****************************************
	faqPage
*****************************************/
#faqContentsArea {
}
.main_caption {
	margin-bottom: 20px;
}
.main_caption span.jump_menu {
	color: #cb162c;
}
.main_caption a {
	color: #cb162c;
}
.faq_category_title {
	font-size: 1.8rem;
	margin-bottom: 20px;
	text-align: center;
}
.faq_category_title span {
	border-bottom: 1px solid #4d4d4d;
	padding: 0 5px 2px;
}

/*FAQカテゴリ*/
.faq_category {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	font-size: 1.6rem;
}
.faq_category li {
	width: 18%;
	border-radius: 3px;
	box-sizing: border-box;
	padding: 10px 2px;
	margin-bottom: 20px;
	background-color: #4d4d4d;
	border: 2px solid #4d4d4d;
	color: #fff;
	text-align: center;
	transition: all .3s;

	display: flex;
    justify-content: center;
    align-items: center;
}
.faq_category li:hover {
	background-color: #fff;
	color: #4d4d4d;
	transition: all .3s;
}

@media screen and (max-width: 640px) {
	.main_caption {
		margin-top: 20px;
	}
	.faq_category li {
		width: 48%;
		margin-bottom: 10px;
	}
}

/*****************************************
FAQよくあるご質問
*****************************************/
.faq_list_content {
	padding: 40px 0;
	text-align: left;
}

.faq_list_content .faq_list_category {
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;

}

.faq_list_content h2.faq_list_title {
	margin-bottom: 20px;
	background-color: #e6e6e6;
	padding: 5px 10px;
	font-size: 1.6rem;
	border-radius: 2px;
}
.faq_list_content h2.faq_list_title span {
	padding-right: 5px;
	font-weight: 900;
	color: #000;
	font-size: 2.0rem;
}



.faq_list {
	font-size: 1.6rem;
	border-bottom: 1px solid #e0e0e0;
	transition: all .3s;
}
.faq_list:nth-child(5n) {
	margin-bottom: 25px;
}

.faq_list:last-child {
}
.faq_list:hover {
	background-color: #fff0f0;
	background-color: #f9f9f7;
	transition: all .3s;
}
.faq_list .mark {
	margin-top: -8px;
	font-size: 2.2rem;
	font-weight: 600;
	width: 60px;
	min-width: 60px;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Yu Gothic", YuGothic, sans-serif !important;
}
.faq_list .sentence {
}

.faq_list .guestion {
	font-size: 1.8rem;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
/*hover時下線*/
.faq_list .guestion .q_sentence {
	display: block;
	position: relative;
	text-decoration: none;
}
/*
.faq_list .guestion .q_sentence::before ,
.faq_list .guestion .q_sentence::after {
	border-bottom: solid 2px darkred;
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    width: 0;
}
.faq_list .guestion .q_sentence::before {
	left: 50%;
}
.faq_list .guestion .q_sentence::after {
	right: 50%;
}
.faq_list .guestion:hover .q_sentence::before {
	width: 50%;
}
.faq_list .guestion:hover .q_sentence::after {
	width: 50%;
}
*/


.faq_list .guestion .q_mark {
	color: darkred;
}
.faq_list .answer {
	padding: 0px 20px 10px;
	font-size: 1.4rem;
	line-height: 1.6;
	display: flex;
	align-items: center;
}
.faq_list .answer .a_mark {
	color: darkblue;
}
.faq_list .answer .a_sentence {
}

@media screen and (max-width: 640px) {

	.faq_list_content h2.faq_list_title {
		font-size: 1.8rem;
	}

	.faq_list .mark {
		font-weight: 600;
		width: 40px;
		min-width: 40px;
		transform: scale(1.2, 1);
	}
	.faq_list .guestion {
		font-size: 1.6rem;
	}
	.faq_list .sentence {
		margin-top: 0;
	}
	.faq_list .answer {
		padding-top: 0;
		font-size: 1.4rem;
	}

}


.qaBox{
    padding: 20px 20px;
    border: 3px solid #cccccc;
    position: relative;
    margin: 20px 0;
}
.qaTitle{
    position: absolute;
    background: white;
    top: -15px;
    font-size: 2rem;
    padding: 0 10px;
    font-weight: bold;
    font-family: auto;
    left: 10px;
}
.faq_list:nth-child(5n){
    margin-bottom: 0px;
}
