@charset "utf-8";

.faxBox {
	width: 100%;
	border: 1px solid #FEA857;
	background-color: #FFF;
	margin-top: 20px;
	margin-bottom: 20px;
}
.faxBox p {
	padding: 15px;
}
.faxBox a {
	text-decoration: none !important;
}


/* 講座一覧 レイアウト */
.CourseItems {
	display: flex;
	flex-wrap: wrap;
	gap: 3.688%;
}
@media screen and (max-width: 750px) {
	.CourseItems {
		display: block;
	}
}
.CourseItems__item {
	width: 48.156%;
}
@media screen and (max-width: 750px) {
	.CourseItems__item {
		width: auto;
	}
	.CourseItems__item:not(:first-child) {
		margin-top: 25px;
	}
}

/* 講座 */
.Course {
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #9B9EB6;
	box-shadow: 0 2px 0 rgba(0, 0, 0, .15);
	padding-bottom: 40px;
	position: relative;
}
.Course__head {
	margin-bottom: 10px;
}
.Course__body {
	display: flex;
	flex-wrap: wrap;
}
.Course__textArea {
	box-sizing: border-box;
	width: calc(100% - 148px);
	padding-left: 30px;
	padding-right: 30px;
}
@media screen and (max-width: 750px) {
	.Course__textArea {
		padding-left: 10px;
		padding-right: 10px;
	}
}
.Course__textArea .Course__link {
	padding-bottom: 0;
	color: #000;
	text-indent: -1em;
	padding-left: 1em;
}
.Course__textArea .Course__link a {
	color: #222;
}
.Course__thumb {
	width: 148px;
}
.Course__thumb img {
	width: 100%;
}
.Course__more {
	width: 148px;
	margin-left: auto;
	text-align: center;
	position: absolute;
	bottom: 0;
	right: 0;
}
.Course__more a {
	display: block;
	background-color: #0B89AA;
	color: #fff;
	padding: 1px 0;
}