@charset "utf-8";

/*--------------------------------------
  General
--------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

html {
  font-size: 62.5%;
  overflow-y: scroll;
  word-break: break-all;
}
body {
  color: #000;
	font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
  --PointColor: #fed400;
  --TextColor: #1d1817;
}

/*--------------------------------------
  Link
--------------------------------------*/

a:link,
body.t .call-link,
body.m .call-link {
  color: #073585;
  text-decoration: underline;
  cursor: pointer;
}
a:visited {
  color: #073585;
}
body.d a:hover {
  text-decoration: none;
}

/*--------------------------------------
  div#container
--------------------------------------*/
p {
	margin-bottom: 2rem;
}
.fs-small {
	font-size: 75%;
}
.indent {
	padding-left: 1em;
	text-indent: -1em;
}

@media all and (min-width:737px) {
	.hide-d {
		display: none !important;
	}
}
@media all and (max-width:736px) {
	.hide-m {
		display: none !important;
	}
}

@media all and (min-width:737px) {

/*--------------------------------------
  header#header
--------------------------------------*/
#header {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100px;
	background: #FFF;
	border-left: 1px solid rgba(0,0,0,0.3);
	z-index: 9999;
	box-sizing: border-box;
}
#header #global-nav {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
#header a {
	transition: 0.2s;
}
#header a:hover {
	opacity: 0.7;
}
#header .logo {
	order: 1;
}
#header .logo a {
	display: block;
	width: 100px;
	height: 0;
	padding-top: 100px;
	background: url(../img/logo.png) no-repeat center;
	overflow: hidden;
}
.global-nav-icon {
	display: none;
}

/* div.contact-nav
------------------*/
#header .contact-nav {
	order: 3;
	text-align: center;
	list-style: none;
}
#header .contact-nav li.sns a {
	display: block;
	width: 25px;
	height: 0;
	margin: 0 auto;
	padding-top: 25px;
	overflow: hidden;
}
#header .contact-nav li:nth-child(1) a {
	margin-bottom: 15px;
	background: url(../img/instagram.png) no-repeat center;
}
#header .contact-nav li:nth-child(2) a {
	margin-bottom: 30px;
	background: url(../img/line.png) no-repeat center;
}
#header .contact-nav li:not(.sns) a {
	position: relative;
	display: block;
	height: 100px;
	padding: 25px 0 0;
	background: var(--PointColor);
	color: var(--TextColor);
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	border-top: 1px solid rgba(0,0,0,0.3);
	box-sizing: border-box;
}
#header .contact-nav li:not(.sns) a:before {
	content: '';
	display: block;
	width: 28px;
	height: 28px;
	margin: 0 auto 10px;
}
#header .contact-nav li:nth-child(3) a:before {
	background: url(../img/calendar.svg) no-repeat center;
	background-size: 100% auto;
}
#header .contact-nav li:nth-child(4) a:before {
	background: url(../img/mail.svg) no-repeat center;
	background-size: 100% auto;
}

/* div.pagination
------------------*/
.pagination {
	order: 2;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.pagination a {
	position:relative;
	display:block;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	margin-bottom:2vh;
	color: rgba(33,33,33,0.4);
	font-size: 1.7vh;
	text-decoration: none;
	line-height: 100px;
	letter-spacing: 0.25vh;
	overflow: visible;
}
.pagination a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -6px;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	background: #fdd430;
	border-radius: 50%;
	opacity: 0;
	transition: 0.3s;
}
.pagination a:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 0;
	height: 1px;
	background: #fdd430;
	transition: 0.6s;
}
.pagination a.active,
.pagination a:hover {
	color: rgba(33,33,33,1);
}
.pagination a.active::before {
	opacity: 1;
}
.pagination a.active:after {
	width: 35px;
}

/*--------------------------------------
  Copyright
--------------------------------------*/
div.footer_fixwrap {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 50px;
	z-index: 9999;
}
.footer_fixwrap .copyright {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.footer_fixwrap .copyright small {
	display: inline-block;
	color: rgba(0,0,0,0.3);
	font-size: 11px;
	font-weight: 100;
	vertical-align: middle;
	white-space: nowrap;
  transform: rotate(90deg);
}
}
@media all and (min-width:737px) and (max-height:700px) {
.pagination a {
	padding: 0 5px 0 10px;
	-ms-writing-mode: initial;
	writing-mode: initial;
	font-size: 1.4rem;
	line-height: 6vh;
	letter-spacing: 0;
	box-sizing: border-box;
}
.pagination a:after {
	display: none;
}
}

@media all and (max-width:736px) {
/*--------------------------------------
  header#header
--------------------------------------*/
#header {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
}
#header div.global-nav-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
  cursor: pointer;
}
#header div.global-nav-icon.open {
  position: fixed;
}
#header div.global-nav-icon div.nav-icon {
  position: relative;
  width: 40px;
  height: 40px;
}
#header div.global-nav-icon div.nav-icon div.line1,
#header div.global-nav-icon div.nav-icon div.line2,
#header div.global-nav-icon div.nav-icon div.line3 {
  position: absolute;
  left: 3px;
  width: 34px;
  height: 1px;
  background: var(--TextColor);
  border-radius: 2px;
  transition: 0.25s;
}
#header div.global-nav-icon div.nav-icon div.line1 {
  top: 3px;
}
#header div.global-nav-icon div.nav-icon div.line2 {
  top: 13px;
  width: 18px;
}
#header div.global-nav-icon div.nav-icon div.line3 {
  top: 23px;
  width: 24px;
}
#header div.global-nav-icon.open div.nav-icon div.line1 {
  top: 13px;
  background: #FFF;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
#header div.global-nav-icon.open div.nav-icon div.line2 {
  left: 50%;
  width: 0;
  background: #FFF;
}
#header div.global-nav-icon.open div.nav-icon div.line3 {
  top: 13px;
  width: 34px;
  background: #FFF;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* nav#global-nav
------------------*/
#header nav#global-nav,
#header nav#global-nav.close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(0,0,0,0);
  overflow: auto;
  z-index: 50;
  overflow: hidden;
  transition: background 0.2s;
}
#header nav#global-nav.open {
  height: 100%;
  padding: 60px 30px 30px;
  background: rgba(0,0,0,0.9);
  box-sizing: border-box;
  transition: background 0.2s;
}
#header .logo a {
	display: block;
	width: 60px;
	height: 0;
	margin: 0 auto 60px;
	padding-top: 60px;
	background: url(../img/logo_white.png) no-repeat center;
	background-size: 100% auto;
	overflow: hidden;
}

/* div.contact-nav
------------------*/
#header .contact-nav {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	list-style: none;
}
#header .contact-nav li {
	width: 50%;
}
#header .contact-nav li.sns a {
	display: block;
	width: 25px;
	height: 0;
	margin: 0 auto;
	padding-top: 25px;
	overflow: hidden;
}
#header .contact-nav li:nth-child(1) a {
	margin-bottom: 15px;
	margin-left: 80%;
	background: url(../img/instagram_white.png) no-repeat center;
}
#header .contact-nav li:nth-child(2) a {
	margin-bottom: 30px;
	margin-right: 80%;
	background: url(../img/line_white.png) no-repeat center;
}
#header .contact-nav li:not(.sns) a {
	position: relative;
	display: block;
	padding: 15px 5px 10px;
	background: var(--PointColor);
	color: var(--TextColor);
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
	box-sizing: border-box;
}
#header .contact-nav li:nth-child(4) a {
	border-left: 1px solid rgba(0,0,0,0.3);
}
#header .contact-nav li:not(.sns) a:before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 10px 5px 0;
	vertical-align: middle;
}
#header .contact-nav li:nth-child(3) a:before {
	background: url(../img/calendar.svg) no-repeat center;
	background-size: 100% auto;
}
#header .contact-nav li:nth-child(4) a:before {
	background: url(../img/mail.svg) no-repeat center;
	background-size: 100% auto;
}

/* div.pagination
------------------*/
.pagination {
	text-align: center;
}
.pagination a {
	position:relative;
	display:block;
	margin-bottom:20px;
	color: #FFF;
	font-size: 2.0rem;
	text-decoration: none;
	letter-spacing: 3px;
}
.pagination a.active {
	color: var(--PointColor);
}

/*--------------------------------------
  Copyright
--------------------------------------*/
div.footer_fixwrap {
	position: relative;
	width: 100%;
	background: var(--TextColor);
	z-index: 500;
}
.footer_fixwrap .copyright {
	padding: 10px 15px;
	text-align: center;
	line-height: 1.2;
}
.footer_fixwrap .copyright small {
	color: rgba(255,255,255,0.3);
	font-size: 1.0rem;
	font-weight: 100;
}
}

/*--------------------------------------
  #main
--------------------------------------*/
#main {
	position: relative;
	overflow: hidden;
}
@media all and (min-width:737px) {
#main {
	margin-right: 100px;
}
}
.box {
	clear: both;
	position: relative;
	width: 100%;
}
@media all and (max-width:736px) {
/*.box {
	min-height: 100vh;
}*/
}
#main:after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100svh;
	background-color: var(--TextColor);
	transform-origin: right;
	transform: scaleX(1);
	animation: MainBg 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s forwards;
}
@keyframes MainBg {
	from {transform: scaleX(1);}
	to {transform: scaleX(0);}
}

/* 01
------------------*/
#eyecatch {
	position: relative;
	height: 100%;
}
#eyecatch:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/course/eyecatch.jpg) no-repeat center bottom;
	background-size: cover;
	transform: scale3d(1, 1, 1);
	animation: EyecatchImg 3s cubic-bezier(0.075, 0.82, 0.165, 1) 0.1s forwards;
}
#eyecatch:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/course/eyecatch.png) no-repeat center bottom;
	background-size: cover;
	animation: EyecatchImg 3s cubic-bezier(0.075, 0.82, 0.165, 1) 0.1s forwards;
}
#eyecatch-text {
	position: absolute;
	bottom: 45%;
	left: 50%;
	padding: 6vh 10vw;
	color: var(--TextColor);
	text-align: center;
	font-weight: 900;
	white-space: nowrap;
	line-height: 1.2;
	border: 8px solid;
	transform: translate(-50%, 0);
}
#eyecatch-text:before {
	content: '';
	position: absolute;
	bottom: -6%;
	right: -8%;
	width: 50%;
	height: 0;
	padding-top: 24%;
	background: url(../img/course/eyecatch_en.png) no-repeat center;
	background-size: contain;
}
#eyecatch-text .jp {
	padding-bottom: 0.5em;
	font-size: min(11vw, 7.0rem);
}
#eyecatch-text .en {
	font-size: min(4vw, 2.4rem);
	letter-spacing: 0.2em;
}
.scrolldown2{
	position:absolute;
	bottom:0;
	left:50%;
}
.scrolldown2:before {
	content: '';
	position: absolute;
	bottom:0;
	left:-5px;
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#FFF;
	animation:circlemove 1.6s ease-in-out infinite,cirlemovehide 1.6s ease-out infinite;
}
.scrolldown2:after{
	content:'';
	position: absolute;
	bottom:0;
	left:0;
	width:1px;
	height: 10vh;
	background:#FFF;
}
@keyframes EyecatchImg {
	from {transform: scale3d(1.1, 1.1, 1.1);}
	to {transform: scale3d(1, 1, 1);}
}
@keyframes circlemove{
	0%{bottom:calc(10vh - 5px);}
	100%{bottom:-5px;}
}
@keyframes cirlemovehide{
	0%{opacity:0}
	50%{opacity:1;}
	80%{opacity:0.9;}
	100%{opacity:0;}
}
@media all and (min-width:737px) {
	#eyecatch-text {
		padding: 5vh 5vw;
		border-width: 15px;
	}
}

/* 02
------------------*/
#about {
	position: relative;
	height: 100%;
	padding: 20px 0 40px;
	background: url(../img/course/about_bg.jpg) no-repeat center;
	background-size: cover;
	box-sizing: border-box;
}
.about-title {
	display: flex;
	flex-direction: column;
  align-items: flex-start;
	margin-bottom: 20px;
}
.about-title .en {
	margin-bottom: -0.2em;
	padding: 0 20px;
	font-size: min(5.8vw, 4.8rem);
	font-weight: 700;
	line-height: 1.2;
}
.about-title h2 {
	max-width: calc(100% - 20px);
	margin-bottom: 0.5em;
	padding: 5px 15px 5px 20px;
	background: #000;
	color: var(--PointColor);
	font-size: min(5.6vw, 4.0rem);
	font-weight: 700;
	line-height: 1.2;
	box-sizing: border-box;
	transform: translateX(0%);
	transition: all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#box2:not(.blockIn) .about-title h2 {
  transform: translateX(-100%);
}
div#container .about-title p {
	margin-bottom: 0;
	padding: 0 20px;
	line-height: 1.3;
}
.about-title p strong {
	display: block;
	margin-bottom: 0.5em;
	font-size: 115%;
	font-weight: 900;
}
#about .swiper-main {
	position: relative;
	width: 100%;
	overflow: visible;
}
/* #about .swiper-main,
#about .swiper-pagination-main {
	max-width: 100%;
} */
#about .swiper-pagination-main {
	display: flex;
	width: 100%;
	margin-bottom: 40px;
}
#about .swiper-pagination-main .swiper-pagination-bullet {
	flex: 1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: auto;
	padding-bottom: 0.8em;
	background: none;
	color: #928600;
	font-size: min(5.4vw, 2.4rem);
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	opacity: 1;
	cursor: pointer;
	transition: .8s cubic-bezier(.2, 1, .2, 1);
}
#about .swiper-pagination-main .swiper-pagination-bullet::before, #about .swiper-pagination-main .swiper-pagination-bullet::after {
	content: '';
	position: absolute;
	transition: .8s cubic-bezier(.2, 1, .2, 1);
	background-color: #000;
}
#about .swiper-pagination-main .swiper-pagination-bullet::before {
	right: 0;
	bottom: -4px;
	left: 0;
	margin: auto;
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 100px;
	box-shadow: 0 0 0 5px #f4d501;
	z-index: 1;
}
#about .swiper-pagination-main .swiper-pagination-bullet::after {
	right: 50%;
	bottom: 0;
	width: 100%;
	height: 3px;
}
#about .swiper-pagination-main .swiper-pagination-bullet:first-child::after {
	display: none;
}
#about .swiper-pagination-main .swiper-pagination-bullet .small {
	font-size: 1.4rem;
}
#about .swiper-pagination-main .swiper-pagination-bullet-active {
	color: #000;
}
#about .swiper-pagination-main .swiper-pagination-bullet-active::before {
	box-shadow: 0 0 0 4px #f4d501, 0 0 0 7px #000;
}
#about .swiper-pagination-main .swiper-pagination-bullet-active ~ *::before, #about .swiper-pagination-main .swiper-pagination-bullet-active ~ *::after {
	background-color: #928600;
}
#about .swiper-pagination-sub {
	margin-top: 20px;
	font-size: 0;
	text-align: center;
}
#about .swiper-pagination-sub .swiper-pagination-bullet {
	display: inline-block;
	width: 8px;
	height: 8px;
	cursor: pointer;
	transition: .8s cubic-bezier(.2, 1, .2, 1);
	vertical-align: top;
	background-color: #000;
}
#about .swiper-pagination-sub .swiper-pagination-bullet:not(:first-child) {
	margin-left: 8px;
}
#about .swiper-pagination-sub .swiper-pagination-bullet-active {
	background-color: var(--PointColor);
}
#about .swiper-button-prev, #about .swiper-button-next {
	position: absolute;
	top: 50%;
	margin: auto;
	transform: translate(0, -50%);
	z-index: 1;
}
#about .swiper-button-prev::before, #about .swiper-button-next::before {
	display: none;
}
#about .swiper-button-prev::after, #about .swiper-button-next::after {
	content: '';
	position: relative;
	width: 1.6rem;
	height: 1.6rem;
	border: solid #000;
	border-width: 3px 3px 0 0;
}
#about .swiper-button-prev::after {
	transform: rotate(225deg);
}
#about .swiper-button-next::after {
	transform: rotate(45deg);
}
#about .swiper-slide {
	height: auto;
}
#about .mainslide {
	margin: 0 20px;
	padding: 20px 0;
	height: 100%;
	background: #fff;
	text-align: center;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	overflow: hidden;
	box-sizing: border-box;
}
#about .mainslide-title {
	display: inline-block;
	margin-bottom: 1.5em;
	font-size: min(6vw,2.4rem);
	font-weight: 900;
	line-height: 1.6;
	border-bottom: 2px solid #000;
}
#about .subslide-img {
	position: relative;
	width: 35%;
	height: 0;
	margin: 0 auto 1.5em;
	padding-top: 35%;
	/* border: 3px solid; */
	border-radius: 50%;
	overflow: hidden;
}
#about .subslide-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#about .swiper-slide:nth-child(4) .subslide-img {
	width: 50%;
	margin-bottom: 0;
	padding-top: 40%;
	border-radius: 0;
}
#about .swiper-slide:nth-child(4) .subslide-img img {
	object-position: center top;
}
#about .subslide p {
	margin: 0 20px;
	font-size: 1.3rem;
}
#about .subslide p strong {
	display: inline-block;
	margin-bottom: 0.5em;
	padding: 5px 20px;
	font-size: 115%;
	line-height: 1.2;
	border: 1px solid;
	border-radius: 50vh;
}

@media all and (min-width:737px) {
	.about-title {
		flex-direction: row;
		flex-wrap: wrap;
		padding: min(6%, 80px) 0;
	}
	.about-title .en {
		width: 100%;
		padding: 0 min(4%, 60px);
	}
	.about-title h2 {
		margin-bottom: 0;
		padding: 3px 15px 6px min(4%, 60px);
	}
	div#container .about-title p {
		flex: 1;
	}
	#about .swiper-main {
		max-width: 600px;
		margin: auto;
	}
	/* #about .swiper-main,
	#about .swiper-pagination-main {
		max-width: 100%;
	} */
	#about .swiper-pagination-main {
		max-width: 600px;
		margin: 0 auto 5vh;
	}
	#about .swiper-slide {
		width: 100%;
		height: auto;
	}
	#about .mainslide {
		margin: 0 20px;
		padding: 20px 0;
		height: 100%;
		background: #fff;
		text-align: center;
		box-shadow: 0 0 10px rgba(0,0,0,0.2);
		overflow: hidden;
	}
	#about .mainslide-title {
		display: inline-block;
		margin-bottom: 1.5em;
		font-size: min(6vw,2.4rem);
		font-weight: 900;
		line-height: 1.6;
		border-bottom: 2px solid #000;
	}
	#about .subslide-img {
		width: 180px;
		padding-top: 180px;
	}
	#about .subslide p {
		margin: 0 10%;
		font-size: 1.4rem;
	}
}

/* 03
------------------*/
.course {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.course-item {
	flex: 1;
	transition: 0.3s;
}
.course-item.authentic {
	background-color: #e6e7eb;
	text-align: right;
	--CourseColor: #0097d5;
}
.course-item.athlete {
	background-color: #ebf0f6;
	--CourseColor: #006d55;
}
.course-item a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 20px;
	color: var(--CourseColor);
	text-decoration: none;
	box-sizing: border-box;
}
.course-item a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 140%;
	transition: 0.3s;
}
.course-item.authentic a:before {
	background-image: url(../img/course/course_authentic_bg.jpg);
	transform: translate(-30%, 0);
}
.course-item.athlete a:before {
	background-image: url(../img/course/course_athlete_bg.jpg);
	transform: translate(20%, 0);
}
.course-title {
	position: relative;
	display: flex;
	flex-direction: column;
  align-items: flex-start;
	gap: 5px;
}
.course-title .en {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	max-width: calc(100% - 40px);
	color: #fff;
	font-size: min(6.4vw, 4.4rem);
	font-weight: 300;
	line-height: 1.2;
	transform: translateX(0%);
	transition: all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.course-title .en > span {
	padding: 0 0 0.1em;
	background: var(--CourseColor);
}
.course-title .en:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 20px;
	background: var(--CourseColor);
}
.course-title h2 {
	font-size: min(4.8vw, 3.0rem);
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 0px -2px 1px #FFF, 2px 0 1px #FFF, 0 2px 1px #FFF, -2px 0 1px #FFF, 2px 2px 1px #FFF, 2px -2px 1px #FFF, -2px 2px 1px #FFF, -2px -2px 1px #FFF;
	transform: translateX(0%);
	transition: all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}
div#container .course-title p {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.2;
	text-shadow: 0px -2px 1px #FFF, 2px 0 1px #FFF, 0 2px 1px #FFF, -2px 0 1px #FFF, 2px 2px 1px #FFF, 2px -2px 1px #FFF, -2px 2px 1px #FFF, -2px -2px 1px #FFF;
	transform: translateX(0%);
	transition: all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
.course-item.authentic .course-title {
	align-items: flex-end;
}
.course-item.authentic .course-title .en {
	justify-content: flex-end;
}
.course-item.authentic .course-title .en:before {
	left: 100%;
}
.course-item.authentic .course-title .en > span {
	padding-left: 0.5em;
}
#box3:not(.blockIn) .course-item.authentic .course-title .en,
#box3:not(.blockIn) .course-item.authentic .course-title h2,
#box3:not(.blockIn) .course-item.authentic .course-title p {
  transform: translateX(100%);
}
.course-item.athlete .course-title .en:before {
	right: 100%;
}
.course-item.athlete .course-title .en > span {
	padding-right: 0.5em;
}
#box3:not(.blockIn) .course-item.athlete .course-title .en,
#box3:not(.blockIn) .course-item.athlete .course-title h2,
#box3:not(.blockIn) .course-item.athlete .course-title p {
  transform: translateX(-100%);
}
.course-catch {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
  justify-content: center;
	font-size: min(5vw, 3.0rem);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 1px;
}
div#container .course-catch p {
	margin-bottom: 0;
	text-shadow: 0px -2px 1px #FFF, 2px 0 1px #FFF, 0 2px 1px #FFF, -2px 0 1px #FFF, 2px 2px 1px #FFF, 2px -2px 1px #FFF, -2px 2px 1px #FFF, -2px -2px 1px #FFF;
}
.course-btn {
	position: relative;
	width: 100%;
	padding: 3px 20px;
	background: #fff;
	color: #000;
	font-size: min(3.6vw, 1.6rem);
	font-weight: 700;
	text-align: center;
	border: 3px solid #000;
	border-radius: 50vh;
	transition: 0.2s;
	box-sizing: border-box;
}
@media all and (min-width:1120px) {
	.course {
		flex-direction: row;
	}
	.course-item {
		flex: none;
		width: 50%;
		background-size: auto;
	}
	.course-item a:before {
		background-size: cover;
	}
	.course-item.authentic a:before,
	.course-item.athlete a:before {
		transform: translate(0, 0);
	}
	.course-item a {
		padding: 80px min(6%, 80px);
	}
	.course-title {
		gap: 5px;
	}
	.course-title .en {
		max-width: calc(100% - min(6%, 80px));
    font-size: min(3.4vw, 4.4rem);
	}
	.course-title .en:before {
		width: 80px;
	}
	.course-title h2 {
		font-size: min(2.0vw, 3.0rem);
	}
	.course-item.authentic .course-catch {
		align-items: flex-start;
	}
	div#container .course-catch p {
		text-align: left;
		writing-mode: vertical-rl;
		text-orientation: upright;
	}
	.course-item:hover {
		width: 55%;
	}
	.course:hover .course-item:not(:hover) {
		width: 45%;
	}
	/*
	.course-item:not(:hover) {
		filter: grayscale(100%);
	} */
}
@media all and (min-width:737px) {
	.course-btn:hover {
		background: #000;
		color: #fff;
	}
}

/* 04
------------------*/
#openschool {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	height: 100%;
	padding: 20px 0 45%;
	background: #f6eecf;
	box-sizing: border-box;
}
#openschool:before,#openschool:after {
	content: '';
	position: absolute;
	bottom: -10%;
	width: 50%;
	height: 0;
	padding-top: 60%;
	background-position: center 0;
	background-repeat: no-repeat;
	background-size: contain;
}
#openschool:before {
	left: 0;
	width: 50%;
	background-image: url(../img/course/openschool_bg1.png);
}
#openschool:after {
	right: 0;
	background-image: url(../img/course/openschool_bg2.png);
}
.openschool-item {
	width: 90%;
	margin: 0 auto;
}
.openschool-item .openschool-title {
	background: #000;
	color: #fff;
	text-align: center;
}
.openschool-item ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background: #fff;
	border: 1px solid #bbb;
	border-top: none;
}
.openschool-item ul > li {
	display: flex;
  align-items: center;
	gap: 5px;
	width: 50%;
	padding: 15px 10px;
	font-size: 1.4rem;
	line-height: 1.2;
	font-weight: 700;
	box-sizing: border-box;
}
.openschool-item ul > li .num {
	padding: 3px 5px;
	font-size: 87.5%;
	border: 1px solid;
}
.openschool-item ul > li em {
	font-size: min(7vw, 4.4rem);
	font-style: normal;
}
.openschool-item ul > li .week {
	width: 1.6em;
	height: 1.6em;
	margin-top: auto;
	padding: 0.1em 0.3em 0;
	background: var(--PointColor);
	border-radius: 50%;
	box-sizing: border-box;
}
#openschool .link-btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 90%;
	margin: 0 auto;
}
#openschool .link-btn a {
	position: relative;
	margin: 5px;
	padding: 8px 35px 8px 20px;
	background: #000;
	color: #fff;
	font-size: min(3.6vw, 1.6rem);
	font-weight: 700;
	text-decoration: none;
	border-radius: 50vh;
	transition: 0.2s;
}
#openschool .link-btn a:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: translate(0, -50%) rotate(45deg);
	transition: 0.2s;
}

@media all and (min-width:737px) {
	#openschool {
		gap: 40px;
		padding: 0;
	}
	#openschool:before {
		left: 40px;
		width: min(30%, 511px);
		padding-top: min(35%, 640px);
	}
	#openschool:after {
		right: 40px;
		width: min(25%, 427px);
		padding-top: min(35%, 681px);
	}
	.openschool-item {
		max-width: 800px;
	}
	.openschool-item .openschool-title {
		padding: 5px 0;
	}
	.openschool-item ul > li {
		width: 35%;
	}
	#openschool .link-btn {
		max-width: 800px;
	}
	#openschool .link-btn a {
		margin: 5px 10px;
		padding: 8px 50px 8px 30px;
	}
	#openschool .link-btn a:after {
		right: 25px;
	}
	#openschool .link-btn a:hover {
		background: var(--PointColor);
		color: #000;
		transform: scale(1.05);
	}
	#openschool .link-btn a:hover:after {
		right: 15px;
		border-color: #000;
	}
}

/* fancybox
------------------*/
/* .fancybox-slide--html {
	padding: 0 !important;
}
.fancybox-content {
	background: none !important;
	padding: 0 !important;
}
.fancybox-slide--html .fancybox-close-small {
	color: #FFF !important;
}
div.fancybox-wrapper {
	position: relative;
	width: 98vw;
	height: 98vh;
	background: #000;
}
div.fancybox-wrapper video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
} */

#authentic-overview {
	--CourseColor: #0097d5;
}
#athlete-overview {
	--CourseColor: #006d55;
}
.course-overview {
	max-width: 1080px;
	max-height: calc(100svh - 100px);
	overflow-y: auto;
}
.course-overview h2 {
	margin-bottom: 0.5em;
	background: var(--CourseColor);
	color: #fff;
	line-height: 1.2;
}
.course-overview h2 .en {
	display: inline-block;
	padding: 0 10px;
	font-size: min(6.4vw, 3.6rem);
	font-weight: 300;
	letter-spacing: 1px;
}
.course-overview h2 .jp {
	display: inline-block;
	padding: 0 10px;
	font-size: min(4.0vw, 2.0rem);
	font-weight: 500;
}
.course-overview h3 {
	clear: both;
	margin-bottom: 1em;
	padding: 5px 10px 5px calc(1em + 10px);
	background: #dadada;
	color: var(--CourseColor);
	font-size: min(4vw, 1.8rem);
	font-weight: 500;
	text-indent: -1em;
	line-height: 1.2;
}
.course-overview img.alignleft {
	display: block;
	width: 80%;
	height: auto;
	margin: 0 auto 1em;
}
.voice-block {
	clear: both;
	margin-bottom: 2em;
	background: var(--CourseColor);
}
.voice-block .voice-item {
	padding: 20px;
	color: #fff;
}
.voice-block .voice-item:nth-child(even) {
	background: rgba(255,255,255,0.2);
}
.voice-block .voice-item .en-title {
	margin-bottom: 10px;
	font-weight: 300;
	letter-spacing: 1px;
}
.voice-block .voice-item p:not(:has(strong)) {
	font-size: 1.3rem;
}
.voice-block .voice-item .name {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-end;
}
.voice-block .voice-item .name dt {
	position: relative;
	width: 80px;
	height: 0;
	margin-left: 1em;
	padding-top: 80px;
	border-radius: 50%;
	overflow: hidden;
}
.voice-block .voice-item .name dt img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.voice-block .voice-item .name dd {
	font-size: 1.2rem;
	line-height: 1.2;
}
.voice-block .voice-item .name dd .en {
	display: block;
	margin-top: 0.5em;
	font-size: 1.0rem;
	font-weight: 300;
}
.course-overview img {
	max-width: 100%;
	height: auto;
}
.icon-text {
	display: flex;
	align-items: center;
	line-height: 1.2;
}
.icon-text .icon {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 9em;
	height: 9em;
	margin-right: 10px;
	background: #000;
	color: #fff;
	font-size: 1.0rem;
	text-align: center;
	border-radius: 50%;
}
.icon-text .icon em {
	font-style: normal;
	font-size: min(6.4vw,3.0rem);
	font-weight: 300;
	line-height: 1.2;
}
@media all and (min-width:737px) {
	.course-overview img.alignleft {
		float: left;
		clear: left;
		max-width: 30%;
		margin: 0 20px 2em 0;
	}
	.voice-block {
		display: flex;
	}
	.voice-block .voice-item {
		flex: 1;
		padding: 44px;
	}
	.voice-block .voice-item p:not(:has(strong)) {
		font-size: 1.4rem;
	}
	.voice-block .voice-item .name {
    align-items: center;
	}
	.voice-block .voice-item .name dt {
		margin-left: 1.5em;
	}
	.voice-block .voice-item .name dd {
		font-size: 1.3rem;
	}
	.voice-block .voice-item .name dd .en {
		font-size: 1.2rem;
	}
}



