@charset "utf-8";


.main-contents {
	padding-bottom: 0;
}

.foot-contents {
	padding: 0;
}

.foot-contents__list:before {
	display: none;
}

.school-header {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
}

.school-name {
	margin: 40px 0 80px 0;
	position: relative;
	z-index: 1;
	line-height: 1.2;
	text-align: center;
	color: rgba(0, 0, 0, 1);
}

.school-name span {
	display: block;
}

.school-name__en_main {
	font-size: 2.2rem;
}

.school-name__en {
	font-size: 6rem;
}

.school-name__jp {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
}

.school-name__jp span {
	margin: 0 10px;
	display: inline-block;
}

.school__header__nav {
	width: 100%;
	display: flex;
	position: absolute;
	top: calc(50% - 40px);
	left: 0;
	z-index: 0;
	justify-content: space-between;
}

.school-header__nav__item a {
	display: block;
	position: relative;
	line-height: 1.2;
	text-decoration: none;
}

.school-header__nav__item:first-child a {
	padding-left: 50px;
}

.school-header__nav__item:last-child a {
	padding-right: 50px;
}

.school-header__nav__item a:before,
.school-header__nav__item a:after {
	content: "";
	display: block;
	position: absolute;
	box-sizing: border-box;
}

.school-header__nav__item a:before {
	width: 40px;
	height: 40px;
	border: 2px solid rgba(0, 0, 0, 1);
	border-radius: 50%;
	top: calc(50% - 20px);
}

.school-header__nav__item:first-child a:before {
	left: 0;
}

.school-header__nav__item:last-child a:before {
	right: 0;
}

.school-header__nav__item a:after {
	width: 15px;
	height: 15px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	top: calc(50% - 7px);
}

.school-header__nav__item:first-child a:after {
	background-image: url(../images/common/icon_arrow_l_bk.png);
	left: 12px;
}

.school-header__nav__item:first-child a:hover:after {
	transform: translateX(-4px);
}

.school-header__nav__item:last-child a:after {
	background-image: url(../images/common/icon_arrow_r_bk.png);
	right: 12px;
}

.school-header__nav__item:last-child a:hover:after {
	transform: translateX(4px);
}

.school-header__nav__item__en {
	font-size: 2.4rem;
}

.school-header__nav__item__jp {
	font-size: 1.2rem;
	font-weight: 700;
}

.school__image {
	max-width: 1400px;
	margin: 0 auto;
}

.school__image__wrap {
	border-radius: 20px;
/* 	overflow: hidden; */
}

.school-detail__text {
	max-width: 760px;
	margin: 80px auto;
}

.school-detail__text_jp {
	margin-bottom: 30px;
	font-weight: 700;
}

.school-detail__area {
	margin: 0 auto;
	padding-bottom: 60px;
	position: relative;
}

.school-detail__area:after {
	content: "";
	width: calc(100% + 12vw);
	height: calc(100% - 250px);
	display: block;
	background-color: rgba(120, 126, 221, .06);
	position: absolute;
	left: -6vw;
	bottom: 0;
	z-index: 0;
}

.school-detail__area__map {
	max-width: 1080px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.school-detail__data {
	width: calc(100% - 160px);
	max-width: calc(1080px - 160px);
	margin: 0 auto;
	margin-top: -40px;
	padding: 60px;
	padding-bottom: 0;
	background-color: rgba(255, 255, 255, 1);
	position: relative;
	z-index: 2;
	box-sizing: border-box;
}

.school-detail__data__list {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.school-detail__data__list__dt,
.school-detail__data__list__dd {
	margin-bottom: 60px;
	font-size: 1.4rem;
	line-height: 1.6;
}

.school-detail__data__list__dt {
	display: flex;
	max-width: 130px;
	flex-basis: 130px;
	font-weight: 700;
	color: rgba(0, 0, 0, 1);
	align-items: center;
}

.school-detail__data__list__dt:before {
	content: "";
	width: 20px;
	height: 20px;
	margin-right: 5px;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.school-detail__data__list__dt.school-detail__data__address:before {
	background-image: url(../images/common/icon_pin.png);
	filter: hue-rotate(120deg) brightness(1.5);;
}

.school-detail__data__list__dt.school-detail__data__tel:before {
	background-image: url(../images/common/icon_call.png);
	filter: hue-rotate(120deg) brightness(1.5);;
}

.school-detail__data__list__dt.school-detail__data__open:before {
	background-image: url(../images/common/icon_clock.png);
	filter: hue-rotate(120deg) brightness(1.5);;
}

.school-detail__data__list__dd {
	max-width: calc(100% - 130px);
	flex-basis: calc(100% - 130px);
	position: relative;
}

.school-detail__data__list__dd:after {
	content: "";
	width: calc(100% + 130px);
	height: 1px;
	display: block;
	background-image: linear-gradient(to right, #000, rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 4px);
	background-size: 5px 2px;
	position: absolute;
	left: -130px;
	bottom: -30px;
}

.school-detail__data__list__dd:last-child:after {
	display: none;
}

.school-detail__data__btn {
	margin-top: 20px;
}

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



.swiper-container {
	width: 100%;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
}

.swiper-slide {
	background-size: cover;
	background-position: center;
}

.gallery-top {
	height: 80%;
	width: 100%;
}

.gallery-thumbs {
	height: 20%;
	box-sizing: border-box;
	margin-top: 40px;
}

.gallery-thumbs .swiper-wrapper {
	transform: translate3d(0, 0, 0) !important;
	justify-content: center;
}

.gallery-thumbs .swiper-slide {
	width: 120px !important;
	height: 80px;
	overflow: hidden;
	position: relative;
	border-radius: 10px;
	cursor: pointer;
}

.gallery-thumbs .swiper-slide:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background: linear-gradient(0deg, rgba(209, 84, 84, 1), rgba(242, 180, 180, 1));
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
}

.gallery-thumbs .swiper-slide img {
	width: auto;
	max-width: none;
	height: 100%;
	position: relative;
	left: -20px;
	z-index: 0;
}

.gallery-thumbs .swiper-slide-thumb-active:before {
	opacity: .6;
}

.gallery-thumbs .swiper-slide-thumb-active img {
	filter: grayscale(100%);
}

.swiper-button-next,
.swiper-button-prev {
	width: 40px;
	height: 40px;
	background-size: 100% auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	right: 20px;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	left: 20px;
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
	background-image: url(../images/school/icn_arrow_r.png);
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
	background-image: url(../images/school/icn_arrow_l.png);
}

.noswipe .swiper-button-next,
.noswipe .swiper-button-prev {
	display: none;
}


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

	.school-name__en_main {
		font-size: 2rem;
	}

	.school-name__en {
		font-size: 5.5rem;
	}

	.school-name__jp {
		font-size: 1.5rem;
	}

	.school__header__nav {
		top: calc(50% - 20px);
	}

	.school-header__nav__item__en,
	.school-header__nav__item__jp {
		display: none;
	}

	.school-detail__area__map {
		height: 440px;
	}

	.school-detail__area:after {
		height: calc(100% - 220px);
	}

	.school-detail__data {
		width: calc(100% - 80px);
	}

	.gallery-thumbs {
		margin-top: 20px;
	}

	.gallery-thumbs .swiper-slide {
		width: 10px !important;
		height: 10px;
		border-radius: 50%;
		background-color: rgba(0, 0, 0, .3);
	}

	.gallery-thumbs .swiper-slide-thumb-active {
		background: linear-gradient(0deg, rgba(209, 84, 84, 1), rgba(242, 180, 180, 1));
	}

	.gallery-thumbs .swiper-slide img,
	.gallery-thumbs .swiper-slide:before {
		display: none;
	}

	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}

}


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

	.school-name {
		margin: 30px 0 60px 0;
	}

	.school-name__en_main {
		font-size: 1.8rem;
	}

	.school-name__en {
		font-size: 5rem;
	}

	.school-name__jp {
		font-size: 1.4rem;
	}

	.school-header__nav__item a:before {
		width: 30px;
		height: 30px;
		top: calc(50% - 15px);
	}

	.school-header__nav__item:first-child a:after {
		left: 8px;
	}

	.school-header__nav__item:last-child a:after {
		right: 8px;
	}

	.school-detail__text {
		margin: 60px auto;
	}

	.school-detail__text_jp {
		margin-bottom: 20px;
	}

	.school-detail__area__map {
		height: 400px;
	}

	.school-detail__area:after {
		height: calc(100% - 200px);
	}

	.school-detail__data {
		width: calc(100% - 40px);
		padding: 40px;
	}

	.school-detail__data__list {
		display: block;
	}

	.school-detail__data__list__dt,
	.school-detail__data__list__dd {
		max-width: none;
	}

	.school-detail__data__list__dt {
		margin-bottom: 10px;
	}

	.school-detail__data__list__dd:last-child {
		margin-bottom: 0;
	}

	.school-detail__data__list__dd:after {
		width: 100%;
		left: 0;
	}

}


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

	.school-name {
		margin: 20px 0 40px 0;
	}

	.school-name__en_main {
		font-size: 1.5rem;
	}

	.school-name__jp span {
		display: block;
	}

	.school-name__en {
		font-size: 4rem;
	}

	.school-name__jp {
		font-size: 1.3rem;
	}

	.school__image {
		width: calc(100% + 12vw);
		position: relative;
		left: -6vw;
	}

	.school__image__wrap {
		border-radius: 0;
	}

	.school-detail__area__map {
		width: calc(100% + 12vw);
		height: 360px;
		position: relative;
		left: -6vw;
		border-radius: 0;
	}

	.school-detail__area:after {
		height: calc(100% - 180px);
	}

	.school-detail__data {
		width: 100%;
		padding: 20px;
	}

}


