.faq:not(:last-child) {
	margin-bottom: 3.125rem;
}

.faq-ttl {
	color: #2d4f55;
	font-size: 1.0625rem;
	line-height: 1.88;
	margin-bottom: .625rem;
}

.faq-list {
	padding: 0;
}

.faq-item {
	list-style-type: none;
}

.faq-item__ttl {
	border-bottom: 1px solid gray;
	position: relative;
}

.faq-item__ttl button {
	background: none;
	border: 0;
	color: #595858;
	cursor: pointer;
	display: block;
	font-size: .8125rem;
	font-weight: bold;
	padding: 1.25rem 1.25rem 1.25rem 3.125rem;
	transition: background-color .2s linear;
	width: 100%;
	text-align: left;
}

.faq-item__ttl button:hover {
	background-color: #12334c08;
}

.faq-item__ttl button:focus {
	outline: none;
}

.faq-item__ttl button span {
	display: flex;
	align-items: center;
	height: .635625rem;
	width: 1.328125rem;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform .2s linear;
}

.faq-item__ttl button.is-show span {
	transform: translateY(-60%) rotate(180deg);
	transition: transform .2s linear;
}

.faq-item__ctn {
	display: none;
}

.faq-item__box {
	padding: 1.25rem 1.25rem 1.25rem 3.125rem;
}

.faq-item__box p {
	color: #34537d;
	font-size: .8125rem;
	font-weight: 500;
	line-height: 2;
}

.faq-item__box a {
	color: #34537d;
	text-decoration: underline;
}

.scroll-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	/* justify-content: center; */
	list-style: none;
	margin: -0.3125rem -0.3125rem 4.375rem;
	padding: 0;
}

.scroll-nav li {
	width: 25%;
	padding: 0.3125rem;
}

.scroll-nav a {
	display: block;
	text-align: center;
	/* border: 1px solid #3897f0; */
	border: 1px solid #2d4f55;
	color: #2d4f55;
	font-size: 0.9375rem;
	line-height: 2.25rem;
	border-radius: 1.125rem;
	transition: all .2s;
	-webkit-transition: all .2s;
}
.scroll-nav a:hover {
	text-decoration: none;
	/* color: #3897f0;
	border-color: #3897f0; */
	/* color: #eea66a; */
	/* color: #fff;
	border-color: #eea66a;
	background-color: #eea66a; */
	background-color: #12334c08;
}
.faq-item__ttl.active + .faq-item__ctn.accordion-content {
	display: block;
}

@media (max-width: 990px) {

	.scroll-nav li {
		width: 33.333%;
	}

}

@media (min-width: 769px) {

	.faq:not(:last-child) {
		margin-bottom: 4.375rem;
	}

}

@media (max-width: 768px) {

	.scroll-nav li {
		width: 50%;
	}

}

@media (max-width: 576px) {

	.scroll-nav li {
		width: 100%;
	}

}