@charset "UTF-8";
/* CSS Document */

.episode {
	font-size: 18px !important;
	text-align: center;
}

.member-price {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.member-price li {
	width:32%;
	background: #f5f5f5;
	padding: 25px;
	box-sizing: border-box;
	text-align: center;
}
.member-price li .title {
	background: #76b166;
	color:#fff;
	font-size: 20px;
	font-weight: 600;
	padding: 5px;
	box-sizing: border-box;
	margin-bottom: 15px;
}
.member-price li .price {
	font-size: 30px;
	font-weight: 600;
}
.member-price li .price span {
	font-size: 20px;
}


@media screen and (max-width:768px) {
	.episode {
	font-size: 14px !important;
	text-align: center;
}

.member-price {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 20px;
}
.member-price li {
	width:auto;
	background: #f5f5f5;
	padding: 15px;
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 10px;
}
.member-price li .title {
	background: #76b166;
	color:#fff;
	font-size: 16px;
	font-weight: 600;
	padding: 5px;
	box-sizing: border-box;
	margin-bottom: 10px;
}
.member-price li .price {
	font-size: 20px;
	font-weight: 600;
}
.member-price li .price span {
	font-size: 14px;
}
	
}