@charset "UTF-8";


/*==========================================================================================

index

============================================================================================*/
/*=============================================

mainvisual

===============================================*/
.mainvisual {
	width: 100%; max-width: 1400px;
	margin: 80px auto 0;
	padding: 20px 0;
}

.mainvisual figure {
	margin: 0;
}

@media screen and (max-width: 1400px){
	.mainvisual {
		padding: 0;
	}
}



/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}
.js-fadeUp:nth-last-of-type(3n-1) {/* 2列目 */
    transition-delay: 0.2s;
}
.js-fadeUp:nth-last-of-type(3n-2) {/* 3列目 */
    transition-delay: 0.4s;
}


.visible{
position: relative;
overflow: hidden;
opacity: 0; transform: translateY(30px); }
.visible::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 101%;
	height: 100%;
	background: #000;
	background: rgba(255,255,255,0.7);
	transform-origin: right top;
	transition: 1s;
	z-index: 2;
}
.effect.visible::before {
    transform: scale(1, 0);
}
.effect {
  　animation-name: effect_anime;　/* アニメーション名 */
  　opacity: 1;　/* アニメーションが到達した状態 */
  　transition: 2.0s;　/* 0.5秒かけてアニメーションする */
  　transform: translateY(0px);　/* アニメーションが到達した状態 */
	transition-delay: 4.0s;
}
@keyframes effect_anime {
  0% {/* 初期値 */
    　opacity: 0;
    　　transform: translateY(30px);
  }
  100% {/* アニメーションが到達した状態 */
    　opacity: 1;
    　　transform: translateY(0px);
  }
}


/*=============================================

共通

===============================================*/
.index_head {
	color: #362417;
	line-height: 1.4;
	text-align: left;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	font-size: 2.4em;
	margin: 0 0 .5em;
}
.index_head .eng {
	display: block;
	font-size: .5em;
	font-weight: 600;
	line-height: 1.0;
}
.index__contents .index_head .eng_borderd {
	color: rgba(255,255,255,0);
	font-size: 4em;
	font-weight: 900;
	line-height: 1.0;
	-webkit-text-stroke: 1px #FFF;
	text-stroke: 1px #FFF;	
}

@media screen and (max-width: 640px){
	.index_head .eng_borderd {
		font-size: 2em;
	}
}




/*=============================================

index__news

===============================================*/
.index__news {
	background-color: #FFF;
	background-image: url("../images/bg_01.png");
	background-size: 100% auto;
	background-attachment: fixed;
	padding: 3em 0 8em;
	margin: 0 !important;
}

.index__news .inner { margin-top: 30px !important; }

.index__news .index_head { 
	text-align: center; }



.tbl_news {
	width: 100%;
	max-width: 840px;
	border-collapse: collapse;
	margin: 3em auto 0;
}



.tbl_news th,
.tbl_news td {
	font-size: 1.125em;
	padding: 1em 1em;
	border-bottom: dotted 1px #ccc;
	text-align: left;
	vertical-align: top;
	position: relative;
}
.tbl_news th {
	color: #36395B;
	white-space: nowrap;
	width: 20%;
}

.tbl_news td::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	content: "\f061";

	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	position: absolute; right: 0; top: 50%; transform: translateY(-50%);
}




@media screen and (max-width: 640px){
	.tbl_news {
		margin: 0 auto;
	}
	
	.tbl_news th { border-bottom: none; padding: 1em 10px 0; }
	.tbl_news td { padding: 0 10px 1em; }
	.tbl_news th,
	.tbl_news td { width: 100%; display: block; }	
	.tbl_news td::after {
		position: absolute; right: 0; top: 0; transform: translateY(0);
	}	
}


/*=============================================

index__app

===============================================*/
.index__app {
	padding: 4em 0 8em;
	margin: 0 !important;
}
.index__app .flex_s_b {
	margin: 3em auto 0;;
}
.index__app .box_app {
	background-color: #fff;
	border: solid 2px #000;
	border-radius: 5px;
	font-size: 1.125em;
	width: 48%;
	padding: 5em 1em;
	
	display:flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	transition: .3s;
}
.index__app .box_app p {
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	width: 100%;
	margin-bottom: 1em;
}
.index__app .box_app span {
	font-size: 3em;
}
.index__app .box_app img {
	width: 25%;
}
.index__app .box_app a {
	width: 100%; height: 100%;
	position: absolute; left: 0; top: 0;
	z-index: +1;
	cursor: pointer;
}
.index__app .box_app:hover {
	opacity: .6;
}

.index__app .box_app._school::before,
.index__app .box_app._individual::before {
	content: "";
	width: 100%; height: 8px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	position: absolute; left: 0; bottom: 0;
}
.index__app .box_app._school::before {
	background-color: #e60014;
}
.index__app .box_app._individual::before {
	background-color: #f09600;
}

.index__app .box_app._school::after,
.index__app .box_app._individual::after {
	content: "\f061";
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	font-size: 3em;
	
	display:flex;
	align-items: center;
	justify-content: center;	
	
	color: #fff;
	width: 19%; aspect-ratio: 1 / 1;
	border-radius: 3px;
	position: absolute; right: 0; bottom: 0;
}
.index__app .box_app._school::after {
	background-color: #e60014;
}
.index__app .box_app._individual::after {
	background-color: #f09600;
}

.index__app p.note {
	padding: 10px 0 0 52%;
}

@media screen and (max-width: 640px){
	.index__app .box_app {
		padding: 2em 1em;
	}
	.index__app .box_app._school::after,
	.index__app .box_app._individual::after {
		font-size: 1.5em;

		display:flex;
		align-items: center;
		justify-content: center;	

		color: #fff;
		width: 19%; aspect-ratio: 1 / 1;
		border-radius: 3px;
		position: absolute; right: 0; bottom: 0;
	}	
}

/*=============================================

index__faq

===============================================*/
.index__faq {
	background-color: #FFF;
	background-image: url("../images/bg_01.png");
	background-size: 100% auto;
	background-attachment: fixed;
	padding: 4em 0 8em;
	margin: 0 !important;
}

.btn_box a {
    background: #f09600;
    border-radius: 5px;
	border: solid 2px #f09600;
	color: #fff;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2em auto 0;
    max-width: 40%;
    padding: 10px 25px;
    font-size: 1.125em;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.btn_box a::before {
	content: "";
	background-color: #fff;
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	transition: 0.3s ease-in-out;
	z-index: +1;
	width: 24px;
	height: 24px;
	border-radius: 12px;
}

.btn_box a::after {
	content: "\f061";
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	color: #f09600;
    position: absolute;
    top: 50%; right: 20px; transform: translateY(-50%);
    transition: 0.3s ease-in-out;
	z-index: +2;
}
.btn_box a:hover {
    background: #fff;
	color: #f09600;
}
.btn_box a:hover::before {
    background-color: #f09600;
}
.btn_box a:hover::after {
    color: #FFF;
}

@media screen and (max-width: 640px){
	.btn_box a {
		max-width: 90%;
	}	
}