/* ============================
	common
============================ */

/* intro
----------------------------------------------------------------- */
#intro.section {
	padding-top: 50px;
}

#intro .ttl {
	text-align: center;
	font-size: 3.6rem;
}

@media screen and (max-width: 767px) {
	#intro .ttl {
		font-size: 2.6rem;
	}
}

/* ============================
	ABOUT-US
============================ */

/* about
----------------------------------------------------------------- */
#about.section {
	padding-bottom: 0;
}

/* course-price
----------------------------------------------------------------- */
/*comiruなどアプリの紹介セクション非表示時のみ調整*/
#course-price.section {
	padding-bottom: 0;
}

/* profile
----------------------------------------------------------------- */
.profile-box {
	padding: 50px;
	border-radius: 30px;
	background: var(--color-orange);
	gap: 30px 50px;
	color: #fff;
	flex-wrap: nowrap;
}

.profile-box .img-box {
	flex-basis: 200px;
	flex-shrink: 0;
}

.profile-box .img-box img {
	border-radius: 20px;
}

.profile-box .table {
	flex-grow: 1;
}

.profile-box .table dt {
	flex-basis: 150px;
	background: unset;
}

.profile-box .table dl {
	border-color: #fff;
}

@media screen and (max-width: 767px) {
	.profile-box {
		padding: 30px 15px;
		flex-direction: column;
	}

	.profile-box .img-box {
		flex-basis: unset;
	}

	.profile-box .table dt {
		flex-basis: unset;
		padding-bottom: 0;
	}

}

/* ============================
	COURSE PRICE
============================ */

#course .orange-box {
	margin-top: 30px;
}

/* time table
----------------------------------------------------------------- */
#time-table .general-h3 {
	margin-top: 0;
}

/* faq
----------------------------------------------------------------- */
.faq-list dl {
	margin: 0;
}

.faq-list dl + dl {
	margin-top: 30px;
}

.faq-list dt,
.faq-list dd {
	margin: 0;
	position: relative;
}

.faq-list dt {
	padding: 30px 95px 30px 120px;
	background: var(--color-gray);
	font-size: 2.2rem;
	border-radius: 10px;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
}

.faq-list dd {
	display: none;
	padding: 35px 30px 30px 120px;
}

.faq-list dt::before,
.faq-list dd::before {
	content: '';
	display: block;
	width: 60px;
	line-height: 60px;
	font-size: 3rem;
	text-align: center;
	border-radius: 50px;
	position: absolute;
	top: 20px;
	left: 30px;
}

.faq-list dt::before {
	content: 'Q';
	background: var(--color-orange);
	color: #fff;
}

.faq-list dt::after {
	content: "";
	-webkit-mask-image: url('../images/common/arrow_down.svg');
	mask-image: url('../images/common/arrow_down.svg');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: var(--color-black);
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 0.2s ease-in-out;
	display: block;
	width: 30px;
	height: 20px;
}

.faq-list dt.opened::after {
	transform: rotate(180deg) translateY(50%);
}

.faq-list dt:hover {
	background: var(--color-orange);
	color: #fff;
	transition: all 0.2s ease-in-out;
}

.faq-list dt:hover::before {
	background: #fff;
	color: var(--color-orange);
	transition: all 0.2s ease-in-out;
}

.faq-list dt:hover::after {
	background: #fff;
	transition: background-color 0.2s ease-in-out;
}

.faq-list dd::before {
	content: 'A';
	background: var(--color-light-orange);
	color: var(--color-orange);
}

@media screen and (max-width: 767px) {
	.faq-list dt {
		padding: 25px 50px 25px 70px;
		font-size: 1.8rem;
	}

	.faq-list dd {
		display: none;
		padding: 25px 15px 25px 70px;
	}

	.faq-list dt::before,
	.faq-list dd::before {
		width: 40px;
		line-height: 40px;
		font-size: 2.2rem;
		top: 20px;
		left: 15px;
	}

	.faq-list dt::after {
		right: 15px;
		width: 20px;
		height: 12px;
	}
}

/* ============================
	RECRUIT
============================ */

body#recruit #intro {
	padding-bottom: 0;
}

#requirements .requirements-box + .requirements-box {
	margin-top: 50px;
}

#requirements .general-h3 {
	margin-top: 0;
}


/* ============================
	CONTACT
============================ */

#contact-tel .txt-box {
	text-align: center;
}

.tel-box {
	gap: 0 30px;
	align-items: center;
	margin-top: 20px;
}

.tel-box a {
	font-size: 3rem;
}
