@charset "utf-8";


.course-nav {
	max-width: 940px;
	display: flex;
	margin: 0 auto;
	justify-content: space-between;
}

.course-nav__item {
	max-width: calc((100% - 40px) / 3);
	flex-basis: calc((100% - 40px) / 3);
}

.course-nav__item a {
	width: 100%;
	height: 60px;
	padding: 0 30px;
	display: flex;
	border: 2px solid rgba(0, 0, 0, 1);
	border-radius: 10px;
	position: relative;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	color: rgba(0, 0, 0, 1);
	box-sizing: border-box;
	align-items: center;
}

.course-nav__item a:hover {
	background-color: rgba(0, 0, 0, 1);
	color: rgba(255, 255, 255, 1);
}

.course-nav__item a:after {
	content: "";
	width: 15px;
	height: 15px;
	display: block;
	background-image: url(../images/common/icon_arrow_r_bk.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: calc(50% - 7px);
	right: 20px;
}

.course-nav__item a:hover:after {
	background-image: url(../images/common/icon_arrow_r_wt.png);
	transform: translateX(4px);
}

.section-wrap {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.section-title {
	margin-bottom: 50px;
}

.course-detail {
	border: 2px solid rgba(120, 126, 221, 1);
	border-radius: 20px;
	overflow: hidden;
	box-sizing: border-box;
}

.course-detail-nav {
	display: flex;
	border-bottom: 2px solid rgba(120, 126, 221, 1);
}

/* コースが5つなら20%、6つなら16.7% */
.course-detail-nav__item {
	max-width: 16.7%;
	flex-basis: 16.7%;
	position: relative;
}

.course-detail-nav__item:after {
	content: "";
	width: 2px;
	height: 100%;
	display: block;
	background-color: rgba(120, 126, 221, 1);
	position: absolute;
	top: 0;
	right: 0;
}

.course-detail-nav__item:last-child:after {
	display: none;
}

.course-detail-nav__item a {
	width: 100%;
	height: 80px;
	padding: 0 30px;
	padding-left: 80px;
	display: flex;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	align-items: center;
	align-content: center;
	box-sizing: border-box;
	flex-wrap: wrap;
}

.course-detail-nav__item a:hover {
	color: rgba(255, 255, 255, 1);
}

.course-detail-nav__item.general a:hover {
	background-color: rgba(87, 84, 209, 1);
}

.course-detail-nav__item.business a:hover {
	background-color: rgba(84, 178, 209, 1);
}

.course-detail-nav__item.toeic a:hover {
	background-color: rgba(161, 192, 68, 1);
}

.course-detail-nav__item.kids a:hover {
	background-color: rgba(223, 181, 69, 1);
}

.course-detail-nav__item a .en {
	position: relative;
	top: 2px;
	font-size: 2.2rem;
	font-weight: normal;
	line-height: 1;
}

.course-detail-nav__item a:before {
	content: "";
	display: block;
	position: absolute;
}

.course-detail-nav__item a:before {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 1);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 30px auto;
	border-radius: 50%;
	top: calc(50% - 20px);
	left: 30px;
	z-index: 0;
}

/*
.course-detail-nav__item a:after {
	width: 30px;
	height: 30px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	top: calc(50% - 15px);
	left: 35px;
	z-index: 1;
}
*/

.course-detail-nav__item.general a:before {
	background-image: url(../images/course/icon_general.png);
}

.course-detail-nav__item.business a:before {
	background-image: url(../images/course/icon_business.png);
}

.course-detail-nav__item.toeic a:before {
	background-image: url(../images/course/icon_toeic.png);
}

.course-detail-nav__item.kids a:before {
	background-image: url(../images/course/icon_kids.png);
}

.course-plan {
	padding: 80px;
	position: relative;
}

.course-plan:after {
	content: "";
	width: 100%;
	height: 2px;
	display: block;
	background-color: rgba(120, 126, 221, 1);
	position: absolute;
	left: 0;
	bottom: -1px;
}

.course-plan:last-child:after {
	display: none;
}

.course-plan.general {
	background-color: rgba(87, 84, 209, .1);
}

.course-plan.business {
	background-color: rgba(84, 178, 209, .1);
}

.course-plan.toeic {
	background-color: rgba(161, 192, 68, .1);
}

.course-plan.kids {
	background-color: rgba(223, 181, 69, .1);
}

.course-plan__head {
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.course-plan__head__title {
	padding-left: 120px;
	position: relative;
}

.course-plan__head__title:before {
	content: "";
	width: 100px;
	height: 100px;
	display: block;
	background-color: rgba(255, 255, 255, 1);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 60px auto;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 50px);
	left: 0;
}

.general .course-plan__head__title:before {
	background-image: url(../images/course/icon_general.png);
}

.business .course-plan__head__title:before {
	background-image: url(../images/course/icon_business.png);
}

.toeic .course-plan__head__title:before {
	background-image: url(../images/course/icon_toeic.png);
}

.kids .course-plan__head__title:before {
	background-image: url(../images/course/icon_kids.png);
}

.course-plan__head__title__catch {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
	color: rgba(0, 0, 0, 1);
}

.course-plan__head__title__catch br {
	display: none;
}

.course-plan__head__title__name {
	display: flex;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
	align-items: center;
}

.course-plan__head__title__name .en {
	margin-right: 10px;
	position: relative;
	top: .05em;
	font-size: 7rem;
	font-weight: normal;
	line-height: 1;
}

.course-plan__head__btn a {
	width: 220px;
	height: 50px;
	display: flex;
	padding: 0 30px;
	border-radius: 25px;
	position: relative;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	box-sizing: border-box;
	align-items: center;
}

.general .course-plan__head__btn a {
	background-color: rgba(87, 84, 209, 1);
}

.business .course-plan__head__btn a {
	background-color: rgba(84, 178, 209, 1);
}


.toeic .course-plan__head__btn a {
	background-color: rgba(161, 192, 68, 1);
}

.kids .course-plan__head__btn a {
	background-color: rgba(223, 181, 69, 1);
}

.course-plan__head__btn a:after {
	content: "";
	width: 15px;
	height: 15px;
	display: block;
	background-image: url(../images/common/icon_arrow_r_wt.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	right: 20px;
	top: calc(50% - 7px);
}

.course-plan__head__btn a:hover:after {
	transform: translateX(4px);
}

.course-plan__text {
	margin: 40px 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.2;
	color: rgba(0, 0, 0, .6);
}

.course-plan__wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.course-plan__image,
.course-plan__price {
	max-width: calc(50% - 20px);
	flex-basis: calc(50% - 20px);
}

.course-plan__image {
	border-radius: 20px;
	overflow: hidden;
}

.course-plan__price__title {
	margin-bottom: 20px;
	display: flex;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	align-items: center;
}

.general .course-plan__price__title,
.general .course-plan__price__item__main {
	color: rgba(87, 84, 209, 1);
}

.business .course-plan__price__title,
.business .course-plan__price__item__main {
	color: rgba(84, 178, 209, 1);
}

.toeic .course-plan__price__title,
.toeic .course-plan__price__item__main {
	color: rgba(161, 192, 68, 1);
}

.kids .course-plan__price__title,
.kids .course-plan__price__item__main {
	color: rgba(223, 181, 69, 1);
}

.course-plan__price__title:before {
	content: "";
	width: 24px;
	height: 24px;
	margin-right: 10px;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.general .course-plan__price__title:before {
	background-image: url(../images/common/icon_check_box_general.png);
}

.business .course-plan__price__title:before {
	background-image: url(../images/common/icon_check_box_business.png);
}

.toeic .course-plan__price__title:before {
	background-image: url(../images/common/icon_check_box_toeic.png);
}

.kids .course-plan__price__title:before {
	background-image: url(../images/common/icon_check_box_kids.png);
}

.course-plan__price__item {
	margin-top: 20px;
	padding: 20px;
	border: 2px solid rgba(0, 0, 0, .2);
	border-radius: 10px;
	box-sizing: border-box;
}

.course-plan__price__item__title {
	margin-bottom: 20px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
}

.course-plan__price__item__title span {
	font-size: 1.3rem;
	font-weight: normal;
}

.course-plan__price__item__wrap {
	display: flex;
	align-items: center;
}

.course-plan__price__item__wrap dt {
	margin-right: 20px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.course-plan__price__item__main {
	font-size: 2rem;
}

.course-plan__price__item__main .num {
	margin-right: 3px;
	font-size: 4rem;
}

.course-plan__price__item__main .atte {
	font-size: 1.2rem;
	color: rgba(0, 0, 0, .8);
}

.price-list {
	margin: 0 auto;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 20px;
	overflow: hidden;
	box-sizing: border-box;
}

.price-list.group {
	margin-top: 80px;
}

.price-list__title {
	width: calc(100% - 80px);
	padding: 0 40px;
	display: flex;
	background-color: rgba(0, 0, 0, .05);
}

.price-list__title:before {
	content: "";
	display: block;
}

.price-list__title li {
	padding: 20px;
	display: flex;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	color: rgba(0, 0, 0, 1);
	box-sizing: border-box;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.price-list table {
	width: calc(100% - 80px);
	margin: 0 40px;
	box-sizing: border-box;
}

.price-list__title:before,
.price-list th {
	width: 8%;
	max-width: 8%;
	flex-basis: 8%;
}

.price-list__title li,
.price-list td {
	width: 23%;
	max-width: 23%;
	flex-basis: 23%;
}

.group .price-list__title:before,
.price-list.group th {
	width: 16%;
	max-width: 16%;
	flex-basis: 16%;
}

.group .price-list__title li,
.price-list.group td {
	width: 42%;
	max-width: 42%;
	flex-basis: 42%;
}

.price-list th,
.price-list td {
	padding: 20px;
	vertical-align: middle;
	border-bottom: 1px dashed rgba(0, 0, 0, .2);
	box-sizing: border-box;
}

.price-list tr:last-child th,
.price-list tr:last-child td {
	border-bottom: 0;
}

.price-list th {
	padding: 20px 0;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.price-list td {
	font-size: 1.3rem;
	line-height: 1.6;
	text-align: center;
}

.price-list td span {
	display: block;
	font-weight: 700;
	color: rgba(120, 126, 221, 1);
}

.price-list.group td span {
	margin-left: 20px;
	display: inline-block;
}

.feature-difference td:first-child {
	padding-left: 60px;
}

.feature-difference td:last--child {
	padding-right: 60px;
}

.price-list-optopn {
	margin-top: 20px;
	font-size: 1.4rem;
	line-height: 2;
}

.price-list-optopn dt {
	margin-bottom: 10px;
	font-weight: 700;
	color: rgba(0, 0, 0, 1);
}

#schedule {
	margin-bottom: 0;
}

#schedule .main-body-text {
	max-width: 960px;
	margin: 20px auto;
}

.schedule-time {
	max-width: 960px;
	height: 100px;
	margin: 30px auto;
	padding: 0 40px;
	display: flex;
	border: 5px solid rgba(0, 0, 0, .1);
	border-radius: 20px;
	box-sizing: border-box;
	color: rgba(0, 0, 0, 1);
	justify-content: center;
	align-items: center;
}

.schedule-time dt {
	margin-right: 20px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
}

.schedule-time dd {
	font-size: 2rem;
	font-weight: 700;
}

.schedule-time dd .en {
	margin-right: 5px;
	font-size: 6rem;
	font-weight: normal;
	letter-spacing: 0;
}

.schedule-image {
	margin-top: 50px;
	position: relative;
}

.schedule-image__time {
	padding-bottom: 20px;
	display: flex;
	color: rgba(0, 0, 0, 1);
}

.schedule-image__time:before,
.schedule-image__time:after {
	content: "";
	max-width: calc((100% / 14) / 2);
	flex-basis: calc((100% / 14) / 2);
	height: 1px;
	display: block;
}

.schedule-image__time li {
	max-width: calc(100% / 14);
	flex-basis: calc(100% / 14);
	height: 15px;
	position: relative;
	font-size: 1.3rem;
	text-align: center;
}

.schedule-image__time li:after {
	content: "";
	width: 1px;
	height: 135px;
	display: block;
	background-color: rgba(0, 0, 0, .1);
	position: absolute;
	top: 20px;
	right: 50%;
}

.schedule-image__list {
	padding: 30px 0 50px 0;
	display: flex;
	border-top: 1px solid rgba(0, 0, 0, 1);
}

.schedule-image__list:before,
.schedule-image__list:after {
	content: "";
	height: 1px;
	display: block;
}

.schedule-image__list li,
.schedule-image__list:before,
.schedule-image__list:after {
	max-width: calc(100% / 14);
	flex-basis: calc(100% / 14);
}

.schedule-image__list li p {
	width: 80%;
	height: 30px;
	display: flex;
	border-radius: 5px;
	font-size: 1.8rem;
	justify-content: center;
	align-items: center;
}

.schedule-image__daylight {
	width: calc((100% / 14) * 5);
	border-radius: 10px;
	padding-top: 50px;
	position: absolute;
	left: calc(50% - ((100% / 14) * 2));
	bottom: 0;
	background-color: rgba(120, 126, 221, .15);
/* 	transform: translateX(-50%); */
}

.schedule-image__daylight p {
	height: 50px;
	padding: 0 20px;
	display: flex;
	font-size: 1.4rem;
	font-weight: 700;
	justify-content: center;
	align-items: center;
}


@media screen and ( max-width: 1200px ) {

	.course-detail-nav__item a {
		padding: 0 20px;
		padding-left: 70px;
	}

	.course-detail-nav__item a:before {
		left: 20px;
	}

	.course-plan__head {
		display: block;
	}

	.course-plan__head__btn {
		margin-top: 30px;
	}

}


@media screen and ( max-width: 960px ) {

	.course-plan {
		padding: 60px;
	}

	.course-plan__head__title__name,
	.course-plan__head__title__name span {
		display: block;
	}

	.course-plan__wrap {
		display: block;
	}

	.course-plan__image,
	.course-plan__price {
		max-width: none;
	}

	.course-plan__image {
		margin: 40px 0;
	}

}


@media screen and ( max-width: 880px ) {

	.course-detail-nav__item a {
		height: 120px;
		padding: 0 10px;
		font-size: 1.4rem;
		text-align: center;
		flex-direction: column;
		justify-content: center;
	}

	.course-detail-nav__item a::before {
		margin: 0 auto;
		margin-bottom: 5px;
		position: static;
	}

	.course-detail-nav__item a .en {
		font-size: 1.8rem;
	}

	.section-title {
		margin-bottom: 40px;
	}

	.course-plan {
		padding: 40px;
	}

	.course-plan__head__title {
		padding-left: 100px;
	}

	.course-plan__head__title:before {
		width: 80px;
		height: 80px;
		top: calc(50% - 40px);
	}

	.course-plan__head__title__catch {
		font-size: 1.5rem;
	}

	.course-plan__head__title__name {
		font-size: 1.6rem;
	}

	.course-plan__head__title__name .en {
		font-size: 6rem;
	}

	.schedule-image {
		width: calc(100% + 12vw);
		position: relative;
		left: -6vw;
		padding-bottom: 10px;
		overflow-x: scroll;
	}

	.schedule-image__time,
	.schedule-image__list {
		min-width: 880px;
	}

	.schedule-image__daylight {
		width: calc((880px / 14) * 5);
		left: calc((880px / 14) * 5);
		transform: translateX(0);
	}

}


@media screen and ( max-width: 640px ) {

	.course-nav {
		display: block;
	}

	.course-nav__item {
		max-width: none;
		margin: 10px 0;
	}

	.course-nav__item a {
		height: 50px;
		font-size: 1.4rem;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.course-plan {
		padding: 30px 20px;
	}

	.course-plan__head__title {
		padding-left: 0;
		text-align: center;
	}

	.course-plan__head__title:before {
		width: 60px;
		height: 60px;
		margin: 0 auto;
		margin-bottom: 20px;
		position: static;
		background-size: 40px auto;
	}

	.course-plan__head__title__catch {
		margin: 5px 0;
		font-size: 1.4rem;
	}

	.course-plan__head__title__catch br {
		display: block;
	}

	.course-plan__head__title__name {
		font-size: 1.5rem;
	}

	.course-plan__head__title__name .en {
		font-size: 5rem;
	}

	.course-plan__head__btn a {
		width: 200px;
		height: 40px;
		margin: 0 auto;
		font-size: 1.4rem;
	}

	.course-plan__text {
		font-size: 1.4rem;
		line-height: 2;
	}

	.course-plan__price__title {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}

	.course-plan__price__item {
		margin-top: 10px;
	}

	.course-plan__price__item__title span {
		display: block;
		font-size: 1.2rem;
	}

	.course-plan__price__item__wrap {
		display: block;
	}

	.course-plan__price__item__wrap dt {
		font-size: 1.3rem;
	}

	.course-plan__price__item__main .num {
		font-size: 3.5rem;
	}

	.schedule-time dt {
		font-size: 1.6rem;
	}

	.price-list {
		border-radius: 0;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.price-list__title,
	.price-list table {
		min-width: 700px;
	}

}


@media screen and ( max-width: 480px ) {

	.course-detail-nav__item a {
		height: 100px;
	}

	.course-detail-nav__item a .en {
		font-size: 1.6rem;
	}

	.course-detail-nav__item a .jp {
		display: none;
	}

	.course-plan__head__title__catch {
		font-size: 1.3rem;
	}

	.course-plan__head__title__name {
		font-size: 1.4rem;
	}

	.course-plan__head__title__name .en {
		font-size: 4rem;
	}

	.course-detail {
		width: calc(100% + 6vw);
		position: relative;
		left: -3vw;
	}

	.schedule-time {
		height: 120px;
		padding: 0 20px;
		flex-direction: column;
	}

	.schedule-time dt {
		margin-right: 0;
		font-size: 1.5rem;
	}

	.schedule-time dd .en {
		font-size: 5rem;
	}

	.price-list__title li {
		padding: 10px;
		font-size: 1.3rem;
	}

}


