@charset "utf-8";

@media only screen and (max-width:991px) {}
@media only screen and (max-width:767px) {}
@media only screen and (max-width:375px) {} /* iPhoneSE 375px / iPhone12mini 360px */

/*************************************************

 faq-anchorlisk

*************************************************/
@media only screen and (min-width:992px) {
	.faq-anchorlisk {
		justify-content: space-between;
	}
}




/*************************************************

 faq-box

*************************************************/
.faq-box {
	overflow: hidden;
	border-radius: 5px;
	border: #EBEBEB solid 2px;
}

.faq-box + .faq-box {
	margin-top: 15px;
}

.faq-box__q {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 14px 50px 14px 14px;
	transition: background-color 0.3s;
	cursor: pointer;
}

.faq-box__q.is-on {
	background-color: #E1251B;
}

.faq-box__q::before,
.faq-box__q::after {
	position: absolute;
	top: 50%;
	right: 18px;
	display: block;
	content: '';
	width: 17px;
	height: 2px;
	margin-top: -1px;
	background-color: #E1251B;
	border-radius: 2px;
	transition: background-color 0.3s;
}

.faq-box__q::after {
	transform: rotate(90deg);
	transition: transform 0.2s;
	z-index: 2;
}

.faq-box__q.is-on::after {
	transform: rotate(0deg);
	background-color: #fff;
}

.faq-box__q__icon {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 37px;
	height: 37px;
	padding-bottom: 3px;
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	background-color: #E1251B;
	transition: background-color 0.3s, color 0.3s;
	line-height: 1;
}

.is-on .faq-box__q__icon {
	color: #E1251B;
	background-color: #fff;
}

.faq-box__q__ttl {
	display: block;
	width: calc(100% - 50px);
	padding-top: 3px;
	font-weight: 500;
	transition: color 0.3s;
}

.is-on .faq-box__q__ttl {
	color: #fff;
}

.faq-box__a {
	display: none;
}

.faq-box__a__inner {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding: 14px;
}

.faq-box__a__icon {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 37px;
	height: 37px;
	padding-bottom: 3px;
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	background-color: #E1251B;
	line-height: 1;
}

.faq-box__a__texts {
	width: calc(100% - 50px);
	padding-top: 3px;
}

.faq-box__a__texts > * {
	margin-bottom: 1.8em;
}

.faq-box__a__texts > *:last-child {
	margin-bottom: 0;
}

@media only screen and (max-width:767px) {
	.faq-box__q {
		padding-right: 40px;
	}

	.faq-box__q::before,
	.faq-box__q::after {
		right: 13px;
	}

	.faq-box__q__icon {
		width: 32px;
		height: 32px;
		padding-bottom: 2px;
		font-size: 18px;
	}

	.faq-box__q__ttl {
		width: calc(100% - 43px);
	}

	.faq-box__a__icon {
		width: 32px;
		height: 32px;
		padding-bottom: 2px;
		font-size: 18px;
	}

	.faq-box__a__texts {
		width: calc(100% - 43px);
	}
}