@charset "utf-8";

#main-cnt .wrapper-in{
    padding: 45px 50px 150px;
}
.main-view{
	width: 100%;
	position: relative;
}
.main-view .cap-main{
	padding: 30px;
    background: #fff;
    background-image: radial-gradient(#c5eefe 25%, transparent 0), radial-gradient(#c5eefe 25%, transparent 0);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    display: table;
    position: absolute;
    width: fit-content;
    left: 50%;
    top: 0;
    z-index: 5;
	border-radius: 15px;
    opacity: 0;
	-webkit-transition: all cubic-bezier(.8,.4,.32,1) 0.5s;
    transition: all cubic-bezier(.2,.4,1) 0.5s;
	transform: translate(-50%,0) scale(0.95, 1.5);
	-webkit-transform: translate(-50%,0) scale(0.95, 1.5);
}
.main-view .cap-main.view{
	opacity: 1;
	transform: translate(-50%,-50%) scale(1);
	-webkit-transform: translate(-50%,-50%) scale(1);
}
.main-view .cap-main h2{
	-webkit-transform: translate3d(0, 10px, 0) scale(0.95, 1);
            transform: translate3d(0, 10px, 0) scale(0.95, 1);
	-webkit-transition: all cubic-bezier(.8,.4,.32,1) 0.5s;
    transition: all cubic-bezier(.2,.4,1) 0.5s;
	display: inline-block;
	opacity: 0;
}
.main-view .cap-main h2 span{
	-webkit-transform: translate3d(0, 10px, 0) scale(0.95, 1);
            transform: translate3d(0, 10px, 0) scale(0.95, 1);
	-webkit-transition: all cubic-bezier(.8,.4,.32,1) 0.8s;
    transition: all cubic-bezier(.2,.4,1) 0.8s;
	display: inline-block;
	opacity: 0;
}
.main-view .cap-main h2 span.b{
	font-size: 1.6em;
}
.main-view .cap-main.view h2,
.main-view .cap-main.view h2 span{
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
}
.main-view .cap-main h2{
	font-size: 1.4em;
    line-height: 1.3;
    font-family: 'Kosugi Maru', sans-serif;
    letter-spacing: .48em;
    font-weight: 700;
	margin-left: 6px;
}
.main-view .cap-main h2 span.b{
	font-size: 1.6em;
}
#body-wrapper:before,
#body-wrapper:after{
	height: calc(100vh - 96px);
}
/*slideshow*/
.slideshow {
    width: calc(100% - 100px);
    height: calc(100vh - 305px);
    display: block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
	z-index: -1;
}
.slideshow:before{
	content: "";
	position: absolute;
    left: 0;
    top: -15%;
    width: calc(50% + 1px);
    height: 130%;
    transform: translateY(0%) skewY(-7deg);
	background: #5cc2cf;
	-webkit-transition: transform 1500ms cubic-bezier(0.575,0.005,0.285,1.005),opacity 1500ms cubic-bezier(0.575,0.005,0.285,1.005);
    transition: transform 1500ms cubic-bezier(0.575,0.005,0.285,1.005),opacity 1500ms cubic-bezier(0.575,0.005,0.285,1.005);
	z-index: 1;
}
.slideshow:after{
	content: "";
	position: absolute;
    right: 0;
    top: -15%;
    width: calc(50% + 1px);
    height: 130%;
    transform: translateY(0%) skewY(7deg);
	background: #5cc2cf;
	-webkit-transition: transform 1500ms cubic-bezier(0.575,0.005,0.285,1.005),opacity 1500ms cubic-bezier(0.575,0.005,0.285,1.005);
    transition: transform 1500ms cubic-bezier(0.575,0.005,0.285,1.005),opacity 1500ms cubic-bezier(0.575,0.005,0.285,1.005);
	z-index: 1;
}
.slideshow.loadf:before,
.slideshow.loadf:after{
	transform: translateY(-100%) skewY(0deg);	
}
.slideshow li{
	background:#fff;
}

.slideshow li span.view {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 24s linear infinite 0s;
    -moz-animation: imageAnimation 24s linear infinite 0s;
    -o-animation: imageAnimation 24s linear infinite 0s;
    -ms-animation: imageAnimation 24s linear infinite 0s;
    animation: imageAnimation 24s linear infinite 0s;
}
.slideshow li:nth-child(1) span { background-image: url("../img/index/top1.jpg"); background-position: bottom; }
.slideshow li:nth-child(2) span {
    background-image: url("../img/index/top2.jpg");
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.slideshow li:nth-child(3) span {
    background-image: url("../img/index/top3.jpg");
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay:12s;
    animation-delay: 12s;
}
.slideshow li:nth-child(4) span {
    background-image: url("../img/index/top4.jpg");
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
		-webkit-transform: scale(1);
	}
	11% {
	    opacity: 1;
	    -webkit-animation-timing-function: ease-in;
	}
	30% {
	    opacity: 1;
	    -webkit-transform: scale(1.15);
	}
	36% {
	    opacity: 0;
	    -webkit-transform: scale(1.15);
	}
	100% { 
		opacity: 0;
		-webkit-transform: scale(1);
	}
}

/*NEWS*/
.news {
	margin-top: 100px;
}
.news .icn{
	margin: 0 auto;
    width: 66px;
    height: 54px;
    background-size: 66px 54px;
	background: url(../img/header/nav_home.svg) no-repeat;
	background-position: top center;
}
.news .news-area{
	position: relative;
	width: calc(100% - 100px);
	margin: 60px auto 0;
	padding-bottom: 70px;
}
.news .news-area:before{
	width: 50%;
    height: 100%;
    left: 0;
    top: 0;
	z-index: -1;
}
.news .news-area:after{
	width: 50%;
    height: 100%;
    right: 0;
    top: 0;
	z-index: -1;
}
.news .news-area h2{
    font-family: 'Kosugi Maru', sans-serif;
	background: #0086c7;
	border-radius: 15px;
    font-size: 1.2em;
	letter-spacing: .4em;
    padding: 13px 35px 15px 43px;
    display: table;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-50%);
}
.news .news-area h2 span.b{
	font-size: 1.5em;
}
.news .news-area .news-box{
	position: relative;
	width: 850px;/*800px*/
	padding: 50px 120px;
	box-sizing: border-box;
	margin: 20px auto 0;
	display: block;
	background: #fff;
}
.news .news-area .news-box ul{
    overflow-y: scroll;
}
.news .news-area .news-box ul::-webkit-scrollbar {
    width: 10px;
}
.news .news-area .news-box ul::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
}
.news .news-area .news-box ul::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
.news .news-area .news-box ul li{
	border-bottom: 1px solid #dadada;
	padding: 20px 40px 15px;
	box-sizing: border-box;
}
.news .news-area .news-box ul li a,
.news .news-area .news-box ul li p{
	position: relative;
	display: block;
	color: #333;
	padding: 20px;
	font-size: 13px;
	padding-right: 27px;
	padding-left: 0;
	transform cubic-bezier(0.21, 1, 0.35, 1) 0.6s;
}
.news .news-area .news-box ul li a:hover{
	opacity: 0.5;
}
.news .news-area .news-box ul li a:after{
	content: "";
    position: absolute;
    right: 0;
    top: 16px;
    width: 30px;
    height: 30px;
    background: url(../img/icn_pdf.svg) center no-repeat;
    background-size: 25px 25px;
}
.news .news-area .news-box ul li.no-pdf a:after{
	content: none;
}
.news .news-area .news-box ul li span{
	color: #333;
    font-weight: 700;
    margin-right: 20px;
}

/*ABOUT*/
.about {
	margin-top: 100px;
}
.about .icn{
	margin: 0 auto;
    width: 66px;
    height: 54px;
    background-size: 76px 62px;
	background: url(../img/header/nav_about.svg) no-repeat;
	background-position: top center;
}
.about .about-area{
	position: relative;
	width: calc(100% - 100px);
	margin: 60px auto 0;
	padding-bottom: 150px;
}
.about .about-area:after{
	content: "";
	position: absolute;
	background: #f7f7f7;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.about .about-area h2{
    font-family: 'Kosugi Maru', sans-serif;
	background: #f19eb4;
	border-radius: 15px;
    font-size: 1.2em;
	letter-spacing: .4em;
    padding: 13px 35px 15px 43px;
    display: table;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-50%);
}
.about .about-area h2 span.b{
	font-size: 1.5em;
}
.about .about-area h3{
	font-family: 'Kosugi Maru', sans-serif;
	position: relative;
    font-size: 2em;
	letter-spacing: .1em;
    padding: 20px 35px;
    display: table;
    margin: 20px auto 0;
    text-align: center;
}
.about .about-area h3:before{
	content: "";
	position: absolute;
	background: #0086c7;
	width: 100%;
	height: 1px;
	bottom: 5px;
	left: 0;
}
.about .about-area h3:after{
	content: "";
	position: absolute;
	background: #f19eb4;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
}
.about .about-area .box1,
.about .about-area .box2{
	position: relative;
	margin-top: 100px;
}
.about .about-area .box2{
	margin-top: 150px;
}
.about .about-area .box1:after{
    left: -50px;
    bottom: 50%;
	width: calc(15% + 100px);
    height: 40%;
    transform: translateY(80%);
}
.about .about-area .box2:after{
    right: -50px;
    bottom: 50%;
	width: calc(15% + 100px);
    height: 40%;
    transform: translateY(80%);
}
.about .about-area .box1 ul{
	display: flex;
	align-items: baseline;
	width: 85%;
	margin: 0 -50px 0 auto;	
}
.about .about-area .box2 ul{
	display: flex;
	width: 85%;
	margin: 0 auto 0 -50px;
    align-items: baseline;
}
.about .about-area ul li{
	width: 50%;
	box-sizing: border-box;
	padding: 0 10px 0 0;
	position: relative;
	display: block;
}
.about .about-area ul li:nth-child(2){
	padding-right: 0;
	padding-left: 10px;
}
.about .about-area ul li .image{
	border-radius: 8px;
    overflow: hidden;
}
.about .about-area .box1 ul li:nth-child(2) .image{
	border-radius: 0px;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
.about .about-area .box2 ul li:nth-child(1) .image{
	border-radius: 0px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}
.about .about-area ul li img{
	width: 100%;
}
.about .about-area ul li span.cap{
	font-family: 'Kosugi Maru', sans-serif;
	position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(50%);
    padding: 20px 30px;
    color: #f19eb4;
    background: #fff;
    font-weight: 700;
    font-size: 1.1em;
    letter-spacing: .3em;
	border-radius: 8px;
	border-top-right-radius: 0;
}
.about .about-area .box1 ul li:nth-child(1) span.cap,
.about .about-area .box2 ul li:nth-child(1) span.cap{
	right: 10px;
}
.about .about-area .box1 ul li:nth-child(1) span.cap,
.about .about-area .box2 ul li:nth-child(2) span.cap{
	color: #0086c7;
}
.about .about-area ul .text-box{
	padding: 0px 100px 30px 0;
}
.about .about-area .box2 ul li:nth-child(1) .text-box{
	padding: 0px 50px 30px 100px;
}
.about .about-area ul .text-box h4{
	font-family: 'Kosugi Maru', sans-serif;
	color: #333;
	position: relative;
	padding-left: 30px;
	font-size: 1.3em;
	font-weight: 700;
	letter-spacing: .2em;
}
.about .about-area ul .text-box h4:after{
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
    height: 12px;
    width: 12px;
    border-radius: 12px;
	background: #f19eb4;
}
.about .about-area .box2 ul .text-box h4:after{
	background: #0086c7;
}
.about .about-area ul .text-box p{
	padding-left: 30px;
	margin-top: 20px;
	color: #666;
}

/*ENTRANCE*/
.entrance {
	margin-top: 100px;
}
.entrance .icn{
	margin: 0 auto;
    width: 66px;
    height: 54px;
    background-size: 76px 62px;
	background: url(../img/header/nav_entrance.svg) no-repeat;
	background-position: top center;
}
.entrance .entrance-area{
	position: relative;
	width: calc(100% - 100px);
	margin: 60px auto 0;
}
.entrance .entrance-area:after{
	content: "";
	position: absolute;
	background: #f7f7f7;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.entrance .entrance-area h2{
	border-radius: 15px;
    font-family: 'Kosugi Maru', sans-serif;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-50%);
	background: #ea5432;
    font-size: 1.2em;
	letter-spacing: .4em;
    padding: 13px 35px 15px 43px;
    display: table;
    color: #fff;
    margin: 0 auto;
    text-align: center;
	z-index: 1;
}
.entrance .entrance-area h2 span.b{
	font-size: 1.5em;
}
.entrance .entrance-area .box1{
	position: relative;
}
.entrance .entrance-area .box1 ul{
	display: flex;
	width: 85%;
	margin: 0 auto;	
}
.entrance .entrance-area .box1 ul li{
	width: 50%;
	box-sizing: border-box;
	position: relative;
	padding: 10px;
	padding-top: 100px;
}
.entrance .entrance-area .box1 ul li .image{
	border-radius: 8px;
    overflow: hidden;
}
.entrance .entrance-area .box1 ul li img{
	width: 100%;
}
.entrance .entrance-area .box1 ul li:nth-child(1){
	padding-bottom: 210px;
}
.entrance .entrance-area .box1 ul li:nth-child(1):after{
	width: 50%;
    height: 210px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.entrance .entrance-area .box1 ul li:nth-child(2){
	padding-top: 180px;
}
.entrance .entrance-area .box1 ul li:nth-child(2):after{
	width: 50%;
    height: 180px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.entrance .entrance-area ul .text-box{
	padding: 20px;
}
.entrance .entrance-area ul .text-box h4{
	font-family: 'Kosugi Maru', sans-serif;
	color: #333;
	position: relative;
	padding-left: 30px;
	font-size: 1.3em;
	font-weight: 700;
	letter-spacing: .2em;
}
.entrance .entrance-area ul .text-box h4:after{
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
    height: 12px;
    width: 12px;
    border-radius: 12px;
	background: #f19eb4;
}
.entrance .entrance-area ul li:nth-child(2) .text-box h4:after{
	background: #0086c7;
}
.entrance .entrance-area ul .text-box p{
	padding-left: 30px;
	margin-top: 10px;
	color: #666;
}

/*EDUCATION*/
.education {
	margin-top: 100px;
	padding-bottom: 250px;
}
.education .icn{
	margin: 0 auto;
    width: 66px;
    height: 54px;
    background-size: 76px 62px;
	background: url(../img/header/nav_education.svg) no-repeat;
	background-position: top center;
}
.education .education-area{
	position: relative;
	width: calc(100% - 100px);
	margin: 60px auto 0;
	padding-bottom: 250px;
}
.education .education-area:after{
	content: "";
	position: absolute;
	background: #f7f7f7;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.education .education-area h2{
    font-family: 'Kosugi Maru', sans-serif;
	background: #32a138;
    font-size: 1.2em;
	letter-spacing: .4em;
    padding: 13px 35px 15px 43px;
    display: table;
    color: #fff;
    margin: 0 auto;
    text-align: center;
	border-radius: 15px;
    transform: translateY(-50%);
}
.education .education-area h2 span.b{
	font-size: 1.5em;
}
.education .education-area h3{
	font-family: 'Kosugi Maru', sans-serif;
	position: relative;
    font-size: 2em;
	line-height: 1.3em;
	letter-spacing: .1em;
    padding: 20px 35px;
    display: table;
    margin: 20px auto 0;
    text-align: center;
}
.education .education-area h3:before{
	content: "";
	position: absolute;
	background: #0086c7;
	width: 100%;
	height: 1px;
	bottom: 5px;
	left: 0;
}
.education .education-area h3:after{
	content: "";
	position: absolute;
	background: #f19eb4;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
}
.education .education-area .box1{
	position: relative;
	margin-top: 70px;
}
.education .education-area .box1 ul{
	display: flex;
    width: 80%;
    max-width: 1150px;
	margin: 0 auto;
}
.education .education-area .box1 ul li{
    width: 33.3333%;
	box-sizing: border-box;
	padding: 0 20px;
	position: relative;
}
.education .education-area ul .text-box{
	padding: 0 20px 20px;
	box-sizing: border-box;
}
.education .education-area ul .text-box .cap-box{
	margin-top: 20px;
}
.education .education-area ul .text-box .cap-box .link-btn{
	margin: 0 auto;
}
.education .education-area ul .text-box h4{
	text-align: center;
	font-family: 'Kosugi Maru', sans-serif;
}
.education .education-area ul .text-box h4 span{
	color: #333;
	position: relative;
	font-size: 1.3em;
	font-weight: 700;
	letter-spacing: .2em;
}
.education .education-area ul .text-box h4 span:before{
	content: "";
    position: absolute;
    left: -30px;
    top: 3px;
    height: 12px;
    width: 12px;
    border-radius: 12px;
    background: #f19eb4;
}
.education .education-area ul .text-box h4 span:after{
	content: "";
    position: absolute;
    right: -30px;
    top: 3px;
    height: 12px;
    width: 12px;
    border-radius: 12px;
	background: #0086c7;
}
.education .education-area ul .text-box p{
	margin-top: 10px;
	color: #666;
}
.education .education-area ul li .image{
	position: absolute;
	top:100%;
    left: 10px;
    width: calc(100% - 40px);
    border: 10px solid #ea5c85;
	border-radius: 8px;
}
.education .education-area ul li:nth-child(2) .image{
    border: 10px solid #0086c7;
}
.education .education-area ul li .image img{
	width: 100%;
}
@media screen and (max-width: 1300px) {
	.about .about-area .box1 ul,
	.about .about-area .box2 ul{
	    width: 100%;
	}
	.about .about-area .box1:after,
	.about .about-area .box2:after{
	    width: 100px;
	}
	.entrance .entrance-area .box1 ul{
		width: calc(100% - 80px);
	}
	.education .education-area .box1 ul li{
    	padding: 0 10px;
	}
	.education .education-area ul .text-box{
		padding: 0 10px 20px;
	}
}
@media screen and (max-width: 1100px) {
	.news .news-area .news-box{
		width: 90%;
		padding: 30px 30px 50px;
	}
	.news .news-area .news-box ul li{
		padding: 20px 30px 15px;
	}
	.news .news-area .news-box ul li span{
		display: block;
	}
	.news .news-area .news-box ul li a{
		padding-right: 40px;
	}
	.news .news-area .news-box ul li a:after{
		top: inherit;
    	bottom: 20px;
	}
	.about .about-area{
		padding-bottom: 100px;
	}
	.about .about-area h3,
	.education .education-area h3{
	    margin: 0 auto;
	}
	.about .about-area .box1{
    	margin-top: 60px;
	}
	.about .about-area .box2{
		margin-top: 100px;
	}
	.about .about-area h3,
	.education .education-area h3{
		font-size: 1.6em;
	}
	.entrance .entrance-area .box1 ul li{
	    padding-top: 70px;
	}
	.entrance .entrance-area .box1 ul li:nth-child(1) {
		padding-bottom: 100px;
	}
	.entrance .entrance-area .box1 ul li:nth-child(1):after{
		height: 100px;
	}
	.entrance .entrance-area .box1 ul li:nth-child(2) {
		padding-top: 140px;
	}
	.entrance .entrance-area .box1 ul li:nth-child(2):after {
    	height: 140px;
	}
	.education .education-area ul .text-box{
		padding: 0 0 20px;
	}
	.education .education-area ul li .image{
		width: calc(100% - 40px);
	}
}
@media screen and (max-width: 980px) {
	#main-cnt .wrapper-in{
		padding: 50px 3vw 100px;
	}
	.slideshow{
		width: calc(100% - 6vw);
		height: calc(100vh - 220px);
	}
	.main-view .cap-main {
    	padding: 20px 30px;
	    bottom: 0;
	    top: initial;
	}
	.main-view .cap-main.view{
		transform: translate(-50%,50%) scale(1);
    	-webkit-transform: translate(-50%,50%) scale(1);
	}
	.main-view .cap-main h2 {
		font-size: 1.2em;
	    letter-spacing: .35em;
	}
	.news .news-area{
		width: calc(100% - 6vw);
	}
	.news .news-area .news-box {
    	width: 94%;
	}
	.about .about-area{
	    width: calc(100% - 6vw);
	}
	.about .about-area .box1 ul{
		margin: 0 -3vw 0 auto;
	}
	.about .about-area .box2 ul{
		margin: 0 auto 0 -3vw;
	}
	.about .about-area ul .text-box{
	    padding: 0px 30px 30px 0;
	}
	.about .about-area .box1 ul li:nth-child(2) .text-box{
		padding: 0px 6vw 30px 10px;
	}
	.about .about-area .box2 ul li:nth-child(1) .text-box{
		padding: 0px 50px 30px 6vw;
	}
	.about .about-area .box2 ul li:nth-child(2) .text-box{
		padding: 0px 0 30px 6vw;
	}
	.about .about-area .box1:after,
	.about .about-area .box2:after {
		width: 6vw;
	}
	.about .about-area .box1:after {
    	left: -3vw;
	}
	.about .about-area .box2:after {
    	right: -3vw;
	}
	.about .about-area ul li span.cap{
		font-size: .9em;
		letter-spacing: .1em;
		padding: 15px 20px;
		width: auto;
		display: table;
	}
	.entrance .entrance-area,
	.education .education-area{
	    width: calc(100% - 6vw);
	}
	.entrance .entrance-area .box1 ul{
		width: calc(94% + 20px);
	}
	.education .education-area .box1 ul{
	    width: calc(100% - 6vw);
	}
}
@media screen and (max-width: 768px) {
	#main-cnt .wrapper-in{
		padding: 50px 3vw 0;
	}
	.slideshow {
		height: calc(100vh - 290px);
	}
	.main-view .cap-main {
    	padding: 20px;
	}
	.main-view .cap-main h2 {
		font-size: .95em;
	    letter-spacing: .1em;
	}
	.news {
		margin-top: 70px;
	}
	.news .icn,
	.about .icn,
	.entrance .icn,
	.education .icn{
		width: 42px;
		height: 34px;
	    background-size: 42px 34px;
	}
	.news .news-area{
		width: 100%;
		margin: 35px auto 0;
	    padding-bottom: 30px;
	}
	.news .news-area h2,
	.about .about-area h2,
	.entrance .entrance-area h2,
	.education .education-area h2{
		font-size: .9em;
		padding: 7px 20px 7px 26px;
	}
	.news .news-area .news-box{
		margin: 0 auto;
		padding: 0px 3vw 30px;
	}
	.news .news-area .news-box ul li {
		padding: 10px 2vw 5px;
	}
	.news .news-area .news-box ul li a{
		font-size: .9em;
	}
	.about,
	.entrance,
	.education{
		margin-top: 50px;
	}
	.about .about-area,
	.entrance .entrance-area,
	.education .education-area{
		width: 100%;
		margin: 35px auto 0;
		padding-bottom: 60px;
	}
	.about .about-area .box1 ul li:nth-child(2) .image,
	.about .about-area .box2 ul li:nth-child(1) .image{
		border-radius: 8px;
	}
	.about .about-area ul li span.cap{
		left: 50%;
		right: inherit;
		transform: translate(-50%, 50%);
		border-radius: 8px;
	}
	.about .about-area h3,
	.education .education-area h3{
		font-size: 1.2em;
	    padding: 0px 3vw 20px;
	}
	.about .about-area .box1:after,
	.about .about-area .box2:after{
		width: 0;
	}
	.about .about-area .box1{
		margin-top: 30px;
	}
	.about .about-area .box1 ul,
	.about .about-area .box2 ul,
	.entrance .entrance-area .box1 ul li{
		display: block;
		width: 88vw;
		margin: 0 auto;
	}
	.about .about-area .box2 {
		margin-top: 60px;
	}
	.about .about-area ul li,
	.about .about-area ul li:nth-child(2){
		width: 100%;
		padding: 60px 0 0 0;
	}
	.about .about-area ul li:nth-child(1){
		padding-top: 0;
	}
	.about .about-area ul .text-box,
	.about .about-area .box1 ul li:nth-child(2) .text-box,
	.about .about-area .box2 ul li:nth-child(1) .text-box,
	.about .about-area .box2 ul li:nth-child(2) .text-box {
		padding: 0px 0 20px 0;
	}
	.about .about-area ul .text-box h4,
	.entrance .entrance-area ul .text-box h4{
		padding-left: 20px;
		padding-right: 20px;
		font-size: 1.1em;
	    margin: 0 auto;
    	text-align: center;
	}
	.education .education-area ul .text-box h4 span{
		font-size: 1.1em;
	}
	.about .about-area ul .text-box h4:after,
	.about .about-area .box2 ul .text-box h4:after,
	.entrance .entrance-area ul li:nth-child(2) .text-box h4:after,
	.entrance .entrance-area ul .text-box h4:after{
	    top: 7px;
		background: #f19eb4;
	}
	.about .about-area ul .text-box h4:before,
	.entrance .entrance-area ul .text-box h4:before {
		content: "";
		position: absolute;
		right: 0px;
		top: 7px;
		height: 12px;
		width: 12px;
		border-radius: 12px;
		background: #0086c7;
	}
	.education .education-area ul .text-box h4 span:before{
		left: -20px;
	}
	.education .education-area ul .text-box h4 span:after{
		right: -20px;
	}
	
	.about .about-area ul .text-box p,
	.entrance .entrance-area ul .text-box p{
	    padding-left: 3vw;
    	padding-right: 3vw;
		margin-top: 10px;
	}
	.entrance .entrance-area .box1 ul{
		display: block;
		margin: 0;
		width: 100%;
	}
	.entrance .entrance-area .box1 ul li{
		padding: 0;
	}	
	.entrance .entrance-area .box1 ul li:nth-child(1) {
    	padding-top: 50px;
		padding-bottom: 0;
	}
	.entrance .entrance-area .box1 ul li:nth-child(2){
		padding-top: 50px;
	}
	.entrance .entrance-area ul .text-box{
		padding: 0 0 20px;
	}
	.entrance .entrance-area .box1 ul li:nth-child(1):after,
	.entrance .entrance-area .box1 ul li:nth-child(2):after{
		height: 0;
	}
	.education{
	    padding-bottom: 0;
	}
	.education .education-area .box1{
	    margin-top: 30px;
	}
	.education .education-area .box1 ul{
		display: block;
	}
	.education .education-area .box1 ul li{
		width: 100%;
		padding: 0;
		margin-top: 50px;
	}
	.education .education-area .box1 ul li:nth-child(1){
		margin-top: 0;
	}
	.education .education-area ul .text-box .cap-box{
		margin-top: 10px;
	}
	.education .education-area ul li .image{
		position: relative;
		width: calc(100% - 3vw);
	}
	.education .education-area ul li .image,
	.education .education-area ul li:nth-child(3) .image{
		width: calc(100% - 10px);
		margin: 0 auto;
		height: 200px;
		overflow: hidden;
		border: 5px solid #ea5c85;
		left: 0;
	}
	.education .education-area ul li:nth-child(2) .image{
		border: 5px solid #0086c7;
	}
	.education .education-area ul li .image img {
		transform: translateY(-25%);
	}
	.education .education-area ul .text-box p{
		padding-left: 3vw;
    	padding-right: 3vw;
	}
	.link-btn{
	    margin: 10px auto 0;
	}
}