@charset "utf-8";

/* top.css */

main h2 {
	margin: 8rem 0 4rem 0;
	text-align: center;
	font-size: 2.4rem;
}

main .title {
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
	font-weight: bold;
}

main a {
	color: #1e7db4;
}

.news-top {
	margin-bottom: 2rem;
}

.narrow-box {
	max-width: 620px;
	margin-right: auto;
	margin-left: auto;
}

/* main以外 */
h2.top-title {
	margin: 8rem 0 4rem 0;
	text-align: center;
	font-size: 2.4rem;
}

/* よくある質問 */
.faq-box {
	margin-bottom: 2rem;
}

.faq-box:last-of-type {
	margin-bottom: 0;
}

.faq-box p {
	margin-bottom: 1em;
	line-height: 1.8;
}

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

.faq-box .title {
	position: relative;
	margin: 0;
	padding: 2rem 4rem 2rem 6rem;
	background-color: #f5f5f5;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
	font-size: 1.8rem;
	font-weight: bold;
	color: #000000;
	cursor: pointer;
}

.faq-box .title::before {
	content: "Ｑ";
	width: 2.8rem;
	height: 2.8rem;
	margin: 0 1.2rem 0 -4rem;
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: center;
	background-color: #006eaa;
	font-size: 1.8rem;
	color: #fff;
}

.faq-box .title::after {
	content: "";
	width: 1.8rem;
	height: 1.8rem;
	margin: 0 1.2rem 0 -4rem;
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: center;
	font-size: 1.8rem;
	position: absolute;
	right: 1rem;
	border-right: 1px solid #4c4c4c;
	border-bottom: 1px solid #4c4c4c;
	transform: rotate(45deg);
	transition: 0.2s;
}

.faq-box.active .title::after {
	transform: rotate(225deg) translate(-0.9rem,-0.9rem);
}

.faq-box .title + * {
	display: none;
	margin: 0;
	padding: 0 2rem 2rem 6rem;
	background-color: #f5f5f5;
}

.faq-box .title + *::before {
	content: "Ａ";
	position: absolute;
	width: 2.8rem;
	height: 2.8rem;
	margin: 0 1.2rem 0 -4rem;
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: center;
	background-color: #bc273b;
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
	transform: translate(0,0.2rem);
}

@media (max-width: 767px) {
}

@media (max-width: 480px) {
}