@charset "utf-8";

/*-------------------------------
	よくある質問
-------------------------------*/

.Faq-block:not(:last-child){
	margin-bottom: 1rem;
}
.Faq-block__title{
	width: 100%;
	font-size: 2.8rem;
	line-height: calc(4.2 / 2.8);
	padding-top: 2rem;
	padding-left: 1.5rem;
	padding-right: 3rem;
	border-bottom: 1px solid #b3b3b3;
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.Faq-block__title::before{
	content: "";
	display: block;
	width: 6rem;
	height: 6rem;
	background-image: url(../images/faq/icon_q.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.Faq-block__title span{
	width: calc(100% - 6rem);
	padding: 1rem 5rem 3rem 2rem;
	line-height: calc(4.2 / 2.8);
	display: block;
	position: relative;
}
.Faq-block__title span::before,
.Faq-block__title span::after{
	transition: var(--transition);
	background: var(--subcolor);
	content: "";
	display: block;
	width: 2.4rem;
	height: .4rem;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateY(3.2rem);
}
.Faq-block__title span::after{
	transform: translateY(3.2rem) rotate(-90deg);
}
.Faq-block__title.on span::after{
	transform: translateY(3.2rem) rotate(0deg);
}

.Faq-block__accordion{
	width: 100%;
	padding: 3rem 3.5rem 3rem 1.5rem;
	background: #eaf9fb;
	display: none;
}
.Faq-block__body{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.Faq-block__body::before{
	font-family: var(--en);
	background: var(--gradcolor);
	content: "A";
	display: block;
	width: 6rem;
	font-size: 4.8rem;
	font-weight: 500;
	line-height: 1;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}
.Faq-block__text-wrap{
	width: calc(100% - 6rem);
	padding-top: .5rem;
	padding-left: 2rem;
}
.Faq-block__body a{
	color: var(--subcolor);
	text-decoration: underline;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.Faq__inner{
		padding-left: 4rem;
		padding-right: 4rem;
	}
	.Faq-block:not(:last-child){
		margin-bottom: 4rem;
	}
	.Faq-block__title{
		font-size: 3.6rem;
		line-height: calc(5.4 / 3.6);
		padding: 0 3.5rem 3rem 1.5rem;
	}
	.Faq-block__title span{
		padding: 0 6.5rem 0 2.5rem;
		line-height: calc(5.4 / 3.6);
	}
	.Faq-block__title span::before,
	.Faq-block__title span::after{
		width: 3.6rem;
		transform: translateY(-50%);
		top: 50%;
	}
	.Faq-block__title span::after{
		transform: translateY(-50%) rotate(-90deg);
	}
	.Faq-block__title.on span::after{
		transform: translateY(-50%) rotate(0deg);
	}

	.Faq-block__accordion{
		width: 100%;
		padding: 4rem 3rem 4.2rem 1.5rem;
	}
	.Faq-block__text-wrap{
		margin-top: -1rem;
	}

}