@charset "UTF-8";
/* CSS Document */

/*-----------
-----共通-----
-------------*/



@keyframes flipdown {
0% {
opacity: 0;
transform-origin: top center;
transform: rotateX(-90deg);
}
5% {
opacity: 1;
}
80% {
transform: rotateX(8deg);
}
83% {
transform: rotateX(6deg);
}
92% {
transform: rotateX(-3deg);
}
100% {
transform-origin: top center;
transform: rotateX(0deg);
}
}



@media screen and (max-width: 750px) {
#learning_style .transition, p, ul li i:before, ul li i:after {
  transition: all 0.25s ease-in-out;
}

#learning_style .flipIn, h1, ul li {
  animation: flipdown 0.5s ease both;
}

#learning_style .no-select, h2 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.learning_box{width: 90%; display: block; margin: 0 auto; padding: 0;}

.learning_box .img_title img{ width: 80%; display: block; margin: 20px auto 10px auto;}
.learning_box .nagare_sp{}
.learning_box .nagare_pc{display: none;}
.learning_box h3{ color: #f08100;}
	
#learning_style .learning_box h1, h2 {
color: #f08100;
}
#learning_style .learning_box .txt_s{font-size: 80%;color: #f08100; margin: 0;}

#learning_style .learning_box h1 {
  text-transform: uppercase;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 3px;
  font-weight: 100;
}

#learning_style .learning_box h2 {
	font-size: 150%;
	font-weight: bold;
	line-height: 130%;
	letter-spacing: 1px;
	display: block;
	background-color: #fff;
	margin: 0;
	padding: 30px;
	cursor: pointer;
	border: 1px solid #f08100;
	border-radius: 10px;
	color: #f08100;
}

#learning_style .learning_box p {
  color: #333;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
}
	
#learning_style .learning_box .sub_tit{color: #f08100; font-size: 120%; font-weight: bold;}

#learning_style .learning_box ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
#learning_style .learning_box ul li {
  position: relative;
  margin: 0;
padding: 20px 0;

}
#learning_style .learning_box ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}
#learning_style .learning_box ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
#learning_style .learning_box ul li:nth-of-type(3) {
  animation-delay: 1s;
}
#learning_style .learning_box ul li:last-of-type {
  padding-bottom: 0;
}
#learning_style .learning_box ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 54px;
  right: 16px;
}
#learning_style .learning_box ul li i:before, .learning_box ul li i:after {
  content: "";
  position: absolute;
  background-color: #f08100;
  width: 3px;
  height: 9px;
}
#learning_style .learning_box ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
#learning_style .learning_box ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
#learning_style .learning_box ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
#learning_style .learning_box ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
#learning_style .learning_box ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
#learning_style .learning_box ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

/*---卒業生インタビューSP---*/
.success_box *, .success_box *:before, .success_box *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.success_box label {
display: none;
z-index: 10;
bottom: 0;
width: 100%;
height: 50%; /* グラデーションの高さ */
cursor: pointer;
text-align: center;
/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 90%);

}
.success_box input:checked + label {
background: inherit; /* 開いた時にグラデーションを消す */
height: 0;
}
.success_box label:after {
line-height: 4.5rem;
position: absolute;
z-index: 50;
bottom: 25px;
left: 50%;
width: 16rem;
font-weight: 900;
font-family: "Font Awesome 5 Free";
content: '\f107'' 詳細を読む';
transform: translate(-50%, 0);
letter-spacing: 0.05em;
color: #ffffff;
border-radius: 50px;
background-color:#3a7dce;
}
.success_box input {
display: none;
}
.success_box .no_container {
width: 90%;
margin: 0 auto 20px auto;
display: block;
overflow: hidden;
height: auto; /* 開く前に見えている部分の高さ */
transition: all 0.5s;
line-height: 150%;
}
.success_box input:checked + label {
/* display: none ; 閉じるボタンを消す場合解放 */
}
.success_box input:checked + label:after {
font-weight: 900;
font-family: "Font Awesome 5 Free";
content: '\f106'' 閉じる';
}
.success_box input:checked ~ .no_container {
height: auto;
padding-bottom: 140px; /* 閉じるボタンのbottomからの位置 */
transition: all 0.5s;
}
	
/*---在校生にインタビュー SP---*/	
#nagare_area{width: 90%; margin: 40px auto; display: block; }
	#nagare_area h3{
		line-height: 150%;
	}
.itv_sp{display: block;margin: 40px auto 0 auto;}
.itv_pc{display: none;}

.qa_box *, .qa_box *:before, .qa_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.qa_box {position: relative;}

	.qa_box label {
	position: absolute;
	display: inline-block;
	z-index: 10;
	bottom: 0;
	width: 100%;
	height: 100%;  /*グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}
.qa_box input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
	height: 0;
}
.qa_box label:after {
	line-height: 5.5rem;
	position: absolute;
	z-index: 50;
	bottom: -5px;
	/*left: 40%;*/
	width: 16rem;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	content: '\f107'' 詳細を読む';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #ffffff;
	border-radius: 50px;
	background-color:#ff638a;
}
.qa_box input {
	display: none;
}
.qa_box .no_container {
width: 90%;
margin: 0 auto;
display: block;
overflow: hidden;
height: 265px; /* 開く前に見えている部分の高さ */
transition: all 0.5s;
line-height: 150%;
	font-size: 110%;
}
.qa_box input:checked + label {
	/* display: none ; 閉じるボタンを消す場合解放 */
}
.success_box input:checked + label:after {
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	content: '\f106'' 閉じる';
}
.qa_box input:checked ~ .no_container {
	height: auto;
	padding-bottom: 100px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}
.qa_box .box_message{ width: 80%; display: block; margin: 0 auto 70px auto; background-color: #ffffff; padding: 5px; line-height: 150%;}
.qa_box .box_message h3{border-bottom: #1660ab solid 2px; }

/* 学びを支える学習ガイダンス SP*/	
	#guidance{
		background-color: #ebf7ec;
	}
	.guidance_box{
		width: 90%;
		margin: 0 auto;
		padding: 20px 0;
		line-height: 160%;
		font-size: 110%;
	}
	.guidance_box img{
		width: 70%;
		margin: 0 auto;
		padding: 40px 0;
		display: block;
	}
	#guidance .img_title img{
		width: 80%;
		display:block;
		margin: 0 auto;
	}
	
#guidance .transition, p, ul li i:before, ul li i:after {
  transition: all 0.25s ease-in-out;
}

#guidance .flipIn, h1, ul li {
  animation: flipdown 0.5s ease both;
}

#guidance .no-select, h2 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
	


	
#guidance .guidance_box h1, h2 {
  color: #00A464;
}
	
#guidance .guidance_box .txt_s{font-size: 60%; color: #00A464; margin: 0;}

#guidance .guidance_box h1 {
  text-transform: uppercase;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 3px;
  font-weight: 100;
}


#guidance .guidance_box h2 {
	font-size: 26px;
	line-height: 34px;
	font-weight: 300;
	letter-spacing: 1px;
	display: block;
	background-color: #fff;
	margin: 0;
	padding: 25px;
	cursor: pointer;
	border: 1px solid #00A464;
	border-radius: 10px;
	color: #00A464;
}

#guidance .guidance_box p {
  color: #333;
  font-size: 100%;
  line-height: 160%;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
}
#guidance .guidance_box .sub_tit{color: #00A464; font-size: 130%; font-weight: bold;}


#guidance .guidance_box ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0 auto;
}
#guidance .guidance_box ul li {
  position: relative;
  padding: 0;
  margin: 0;
padding: 20px 0;
}
#guidance .guidance_box ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}
#guidance .guidance_box ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
#guidance .guidance_box ul li:nth-of-type(3) {
  animation-delay: 1s;
}
#guidance .guidance_box ul li:last-of-type {
  padding-bottom: 0;
}
#guidance .guidance_box ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 55px;
  right: 15px;
}
#guidance .guidance_box ul li i:before, .guidance_box ul li i:after {
  content: "";
  position: absolute;
  background-color: #00A464;
  width: 3px;
  height: 9px;
}
#guidance .guidance_box ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
#guidance .guidance_box ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
#guidance .guidance_box ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
#guidance .guidance_box ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
#guidance .guidance_box ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
#guidance .guidance_box ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

}

/* -----------PC----------- */
@media screen and (min-width: 751px){
#learning_style .transition, p, ul li i:before, ul li i:after {
  transition: all 0.25s ease-in-out;
}

#learning_style .flipIn, h1, ul li {
  animation: flipdown 0.5s ease both;
}

#learning_style .no-select, h2 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
	
.learning_box{width: 90%; display: block; margin: 0 auto 30px auto; padding: 0;}
.learning_box .img_title img{ width: 60%; display: block; margin: 20px auto;}
.learning_box .nagare_sp{display: none;}
.learning_box .nagare_pc{}

	
#learning_style .learning_box h1, h2 {
  color: #f08100;
}
	
#learning_style .learning_box .txt_s{font-size: 60%; color: #f08100; margin: 0;}

#learning_style .learning_box h1 {
  text-transform: uppercase;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 3px;
  font-weight: 100;
}


#learning_style .learning_box h2 {
	font-size: 26px;
	line-height: 34px;
	font-weight: 300;
	letter-spacing: 1px;
	display: block;
	background-color: #fff;
	margin: 0;
	padding: 25px;
	cursor: pointer;
	border: 1px solid #f08100;
	border-radius: 10px;
	color: #f08100;
}

#learning_style .learning_box p {
  color: #333;
  font-size: 110%;
  line-height: 160%;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
}
#learning_style .learning_box .sub_tit{color: #f08100; font-size: 130%; font-weight: bold;}


#learning_style .learning_box ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
#learning_style .learning_box ul li {
  position: relative;
  padding: 0;
  margin: 0;
padding: 20px 0;
}
#learning_style .learning_box ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}
#learning_style .learning_box ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
#learning_style .learning_box ul li:nth-of-type(3) {
  animation-delay: 1s;
}
#learning_style .learning_box ul li:last-of-type {
  padding-bottom: 0;
}
#learning_style .learning_box ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 48px;
  right: 10px;
}
#learning_style .learning_box ul li i:before, .learning_box ul li i:after {
  content: "";
  position: absolute;
  background-color: #f08100;
  width: 3px;
  height: 9px;
}
#learning_style .learning_box ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
#learning_style .learning_box ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
#learning_style .learning_box ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
#learning_style .learning_box ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
#learning_style .learning_box ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
#learning_style .learning_box ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}
	
	
/* 卒業生にインタビュー*/
.success_box *, .success_box *:before, .success_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.success_box label {
	display: none;
position: absolute;
z-index: 10;
bottom: 0;
width: 100%;
height:50%; /* グラデーションの高さ */
cursor: pointer;
text-align: center;
/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 90%);

}

.success_box input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
	height: 0;
}
.success_box label:after {
	line-height: 4.5rem;
	position: absolute;
	z-index: 50;
	bottom: 30px;
	/* left: 40%; */
	width: 16rem;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	content: '\f107'' 詳細を読む';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #ffffff;
	border-radius: 50px;
	background-color:#3a7dce;
}
.success_box input {
	display: none;
}
.success_box .no_container {
	width: 100%;
	margin: 0 auto;
	display: block;
	overflow: hidden;
	/*height: 185px;  開く前に見えている部分の高さ */
	transition: all 0.5s;
	line-height: 175%;
	
}
.success_box input:checked + label {
	/* display: none ; 閉じるボタンを消す場合解放 */
}
.success_box input:checked + label:after {
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	content: '\f106'' 閉じる';
}
.success_box input:checked ~ .no_container {
	height: auto;
	padding-bottom: 100px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}
	
/*---在校生にインタビュー PC---*/	
	#nagare_area{width: 40%; margin: 0 auto; display: block; }
	#nagare_area .tit_nagare{
	width: 90%;
	margin: 40px auto;
	}
	#nagare_area h3{
		line-height: 150%;
		text-align: center;
		font-weight: normal;
	}
.itv_sp{display: none;}
.itv_pc{display: block;margin: 40px auto 0 auto;}

.qa_box *, .qa_box *:before, .qa_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.qa_box {position: relative;}
	.qa_box img{
		width: 65%;
		display: block;
		margin: 0 auto;
	}	
	.qa_box label {
	position: absolute;
	display: inline-block;
	z-index: 10;
	bottom: 0;
	width: 100%;
	height: 100%;  /*グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}
.qa_box input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
	height: 0;
}
.qa_box label:after {
	line-height: 5.2rem;
	position: absolute;
	z-index: 50;
	bottom: 1px;
	/*left: 40%;*/
	width: 16rem;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	content: '\f107'' 詳細を見る';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #ffffff;
	border-radius: 50px;
	background-color:#ff638a;
}
.qa_box input {
	display: none;
}
.qa_box .no_container {
	margin: 20px auto;
	display: block;
	overflow: hidden;
	height: 200px; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
	line-height: 175%;
	
}
.qa_box input:checked + label {
	/* display: none ; 閉じるボタンを消す場合解放 */
}
.qa_box input:checked + label:after {
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	content: '\f106'' 閉じる';
}
.qa_box input:checked ~ .no_container {
	height: auto;
	padding-bottom: 100px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}
.qa_box .box_message{ width: 80%; display: block; margin: 0 auto 70px auto; background-color: #ffffff; padding: 5px; line-height: 150%;}
.qa_box .box_message h3{border-bottom: #1660ab solid 2px; }
	
/* 学びを支える学習ガイダンス PC*/	
	#guidance{
		background-color: #ebf7ec;
	}
	.guidance_box{
		width: 60%;
		margin: 0 auto;
		padding:0 0 40px 0;
		line-height: 160%;
		
	}
	.guidance_box img{
		width: 25%;
		margin: 0 auto;
		padding: 20px 0;
		display: block;
	}
	
	#guidance .img_title img{
		width: 60%;
		display:block;
		margin: 0 auto;
	}	
#guidance .transition, p, ul li i:before, ul li i:after {
  transition: all 0.25s ease-in-out;
}

#guidance .flipIn, h1, ul li {
  animation: flipdown 0.5s ease both;
}

#guidance .no-select, h2 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
	


	
#guidance .guidance_box h1, h2 {
  color: #00A464;
}
	
#guidance .guidance_box .txt_s{font-size: 60%; color: #00A464; margin: 0;}

#guidance .guidance_box h1 {
  text-transform: uppercase;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 3px;
  font-weight: 100;
}


#guidance .guidance_box h2 {
	font-size: 140%;
	line-height: 34px;
	font-weight: 300;
	letter-spacing: 1px;
	display: block;
	background-color: #fff;
	margin: 0;
	padding: 25px;
	cursor: pointer;
	border: 1px solid #00A464;
	border-radius: 10px;
	color: #00A464;
}

#guidance .guidance_box p {
  color: #333;
  font-size: 110%;
  line-height: 160%;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
}
#guidance .guidance_box .sub_tit{color: #00A464; font-size: 130%; font-weight: bold;}


#guidance .guidance_box ul {
	width: 70%;
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0 auto;
}
#guidance .guidance_box ul li {
  position: relative;
  padding: 0;
  margin: 0;
padding: 20px 0;
}
#guidance .guidance_box ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}
#guidance .guidance_box ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
#guidance .guidance_box ul li:nth-of-type(3) {
  animation-delay: 1s;
}
#guidance .guidance_box ul li:last-of-type {
  padding-bottom: 0;
}
#guidance .guidance_box ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 42px;
  right: 15px;
}
#guidance .guidance_box ul li i:before, .guidance_box ul li i:after {
  content: "";
  position: absolute;
  background-color: #00A464;
  width: 3px;
  height: 9px;
}
#guidance .guidance_box ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
#guidance .guidance_box ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
#guidance .guidance_box ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
#guidance .guidance_box ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
#guidance .guidance_box ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
#guidance .guidance_box ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}
	
}
