@charset "utf-8";

/* ------------------------------
 よくあるご質問（PC）
------------------------------ */
.faqBlock > .cms_text {
	margin-bottom: 0;
	transition: .3s ease-in-out;
}
.faqBlock > .cms_text:first-of-type {
	border-top: 1px solid #d8d8d8;
}
.faqBlock details {
	border-bottom: 1px solid #d8d8d8;
}
.faqBlock details summary {
	list-style: none;
	display: block;
	position: relative;
	width: 100%;
	padding: 36px 40px;
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: bold;
	outline: none;
	cursor: pointer;
}
.faqBlock details summary span {
	position: absolute;
	top: 32px;
	left: 0;
	color: #5d738c;
	font-family: "Poppins", sans-serif;
	font-size: 3.2rem;
	line-height: 1;
	font-weight: 700;
}
.faqBlock details summary::-webkit-details-marker {
	display: none;
}
.faqBlock details summary::after {
	content: "＋";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 22px;
	height: 22px;
	margin: auto 0;
	padding-top: 3px;
	border-radius: 50%;
	box-sizing: border-box;
	background-color: #c11920;
	color: #fff;
	font-family: "メイリオ", sans-serif;
	font-size: 1.8rem;
	line-height: 1;
	font-weight: bold;
	text-align: center;
}
.faqBlock details[open] summary::after {
	content: "－";
}
.faqBlock details div  {
	position: relative;
	padding: 30px 40px 30px 70px;
	border-top: 1px solid #d8d8d8;
	background-color: #f3f2f1;
}
.faqBlock details div span {
	position: absolute;
	top: 27px;
	left: 35px;
	color: #c11920;
	font-family: "Poppins", sans-serif;
	font-size: 3.2rem;
	line-height: 1;
	font-weight: 700;
}
.faqBlock details[open] div {
	animation: accordion .5s linear;
}
@keyframes accordion {
	0% {
		opacity: 0;
		height: 0;
	}
	20% {
		opacity: 0;
		height: 25%;
	}
	40% {
		opacity: .25;
		height: 50%;
	}
	60% {
		opacity: .5;
		height: 75%;
	}
	80% {
		opacity: .75;
		height: 100%;
	}
	100% {
		opacity: 1;
	}
}
/* ------------------------------
 よくあるご質問（SP）
------------------------------ */
@media screen and (max-width:767px) {
	.faqBlock details summary {
		padding: 15px 30px;
		font-size: 1.7rem;
	}
	.faqBlock details summary span {
		top: 13px;
		font-size: 2.8rem;
	}
	.faqBlock details div  {
		position: relative;
		padding: 15px 20px 15px 45px;
		border-top: 1px solid #d8d8d8;
		background-color: #f3f2f1;
	}
	.faqBlock details div span {
		top: 15px;
		left: 14px;
		font-size: 2.8rem;
	}
}