@charset "utf-8";

/* page.css */

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

main .article-head + h2 {
	margin-top: 0;
}

main h3 {
	margin: 4rem 0 2rem 0;
	font-size: 2.0rem;
	color: #bc273b;
}

main h4 {
	margin: 2rem 0 1rem 0;
	font-size: 1.8rem;
}

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

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

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

.faq-box .title {
	position: relative;
	margin: 0;
	padding: 2rem 4rem 2rem 6rem;
	background-color: #f5f5f5;
	font-size: 1.8rem;
	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: "Ａ";
	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);
}

/* コース・料金 */
.course-visual {
	position: relative;
	display: block;
	margin-bottom: 4rem;
}

.course-visual picture {
	display: block;
	height: 420px;
	border-radius: 8px;
	overflow: hidden;
}

.course-visual picture img {
	height: 100%;
	object-fit: cover;
	object-position: left center;
}

.course-visual p {
	position: absolute;
	right: 40px;
	bottom: 40px;
	background-color: #fff;
	padding: 2rem 3rem;
	border-radius: 8px;
}

/* 無料体験・見学 お申し込み */
.trial-campaign {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}

.trial-campaign h3 {
	margin: 0;
	padding: 0.5em 0.5em 0.5em 0.5em;
	background-color: #bc273b;
	border-radius: 8px 8px 0 0;
	text-align: center;
	color: #ffffff;
}

.trial-campaign ul {
	padding-left: 0;
}

.trial-campaign ul li {
	margin: 0;
	padding: 0.5rem 1rem 0.5rem 1rem;
	border-right: 3px solid #bc273b;
	border-bottom: 3px solid #bc273b;
	border-left: 3px solid #bc273b;
	list-style: none;
}

.trial-campaign ul li:last-of-type {
	border-radius: 0 0 8px 8px;
}

@media (max-width: 767px) {

/* コース・料金 */
.course-visual picture {
	height: auto;
}

.course-visual picture img {
	height: auto;
	object-fit: contain;
}

.course-visual p {
	position: initial;
	margin-top: 10px;
	background-color: #f2f2f2;
}

}

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