@charset "utf-8";

/* ------------------------------
 講座を探す（PC）
------------------------------ */
/* 検索結果件数 */
.courseNumber {
	font-size: 2.1rem;
	line-height: 1;
	font-weight: bold;
	text-align: center;
}
.courseNumber span {
	display: inline-block;
	margin: 0 10px;
	color: #c11920;
	font-size: 4rem;
}
/* 検索結果一覧ソート */
.courseSort {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 40px;
	font-size: 1.5rem;
	line-height: 1;
}
.courseSort > li:not(:last-child)::after {
	content: "｜";
	display: inline-block;
	margin: 0 1em;
}
.courseSort > li > a {
	color: #6c7889;
	text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
}
/* ------------------------------
 講座を探す（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* 検索結果件数 */
	.courseNumber span {
		margin-top: 5px;
	}
}
@media screen and (max-width: 549px) {
	/* 検索結果一覧ソート */
	.courseSort > li:last-child {
		width: 100%;
		margin-top: 18px;
		text-align: center;
	}
	.courseSort > li:not(:last-child)::after {
		content: none;
	}
	.courseSort > li:first-child::after,
	.courseSort > li:nth-child(2)::after {
		content: "｜";
		display: inline-block;
		margin: 0 1em;
	}
}

/* ------------------------------
 コース詳細（PC）
------------------------------ */
.cms_block.courseDetailBlock::after {
	content: none;
}
/* 概要 */
.courseSummary {
	position: relative;
	margin-bottom: 30px;
}
.courseSummary .counter {
	top: 6px;
	right: 0;
}
.courseID {
	margin-bottom: 15px;
	font-size: 1.5rem;
}
.courseSummary .categoryList {
	margin-bottom: 10px;
}
.courseSummary .tagList {
	font-size: 1.5rem;
}
/* シェアボタン */
.shareBox {
	display: flex;
	column-gap: 10px;
}
.shareBox > li > a.fb-share-button,
.shareBox > li:nth-child(2) {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 95px;
	height: 24px;
	border-radius: 3px;
	color: #fff;
	font-size: 1.2rem;
	line-height: 24px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
.shareBox > li > a.fb-share-button {
	background-color: #1877f2;
}
.shareBox > li:nth-child(2) {
	background-color: #000;
}
.shareBox > li:nth-child(2) > a {
	color: #fff;
	text-decoration: none;
}
.shareBox > li > a > img {
	display: inline-block;
	margin-right: 3px;
}
/* 講師情報 */
.teacherInfo {
	padding: 33px 40px 40px;
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0px 0px 15px 5px rgba(0,0,0,.15);
	text-align: center;
}
.teacherInfo > img {
	width: 165px;
	height: 165px;
	margin: 12px 0 16px;
	border-radius: 50%;
}
.teacherInfo > .teacherName {
	margin-bottom: 14px;
	padding-bottom: 16px;
	border-bottom: 1px solid #d8d8d8;
	font-size: 2.2rem;
	line-height: 1.4;
	font-weight: bold;
}
.teacherInfo > .teacherName span {
	display: block;
	font-size: 1.5rem;
}
.teacherInfo > .categoryList {
	margin: 17px 0 22px;
}
/* 講座情報 */
.schedule > p {
	font-weight: bold;
}
.schedule > ul + p {
	margin-top: 5px;
}
.capacity > p {
	font-weight: bold;
}
.fee {
	font-size: 2.6rem;
	font-weight: bold;
}
.apply {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 15px;
	font-size: 1.5rem;
	text-align: center;
}
.apply > div,
.apply > a {
	display: inline-block;
	width: 200px;
	padding: 10px 15px 9px;
	border-radius: 23px;
	color: #fff;
	font-weight: bold;
}
.contentsWide .applyBtn {
	background-color: #c11920;
	text-decoration: none;
}
.contentsWide .cancelBtn {
	padding: 8px 15px 7px;
	border: 2px solid #c11920;
	color: #c11920;
	text-decoration: none;
}
.contentsWide a.applyBtn[target="_blank"]::after,
.contentsWide a.cancelBtn[target="_blank"]::after {
	content: none;
}
.disabledBtn {
	background-color: #b3b3b3;
}
.discount {
	padding: 8px 0 7px;
	background-color: #f9e8e9;
	color: #c11920;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}
.discount strong {
	font-size: 2.6rem;
}
.note {
	padding-top: 20px;
	border-top: 1px solid #d8d8d8;
}
.note > p {
	padding-left: 1em;
	text-indent: -1em;
}
@media print, screen and (min-width: 768px) {
	.courseDetailBlock {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		column-gap: 33px;
	}
	/* イメージ */
	.courseSummary + img {
		margin-bottom: 40px;
		border-radius: 20px;
	}
	/* ダウンロード・シェアボタン */
	.download-share {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	/* シェアボタン */
	.shareBox > li > a.fb-share-button:hover {
		opacity: 1;
		background-color: #135fc2;
	}
	.shareBox > li:nth-child(2):hover {
		background-color: #333;
		cursor: pointer;
	}
	/* 講座情報 */
	.courseInformation {
		display: flex;
		align-items: center;
	}
	.schedule {
		width: 440px;
	}
	.capacity {
		width: 270px;
		text-align: center;
	}
	.capacity > p {
		font-size: 2rem;
	}
	.fee,
	.apply {
		width: 230px;
	}
}
/* ------------------------------
 コース詳細（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.crumb + .inBlock {
		margin-top: 156px;
	}
	.contentsWide > .inBlock > .cms_block.courseDetailBlock {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	/* 概要 */
	.courseSummary {
		width: 82.6%;
		margin-left: 8.7%;
		margin-right: 8.7%;
	}
	/* イメージ */
	.courseSummary + img {
		margin-bottom: 30px;
	}
	/* ダウンロード・シェアボタン */
	.download-share {
		text-align: center;
	}
	/* シェアボタン */
	.shareBox {
		justify-content: center;
		margin: 25px 0 50px;
	}
	/* 講師情報 */
	.teacherInfo {
		padding: 23px 8.7% 27px;
		border-radius: 0;
		box-shadow: 0px 0px 12px 4px rgba(0,0,0,.1);
	}
	/* 講座情報 */
	.courseInformation {
		width: 82.6%;
		margin-left: 8.7%;
		margin-right: 8.7%;
	}
	.capacity {
		margin-top: 5px;
	}
	.capacity > p {
		display: inline-block;
	}
	.fee {
		margin: 12px 0 5px;
		text-align: center;
	}
	.discount {
		padding: 16px 0;
		line-height: 1.4;
	}
	.discount strong {
		display: block;
	}
	.note {
		width: 82.6%;
		margin-left: 8.7%;
		margin-right: 8.7%;
		padding-top: 20px;
	}
}