@charset "utf-8";

/* ========================================================
	faq.css
======================================================== */

/* faq_tab
============================================================================================================ */
.faq_tab {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 5px;
	margin-bottom: 120px;
}
.faq_tab a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	background-color: #eeefea;
	border-radius: 6px;
	text-decoration: none;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
}
@media screen and (min-width: 768px), print {
	.faq_tab > * {
		width: calc((100% - 5px * 2) / 3);
	}
	.faq_tab a:hover {
		background-color: #c30010;
		color: #fff;
	}
}
@media screen and (max-width: 767px) {
	.faq_tab {
		margin-bottom: 30px;
	}
	.faq_tab > * {
		width: calc((100% - 5px * 1) / 2);
	}
	.faq_tab a {
		height: 46px;
		padding: 0 10px;
		border-radius: 4px;
		font-size: 1.3rem;
	}
}