@charset "UTF-8";

/* ----------------------------------------------- CSS Information
 Style Info:    FAQ よくある質問
 Notes:          
--------------------------------------------------------------- */
.main-wrap{
	width:100%;
	padding-top:6em;
	margin-bottom: 5%;
}

.main-title_bg{
	width:100%;
	line-height: 100%;
	text-align: center;
	margin: 0 0 3%;
	padding: 3% 0;
}
.main-title{
	width:51.04%;
	margin: 0 auto;
}
.main-title img{
	width:100%;
}

.main-content	{
	width:51.04%;
	margin: 0 auto;
}

.faq-categories {
	background: #eef2f5;
	padding: 2% 0;
}

.faq-categories-list {
	display: flex;
	flex-wrap: wrap;
	gap: 2vw 4.1%;
	font-size: 1vw;
}

.faq-categories-list > li {
	flex: 0 1 30.6%;
	text-align: center;
}

.faq-categories-list > li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.5em;
	font-weight: 700;
}

.faq-categories-list > li a:after {
	content: "";
	width: 1.76em;
	height: 1.76em;
	background: url(../img/faq/arrow.png) no-repeat center /contain;
	flex-shrink: 0;
}

.faq-block {
	margin-top: 9.2%;
}

.faq-block-ttl {
	font-size: 1.2vw;
	font-weight: 700;
	border-bottom: 2px solid #e60000;
	margin-bottom: 3%;
}

.faq-item{
	margin-bottom: 5%;
}

.faq-item:last-child{
	margin-bottom: 0;
}

.faq-item-q{
	background: #eef2f5;
	font-size: 1.2vw;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	padding: 1% 8% 1% 6%;
	cursor: pointer;
}

.faq-item-q:before{
	content: "Q";
	color: #e60000;
	width: 5%;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 1%;
	text-align: right;
}

.faq-item-q:after{
	content: "＋";
	width: 8%;
	text-align: center;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.faq-item-q.is-open:after{
	content: "ー";
}

.faq-item-a{
	border: 1px solid #eef2f5;
	padding: 2% 8%;
	position: relative;
	line-height: 1.79;
	display: none;
	font-size: 1vw;
}

.faq-item-a:before{
	content: "A";
	color: #e60000;
	width: 5%;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 1%;
	text-align: right;
	font-size: 1.2vw;
	font-weight: 700;
}

/* ===============================================================================================================================
== スマホ 
================================================================================================================================= */
@media only screen and (max-width:699px) {

	.main-wrap{
		width:100%;
		padding-top:70px;
		margin-bottom: 15%;
	}

	.main-content {
		width: 90%;
		margin: 0 auto;
	}

	.main-title {
		width: 100%;
		margin: 0 auto;
	}
	
	.faq-categories {
		padding: 20px 0;
	}
	
	.faq-categories-list {
		gap: 20px 0;
		font-size: 14px;
	}
	
	.faq-categories-list > li {
		flex: 0 1 100%;
		text-align: left;
	}
	
	.faq-block {
		margin-top: 30px;
	}
	
	.faq-block-ttl {
		font-size: 18px;
	}
	
	.faq-item{
		margin-bottom: 50px;
	}
	
	.faq-item-q{
		font-size: 16px;
		padding: 20px 40px;
	}
	
	.faq-item-q:before{
		width: 28px;
		margin-top: 20px;
	}
	
	.faq-item-q:after{
		width: 40px;
	}
	
	.faq-item-a{
		padding: 20px 40px;
		font-size: 14px;
	}
	
	.faq-item-a:before{
		font-size: 16px;
		width: 28px;
		margin-top: 20px;
	}

}