@charset "UTF-8";

#sec01 ul{
	padding-bottom: min(10vw, 19.2rem);
}

.course{
	padding-inline: min(2.5vw, 4.8rem);
	width: 50%;
	margin-bottom: 9.6rem;
}
.course .pic{
	position: relative;
	overflow: hidden;
}
.course .pic:before{
	content: "";
	display: block;
	width: 120%;
	height: 100%;
	position: absolute;
	background: #3dd2b7;
	transform: skew(-15deg, 0) scale(0, 1);
	left: -10%;
	top: 0;
	transition: .3s all ease;
	opacity: 0;
}

/*
.course:nth-of-type(2n){
	transform: translateY(calc(min(10vw, 19.2rem) + 15%));
}
.is-shown.course:nth-of-type(2n){
	transform: translateY(min(10vw, 19.2rem));
}
*/

.course .pic{
	position: relative;
	overflow: hidden;
}
.course .pic .en{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	font-weight: 300;
	font-size: 1.4rem;
	letter-spacing: .05em;
	transition: .3s opacity ease;
	transition-delay: .3s;
	opacity: 0;
	visibility: hidden;
}
.course a:hover .pic .en{
	opacity: 1;
	visibility: visible;
}
.course a:hover .pic:before{
	transform: skew(-15deg, 0) scale(1,1);
	opacity: .65;
}
.course .txt{
	position: relative;
	z-index: 9;
	padding-top: 2.4rem;
}
.course h3{
	font-size: 2rem;
	line-height: 1.75;
	position: relative;
}
.course dl{
	margin-bottom: 2.4rem;
	font-size: 1.2rem;
}
.course dt{
	position: relative;
	margin-bottom: 1.2rem;
	font-weight: 500;
	width: 6em;
	height: 1.8em;
	border-radius: .9em;
	border: 1px solid #434343;
	display: flex;
	align-items: center;
	justify-content: center;
}
.course dl:nth-of-type(2) dd{
	font-size: 1.3rem;
}
.course dl dd{
	font-size: 1.8rem;
}






@media screen and (max-width: 768px){
	#sec01 ul{
		padding-bottom: 0;
		display: block;
	}
	.course{
		padding-inline: 0;
		width: 100%;
		margin-bottom: 7.2rem;
	}
	.course:last-of-type{
		margin-bottom: 0;
	}
	.course:nth-of-type(2n){
		transform: translateY(15%);
	}
	.course.is-shown:nth-of-type(2n){
		transform: translateY(0);
	}
	.course .pic .en{
		font-size: 1.2rem;
	}

	.course .txt{
		padding-top: 1.8rem;
	}
	.course h3{
		font-size: 2.2rem;
	}
	.course dl{
		margin-bottom: 2rem;
	}
	.course dt{
		margin-bottom: 1rem;
	}
	.course dl:nth-of-type(2) dd{
		font-size: 1.3rem;
	}
	.course dl dd{
		font-size: 1.6rem;
	}
}