@charset "UTF-8";

.cart-list{
	border-top: 2px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.cart-list li{
	border-bottom: 1px solid #ddd;
	padding: 1.5rem 0;
}
.cart-list form{
	display: flex;
	flex-wrap: wrap;
	line-height: 1.7;
	align-items: center;
}
.delete-btn-area{
	width: 20%;
	display: flex;
	padding: 1em;
	justify-content: center;
	align-items: center;
}
.delete-btn{
	background: #eee;
	border-radius: 2px;
	border: 1px solid #ddd;
	font-size: 1.444rem
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .25em 1em;
	cursor: pointer;
	transition: .3s all ease;
}
.delete-btn:hover{
	opacity: .7;
}
.course-ttl{
	width: 50%;
	padding: 1em;
	font-size: 1.6rem;
}
.price-area{
	width: 30%;
	padding: 1em;
	font-weight: 600;
}









.total-price-area{
	display: flex;
	flex-wrap: wrap;
	//align-items: center;
	border-bottom: 2px solid #ddd;
	font-weight: 600;
	font-size: 1.8rem;
}
.total-price-area dt{
	width: 70%;
	display: flex;
	background: #fafafa;
	padding: 3rem 1em;
	justify-content: flex-end;
	align-items: center;
}
.total-price-area dd{
	width: 30%;
	display: flex;
	align-items: center;
	padding: 3rem 1em;
}
#cart-btn{
	margin: 2rem auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background: #005db3;
	border-radius: 2px;
	font-weight: 600;
	font-size: 1.5rem;
	padding: 1.5rem 0;
	width: 100%;
	max-width: 24rem;
	margin-top: 4rem;
	appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	border: none;
	cursor: pointer;
	transition: .3s all ease;
}



























@media screen and (max-width: 768px){
	.sec{
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.cart-list form{
		justify-content: space-between;
	}
	.delete-btn-area{
		width: 7rem;
		padding: 0;
	}
	.course-ttl{
		padding: 0 0 0 1rem;
		font-size: 1.4rem;
	}
	.price-area{
		width: calc(50% - 7rem);
		text-align: right;
		padding: 0;
	}




	.total-price-area dd{
		padding: 0;
		justify-content: flex-end;
	}
}