@charset "utf-8";

/* ---------------------------------------- 
 - section_ttl（共通）
---------------------------------------- */
/* section_ttl */
.section_ttl {
	margin-bottom: 60px;
	text-align: center;
}
.section_ttl .en {
	display: block;
	margin-bottom: 10px;
}
.section_ttl .en img {
	height: 120px;
	width: auto;
	margin: auto;
}
.section_ttl .jp {
	font-size: 3.6rem;
	line-height: 1.6;
	display: block;
	font-weight: 700;
}
.section_ttl.sub {
	font-size: 3.6rem;
	line-height: 1.6;
	display: block;
	font-weight: 700;
	margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
	.section_ttl .en img {
		height: 11vw;
	}
	.section_ttl .jp {
		font-size: 3.2vw;
	}
	.section_ttl.sub {
		font-size: 3.2vw;
	}
}
@media screen and (max-width: 768px) {
	.section_ttl {
		margin-bottom: 35px;
	}
	.section_ttl .en img {
		height: 12vw;
	}
	.section_ttl .jp {
		font-size: 4.6vw;
	}
	.section_ttl.sub {
		font-size: 4.6vw;
		margin-bottom: 20px;
	}
}

/* ---------------------------------------- 
 - anime（共通）
---------------------------------------- */
.section .is-scroll{
	display: none;
}
.section .is-scroll.is-active {
	display: block;
}
.section .scroll-up {
	display: none;
	transform: rotate(180deg);
}
.section .scroll-up.is-active {
	display: block;
}
.scroll_end {
	width: 65%;
   /* max-width: 1300px;*/
    position: absolute;
	bottom: 0;
    height: 30vw;
}
/* obj_box */
.section .obj_box {
	text-align: center;
	width:100%;
	position: absolute;
    bottom: 0;
	height: 37vw;
	border-bottom: solid 1px #00;
}
.section .obj_box .obj {
	visibility: hidden;
	width: 15vw;
	max-width:200px;
	transition-duration:.6s;
}
/* 紙飛行機を枠外で待機 */
.section.left .obj_box .obj { /* left */
  position: absolute;
  left: 0;
	transform:translate(-200px,0) rotate(0deg);
}
.section.right .obj_box .obj { /* right */
  position: absolute;
  left: 100%;
	transform:translate(200px,0) scale(-1, 1) rotate(0deg);
}
/* 紙飛行機を下に向ける */
.section.left .obj_box.is-active .obj { /* left */
	visibility: visible;
	/*transform:translate(-200px,0) rotate(15deg);*/
}
.section.right .obj_box.is-active .obj { /* right */
	visibility: visible;
	/*transform:translate(200px,0) scale(-1, 1) rotate(15deg);*/
}
/* 紙飛行機を移動させる */
.section.left .obj_box.is-active .obj { /* left */
  bottom: 28vw;
  animation-name: rightDown;
  animation-duration: 1.4s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes rightDown {
	0% {
    left: 0; bottom:28vw;
		transform:translate(-200px,0) rotate(0deg);
  }
	20% {
		transform:translate(0,0) rotate(15deg);
  }
	50% {
		transform:translate(0,5vw) rotate(0deg);
  }	
  100% {
    left: 100%; bottom:0;
	  transform:translate(0,-10vw) rotate(-15deg);
  }
}
.section.right .obj_box.is-active .obj { /* right */
  bottom: 28vw;
  animation-name: leftDown;
  animation-duration: 1.4s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes leftDown {	
	0% {
    left: 100%; bottom:28vw;
		transform:translate(0,0) scale(-1, 1) rotate(0deg);
  }
	20% {
		transform:translate(-15vw,0) scale(-1, 1) rotate(15deg);
  }
	50% {
		transform:translate(-15vw,5vw) scale(-1, 1) rotate(0deg);
  }	
  100% {
    left: 0; bottom:0;
	  transform:translate(-15vw,-10vw) scale(-1, 1) rotate(-15deg);
  }
}
.section .obj_box .obj img {
	width: 100%;
	animation: drone-animation 1.2s infinite alternate ease-in-out;
}
@keyframes drone-animation {
	0% {
		transform:translate(0,0);
	}
	100% {
		transform:translate(0,20px);
	}
}

/* end */
.section.end .obj_box {
	width: 100%;
	height: 30vw;
}
.section .obj_box .obj img {
    width: 100%;
    animation: none;
}
/* 紙飛行機を枠外で待機（end） */
.section.end .obj_box .obj { /* end */
  position: absolute;
  left: 0;
	transform:translate(-200px,0) rotate(15deg);
}
/* 紙飛行機を上に向ける（end） */
.section.end .obj_box.is-active .obj { /* end */
	visibility: visible;
	/*transform:translate(-200px,0) rotate(0deg);*/
}
/* 紙飛行機を移動させる（end） */
.section.end .obj_box.is-active .obj { /* end */
	width: 18%;
	margin-left: -1%;
	/*max-width: 150px;*/
	/*bottom: 24vw;*/
	animation-name: rightUp;
	animation-duration: 1.4s;
	animation-iteration-count: 1;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	/*left: 100%;
	bottom:26vw;*/
}
@keyframes rightUp {
	0% {
		width: 22%;
		left: 0; bottom:0;
		transform:translate(-200px,0) rotate(45deg);
  }
	40% {
		transform:translate(0,0) rotate(30deg);
  }	
	100% {
		width: 18%;
		left: 100%; bottom:0;
		transform:translate(0,-24vw) rotate(0deg) scale(0.8);
  }
}

/* mask */
.section .mask_img {
	display: none;
}
.section .mask {
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  font-weight: bold;
	position: absolute;
    bottom: 0;
    z-index: -1;
}
.section.end .mask { /* end */
    width: 100%;
}
.section .mask_anime {
  width: 100%;
}
.section .mask_anime_obj {
	width: 100%;
  display: block;	
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  mask-size: 250% 250%;
  mask-repeat: no-repeat;
  mask-position: 130% 130%;
}
.section .mask_anime_obj.is-active {
	animation: mask-animation 1.8s ease-in-out forwards;
	animation-delay: 0.2s;
}
.section.end .mask_anime_obj.is-active { /* end */
    animation: mask-animation 1.4s ease-in-out forwards;
	animation-delay: 0.4s;
}
.section.right .mask_anime { /* right */
	display: flex;
    justify-content: end;
}
.section.right .mask_anime_obj { /* right */
	transform: scale(-1, 1);
}
@keyframes mask-animation {
  0% {
    mask-position: 130% 130%;
  }	
  20% {
    mask-position: 100% 50%;
  }
  100% {
    mask-position: 0 0;
  }
}
@media screen and (max-width: 768px) {
	.scroll_end {
		position: relative;
		margin-left: -15%;
	}
}

/* android対応 */
.android .section .mask_anime_obj {
	mask-image: none !important;
}
.android .section.left .mask_img{
	display: block;
	position: absolute;
	top: 0;
	left: -20vw;
	width: 120vw;
}
.android .section.right .mask_img{
	display: block;
	position: absolute;
	top: 0;
	right: -20vw;
	width: 120vw;
}
.android .section.end .mask_img{
	display: block;
	position: absolute;
	top: 0;
	left: -20vw;
	width: 120vw;
}
.android .section.right .mask_img img{
	transform: scale(-1, 1);
}
.android .section.left .mask_img.is-active {
	animation: mask-img-left 1.8s ease-in-out forwards;
	animation-delay: 0.2s;
}
.android .section.right .mask_img.is-active { /* right */
	animation: mask-img-right 1.8s ease-in-out forwards;
}
.android .section.end .mask_img.is-active { /* end */
    animation: mask-img-left 1.4s ease-in-out forwards;
	animation-delay: 0.4s;
}
@keyframes mask-img-left {
  0% {
	  left: 0;
	  transform:translate(-20vw,0);
  }	
  20% {
    transform:translate(-10vw,0);
  }
  100% {
	  transform:translate(120vw,0);
  }
}
@keyframes mask-img-right {
  0% {
	  right: 0;
	  transform:translate(20vw,0);
  }	
  20% {
	transform:translate(10vw,0);
  }
  100% {
	  transform:translate(-120vw,0);
  }
}


/* ---------------------------------------- 
 - mainvisual
---------------------------------------- */
#mainvisual {
	width: 100%;
	box-sizing: border-box;
	margin: auto;
	position: relative;
	background: #195ffb;
}
#animation_container,
#canvas {
	display: block;
	margin: 0 auto;
	width: 100vw !important;
	height: 58.56vw !important;
}
#animation_container_sp,
#canvas_sp {
	display: none;
}
#mainvisual .mainvisual_visual img,
#mainvisual .mainvisual_visual picture{
    width: 100%;
}
#mainvisual .catch {
	position: absolute;
    top: 18vw;
    left: 14vw;
    font-size: 2.9vw;
    line-height: 1.7;
    font-weight: 500;
    color: #fff;
}
#mainvisual .catch span {
	opacity: 0;
}
#mainvisual .catch.is-show span {
	opacity: 1;	
	transition: opacity .8s 3.0s;
}
#mainvisual .txt {
	position: absolute;
	bottom: 13vw;
    right: 5vw;
    font-size: 1.75vw;
    line-height: 1.7;
    font-weight: 500;
    color: #fff;
}
#mainvisual .txt span {	
	opacity: 0;
}
#mainvisual .txt.is-show span {
	opacity: 1;
	transition: opacity .8s 4.2s;
}
@media screen and (max-width: 768px) {
	#animation_container,
	#canvas {
		display: none;
	}
	#animation_container_sp,
	#canvas_sp {	
		display: block;
		margin: 0 auto;
		width: 100vw !important;
		height: 129.3333vw !important;
	}
	#mainvisual .catch {
		top: 38vw;
		left: 6vw;
		font-size: 4.7vw;
	}	
	#mainvisual .catch.is-show span {
		transition: opacity .8s 2.3s;
	}	
	#mainvisual .txt {
		bottom: 33vw;
		right: 4vw;
		font-size: 2.9vw;
	}
	#mainvisual .txt.is-show span {
		transition: opacity .8s 3.0s;
	}
}

/* ---------------------------------------- 
 - message
---------------------------------------- */
#message {
	margin:0 auto;
	width: 100%;
	position: relative;
	padding-bottom: 30vw;
}
#message #message_inner {
    width:100%;
	margin: 0 auto;
	text-align: center;	
}
.message_lead {
	width:100%;
	padding: 115px 3% 120px;
	background: #195ffb;
	color: #fff;
	font-size: 2.6rem;
	line-height: 2.2;
	box-sizing: border-box;
}
.message_lead .txt {
	text-align: left;
	display: inline-block;
}
.message_logo {
	padding-top: 80px;
	max-width: 433px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	#message {
		padding-bottom: 40vw;		
		padding-top: 50px; /* アンカーリンク対策 */
		margin-top:-50px; /* アンカーリンク対策 */
	}
	.message_lead {
		padding: 8.5vw 3% 60px;
		font-size: 3.2vw;
		line-height: 2.8;
		letter-spacing: 0;
	}
	.message_logo {
		padding-top: 50px;
		width: 60%;
	}
}

/* course_menu */
.course_menu {
	
}
.course_menu .ttl {
	margin: 90px auto 40px;
	text-align: center;
	font-size: 4.4rem;
	line-height: 1.6;
	font-weight: 700;
}
.course_menu .ttl span {
	position: relative;
	padding-bottom: 5px;
}
.course_menu .ttl span::before {
    position: absolute;
    bottom: 0;
    content: '';
    background: #222;
    display: inline-block;
    width: 100%;
    height: 3px;
}
.course_menu .anchor{
	width: 90%;
	max-width: 960px;
	margin: 15px auto 100px;
}
.course_menu .anchor dl {
	margin-bottom: 10px;
}
.course_menu .anchor dl dt {
	color: #fff;
	font-size: 2.9rem;
	font-weight: bold;
	text-align: center;
	margin: 0 auto;
    background: #681cf9;
    line-height: 65px;
    min-height: 65px;
}
.course_menu .anchor dl dt > span {
	font-size: 2.2rem;
	font-weight: normal;
}
.course_menu .anchor dl.course_01 dt { /* course_01 */
	background: #681cf9;
}
.course_menu .anchor dl.course_02 dt { /* course_02 */
	background: #00ba6a;
}
.course_menu .anchor dl.course_03 dt { /* course_03 */
	background: #88d600;
}
.course_menu .anchor dl.course_04 dt { /* course_04 */
	background: #f71ed8;
}
.course_menu .anchor dl.course_05 dt { /* course_05 */
	background: #1ec4f7;
}
.course_menu .anchor dl dd {
	padding: 12px 15px 0;
}
.course_menu .anchor dl.course_01 dd { /* course_01 */
	background: #a783ed;
}
.course_menu .anchor dl.course_02 dd { /* course_02 */
	background: #3bc387;
}
.course_menu .anchor dl.course_03 dd { /* course_03 */
	background: #a4e03b;
}
.course_menu .anchor dl.course_04 dd { /* course_04 */
	background: #f965e4;
}
.course_menu .anchor dl.course_05 dd { /* course_05 */
	background: #49d4ff;
}
.course_menu .anchor dl dd ul.list {
	display: flex;
	justify-content:space-between;
	flex-wrap: wrap;
}
.course_menu .anchor dl dd ul.list li {
	width: calc(50% - 7px);
	margin-bottom: 12px;
	background: #fff;
}
.course_menu .anchor dl dd ul.list li a {
	display: flex;
	align-items: center;
	background: #fff;
	width: 100%;
	padding: 5px 12px;
	text-decoration: none;
	font-size: 2.1rem;
	font-weight: bold;
	cursor:pointer;
	transition: .3s;
	line-height: 1.4;
	position: relative;
}
.course_menu .anchor dl dd ul.list li a::before {
    position: absolute;
    top: 50%;
    right: 20px;
    margin: auto;
    content: "";
    vertical-align: middle;
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border-left: 2px solid #222;
    border-bottom: 2px solid #222;
    transform: translate(0, -50%) rotate(-135deg);
}
.course_menu .anchor dl dd ul.list li a:hover {
	opacity: 0.7;
}
.course_menu .anchor dl dd ul.list li .ico {
	width: 40px;
	margin-right: 5px;
}
@media screen and (max-width: 768px) {
	.course_menu .ttl {
		margin: 10vw auto 5vw;
		font-size: 6vw;
	}
	.course_menu .anchor{
		margin: 0 auto 20px;
	}
	.course_menu .anchor dl dt {
		font-size: 4.5vw;
		line-height: 9vw;
		min-height: 9vw;
	}
	.course_menu .anchor dl dt > span {
		font-size: 3.6vw;
	}
	.course_menu .anchor dl dd ul.list li a {
		font-size: 2.0vw;
	}
	.course_menu .anchor dl dd ul.list li a::before {
		right: 15px;
		width: 10px;
		height: 10px;
	}
	.course_menu .anchor dl dd ul.list li .ico {
		width: 6.5vw;
	}
}
@media screen and (max-width: 480px) {
	.course_menu .anchor{
		margin: 0 auto 20px;
	}
	.course_menu .anchor dl {
		margin-bottom: 5px;
	}
	.course_menu .anchor dl dt {
		font-size: 4.5vw;
		line-height: 45px;
		min-height: 45px;
	}
	.course_menu .anchor dl dt > span {
		font-size: 3.6vw;
	}
	.course_menu .anchor dl dd {
		padding-bottom: 12px;
	}
	.course_menu .anchor dl dd ul.list {
		display: block;
	}
	.course_menu .anchor dl dd ul.list li {
		width: 100%;
		margin-bottom: 10px;
	}
	.course_menu .anchor dl dd ul.list li:last-child {
		margin-bottom: 0;
	}
	.course_menu .anchor dl dd ul.list li a {
		font-size: 3.6vw;
	}
	.course_menu .anchor dl dd ul.list li .ico {
		width: 7.8vw;
	}
}



/* ---------------------------------------- 
 - movie
---------------------------------------- */
#movie {
	margin:0 auto;
	width: 100%;
	position: relative;
	padding: 125px 0 37vw;
}
#movie #movie_inner {
    width:94%;
	max-width: 1400px;
	margin: 0 auto;
}
.movie_box {
	width:100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 110px;
	position: relative;
}
.movie_box .target { /* アンカーリンク対策 */
	position: absolute;
	top: 50%;
	transform: translateY(-50vh);
}
.movie_box:nth-child(odd) {
	flex-direction: row-reverse;
}
.movie_box:last-child {
	margin-bottom: 0;
}
.movie_box .movie_visual {
	width:56%;
	max-width: 720px;
	position: relative;
}
.movie_box .movie_visual::before {
	position: absolute;
    z-index: 2;
    top: -20px;
    left: 20px;
    content: '';
    background: #7f7f7f;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.movie_box .movie_visual a {
    position: relative;
    display: block;
	color:#555 !important;
	text-decoration:none;
}
.movie_box .movie_visual a::before {
    position: absolute;
	top: 50%;
    left: 50%;
	transform: translate(-50%,-50%); 
	content: '';
    transition: .3s;
    z-index: 2;	
	background-image: url(../images/top/movie_arw.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 12vw;
	max-width: 160px;
	height: 12vw;
	max-height: 160px;
}
.movie_box .movie_visual a:hover::before {
	opacity: .7;
}
.movie_box .movie_ttl {
	width:40%;
	margin-bottom: 10px;
	line-height: 1.8;
}
.movie_box:nth-child(odd) .movie_ttl {
	text-align: right;
}
.movie_box .movie_ttl .catch {
	font-size: 1.8rem;
	font-weight: 700;
}
.movie_box .movie_ttl .ttl {
	font-size: 3.6rem;
	color:#7f7f7f;
	position: relative;
	padding-left: 60px;
	display: inline-block;
}
.movie_box .movie_ttl .ttl::before {
    background: #7f7f7f;
    content: "";
    position: absolute;
    width: 45px;
    height: 1px;
    left: 0;
    top: 0;
	bottom: 0;
	margin: auto;
}
@media screen and (max-width: 768px) {
	#movie {
		padding: 70px 0 35vw;
	}
	.movie_box {
		display: block;
		margin-bottom: 40px;
	}
	.movie_box .movie_visual {
		width:92%;
		margin: auto;
	}
	.movie_box .movie_visual::before {
		top: -10px;
		left: 10px;
	}
	.movie_box:nth-child(odd) .movie_visual::before {
		left: -10px;
	}
	.movie_box .movie_visual a::before {
		width: 20vw;
		height: 20vw;
	}
	.movie_box .movie_ttl {
		width:92%;
		margin: 20px auto 10px;
	}
	.movie_box:nth-child(odd) .movie_ttl {
		text-align: left;
	}
	.movie_box .movie_ttl .catch {
		font-size: 1.3rem;
	}
	.movie_box .movie_ttl .ttl {
		font-size: 2rem;
		font-weight: 700;
		padding-left: 40px;
	}
	.movie_box .movie_ttl .ttl::before {
		width: 30px;
		height: 1px;
	}
}

/* ---------------------------------------- 
 - feature
---------------------------------------- */
#feature {
	margin:0 auto;
	width: 100%;
	position: relative;
	padding: 125px 0 50px;
}
#feature #feature_inner {
    width:100%;
	margin: 0 auto;
	text-align: center;
}
#feature_learning {
	padding-top: 100px;
    margin-top: -100px;
}
#feature .feature_lead {
    width:100%;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}
#feature .feature_lead ul.list {
	position: absolute;
	top:0;
	bottom: 0;
	left:0;
	right: 0;
	margin: auto;
	display: flex;
	align-items:center;
	justify-content: center;
	flex-wrap: wrap;
}
#feature .feature_lead ul.list li {
	padding: 13px;
}
#feature .feature_lead ul.list li span {
	font-size: 4.0em;
	line-height: 1.4;
	font-weight: 700;
	color:#fff;
	background: #7f7f7f;
	padding: 0 10px;
	display: inline-block;
}
#feature .feature_lead ul.list li:nth-child(1) {
	width: 100%;
	margin-top: auto;
}
#feature .feature_lead ul.list li:nth-child(2) {
	margin-bottom: auto;
}
#feature .feature_lead ul.list li:nth-child(3) {
	margin-bottom: auto;
}
#feature .feature_lead ul.list li:nth-child(4) {
	margin-bottom: auto;
}
#feature .link_btn a{
	margin-top: 45px;
}
@media screen and (max-width: 1400px) {
	#feature .feature_lead ul.list li {
		padding: 0.8vw;
	}
	#feature .feature_lead ul.list li span {
		font-size: 4.3vw;
		padding: 0 0.7vw;
	}
}
@media screen and (max-width: 768px) {
	#feature {
		padding: 70px 0 60px;
	}
	#feature .feature_lead ul.list li {
		padding: 0.8vw;
	}
	#feature .feature_lead ul.list li span {
		font-size: 6.5vw;
		padding: 0 1vw;
	}
	#feature .link_btn a{
		margin-top: 25px;
		width: 70%;
	}
}

/* feature_why */
#feature .feature_why {
    width:94%;
	max-width: 1000px;
	margin: 0 auto 90px;
}
#feature .feature_why .catch {
    font-size:5.6rem;
	font-weight: 700;
	line-height: 1.2;
	color:#195ffb;
	margin-bottom: 30px;
}
#feature .feature_why .midashi{
	position: relative;
	font-size: 2.8rem;
	line-height: 1.6;
	display: inline-block;
	margin: 0 auto 60px;
}
#feature .feature_why .midashi::before{
	position: absolute;
	bottom: 0;
    content: '';
    background: #195ffb;
    display: inline-block;
	width: 100%;
	height: 2px;
}
#feature .feature_why .visual{
	width: 100%;
	max-width: 705px;
	margin: 0 auto 40px;
}
#feature .feature_why .lead{
	text-align: left;
	margin-bottom: 50px;
}
#feature .feature_why .accordion .txt_box {
	text-align: left;
}
#feature .feature_why .accordion .txt_box dl {
	margin-bottom: 50px;
}
#feature .feature_why .accordion .txt_box dl:last-child {
	margin-bottom: 0;
}
#feature .feature_why .accordion .txt_box dl dt{
	position: relative;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.6;
	display: inline-block;
	margin-bottom: 15px;
}
#feature .feature_why .accordion .txt_box dl dt::before{
	position: absolute;
	bottom: 0;
    content: '';
    background: #195ffb;
    display: inline-block;
	width: 100%;
	height: 2px;
}
@media screen and (max-width: 1024px) {
	#feature .feature_why .catch {
		font-size:7vw;
	}
	#feature .feature_why .midashi{
		font-size: 3.2vw;
	}
}
@media screen and (max-width: 768px) {
	#feature .feature_why {
		margin-bottom: 50px;
	}
	#feature .feature_why .catch {
		font-size:6.5vw;
		margin-bottom: 15px;
	}
	#feature .feature_why .midashi{
		font-size: 3.4vw;
		margin-bottom: 30px;
		letter-spacing: 0;
	}
	#feature .feature_why .visual{
		margin-bottom: 25px;
	}
	#feature .feature_why .lead{
		font-size: 1.4rem;
		margin-bottom: 25px;
	}
	#feature .feature_why .accordion .txt_box dl {
		margin-bottom: 30px;
	}
	#feature .feature_why .accordion .txt_box dl dt{
		font-size: 1.7rem;
	}
	#feature .feature_why .accordion .txt_box dl dd{
		font-size: 1.4rem;
	}
}

/* graduate */
#feature .graduate {
	position: relative;
	padding: 35px 0 20px;
	min-height: 300px;
	margin-top: 90px;
}
#feature .graduate .bg {
	position: absolute;
	top:0;
	left:50%;
	transform: translate(-50% , 0);
	width: 1400px;
	margin: auto;
	z-index: -1;
}
#feature .graduate .catch {
	margin: 65px auto 20px;
	text-align: center;
	font-size: 6.3rem;
	line-height: 1.4;
	font-weight: 700;
	text-shadow: 0 0 35px #fff;
}
#feature .graduate .catch > span {
	font-size: 7rem;
}
#feature .graduate .catch > span > span {
	font-size: 10rem;
}
@media screen and (max-width: 1024px) {
	#feature .graduate {
		min-height: auto;
	}
	#feature .graduate .bg {
		top:-50px;
	}
	#feature .graduate .catch {
		margin-top: 2vw;
		margin-bottom: 3vw;
		font-size: 6.3vw;
	}
	#feature .graduate .catch > span {
		font-size: 7vw;
	}
	#feature .graduate .catch > span > span {
		font-size: 10vw;
	}
}
@media screen and (max-width: 768px) {
	#feature .graduate {
		margin-top: 60px;
		padding: 0;
	}
	#feature .graduate .bg {
		top:0;
		width: 100%;
	}
	#feature .graduate .catch {
		margin-top: 6vw;
		margin-bottom: 10vw;
		font-size: 6.3vw;
		letter-spacing: 0;
	}
	#feature .graduate .catch > span {
		font-size: 7vw;
	}
	#feature .graduate .catch > span > span {
		font-size: 10vw;
	}
	#main_title .lead {
		font-size: 1.5rem;
	}
}

/* bnr_course_sport */
#feature .bnr_course_sport {
	width: 90%;
	max-width: 1200px;
	margin: 120px auto;
}
#feature .bnr_course_sport a {
    transition: .3s;
}
#feature .bnr_course_sport a:hover{
	opacity: 0.7;
}
@media screen and (max-width: 768px) {
	#feature .bnr_course_sport {
		margin: 60px auto;
	}
}

/* bnr_campus */
#feature .bnr_campus {
	width: 90%;
	max-width: 1200px;
	margin: 120px auto 50px;
}
#feature .bnr_campus a {
    transition: .3s;
}
#feature .bnr_campus a:hover{
	opacity: 0.7;
}
@media screen and (max-width: 768px) {
	#feature .bnr_campus {
		margin: 60px auto 0;
	}
}

/* ---------------------------------------- 
 - request
---------------------------------------- */
#request {
	width: 100%;
	height: 30vw;
    position: relative;
}
#request_inner {
	width: 100%;
	max-width: 1400px;
	height: 100%;
	margin: 0 auto;
	padding-bottom: 30px;
	box-sizing: border-box;
}
#request .btn {
	display: flex;
	align-items: flex-end;
	height: 100%;
}
#request .btn a{
	display: inline-block;
	position: relative;
    transition: .3s;
	text-decoration: none;
	font-size: 3.0rem;
	font-weight: 700;
	line-height: 110px;
	height: 110px;
	width: 35%;
	max-width: 450px;
	padding: 0 2%;
	margin-left: auto;
	box-sizing: border-box;
	background: #7f7f7f;
	color:#fff;
	text-align: center;
	z-index: 2;
}
#request .btn a:hover{
	opacity: 0.7;
}
#request .btn a span{
	position: relative;
	display: inline-block;
	padding-left: 50px;
}
#request .btn a span::before{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	width: 31px;
	height: 24px;
	background-image: url("../images/common/ico_request_wht.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
@media screen and (max-width: 1000px) {
	#request .btn a{
		font-size: 2.8vw;
	}
	#request .btn a span{
		padding-left: 35px;
	}
	#request .btn a span::before{
		width: 22px;
		height: 17px;
	}
}
@media screen and (max-width: 768px) {
	#request {
		height: auto;
	}
	#request_inner {
		padding-top: 15px;
		padding-bottom: 45px;
		text-align: center;
	}
	#request .btn {
		display: block;
	}
	#request .btn a{
		font-size: 4.4vw;
		line-height: 100px;
		height: 100px;
		width: 80%;
	}
	#request .btn a span{
		padding-left: 50px;
	}
	#request .btn a span::before{
		width: 31px;
		height: 24px;
	}
}
@media screen and (max-width: 768px) {
	#request .btn a{
		font-size: 4.8vw;
		line-height: 70px;
		height: 70px;
	}
	#request .btn a span{
		padding-left: 40px;
	}
	#request .btn a span::before{
		width: 24px;
    	height: 18px;
	}
}