@charset "UTF-8";

.course-list li{
	padding: 2em;
	border: 1px solid #ddd;
	margin-top: 4rem;
}
.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex .pic{
	width: calc(40% - 2rem);
	border: 1px solid #eee;
}
.flex .txt{
	width: calc(60% - 2rem);
}
.flex .txt dl{
	display: flex;
	border-bottom: 1px solid #eee;
	line-height: 2;
	padding: 1em 0;
}

.flex .txt dl:nth-of-type(1){
	border-top: 1px solid #eee;
}
.flex .txt dt{
	width: 30%;
}
.flex .txt dd{
	width: 70%;
}
.price{
	font-weight: 600;
	font-size: 120%;
	color: #d00;
}
.lesson-num{
	font-weight: 600;
	font-size: 120%;
}
.detail-btn{
	display: flex;
	width: 100%;
	height: 4rem;
	border-radius: 3px;
	color: #fff;
	font-weight: 600;
	background: #e6576d;
	margin-top: 2rem;
	font-size: 1.6rem;
	justify-content: center;
	align-items: center;
}
.course-list .pic img{
	display: block;
	width: 100%;
}
.course-ttl{
	margin: 0 0 2rem;
	padding-bottom: .5em;
	line-height: 1.7;
	font-size: 2rem;
	border-bottom: 2px solid #01b3dd;
}
.course-desc{
	font-size: 1.555rem;
	line-height: 2;
	margin-bottom: 3rem;
}

.bread-crumbs{
	display: flex;
}
.bread-crumbs li{
	padding: .5em 0;
}

.bread-crumbs li:not(:last-of-type):after{
	content: "/";
	display: inline;
	padding: 0 1em;
}
.bread-crumbs a{
	text-decoration: underline;
	color: #005db3;
}







dd strong{
	color: #d5002d !important;
	font-size: 140%;
}
dd strong span,
.price .small{
	font-size: 80%;
	margin: 0 2em 0 0;
}
.through{
	text-decoration: line-through;
}
@media screen and (max-width: 768px){










	.course-list li{
		padding: 1.5em 1rem;
		margin-top: 2.5rem;
	}
	.flex{
		display: block
	}
	.flex .pic{
		width: 100%;
		max-width: 180px;
		margin-left: auto;
		margin-right: auto;
	}







	.flex .txt{
		width: 100%;
		margin-top: 1rem;
		line-height: 1.75;
	}
	.flex .txt dl{
		line-height: 1.7;
		flex-wrap: wrap;
		padding: .5em 0;
	}
	.flex .txt dt,
	.flex .txt dd{
		width: 100%;
	}
	.course-ttl{
		margin: 0 0 1.5rem;
		font-size: 1.6rem;
	}
	.course-desc{
		margin-bottom: 2rem;
		font-size: 1.4rem;
		display: none;
	}

	.through{
		display: block;
	}






	.learning-time{
		display: none !important;
	}
}