@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{font-size:0; padding: 0; margin: 0;}
.learning_box .img_title img{ width: 80%; display: block; margin: 40px auto;}
.learning_box .nagare_sp{}
.learning_box .nagare_pc{display: none;}
	
	#learning_style .learning_box h1, h2 {
  color: #563a81;
}

#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: 130%;
	font-weight: bold;
	letter-spacing: 1px;
	display: block;
	background-color: #fff;
	margin: 0;
	padding: 30px 40px;
	cursor: pointer;
	border: 1px solid #563a81;
	border-radius: 10px;
	color: #563a81;
	line-height: 1.4em;
}

#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 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: 17%;
  right: 16px;
}
#learning_style .learning_box ul li i:before, .learning_box ul li i:after {
  content: "";
  position: absolute;
  background-color: #563a81;
  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 {
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: 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:#FF73A3;
}
.success_box input {
display: none;
}
.success_box .no_container {
width: 86%;
margin: 0 auto;
display: block;
overflow: hidden;
height: 265px; /* 開く前に見えている部分の高さ */
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;
}

}

/* -----------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: 60%; display: block; margin: 0 auto; padding: 0;}
.learning_box .img_title{font-size:0; padding: 0; margin: 0;}
.learning_box .img_title img{ width: 60%; display: block; margin: 40px auto;}
.learning_box .nagare_sp{display: none;}
.learning_box .nagare_pc{}

	
#learning_style .learning_box h1, h2 {
  color: #563a81;
}

#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: 20px;
	cursor: pointer;
	border: 1px solid #563a81;
	border-radius: 10px;
	color: #563a81;
}

#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 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: 30px;
  right: 10px;
}
#learning_style .learning_box ul li i:before, .learning_box ul li i:after {
  content: "";
  position: absolute;
  background-color: #563a81;
  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 {
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:#FF73A3;
}
.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;
}	
	
}
