@charset "utf-8";

@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&amp;subset=japanese");

@font-face {
	font-family: 'bebas_neue_semirounded';
	src: url('../images/bebas_neue_semirounded_regular.otf') format('opentype');
}


html {
	background: white;
	font-size: 62.5%;
	font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
	font-weight: 400;
	font-feature-settings: "palt";
	font-kerning: normal;
	-ms-touch-action: manipulation;
		touch-action: manipulation;
}

body {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	background-color: rgba(255, 255, 255, .7);
	font-size: 1.35rem;
	line-height: 1;
	color: rgba(0, 0, 0, .7);
	text-align: left;
	text-rendering: optimizeLegibility;
	font-feature-settings : "palt" 1;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-kerning: normal;
			font-kerning: normal;
}

h1, h2, h3, h4, h5, h6, strong {
	font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
}

a {
	color: rgba(0, 0, 0, 1);
	text-decoration: underline;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

a:hover {
	color: rgba(0, 0, 0, 1);
	text-decoration: none;
}

a,
input,
select,
textarea,
button,
*:before,
*:after {
	backface-visibility: hidden;
	-webkit-transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms;
	        transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms;
	-webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
			transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
}

input[type=submit],
button {
	border-radius: 0;
	-webkit-appearance: none;
}

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

table {
	border-collapse: collapse;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

main {
	display: block;
}

object {
	pointer-events: none;
}

.ready .header,
.ready #state {
	opacity: 0;
	visibility: hidden;
}

a.ban {
	cursor: default;
}

label {
	cursor: pointer;
	-webkit-transition: all 250ms ease;
	        transition: all 250ms ease;
}

::selection {
	background: rgba(0, 0, 0, 1);
	color: rgba(255, 255, 255, 1);
}

::-moz-selection {
	background: rgba(0, 0, 0, 1);
	color: rgba(255, 255, 255, 1);
}


/*------------------------------------*/


.header {
	width: 100%;
	padding-left: 6vw;
	display: flex;
	background-color: rgba(255, 255, 255, 1);
	position: relative;
	z-index: 10;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}

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

.header__logo {
	max-width: 164px;
	flex-basis: 164px;
	margin-bottom: 0;
}

.header__nav {
	height: 80px;
	padding-right: 80px;
	display: flex;
	align-items: center;
}

.header__nav__list {
	margin-bottom: 0;
	display: flex;
	align-items: center;
}

.header__nav__list__item {
	margin-right: 4vw;
}

.header__nav__list__item a {
	height: 80px;
	display: flex;
	position: relative;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.8;
	text-decoration: none;
	align-items: center;
}

.header__nav__list__item a:hover {
	color: rgba(255, 126, 120, 1);
}

.header__nav__list__item a.current:after {
	content: "";
	width: 100%;
	height: 3px;
	display: block;
	background-color: rgba(255, 126, 120, 1);
	position: absolute;
	left: 0;
	bottom: 0;
}

.header__nav__reserve {
	width: calc(50px + 6vw);
	max-width: 140px;
	position: relative;
}

.header__nav__reserve:before {
	content: "";
	width: 1px;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, .1);
	position: absolute;
	left: 0;
	top: 0;
}

.header__nav__reserve a {
	height: 80px;
	display: flex;
	position: relative;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.8;
	text-decoration: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.header__nav__reserve a:before {
	content: "";
	width: 23px;
	height: 21px;
	margin-bottom: 5px;
	display: block;
	background-image: url(../images/common/icon_reserve.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
}


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

	.header__nav__list__item a {
		font-size: 1.3rem;
	}

}


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

	.header__nav__list,
	.header__nav__reserve {
		display: none;
	}

}


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

	.header {
		padding-left: 0;
		justify-content: center;
	}

	.header__nav {
		height: 60px;
		padding-right: 0;
	}

}


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

	.header__logo {
		width: 116px;
		max-width: none;
		flex-basis: auto;
	}

	.header__nav {
		height: 50px;
	}

}



/*------------------------------------*/


#menu {
	width: 80px;
	height: 80px;
	display: flex;
	background-color: rgba(0, 0, 0, 1);
	position: fixed;
	right: 0;
	top: 0;
	z-index: 11;
	cursor: pointer;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
}

#menu .menuIcon {
	width: 30px;
	height: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#menu .menuIcon:before,
#menu .menuIcon:after {
	content: "";
}

#menu .menuIcon span,
#menu .menuIcon:before,
#menu .menuIcon:after {
	width: 30px;
	height: 1px;
	display: block;
	background-color: rgba(255, 255, 255, 1);
	position: relative;
	transform-origin: center;
	transition: all 200ms ease;
}

#menu .menuIcon:before {
	top: -4px;
}

.nav_open #menu .menuIcon span {
	opacity: 0;
}

.nav_open #menu .menuIcon:before {
	transform: translateY(5px) rotate3d(0, 0, 1, 45deg);
}

.nav_open #menu .menuIcon:after {
	transform: translateY(-5px) rotate3d(0, 0, 1, -45deg);
}

#menu .menuIcon:after {
	top: 4px;
}

#menu .en {
	margin-bottom: 0;
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 1);
}

#menu .header__nav__menu__o {
	display: block;
}

#menu .header__nav__menu__c {
	display: none;
}

.nav_open #menu .header__nav__menu__o {
	display: none;
}

.nav_open #menu .header__nav__menu__c {
	display: block;
}

#gnav {
	width: 100%;
	height: 100%;
	padding: 0 6vw;
	display: flex;
	background: linear-gradient(to bottom right, rgba(209, 105, 82, .95), rgba(230, 144, 150, .95));
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	justify-content: center;
	align-items: center;
	color: rgba(255, 255, 255, 1) !important;
	pointer-events: none;
	opacity: 0;
	transition: opacity 300ms ease;
	box-sizing: border-box;
}

#gnav.green {
	background: linear-gradient(to bottom right, rgba(39, 189, 145, .95), rgba(97, 183, 250, .95));
}

#gnav.red {
	background: linear-gradient(to bottom right, rgba(245, 68, 164, .95), rgba(255, 155, 48, .95));
}

.nav_open #gnav {
	pointer-events: auto;
	opacity: 1;
}

#close {
	width: 80px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	z-index: 1;
}

.gnav__wrap {
	width: 100%;
	max-width: 750px;
	display: flex;
	justify-content: space-between;
}

.gnav__main {
	max-width: 400px;
	flex-basis: 400px;
}

.gnav__side {
	max-width: 280px;
	flex-basis: 280px;
}

.gnav__main,
.gnav__side__list__item,
.gnav__other {
	opacity: 0;
	transform: translateY(10px);
	transition: all 400ms ease;
}

.nav_open .gnav__main,
.nav_open .gnav__side__list__item,
.nav_open .gnav__other {
	opacity: 1;
	transform: translateY(0);
}

.gnav__main {
	transition-delay: 320ms;
}

.gnav__side__list__item.contact {
	transition-delay: 360ms;
}

.gnav__side__list__item.reserve {
	transition-delay: 400ms;
}

.gnav__side__list__item.lesson {
	transition-delay: 440ms;
}

.gnav__other {
	transition-delay: 480ms;
}

.gnav__list__item {
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.gnav__list__item:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.gnav__list__item a {
	padding: 15px 0;
	padding-left: 10px;
	display: block;
	position: relative;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
}

.gnav__list__item a:hover {
	background-color: rgba(255, 255, 255, .05);
}

.gnav__list__item 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;
	top: calc(50% - 7px);
	right: 10px;
}

.gnav__list__item a:hover:after {
	transform: translateX(4px);
}

.gnav__list__item span {
	display: block;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.6;
}

.gnav__list__sub {
	width: calc(100% - 20px);
	margin-left: 30px;
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
}

.gnav__list__sub__item {
	max-height: 50%;
	flex-basis: 50%;
	margin-top: 10px;
}

.gnav__list__sub__item a {
	padding: 5px 0;
	padding-left: 15px;
	position: relative;
	font-size: 13px;
	font-weight: normal;
	line-height: 1.8;
	box-sizing: border-box;
}

.gnav__list__sub__item a:before {
	content: "";
	width: 6px;
	height: 1px;
	display: block;
	background-color: rgba(255, 255, 255, 1);
	position: absolute;
	left: 0;
	top: 50%;
}

.gnav__list__sub__item a:after {
	display: none;
}

.gnav__side__list {
	width: 100%;
}

.gnav__side__list__item {
	margin-bottom: 10px;
	position: relative;
	text-align: center;
}

.gnav__side__list__item a {
	height: 80px;
	padding: 0 20px;
	display: flex;
	border: 2px solid rgba(255, 255, 255, .5);
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.8;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	box-sizing: border-box;
	align-items: center;
}

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

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

.gnav__side__list__item.contact a:before {
	background-image: url(../images/common/icon_reserve_w.png);
}

.gnav__side__list__item.reserve a:before {
	background-image: url(../images/common/icon_contact_w.png);
}

.gnav__side__list__item.lesson a:before {
	background-image: url(../images/common/icon_trial_w.png);
}

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

.gnav__side__list__item a:hover:after {
	transform: translateX(5px);
}

.gnav__other {
	margin-top: 40px;
	display: flex;
}

.gnav__other__item {
	margin-right: 50px;
	font-size: 12px;
	line-height: 2;
}

.gnav__other__item:last-child {
	margin-right: 0;
}

.gnav__other__item a {
	font-weight: 500;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
}

.gnav__other__item a:hover {
	text-decoration: underline;
}

.sp_nav_other {
	display: none;
}


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

	.gnav__main {
		max-width: calc(100% - 220px - 40px);
		flex-basis: calc(100% - 220px - 40px);
	}

	.gnav__side {
		max-width: 220px;
		flex-basis: 220px;
	}

	.gnav__side__list__item a {
		height: 60px;
		font-size: 1.4rem;
	}

	.gnav__side__list__item a::before {
		width: 20px;
		height: 20px;
	}

}


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

	.gnav__list__sub {
		display: none;
	}

	.gnav__other {
		margin-top: 20px;
		display: block;
	}

	.gnav__other__item {
		margin-bottom: 10px;
	}

}


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

	#menu {
		width: 60px;
		height: 60px;
	}

	#menu .menuIcon,
	#menu .menuIcon span,
	#menu .menuIcon::before,
	#menu .menuIcon::after {
		width: 25px;
	}

	#menu .en {
		display: none;
	}

	#gnav {
		padding: 60px 6vw;
		display: block;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.gnav__wrap {
		display: block;
	}

	.gnav__main,
	.gnav__side {
		max-width: none;
	}

	.gnav__side {
		margin: 40px 0;
	}

	.gnav__side__list__item a {
		height: 50px;
	}

	.pc_nav_other {
		display: none;
	}

	.sp_nav_other {
		display: block;
	}

}


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

	#menu {
		width: 50px;
		height: 50px;
	}

	.gnav__side {
		margin: 30px 0;
	}
	
}



/*------------------------------------*/


.foot-contents {
	padding: 0 6vw;
}

.foot-contents__list {
	display: flex;
	position: relative;
}

.foot-contents__list:before {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	background-color: rgba(0, 0, 0, .1);
	position: absolute;
	top: 0;
	left: 0;
}

.foot-contents__list__item {
	max-width: calc(100% / 3);
	flex-basis: calc(100% / 3);
	position: relative;
}

.foot-contents__list__item:before {
	content: "";
	width: 1px;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, .1);
	position: absolute;
	left: 0;
	top: 0;
}

.foot-contents__list__item:first-child:before {
	display: none;
}

.foot-contents__list__item a {
	height: 340px;
	padding: 0 20px;
	display: flex;
	text-decoration: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.foot-contents__list__item a:before {
	content: "";
	width: 45px;
	height: 42px;
	display: block;
	margin-bottom: 20px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.foot-contents__list__item.foot-reserve a:before {
	background-image: url(../images/common/icon_reserve_g.png);
	filter: hue-rotate(120deg) brightness(2);;
}

.foot-contents__list__item.foot-contact a:before {
	background-image: url(../images/common/icon_contact_g.png);
	filter: hue-rotate(120deg) brightness(2);;
}

.foot-contents__list__item.foot-trial a:before {
	background-image: url(../images/common/icon_trial_g.png);
	filter: hue-rotate(120deg) brightness(2);;
}

.foot-contents__list__wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.foot-contents__list__title {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.8;
}

.foot-contents__list__text {
	max-width: 200px;
	margin: 10px 0;
	font-size: 1.3rem;
	line-height: 1.8;
	text-align: center;
	color: rgba(0, 0, 0, .75);
}

.foot-contents__list__more {
	height: 40px;
	margin-top: 10px;
	padding-right: 30px;
	display: flex;
	border-bottom: 2px solid rgba(0, 0, 0, 1);
	box-sizing: border-box;
	align-items: center;
}

.footer {
	padding: 100px 6vw;
	display: flex;
	background-color: rgba(0, 0, 0, .9);
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer__nav {
	max-width: calc(100% - 800px - 60px);
	flex-basis: calc(100% - 800px - 60px);
	display: flex;
	flex-wrap: wrap;
}

.footer__nav__section {
	max-width: calc((100% - (20px * 3)) / 4);
	flex-basis: calc((100% - (20px * 3)) / 4);
	margin-right: 20px;
	margin-bottom: 30px;
}

.footer__nav__section:nth-child(4n) {
	margin-right: 0;
}

.footer__nav__title {
	line-height: 1.4;
	color: rgba(255, 255, 255, 1);
}

.footer__nav__title:after {
	content: "";
	width: 100%;
	height: 1px;
	margin: 20px 0;
	display: block;
	background-color: rgba(255, 255, 255, .15);
}

.footer__nav__title a {
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
}

.footer__nav__title span {
	display: block;
}

.footer__nav__title__en {
	font-size: 2.2rem;
}

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

.footer__nav__list__item {
	margin: 5px 0;
}

.footer__nav__list__item a {
	display: block;
	font-size: 1.3rem;
	line-height: 1.8;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
}	

.footer__nav__list__item a:hover {
	text-decoration: underline;
}

.footer__fb {
	max-width: 400px;
	flex-basis: 400px;
}

.footer__main {
	max-width: 100%;
	flex-basis: 100%;
}

.footer__main:before {
	content: "";
	width: 100%;
	height: 1px;
	margin: 60px 0;
	display: block;
	background-color: rgba(255, 255, 255, .15);
}

.footer__main__group {
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
}

.footer__main__group__item {
	margin-right: calc(40px + 2vw);
	text-decoration-color: rgba(255, 255, 255, 1);
}

.footer__main__group__item:last-child {
	margin-right: 0;
}

.footer__main__group__item a {
	text-decoration: none;
	text-decoration-color: rgba(255, 255, 255, 1) !important;
}

.footer__main__group__item a:hover {
	text-decoration: underline;
}

.footer__main__group__item.group-japan a {
	pointer-events: none !important;
}

.footer__main__group__logo {
	height: 39px;
	margin-bottom: 10px;
	text-align: center;
}

.footer__main__group__logo img {
	width: auto;
	height: 100%;
	margin: 0 auto;
}

.footer__main__group__text {
	font-size: 1.1rem;
	line-height: 1.4;
	text-align: center;
	color: rgba(255, 255, 255, 1);
}

.footer__main__list {
	margin: 10px 0;
	display: flex;
	justify-content: center;
}

.footer__main__list__item {
	margin-right: 40px;
}

.footer__main__list__item:last-child {
	margin-right: 0;
}

.footer__main__list__item a {
	font-size: 1.3rem;
	line-height: 1.8;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
}

.footer__main__list__item a:hover {
	text-decoration: underline;
}

.footer__main__copy {
	display: block;
	font-size: 1.1rem;
	line-height: 1.8;
	text-align: center;
	color: rgba(255, 255, 255, 1);
}


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

	.footer__nav {
		max-width: calc(100% - 360px - 60px);
		flex-basis: calc(100% - 360px - 60px);
	}

	.footer__nav__section {
		max-width: calc((100% - (20px * 2)) / 3);
		flex-basis: calc((100% - (20px * 2)) / 3);
	}

	.footer__nav__section:nth-child(4n) {
		margin-right: 20px;
	}

	.footer__nav__section:nth-child(3n) {
		margin-right: 0;
	}

	.footer__fb {
		max-width: 360px;
		flex-basis: 360px;
	}

}


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

	.footer {
		display: block;
	}

	.footer__nav {
		max-width: none;
	}

	.footer__fb {
		max-width: 400px;
		margin: 0 auto;
		margin-top: 40px;
	}

	.footer__nav__section {
		max-width: calc((100% - (20px * 3)) / 4);
		flex-basis: calc((100% - (20px * 3)) / 4);
	}

	.footer__nav__section:nth-child(3n) {
		margin-right: 20px;
	}

	.footer__nav__section:nth-child(4n) {
		margin-right: 0;
	}

}


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

	.footer__main__group__logo {
		height: 30px;
	}

}


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

	.foot-contents {
		padding: 0;
	}

	.foot-contents__list {
		display: block;
	}

	.foot-contents__list__item {
		max-width: none;
	}

	.foot-contents__list__item:before {
		width: 100%;
		height: 1px;
	}

	.foot-contents__list__item a {
		height: 150px;
		padding: 0 6vw;
		justify-content: flex-start;
		flex-direction: row;
	}

	.foot-contents__list__item a:before {
		max-width: 45px;
		flex-basis: 45px;
		margin-right: 30px;
		margin-bottom: 0;
	}

	.foot-contents__list__item a:after {
		content: "";
		width: 15px;
		height: 15px;
		max-width: 15px;
		flex-basis: 15px;
		margin-left: auto;
		display: block;
		background-image: url(../images/common/icon_arrow_r_bk.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 100% auto;
	}

	.foot-contents__list__item a:hover:after {
		transform: translateX(4px);
	}

	.foot-contents__list__wrap {
		max-width: calc(100% - 45px - 30px - 20px - 15px);
		flex-basis: calc(100% - 45px - 30px - 20px - 15px);
		margin-right: 20px;
		display: block;
	}

	.foot-contents__list__text {
		max-width: none;
		margin-bottom: 0;
		text-align: left;
	}

	.foot-contents__list__more {
		display: none;
	}
	
	.footer__nav__section {
		max-width: calc((100% - (20px * 2)) / 3);
		flex-basis: calc((100% - (20px * 2)) / 3);
	}

	.footer__nav__section:nth-child(4n) {
		margin-right: 20px;
	}

	.footer__nav__section:nth-child(3n) {
		margin-right: 0;
	}

	.footer__nav__title::after {
		margin: 10px 0;
	}

	.footer__main__group {
		max-width: 380px;
		margin: 0 auto;
		flex-wrap: wrap;
	}

	.footer__main__group__item {
		margin-right: calc(20px + 2vw);
		margin-bottom: 40px;
	}

	.footer__main__group__item:nth-child(2n),
	.footer__main__group__item:last-child {
		margin-right: 0;
	}

	.footer__main__list__item {
		margin-right: 20px;
	}

}


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

	.foot-contents__list__item a {
		height: 100px;
	}

	.foot-contents__list__item a:before {
		width: 30px;
		height: 28px;
		max-width: 30px;
		flex-basis: 30px;
		margin-right: 20px;
	}

	.foot-contents__list__wrap {
		max-width: calc(100% - 20px - 20px - 15px);
		flex-basis: calc(100% - 20px - 20px - 15px);
		margin-right: 20px;
		display: block;
	}

	.foot-contents__list__title {
		font-size: 1.6rem;
	}

	.foot-contents__list__text {
		display: none;
	}

	.footer__nav__section {
		max-width: calc((100% - 20px) / 2);
		flex-basis: calc((100% - 20px) / 2);
	}

	.footer__nav__section:nth-child(3n) {
		margin-right: 20px;
	}

	.footer__nav__section:nth-child(2n) {
		margin-right: 0;
	}

	.footer__fb {
		max-width: none;
	}

}


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

	.footer__main__list__item a {
		font-size: 1.2rem;
	}

}


/*------------------------------------*/


.main-contents {
	padding: 0 6vw;
	padding-bottom: 160px;
}

.main-contents.nopad {
	padding-left: 0;
	padding-right: 0;
}

.breadcrumb {
	padding: 0 6vw;
}

.breadcrumb__list {
	height: 40px;
	display: flex;
	align-items: center;
}

.breadcrumb__list__item {
	font-size: 1.1rem;
	line-height: 1.8;
	white-space: nowrap;
}

.breadcrumb__list__item:after {
	content: ">";
	margin: 0 5px;
}

.breadcrumb__list__item:last-child:after {
	display: none;
}

.breadcrumb__list__item:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.main__pagetitle {
	margin: 40px 0 80px 0;
	line-height: 1.2;
	text-align: center;
	color: rgba(0, 0, 0, 1);
}

.main__pagetitle span {
	margin: 0 auto;
	display: table;
}

.main__pagetitle__en {
	font-size: 8rem;
}

.main__pagetitle__jp {
	font-size: 1.6rem;
	font-weight: 700;
}

.section-wrap {
	margin: 100px 0;
}

.section-title {
	display: flex;
	line-height: 1.2;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: rgba(0, 0, 0, 1);
}

.section-title__en {
	font-size: 5rem;
}

.section-title__jp {
	width: 100%;
	margin-top: 10px;
	position: relative;
	font-size: 1.4rem;
	font-weight: 700;
}

.section-title__jp:before,
.section-title__jp:after {
	content: "";
	width: calc(50% - 60px - 14px);
	height: 1px;
	display: block;
	background-color: rgba(0, 0, 0, .15);
	position: absolute;
	top: 15px;
}

.section-title__jp:before {
	left: 0;
}

.section-title__jp:after {
	right: 0;
}

.section-title__jp span {
	width: 120px;
	height: 30px;
	margin: 0 auto;
	border-top: 1px solid rgba(0, 0, 0, .15);
	border-bottom: 1px solid rgba(0, 0, 0, .15);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section-title__jp span:before,
.section-title__jp span:after {
	content: "";
	width: 21px;
	height: 21px;
	display: block;
	position: absolute;
	top: 4px;
}

.section-title__jp span:before {
	border-left: 1px solid rgba(0, 0, 0, .15);
	border-bottom: 1px solid rgba(0, 0, 0, .15);
	left: -11px;
	transform: rotate3d(0, 0, 1, 45deg);
}

.section-title__jp span:after {
	border-right: 1px solid rgba(0, 0, 0, .15);
	border-bottom: 1px solid rgba(0, 0, 0, .15);
	right: -11px;
	transform: rotate3d(0, 0, 1, -45deg);
}

.swipe__table {
	position: relative;
}

.swipe {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	border-radius: 20px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	visibility: hidden;
/* 	pointer-events: none; */
	transition: all 400ms ease;
}

.swipe__wrap {
	width: 90px;
	height: 90px;
	display: flex;
	background-color: rgba(0, 0, 0, 1);
	border-radius: 10px;
	position: absolute;
	top: calc(50% - 45px);
	left: calc(50% - 45px);
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.swipe__image {
	margin-bottom: 5px;
	position: relative;
}

.swipe__image__f {
	width: 24px;
	position: relative;
	z-index: 1;
	animation: swipe 1500ms ease 0ms infinite;
}

.swipe__image__a {
	width: 40px;
	position: absolute;
	top: -5px;
	left: -10px;
	z-index: 0;
}

.swipe__text {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.4;
	color: rgba(255, 255, 255, 1);
}

.hidden.swipe {
	pointer-events: none;
	opacity: 0;
}

@keyframes swipe {
    0% { transform: translate3d(10px, 0, 0); }
    85% { transform: translate3d(-5px, 0, 0); }
    100% { transform: translate3d(10px, 0, 0); }
}


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

	.main-contents {
		padding-bottom: 120px;
	}

}


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

	.section-wrap {
		margin: 80px 0;
	}

	.section-title__en {
		font-size: 4.5rem;
	}

}


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

	.section-wrap {
		margin: 60px 0;
	}

	.section-title__en {
		font-size: 4rem;
	}

	.section-title__jp {
		font-size: 1.3rem;
	}

	.main-contents {
		padding-bottom: 80px;
	}

	.main__pagetitle {
		margin-bottom: 60px;
	}

	.main__pagetitle__en {
		font-size: 6rem;
	}

	.main__pagetitle__jp {
		font-size: 1.4rem;
	}

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

	.swipe {
		border-radius: 0;
		visibility: visible;
	}

}


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

	.main-contents {
		padding-bottom: 60px;
	}

	.main__pagetitle {
		margin-bottom: 50px;
	}

	.pagination__dotted,
	.pagination__last {
		display: none;
	}

}


/*------------------------------------*/


.pagination {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination__item {
	height: 40px;
	margin-right: 10px;
	font-size: 2rem;
	line-height: 1.4;
	color: rgba(0, 0, 0, 1);
}

.pagination__item:last-child {
	margin-right: 0;
}

.pagination__item a {
	width: 40px;
	height: 40px;
	border: 2px solid rgba(0, 0, 0, 2);
	border-radius: 50%;
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

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

.pagination__item.pagination__arrow a {
	border: 0;
}

.pagination__item.pagination__arrow img {
	width: 15px;
}

.pagination__item img {
	transition: transform 250ms ease;
}

.pagination__item.pagination__left a:hover,
.pagination__item.pagination__right a:hover {
	background-color: transparent;
}

.pagination__item.pagination__left a:hover img {
	transform: translateX(-5px);
}

.pagination__item.pagination__right a:hover img {
	transform: translateX(5px);
}

.category__nav {
	max-width: 1200px;
	margin: 0 auto;
}

.category__nav__list {
	width: 100%;
	display: flex;
	position: relative;
}

.category__nav__list__item {
	max-width: 25%;
	flex-basis: 25%;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.category__nav__list__item:after {
	content: "";
	width: 1px;
	height: 60px;
	display: block;
	background-color: rgba(0, 0, 0, .1);
	position: absolute;
	right: 0;
	top: 10px;
}

.category__nav__list__item:last-child:after {
	display: none;
}

.category__nav__list__item a {
	height: 80px;
	display: flex;
	overflow: hidden;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	color: rgba(0, 0, 0, 1);
	justify-content: center;
	align-items: center;
}

.category__nav__list__item a:after {
	content: "";
	width: 100%;
	height: 5px;
	display: block;
	background-color: rgba(255, 126, 120, 1);
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(5px);
}

.category__nav__list__item a:hover:after {
	transform: translateY(0);
}

.category__nav__list__item .en {
	margin-right: 10px;
	font-size: 2.4rem;
	font-weight: normal;
	color: rgba(255, 126, 120, 1);
}

.instructor__list {
	display: flex;
	flex-wrap: wrap;
}

.instructor__list__item {
	max-width: calc((100% - 160px) / 5);
	flex-basis: calc((100% - 160px) / 5);
	margin-top: 60px;
	margin-right: 40px;
}

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

.instructor__list__image img {
	transition: all 600ms ease;
}

.instructor__list__image a:hover img {
	transform: scale3d(1.1, 1.1, 1.1);
}

.instructor__list__name {
	margin: 20px auto;
	display: table;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
}

.instructor__list__post {
	font-size: 1.2rem;
}

.instructor__list__name__en {
	font-size: 3rem;
}

.instructor__list__name__jp {
	font-size: 1.3rem;
	font-weight: 700;
}

.instructor__specialty {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.instructor__specialty__item {
	margin: 2px;
}

.instructor__specialty__item {
	height: 20px;
	padding: 0 10px;
	display: flex;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 10px;
	font-size: 1.2rem;
	color: rgba(0, 0, 0, .5);
	text-decoration: none;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
}

/*
.instructor__specialty__item a:hover {
	border-color: rgba(0, 0, 0, 1);
	color:  rgba(0, 0, 0, 1);
}
*/

.foot-school-nav {
	width: calc(100% + 12vw - 40px);
	padding: 100px calc(6vw - 20px);
	background-color: rgba(255, 126, 120, .06);
	border-radius: 5px;
	position: relative;
	left: calc(-6vw + 20px);
	box-sizing: border-box;
}

.foot-school-nav__title,
.sub-section__title {
	margin: 0 auto;
	margin-bottom: 60px;
	display: table;
	position: relative;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.foot-school-nav__title:after,
.sub-section__title:after {
	content: "";
	width: 100%;
	height: 10px;
	display: block;
	background-color: rgba(255, 126, 120, .5);
	position: absolute;
	left: 0;
	bottom: 0;
}

.foot-school-nav__list {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

.foot-school-nav__list__item {
	max-width: calc((100% - 40px) / 3);
	flex-basis: calc((100% - 40px) / 3);
	margin-top: 20px;
	margin-right: 20px;
	display: flex;
}

.foot-school-nav__list__item a {
	width: 100%;
	display: flex;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	align-items: center;
	box-sizing: border-box;
}

.foot-school-nav__list__item a:hover {
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, .1);
}

.foot-school-nav__list__image {
	max-width: 140px;
	flex-basis: 140px;
}

.foot-school-nav__list__name {
	max-width: calc(100% - 140px);
	flex-basis: calc(100% - 140px);
	padding: 0 20px;
	line-height: 1.2;
	box-sizing: border-box;
}

.foot-school-nav__list__name__school {
	font-size: 1.4rem;
}

.foot-school-nav__list__name__branch {
	font-size: 3rem;
}

.foot-school-nav__list__name__jp {
	font-size: 1.2rem;
	line-height: 1.4;
}

.sub-section {
	max-width: 1400px;
	margin: 60px auto;
	padding: 0 6vw;
}


@media screen and ( min-width: 1201px ) {

	.instructor__list__item:nth-child(5n) {
		margin-right: 0;
	}

	.foot-school-nav__list__item:nth-child(3n) {
		margin-right: 0;
	}

}


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

	.instructor__list__item {
		max-width: calc((100% - 120px) / 4);
		flex-basis: calc((100% - 120px) / 4);
	}

	.instructor__list__item:nth-child(4n) {
		margin-right: 0;
	}

	.foot-school-nav__list__item {
		max-width: calc((100% - 20px) / 2);
		flex-basis: calc((100% - 20px) / 2);
	}

	.foot-school-nav__list__item:nth-child(2n) {
		margin-right: 0;
	}

}


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

	.instructor__list__item {
		max-width: calc((100% - 80px) / 3);
		flex-basis: calc((100% - 80px) / 3);
	}

	.instructor__list__item:nth-child(3n) {
		margin-right: 0;
	}

}


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

	.instructor__list__item {
		max-width: calc((100% - 40px) / 2);
		flex-basis: calc((100% - 40px) / 2);
	}

	.instructor__list__item:nth-child(2n) {
		margin-right: 0;
	}

}


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

	.category__nav__list__item a {
		font-size: 1.5rem;
	}

}


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

	.category__nav__list {
		position: relative;
		flex-wrap: wrap;
	}

	.category__nav__list:before {
		content: "";
		width: 100%;
		height: 1px;
		display: block;
		background-color: rgba(0, 0, 0, .1);
		position: absolute;
		top: 0;
		left: 0;
	}

	.category__nav__list__item {
		max-width: 50%;
		flex-basis: 50%;
	}

	.category__nav__list__item:nth-child(2n):after {
		display: none;
	}

	.category__nav__list__item a {
		padding: 0 30px;
		justify-content: flex-start;
	}

	.foot-school-nav__title,
	.sub-section__title {
		margin-bottom: 40px;
		font-size: 1.6rem;
	}

	.foot-school-nav__list {
		display: block;
	}

	.foot-school-nav__list__item {
		max-width: none;
		margin-right: 0;
	}

}


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

	.category__nav__list__item a {
		padding: 0 20px;
		font-size: 1.5rem;
	}

	.foot-school-nav {
		width: calc(100% + 12vw);
		padding: 60px 6vw;
		left: -6vw;
	}

	.foot-school-nav__list__name__school {
		font-size: 1.3rem;
	}

	.foot-school-nav__list__name__branch {
		font-size: 2.5rem;
	}

}


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

	.category__nav__list__item a {
		padding: 0 10px;
		font-size: 1.4rem;
	}

	.category__nav__list__item .en {
		margin-right: 5px;
	}

	.foot-school-nav__title,
	.sub-section__title {
		font-size: 1.5rem;
	}

	.foot-school-nav {
		width: calc(100% + 12vw);
		margin-left: 0;
		margin-right: 0;
		padding-left: 6vw;
		padding-right: 6vw;
	}

	.foot-school-nav__list__image {
		max-width: 100px;
		flex-basis: 100px;
	}

	.foot-school-nav__list__name {
		max-width: calc(100% - 100px);
		flex-basis: calc(100% - 100px);
	}

}


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

	.instructor__list__item {
		max-width: calc((100% - 20px) / 2);
		flex-basis: calc((100% - 20px) / 2);
		margin-right: 20px;
	}

	.instructor__list__item:nth-child(2n) {
		margin-right: 0;
	}

/*
	.instructor__list {
		display: block;
	}
*/

/*
	.instructor__list__item {
		max-width: none;
		margin-right: 0;
	}
*/

}


/*------------------------------------*/


.stories__list {
	display: flex;
	flex-wrap: wrap;
}

.stories__list__items {
	max-width: calc((100% - 120px) / 4);
	flex-basis: calc((100% - 120px) / 4);
	margin: 50px 0;
	margin-right: 40px;
}

.stories__list__items a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-decoration: none;
}

.stories__list__image {
	width: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 20px;
	transform: rotate(0.001deg);
}

.stories__list__image__cover {
	width: 100%;
	height: 100%;
	display: block;
	background: linear-gradient(to bottom right, rgba(209, 84, 84, 1), rgba(242, 180, 180, 1));
	border-radius: 20px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
}

a:hover .stories__list__image div {
	opacity: 0;
}

.stories__list__image img {
	width: 100%;
	height: calc(80px + 8vw);
	max-height: 200px;
	filter: grayscale(100%);
	border-radius: 20px;
	position: relative;
	z-index: 0;
	transition: all 250ms ease;
	object-fit: cover;
	object-position: 50% 50%;
}

a:hover .stories__list__image img {
	filter: grayscale(0%);
}

.stories__list__image span {
	width: 100%;
	height: 100%;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	justify-content: center;
	align-items: center;
	transition: opacity 250ms ease;
	opacity: .4;
}

a:hover .stories__list__image span {
	opacity: 0;
}

@supports (mix-blend-mode: overlay) {

	.stories__list__image__cover {
		opacity: .7;
		mix-blend-mode: hard-light;
	}

	.stories__list__image span {
		opacity: 1;
		mix-blend-mode: overlay;
	}

}

.stories__list__image .en {
	margin-left: -.05em;
	margin-bottom: -.1em;
	font-size: 18rem;
	color: rgba(255, 255, 255, 1);
	letter-spacing: normal !important;
/* 	mix-blend-mode: overlay; */
}

/*
a:hover .stories__list__image .en {
	opacity: 0;
}
*/

.stories__list__category {
	height: 24px;
	margin: 20px 0 10px 0;
	padding: 0 10px;
	display: flex;
	background-color: rgba(0, 0, 0, 1);
	border-radius: 5px;
	position: relative;
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 1);
	box-sizing: border-box;
	align-items: center;
}

.stories__list__category:before {
	content: "";
	border: 4px solid transparent;
	border-top: 8px solid rgba(0, 0, 0, 1);
	position: absolute;
	left: 20px;
	bottom: -12px;
}

/*
.vietnamese .stories__list__category {
	background-color: rgba(84, 209, 84, 1);
}

.vietnamese .stories__list__category:before {
	border-top-color: rgba(84, 209, 84, 1);
}

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

.general .stories__list__category:before {
	border-top-color: rgba(84, 209, 84, 1);
}

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

.business .stories__list__category:before {
	border-top-color: rgba(84, 209, 84, 1);
}

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

.toeic .stories__list__category:before {
	border-top-color: rgba(161, 192, 68, 1);
}

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

.kids .stories__list__category:before {
	border-top-color: rgba(223, 181, 69, 1);
}
*/

.stories__list__text {
	max-width: 100%;
	flex-basis: 100%;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
}


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

	.stories__list {
		display: block;
	}

}


/*------------------------------------*/


.en {
	margin-right: -.04em;
	font-family: "bebas_neue_semirounded", sans-serif;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.main-body-text {
	font-size: 1.5rem;
	line-height: 2.2;
}

.main-body-text.center {
	text-align: center;
}

.spbr {
	display: none;
}

a.bghovercolor:hover {
	background-color: rgba(255, 126, 120, .1);
}

.text-color {
	color: rgba(255, 126, 120, 1);
}

.bg-color {
	background-color: rgba(255, 126, 120, 1);
	color: rgba(255, 255, 255, 1);
}

.btn {
	width: 200px;
	height: 40px;
	padding: 0 20px;
	display: flex;
	border: 2px solid rgba(255, 126, 120, 1);
	border-radius: 20px;
	position: relative;
	font-size: 1.4rem;
	font-weight: 700;
	text-decoration: none;
	color: rgba(255, 126, 120, 1);
	box-sizing: border-box;
	align-items: center;
}

.btn.en {
	font-size: 1.6rem;
	font-weight: normal;
}

.btn:hover {
	background-color: rgba(255, 126, 120, 1);
	color: rgba(255, 255, 255, 1);
}

.btn:after {
	content: "";
	width: 15px;
	height: 15px;
	display: block;
	background-image: url(../images/common/icon_arrow_r_pl.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	right: 20px;
	top: calc(50% - 7px);
	filter: hue-rotate(120deg) brightness(1.5);;
}

.btn:hover:after {
	background-image: url(../images/common/icon_arrow_r_wt.png);
	transform: translateX(5px);
}

.wbr {
	display: inline-block;
	white-space: nowrap;
}

.notice {
	margin: 20px 0;
	padding-left: 1em;
	font-size: 1.2rem;
	line-height: 2;
	text-indent: -1em;
}

.notice li:before {
	content: "※";
}


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

	.main-body-text {
		font-size: 1.4rem;
		line-height: 2;
	}

}


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

	.tbr {
		display: none;
	}

	.spbr {
		display: block;
	}

}

/*------------------------------------*/




