@charset "utf-8";

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,ins,kbd,q,samp,small,strong,
sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
body{line-height:1;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
nav ul{list-style:none;}
ul,ol,li,dl,dt,dd{list-style-type:none;list-style-position:outside;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
img{vertical-align:top;border:0;}
table{border-collapse:collapse;border-spacing:0;}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:0;padding:0;}
input,select{vertical-align:middle;}

html { scroll-behavior: smooth;}
/* scroll-margin-top: 80px; */	


/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/

html{
	overflow-y: scroll;
  scroll-behavior: smooth;
	font-size: 62.5%;
	height: -webkit-fill-available;
}


/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/

body{
	color: #434548;
	background: #FFF;
	font-family: "A1 Gothic R", "A1 Gothic M", "A1 Gothic L", "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
	font-size: 1.6rem;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;	
}

/* fonts */
.serif{
	font-family: "Zen Old Mincho", "HonMinSKok-L", "YuMincho","Yu Mincho","HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 300;
}
.en{
  font-family: "Gilda Display", serif;  
}
.vujahday{
  font-family: "Vujahday Script", cursive;  
}


/*--------------------------------------------------------------------------
   base link
---------------------------------------------------------------------------*/

a{
	outline: none;
}
a:link,
a:visited{
	text-decoration: none;
	color: #434548;
}

@media (hover: hover) and (pointer: fine) {
.ophover{
	transition: opacity ease .3s;	
}
.ophover:hover{
	opacity: .7;
}
}

.phone-link{
  pointer-events: none;  
}

#page-top a{
	display: block;
	transition: all 0.3s;
}


/*--------------------------------------------------------------------------
   img
---------------------------------------------------------------------------*/
img{
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;		
}

/*--------------------------------------------------------------------------
   Animation
---------------------------------------------------------------------------*/

.fade,.fade01,.fade02,.fade03,.fade04,.blur,.zoom,
.delay01,.delay02,.delay03,.delay04,.delay05 {
	transition: 1.3s;
}
.fade {
	opacity: 0;
	transform: translate(0,0); 
}
.fade01{
	opacity: 0;
	transform: translate(0,50px); 
}
.fade02 {
	opacity: 0;
	transform: translate(0,-50px); 
}
.fade03 {
	opacity: 0;
	transform: translate(-50px,0); 
}
.fade04 {
	opacity: 0;
	transform: translate(50px,0); 
}
.blur {
  -webkit-filter: blur(14px);
	filter: blur(14px);  
}
.zoom{
  transform: scale(1.1,1.1); 
}
.delay01{
	transition-delay: 0.3s;		
}
.delay02{
	transition-delay: 0.6s;		
}
.delay03{
	transition-delay: 0.9s;		
}
.delay04{
	transition-delay: 1.2s;		
}
.delay05{
	transition-delay: 1.5s;		
}

 .mv {
	opacity: 1;
  -webkit-filter: blur(0);
	filter: blur(0);
	transform: translate(0,0) scale(1,1); 
}

/* badge rotation */
@keyframes rotation{
	0%{ transform:rotate(0); }
	100%{ transform:rotate(360deg); }
}

/* baloon */
@keyframes expand-bounce{
	0% { transform: scale(0); }
	70% { transform: scale(1.1); }
	100% { transform: scale(1); }
}

/* poyon */
@keyframes poyon{
	0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
	6%  { transform: scale(0.9, 0.9) translate(0%, 5%); }
	12%  { transform: scale(1.3, 0.8) translate(0%, 10%); }
	18%  { transform: scale(0.8, 1.3) translate(0%, -10%); }
	24%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
	30% { transform: scale(1.0, 1.0) translate(0%, 0%); }
	100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}

:root{
	--maincolor: #42C8CA;
	--black: #434548;
}



/*--------------------------------------------------------------------------
   PC
---------------------------------------------------------------------------*/
.sp{
	display: none;	
}
/* box-sizing ---*/	
header, footer, main, section, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, th, td, a, span, small, strong, em, input, select, textarea, button {
	box-sizing: border-box;
}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
body::before{
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;
	display: block;
	width: 100%;
	height: 100%;
	min-height: -webkit-fill-available;
	content: "";
}
#Page{
	position: relative;
	overflow: hidden;
}
.inner{
	padding: 0 40px;
}
.layout-box{
  display: flex;
  justify-content: space-between;  
}

/* clearfix
-----------------------------------------------------------------*/
.cf:after{
	clear :both;
	content: "";
	display: block;
	height: 0;
}


/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
#Header{
	position: fixed;
	left: 0;
	top: 0;
	width: calc((100% - 580px)/2);
	height: 100%;
	min-height: -webkit-fill-available;
	display: flex;
	justify-content: center;
	align-items: center;
}
#Header h1{
	position: absolute;
	left: 25px;
	top: 15px;
}

#fixlogo{
	top: -150vh;
	display: none;
}
#fixlogo.fixed{
	position: fixed;
	display: block;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	max-width: 580px;
	width: 100%;
	background: #fff;
	padding: 10px 15px 15px;
	transition: 1s;
}
#Mv .logo a,
#fixlogo .logo a{
	display: flex;
	align-items: center;
	gap: 16px;
	transition: 1s;
	transition-delay: .5s;
}
#Mv .logo span{
	font-size: 2.8rem;
	line-height: 1.3;
	letter-spacing: .3rem;
}
#Mv .logo span small,
#fixlogo .logo span small{
	font-family: "A1 Gothic R", "A1 Gothic M", "A1 Gothic L", "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
	letter-spacing: .1rem;
}
#fixlogo .logo span{
	line-height: 1.3;
	letter-spacing: .3rem;
}
#Mv .logo span{
	font-size: 2.8rem;
}
#fixlogo .logo span{
	font-size: 2.4rem;
}
#Mv .logo span small{
	font-size: 2rem;
}
#fixlogo .logo span small{
	font-size: 1.8rem;
}



/* ---------------------------------------------------------------------------
	 #PcGnav	
	 グローバルナビゲーション
--------------------------------------------------------------------------- */
.pc-gnav{
	text-align: left;
	line-height: 1;
	letter-spacing: .05em;
}

.pc-gnav li{
	position: relative;
}

.pc-gnav li:nth-child(n+2){
	margin-top: 30px;
}
.pc-gnav li.oc-comming a {
	color: #acacac;
	pointer-events: none;;
}
.pc-gnav .en{
	display: block;
	text-transform: uppercase;
	font-size: 3.1rem;
}
.pc-gnav .ja{
	display: block;
	margin-top: 10px;
	font-size: 1.4rem;
	font-weight: 300;
}
.pc-gnav a{
	color: #434548;
	transition: .3s;
}
@media (hover: hover) and (pointer: fine) {
	.pc-gnav a:hover::before{
		position: absolute;
		left: -22px;
		content: "●";
		color: inherit;
		/* opacity: .5; */
		font-size: 8px;
		top: 1rem;
	}	
}

@media screen and (max-width: 1230px) {
	.pc-gnav .en{
		font-size: 2vw;
	}
	.pc-gnav .ja{
		display: block;
		font-size: 1vw;
	}
	.pc-gnav a:hover::before{
		top: 0.5vw;
		left: -16px;
	}
}



/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
.content{
	overflow: hidden;
	max-width: 580px;
	min-width: 375px;
	width: 100%;
	margin: 0 auto;
	/* border: solid #fff;
	border-width: 0 5px; */
	background: #F2F0EA; 
}

.marker{
	position: relative;
}
.marker span{
	position: relative;
	z-index: 5;
}
.marker::before{
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	display: block;
	width: 0;
	height: 1.2em;
	transition-duration: 1s;	
}
.marker.mv::before{
	width: 100%;
}

.sec-ttl{
	font-weight: normal;
	line-height: 1;
	text-align: center;
}
.sec-ttl .en{
	display: block;
	text-transform: uppercase;
  	font-size: 4rem;
}
.sec-ttl .ja{
	display: block;
	margin-top: 15px;
	font-size: 1.8rem;
	font-weight: 300;
}
.sec-ttl .ja.camp {
	margin: 0 auto 15px;
	font-size: 2rem;
}


.btn-reserve a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 42px;
	padding-top: 2px;
	margin: 0 auto;
	background:url(../img/common/arw_btn_w.svg) no-repeat right 20px center #42C8CA;
	background-size: 6px auto;
	border-radius: 30px;
	font-size: 1.7rem; 
	color: #fff;
	transition: .3s; 		
}
@media (hover: hover) and (pointer: fine) {
.btn-reserve a:hover{
	background-image:url(../img/common/arw_btn_bl.svg);
	background-color: #fff;
	color: #42C8CA;
	border: 1px solid #42C8CA;
}
}

.btn-blank a{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 320px;
	height: 74px;
	margin: 0 auto;
	border-radius: 100px;
	background: url(../img/common/ico_blank_w.svg) no-repeat right 20px center #5FC8CA;
	background-size: 16px auto;
	border: 1px solid #5FC8CA;
	font-size: 1.8rem;
	line-height: 1;
	letter-spacing: .15em;
	color: #fff;
	cursor: pointer;
	transition: .3s;	
}
@media (hover: hover) and (pointer: fine) {
.btn-blank a:hover{
	background: url(../img/common/ico_blank.svg) no-repeat right 20px center transparent;
	background-size: 16px auto;
	color: #5FC8CA;
}
}

.modal__trigger{
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

.modal__wrapper{
	position: fixed;
	inset: 0;
	z-index: 12001;
	display: none;
}
.modal__wrapper.js-modal_on{
	display: block;
}

.p-modal--close{
	display: inline-block;
	width: 65px;
	height: 65px;
	border-radius: 100px;
	background-color: #fff;
	color: #434548;
	text-align: center;
	position: absolute;
	top: 2vh;
	right: calc(50% - 250px);
	cursor: pointer;
}
@media(max-width: 580px){
	.p-modal--close{
		width: 50px;
		height: 50px;
		top: 3vh;
		right: 2rem;
	}
}
.p-modal--close span{
	letter-spacing: 0.025em;
	display: block;
	transition: all .3s ease;
}

.p-modal--close span::before{
	position: absolute;
	content: "×";
	display: inline-block;
	font-size: 40px;
	font-family: "A1 Gothic L", "A1 Gothic R", "A1 Gothic M", "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
	font-weight: 100;
	line-height: 0.8;
	color: #86D1D2;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: .3s;
	padding-top: .4rem;
}
@media(max-width: 580px){
	.p-modal--close span::before{
		font-size: 30px;
	}
}
@media (hover: hover) and (pointer: fine) {
.p-modal--close:hover span::before{
	transform: translate(-50%,-50%) scale(.9);
}
}

.p-modal--contentWrap{
	overflow: auto;
	height: 100vh;
	padding: 12vh 2rem 3vh 2rem;
	background: rgba(67,69,72,.5);
}

.p-modal--contentWrap .inner{
	background-color: #fff;
	border-radius: 10px;
	max-width: 500px;
	height: 80vh;
	margin: auto;
	text-align: center;
	padding: clamp(6rem,6vw,6rem) clamp(3rem,3vw,3rem);
}

@media(max-width: 580px){
	.p-modal--contentWrap .inner{
		max-width: 500px;
		height: 84vh;
		padding: clamp(4rem,4vw,4rem) clamp(1rem,1vw,1rem);
	}	
	.p-modal--contentWrap .inner div{
		padding: 0 2rem;
	}
}
.p-modal--contentWrap .inner div{
	max-width: 500px;
	height: 100%;
	overflow: auto;
}
.p-modal--contentWrap .inner div::-webkit-scrollbar{
	width: 6px;
	height: 6px;
	background: #D9D9D9;

}
.p-modal--contentWrap .inner div::-webkit-scrollbar-thumb{
	background: #5FC8CA;
	border-radius: 100px;
}


/* futurecourse
-----------------------------------------------------------------*/

.futurecourse h2{
	position: relative;
	color: #5FC8CA;
	text-align: right;
}

.futurecourse h2{
	position: relative;
}
.futurecourse h2 .en{
	font-size: 120px;
	line-height: .9;
}
.futurecourse h2 .ja{
	font-size: 4.4rem;
	letter-spacing: .3rem;
	line-height: 1.4;
}
.futurecourse h2 .ja small{
	display: block;
	font-size: 1.8rem;
	letter-spacing: 0;
	font-family: "A1 Gothic R", "A1 Gothic M", "A1 Gothic L", "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
}

.futurecourse h2 b{
	position: relative;
	display: block;
	padding: 5px 0 0;
	line-height: .9;
	margin-top: 20px;
}
.futurecourse h2 b::before{
	content: "";
	position: absolute;
	top: 0;
	right: 5px;
	height: 1px;
	width: 35px;
	background: #5FC8CA;
}

.futurecourse .txt{
	margin: 4rem 0 0;
}
.futurecourse .txt p{
	text-align: justify;
	margin: 2rem 0;
	font-size: 2rem;
}

.futurecourse .gbox{
	margin: 9rem 0 0;
}
.graph{
	margin-top: 3rem;
}
.futurecourse .gbox .balloon{
	position: relative;
	padding: 20px;
	margin: 20px 0 0;
	background: #fff;
	border-radius: 10px;
	line-height: 1.5;
	font-size: 1.6rem;
	text-align: justify;
	transform-origin: left bottom;
}

.futurecourse .gbox .balloon::before{
	position: absolute;
	left: 80px;
    top: -110px;
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-right: 40px solid #fff;
    border-top: 40px solid transparent;
    border-bottom: 36px solid transparent;
    transform: translateY(100%) rotate(-134deg);
}
.futurecourse .gbox .balloon .ttl{
	color: #00AABA;
	font-size: 2.2rem;
	margin-bottom: 1.6rem;
}
.futurecourse .gbox .balloon{
	display: flex;
	padding: 3rem;
	gap: 16px;
}
.futurecourse .gbox .balloon .__l,
.futurecourse .gbox .balloon .__r{
	width: 50%;
}

.futurecourse .gbox .balloon li{
	font-size: 1.8rem;
	position: relative;
	padding-left: 16px;
}
.futurecourse .gbox .balloon li::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 1rem;
	left: 0;
	width: 8px;
	height: 8px;
	background-color: #00AABA;
	border-radius: 15px;
}



/* exam
-----------------------------------------------------------------*/

.exam{
	padding: 135px 0 220px;
	background: #5FC8CA;
	border-radius: 0 60px 0 0;
	margin-top: -60px;
}
.exam h2{
	position: relative;
	color: #fff;
	text-align: left;
	margin-bottom: 7rem;
}
.exam h2 .en{
	  font-size: 120px;
	  line-height: .9;
}
.exam h2 .ja{
	  font-size: 4.4rem;
	  letter-spacing: .3rem;
	  line-height: 1.4;
}
.exam h2 .ja small{
	  display: block;
	  font-size: 1.8rem;
	  letter-spacing: 0;
	  font-family: "A1 Gothic R", "A1 Gothic M", "A1 Gothic L", "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
}
.exam h2 b{
	  position: relative;
	  display: block;
	  padding: 5px 0 0;
	  line-height: .9;
	  margin-top: 20px;
}
.exam h2 b::before{
	  content: "";
	  position: absolute;
	  top: 0;
	  height: 1px;
	  width: 35px;
	  background: #fff;
}
.exam h2.mb0 {
	margin-bottom: 0;
}
.exam h2.mt50 {
	margin-top: 50px;
}
.exam .txt{
	margin: 0 0 6rem;
}
.exam .txt p{
	text-align: justify;
	margin: 2rem 0;
	font-size: 2rem;
	color: #fff;
}

.exam .btn-blank a{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 400px;
	height: 74px;
	margin: 0 auto;
	border-radius: 100px;
	background: url(../img/common/ico_blank.svg) no-repeat right 20px center #fff;
	background-size: 16px auto;
	border: 1px solid #5FC8CA;
	font-size: 1.8rem;
	line-height: 1;
	letter-spacing: .15em;
	color: #5FC8CA;
	cursor: pointer;
	transition: .3s;	
}
@media (hover: hover) and (pointer: fine) {
.exam .btn-blank a:hover{
	background: url(../img/common/ico_blank_w.svg) no-repeat right 20px center #5FC8CA;
	background-size: 16px auto;
	color: #fff;
}
}



/*----------------------------------------
    grab
-----------------------------------------*/

.js-grab__scroll-img::-webkit-scrollbar{
	width: 6px;
	height: 6px;
	background: #D9D9D9;

}
.js-grab__scroll-img::-webkit-scrollbar-thumb{
	background: #434548;
	border-radius: 100px;
}

.__view-grab{display:-ms-grid;display:grid;grid-gap:5px 0;z-index:0;padding-bottom:30px;margin: 0 0 80px 40px;}
@media print,screen and (min-width:768px){
	.__view-grab{grid-gap:15px 0;padding-bottom:20px}
}
.__view-grab:before{content:"";position:absolute;top:0;bottom:0;left:50%;z-index:-1;width:100vw;margin-top:40%;background:var(--gra);-webkit-transform:translateX(-50%);transform:translateX(-50%)}
@media print,screen and (min-width:768px){
	.__view-grab:before{margin-top:28%}
}
.js-grab {
    position: relative;
}
.js-grab .js-grab-enable .js-grab__scroll {
    cursor: grab;
}
.js-grab-on .js-grab__guide {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s, visibility 0.4s;
}

.js-grab__scroll {
	position: relative;
}
.js-grab__scroll::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
}
.js-grab__scroll-img {
	overflow: auto;
	/* -ms-overflow-style: none;
	scrollbar-width: none; */
	display: grid;
	width: 100%;
}

.js-grab__scroll-img figure {
	grid-column-start: 1;
	grid-row-start: 1;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s, visibility 0.4s;
}
.js-grab__scroll-img figure._active {
	opacity: 1;
	visibility: visible;
}

.__view-grab img{
	width: 130%;
	max-width: 1200px;
	padding-bottom: 20px;
}
.__view-grab .js-grab__scroll.wide img{
	width: 200%;
	max-width: 2300px;
	padding-bottom: 20px;
}
.scroll-hint-text{ margin-top:0; }
.scroll-hint.is-right-scrollable.is-left-scrollable,
.scroll-hint.is-left-scrollable,
.scroll-hint.is-right-scrollable{ background: none;}

.exam h3{
	padding-left: 40px;
}
.exam .recommend{
	margin: 30px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.exam .recommend li{
	background: #fff;
	padding: 35px 25px;
	border-radius: 10px;
}
.exam .recommend li:nth-child(1),
.exam .recommend li:nth-child(2){
	width: calc(50% - 10px);
}
.exam .recommend li .ttl{
	font-size: 2.2rem;
	line-height: 1.4;
	position: relative;
	padding: 0 0 2rem;
    margin: 0 0 1.5rem;
}
.exam .recommend li .ttl:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 35px;
	background: #5FC8CA;
}

.exam .recommend li p{
	font-size: 1.8rem;
}




/*--------------------------------------------------------------------------
   Cv
---------------------------------------------------------------------------*/
.cv-btn-list{
	display: flex;
	flex-wrap: wrap;
}
.cv-btn-list li{
	width: 50%;
}
.cv-btn-list li:nth-child(3){
	width: 100%;
}
.cv-btn-list a{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 110px;
	transition: .3s;
}
@media (hover: hover) and (pointer: fine) {
.cv-btn-list a:hover{
	opacity: .7;
}
}
.cv-btn-list li:nth-child(1) a{
	background: #5FC8CA;
	color: #fff;
	line-height: 1;
}
.cv-btn-list li:nth-child(1) a .ico{
	margin: 0 auto 10px;
}

.cv-btn-list li:nth-child(2) a{
	background: #F5E944;
}
.cv-btn-list li:nth-child(3) a{
	height: 130px;
	background: #06C755;
}
.cv-btn-list .ico{
	display: block;
}
.cv-btn-list .ttl{
	display: block;
	margin-top: 5px;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
}
.cv-btn-list li:nth-child(2) a .ttl{
	color: #434548;
}



/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
#Footer{
	padding: 45px 0 0;
	background: #FFFBF5;
	text-align: center;
}
#Footer .logo{
	margin-bottom: 20px;
}
#Footer h2{
	margin-bottom: 15px;
	font-weight: normal;
	line-height: 1;
}
#Footer h2 small{
	display: block;
	margin-bottom: 20px;
	font-size: 1.2rem;
}
#Footer h2 strong{
	display: block;
	font-weight: normal;
	font-size: 3.6rem;
	letter-spacing: .1em;
}
#Footer .address{
	margin-bottom: 25px;
	font-size: 1.4rem;
}
#Footer .address.first {
	margin-bottom: 10px;
}
#Footer .igLink {
	width: 34px;
	margin: 0 auto;
}
#Footer .contact-info{
	position: relative;
	padding: 25px 0 45px;
}
/* #Footer .contact-info::before,
#Footer .contact-info::after{
	position: absolute;
	left: 50%;
	top: 0;
	display: block;
	width: 30px;
	height: 1px;
	content: "";
}
#Footer .contact-info::before{
	margin-left: -30px;
	background: #5FC8CA;
}
#Footer .contact-info::after{
	background: #00DFAE;
} */
#Footer .tel-main{
	margin-bottom: 15px;
	font-size: 2rem;
	line-height: 1;
}
#Footer .tel-main img {
	width: 1.75em;
	vertical-align: text-bottom;
}
#Footer .tel-main strong{
	padding-left: 5px;
	font-weight: normal;
	font-size: 3.6rem;
	letter-spacing: .05em;
}
#Footer .tel-sub{
	display: flex;
	justify-content: center;
	font-size: 1.4rem;
	letter-spacing: .05em;
}
#Footer .tel-sub a{
	margin: 0 15px;
}
#Footer .copyright{
	padding: 10px;
	background: #363434;
	color: #fff;
	font-size: 1rem;
	line-height: 1.5;
}


/*--------------------------------------------------------------------------
   FtGnav
---------------------------------------------------------------------------*/
#FtGnav{
	position: fixed;
	right: 0;
	top: 0;
	width: calc((100% - 580px)/2);
	height: 100%;
	min-height: -webkit-fill-available;	
	z-index: 10;
}

.nav-control{
	position: fixed;
	right: 25px;
	top: 0;
	display: flex;
	justify-content: center;
	width: 280px;
	padding: 12px 0 10px; 
	background: #fff;
	border-radius: 0 0 30px 30px;
	
}
.nav-control li{
	padding-top: 3px;
}
.nav-control .ico{
	display: block;
}
.nav-control .ttl{
	display: block;
	font-size: 1.1rem;
}
.nav-control a{
	display: block;
	padding: 0 10px;
	text-align: center;
	transition: .3s;
}
@media (hover: hover) and (pointer: fine) {
.nav-control a:hover{
	opacity: .7;
}
}
.btn-trigger{
	display: none;
}
.sp-gnav{
	display: none;
}
#FtGnav .btn-cv{
	display: none;
}
#FtGnav .bnr-area{
	position: absolute;
	right: 25px;
	bottom: 30px;
	display: flex;
}
#FtGnav .bnr-area h3{
	transform: translateY(-5px);
	margin-right: 15px;
}
#FtGnav .bnr-area .bnr-list li:nth-child(n+2){
	margin-top: 10px;
}
#FtGnav .bnr-area .bnr-list a{
	transition: .3s;
}
@media (hover: hover) and (pointer: fine) {
#FtGnav .bnr-area .bnr-list a:hover{
	filter: brightness(1.09);
}
}


/*--------------------------------------------------------------------------
   Modal
---------------------------------------------------------------------------*/
#ScheduleModal{
	display: none;
}
.modal-cont{
	max-width: 580px;
	height: 98svh;
	min-height: -webkit-fill-available;
	padding: 10px;
	margin: 0 auto;
	background: transparent;
}
.modal-cont{
	position: relative;
	padding: 75px 0;
	background: #F2F0EA;
	border-radius: 10px;
}
.btn-close{
	position: absolute;
	right: 20px;
	top: 20px;
	line-height: 1;
	font-size: 3rem;
	cursor: pointer;
}
.btn-close-pickup{
	position: absolute;
	right: 20px;
	top: 20px;
	background: #fff;
	color: #86D1D2;
	border-radius: 100px;
	padding: 15px;
	line-height: 1;
	font-size: 3rem;
	cursor: pointer;
}
.modal-cont .schedule-box{
	position: relative;
	height: calc(100svh - 230px);
	min-height: -webkit-fill-available;
	padding: 35px 20px;
	border-radius: 10px;
}
.modal-cont .schedule-list{
	padding: 0 10px;
	overflow: auto;
    height: 100%;
}
.modal-cont .schedule-list::-webkit-scrollbar{
	width: 6px;
	height: 6px;
	background: #fff;
}
.modal-cont .schedule-list::-webkit-scrollbar-thumb{
	background: #42C8CA;
	border-radius: 100px;
}
.modal-cont .schedule-box::-webkit-scrollbar{
   width: 5px;
}
.modal-cont .schedule-box::-webkit-scrollbar-track{
   background-color: #ccc;
}
.modal-cont .schedule-box::-webkit-scrollbar-thumb{
   background-color: #42C8CA;
}
.modal-cont h2{
	margin-bottom: 40px;
	font-size: 3rem;
	line-height: 1;
	font-weight: normal;
	text-align: center;
	color: #434548;
}




/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
  
	#Page {
		min-width: 320px;	
	}
	
	.pc{
		display: none;	
	}
	.sp{
		display: block;	
	}
	img.sp,
	br.sp{
		display: inline;
	}
	
	.phone-link{
		pointer-events: auto;  
	}
	.ophover:hover{
		opacity: 1;
	}
    .content {
        border-width: 0;
    }

/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
	.inner{
		max-width: initial;	
	}


/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
	#Header{
		display: none;
	}
	#Mv{
		padding-bottom: 40px;
	}


/* ---------------------------------------------------------------------------
	 #SpGnav	
	 グローバルナビゲーション
--------------------------------------------------------------------------- */
	#FtGnav{
		position: absolute;
		width: 100%;
		height: 0;
		min-height: unset;
	}
	#SpGnav{
		position: fixed;
		left: 0;
		top: 0;
		z-index: 10000;
		width: 100%;
		height: 100%;
		min-height: -webkit-fill-available;
		padding: 10px;
		display: none;
	}
	#SpGnav::before,
	#SpGnav::after{
		position: absolute;
		display: block;
		content: "";
		transition: .3s;
		transform-origin: right bottom;
		pointer-events: none;
	}
	/* .on #SpGnav::before{
		transform: scale(1,1);
	} */
	.on #SpGnav::after{
		transform: translateX(-50%) scale(1,1);	
	}
	#SpGnav::before{
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		min-height: -webkit-fill-available;
		background: rgba(0,0,0,.5);
	}
	#SpGnav::after{
		left: 50%;
		top: 10px;
		bottom: 10px;
		max-width: 390px;
		width: calc(100% - 20px);
		height: calc(100% - 20px);
		transform: scale(0,0);
		min-height: -webkit-fill-available;
		background: #F2F0EA;
		border-radius: 10px;
	}
	.nav-control {
			right: auto;
			top: auto;
			left: 50%;
			bottom: 0;
			transform: translateX(-50%);
			z-index: 12000;
			width: 320px;
			padding-right: 50px;
			box-shadow: 1px 1px 8px rgba(0,0,0,.15);
			border-radius: 30px 30px 0 0;
	}
	.on .nav-control {
			max-width: 390px;
			width: 100%;
			padding-right: 50px;
			box-shadow: none;
			background: transparent;
	}

	.p-gnav-box-inner{
		overflow-y: scroll;
		height: 98%;
		padding: 30px 16px;
	}

	.p-gnav-box-inner::-webkit-scrollbar{
		width: 5px;
   }
   .p-gnav-box-inner::-webkit-scrollbar-track{
		background-color: #ccc;
		border-radius: 100px;
   }
   .p-gnav-box-inner::-webkit-scrollbar-thumb{
		background-color: #42C8CA;
		border-radius: 100px;
   }

	.on .nav-control li:nth-child(1),
	.on .nav-control li:nth-child(2),
	.on .nav-control li:nth-child(3){
		display: none;
	}
	.nav-control a:hover{
		opacity: 1;
	}
	.btn-trigger{
		position: absolute;
		right: 10px;
		top: 10px;
		display: block;
		width: 52px;
		height: 52px;
		border-radius: 50%;
		background: #F2F0EA;
		cursor: pointer; 	
	}
	.on .btn-trigger{
		position: fixed;
        right: 30px;
        top: auto;
        bottom: 30px;
        background: #fff;
	}
	.btn-trigger span{
		position: absolute;
		left: 11px;
		display: block;
		width: 30px;
		height: 1px;
		background: #2C2C2C;
		transition: .3s;
	}
	.btn-trigger span:nth-child(1){
		top: 20px;
	}
	.btn-trigger span:nth-child(2){
		top: 26px;
	}
	.btn-trigger span:nth-child(3){
		top: 32px;
	}
	.on .btn-trigger span:nth-child(1){
		top: 26px;
		transform: rotate(45deg);
	}
	.on .btn-trigger span:nth-child(2){
		opacity: 0;
	}
	.on .btn-trigger span:nth-child(3){
		top: 26px;
		transform: rotate(-45deg);
	}
	.sp-gnav-box{	
		position: relative;
		z-index: 15000;
		max-width: 390px;
		width: 100%;
		height: 100%;
		margin: 0 auto;
		padding: 40px 20px 20px;
	}

	.sp-gnav-box::-webkit-scrollbar{
		width: 5px;
	 }
	 .sp-gnav-box::-webkit-scrollbar-track{
		background-color: #fff;
	 }
	 .sp-gnav-box::-webkit-scrollbar-thumb{
		background-color: #42C8CA;
		border-radius: 100px;
	}


	.sp-gnav{
		display: block;
		max-width: 325px;
		margin: 0 auto 5rem;
		line-height: 1;
		letter-spacing: .05em;
	}
	.sp-gnav li:nth-child(n+2){
		margin-top: 20px;
	}
	.sp-gnav .en{
		display: block;
		text-transform: uppercase;
		font-size: 2.2rem;
	}
	.sp-gnav .ja{
		display: block;
		margin-top: 5px;
		font-size: 1.3rem;
	}
	#FtGnav .btn-cv{
		display: block;
		max-width: 325px;
		margin: 20px auto;
	}
	#FtGnav .btn-cv a{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 60px;
		border-radius: 30px;
		background: url(../img/common/arw_btn_w.svg) no-repeat right 20px center #42C8CA;
		background-size: 8px auto;
		color: #fff;
		font-size: 1.7rem;
		letter-spacing: .05em;
	}
	#FtGnav .btn-cv.request a{
		background: url(../img/common/arw_btn.svg) no-repeat right 20px center #fff;
		background-size: 8px auto;
		color: var(--black);
	}
	#FtGnav .bnr-area {
		position: static;
		display: block;
		max-width: 325px;
		margin: 0 auto;
	}
	#FtGnav .bnr-area .bnr-list a:hover{
		filter: brightness(1);
	}
}

@media screen and (max-width: 580px) {
    .inner{
		padding: 0 20px;
	}

	.sec-ttl .en{
		display: block;
		text-transform: uppercase;
		  font-size: 4rem;
	}
	.sec-ttl .ja{
		display: block;
		margin-top: 15px;
		font-size: 1.8rem;
		font-weight: 300;
	}
	.sec-ttl .ja.camp {
		margin: 0 auto 15px;
		font-size: 2rem;
	}

	#Mv .logo span,
	#fixlogo .logo span{
		font-size: 5vw;
	}
	#Mv .logo span small,
	#fixlogo .logo span small{
		font-size: 3vw;
	}
	#fixlogo.fixed .logo img{
		width: 35px;
	}
	#fixlogo.fixed .logo span{
		font-size: 4.5vw;
	}
	#fixlogo.fixed .logo span small{
		font-size: 2.5vw;
	}

    .btn-reserve a{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 42px;
		padding-top: 2px;
		margin: 0 auto;
		background:url(../img/common/arw_btn_w.svg) no-repeat right 20px center #42C8CA;
		background-size: 6px auto;
		border-radius: 30px;
		font-size: 1.7rem; 
		color: #fff;
		transition: .3s; 		
	}



	/* futurecourse
	-----------------------------------------------------------------*/

    .futurecourse h2 .en{
		font-size: 21vw;
	}
	.futurecourse h2 .ja{
		font-size: 11vw;
	}
	.futurecourse h2 .ja small{
		font-size: 4.5vw;
	}	
	.futurecourse .txt{
		margin: 3rem 0 0;
	}
	.futurecourse .txt p{
		margin: 2rem 0;
		font-size: 1.5rem;
	}
	.futurecourse .gbox{
		margin: 6rem 0 0;
	}
	.futurecourse .gbox.delay01 .ttl{
		width: 88%;
	}
	.futurecourse .gbox .balloon{
		padding: 20px;
		margin: 40px 0 0;
		font-size: 1.6rem;
	}
	
	.futurecourse .gbox .balloon .ttl{
		font-size: 2.2rem;
		margin-bottom: 1.2rem;
	}
	.futurecourse .gbox .balloon{
		display: flex;
		padding: 3rem;
		gap: 0;
        flex-direction: column;
	}
	.futurecourse .gbox .balloon .__l,
	.futurecourse .gbox .balloon .__r{
		width: 100%;
	}
	.futurecourse .gbox .balloon .__l br,
	.futurecourse .gbox .balloon .__r br{
		display: none;
	}
	
	.futurecourse .gbox .balloon li{
		font-size: 1.4rem;
		position: relative;
		padding-left: 16px;
	}
	.futurecourse .gbox .balloon li::before{
		top: 0.5rem;
	}

	
	
	/* exam
	-----------------------------------------------------------------*/
	
	.exam{
		padding: 115px 0 160px;
	}
	.exam h2{
		margin-bottom: 5rem;
	}
	.exam h2 .en{
		  font-size: 22vw;
	}
	.exam h2 .ja{
		  font-size: 11vw;
	}
	.exam h2 .ja.sp_f10vw {
		font-size: 10vw;
	}
	.exam h2 .ja small{
		  font-size: 4.5vw;
	}
	.exam .txt{
		margin: 0 0 4rem;
	}
	.exam .txt p{
		margin: 2rem 0;
		font-size: 1.5rem;
	}
	
	.__view-grab,
	.exam .swipe_view{
		width: calc(100% - 20px);
		margin: 0 0 60px 20px;
		overflow: hidden;
	}
	.exam .swipe_view img{
		width: 130%;
		max-width: 1300px;
		padding-bottom: 20px;
	}
	
	.exam h3{
		padding-left: 20px;
	}
	.exam .recommend{
		margin: 30px 0 0;
		flex-direction: column;
		gap: 10px;
	}
	.exam .recommend li{
		padding: 35px 15px;
		border-radius: 10px;
	}
	.exam .recommend li:nth-child(1),
	.exam .recommend li:nth-child(2){
		width: 100%;
	}
	.exam .recommend li .ttl{
		font-size: 1.8rem;
	}	
	.exam .recommend li p{
		font-size: 1.4rem;
	}
	
	
	




}