@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap');
/*font-family: 'Josefin Sans', sans-serif;*/
.l-top-content__wrap {
	width: 100%;
	min-height: calc(100vh - 125px);
	position: relative;
}

.top-content__title {
	width: 40%;
	height: 15vh;
	background:  #1faddd;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
	font-weight: 600;
	color: #FFF100;
	letter-spacing: .2em;
	margin-top: 10vh;
	position: relative;
	z-index: 2;
}
.top-content__title.title__slide  {
	opacity: 0;
}
.is-show .top-content__title.title__slide {
	opacity: 1;
	animation:title__slide 0.3s ease-in-out both;
	animation-delay: .2s;
}

@keyframes title__slide {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX();
}
}
@-webkit-keyframes title__slide {
0% {
width: 0;
}
100% {
width: 100%;
}
}









/********************************************


video


**********************************************/
/*
.top-page .content-wrap {
    padding: 0;
    height: 100vh;
    overflow: hidden;
}
*/

.video-container {
    width: 100vw;
    height: calc(100vh - 125px);
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -1;
}
/*
.video-container:before {
    content: "";
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    background: rgba(0,0,0,.2);
}*/
.top-page .video-container:after{
	content:"";
	min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
	position: relative;
	z-index:2;
	background: url(../images/top_movie_poster.jpg) no-repeat center center;
	background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.video-container img{
	width: 100%;
	height:auto;
}

.video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: 100%;
  
  /* Center the video */
	z-index:10;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%,-10%);
  visibility: hidden;
}
.video-container source {
}


/********************************************


section01


**********************************************/
.l-top-content__wrap {
	padding-top: 7vh;
}



.top-content__logo {
	/* width: 100%; */
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 4% 5% 7%;
}
.top-content__logo img{
	display: block;
	height: 17vh;
	margin-bottom: 4vh;
	animation:sizeup 1.8s ease-out both ;
	-webkit-animation:sizeup 1.8s ease-out both ;
	animation-delay: 0;
	opacity: 0;
}

.top-content__logo .slider-square::after {background: #1faddd;}

.is-show .slider-square::after {
	position: absolute;
	animation:slider_block 0.2s ease-out forwards, sb_next .7s ease-in-out forwards ;
	-webkit-animation:slider_block 0.2s ease-out forwards, sb_next 0.7s ease-in-out forwards ;
	animation-delay: .1s;
}
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, .is-show .slider-square::after {
	animation:slider_block_ie 0.6s ease-out none ;
	-webkit-animation:slider_block_ie 0.6s ease-out none ;
}/* IE11 */
}
.is-show .slider-square:nth-of-type(2)::after {
	animation-delay: .2s;
}
.is-show .slider-square:nth-of-type(3)::after {
	animation-delay: .3s;
}
.is-show .slider-square:nth-of-type(4)::after {
	animation-delay: .4s;
}
.is-show .slider-square:nth-of-type(5)::after {
	animation-delay: .5s;
}

.slider-square{
overflow: hidden;
display: inline-block;
position: relative;
/*width: 100%;*/
}
.slider-square::after {
content: '';
width: 0;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #fff;
pointer-events: none;
-webkit-transform: translate3d(0px,0px,0px);
transform: translate3d(0px,0px,0px);
}

@keyframes sizeup {
0% {
height: 13vh;
margin-bottom: 2vh;
opacity: 0;
}
30%{
	opacity:0;
	
}
35%{

	opacity:1;
}
75%{
	height: 13vh;
	margin-bottom: 2vh;
	opacity:1;
}
80% {
height:  18vh;
opacity: 1;
}
100% {
height: 17vh;
margin-bottom: 4vh;
opacity: 1;
}
}
@-webkit-keyframes sizeup {
	0% {
		height: 13vh;
		margin-bottom: 2vh;
		opacity: 0;
		}
		30%{
			opacity:0;
			
		}
		35%{
		
			opacity:1;
		}
		75%{
			height: 13vh;
			margin-bottom: 2vh;
			opacity:1;
		}
		80% {
		height:  18vh;
		opacity: 1;
		}
		100% {
		height: 17vh;
		margin-bottom: 4vh;
		opacity: 1;
		}
		}

@keyframes slider_block {
0% {
width: 0;
}
100% {
width: 100%;
}
}
@-webkit-keyframes slider_block {
0% {
width: 0;
}
100% {
width: 100%;
}
}
@keyframes slider_block_height {
0% {
height: 0;
}
100% {
height: 100%;
}
}
@-webkit-keyframes slider_block_height {
0% {
height: 0;
}
100% {
height: 100%;
}
}



@keyframes slider_block_ie {
	0% {
	width: 0;
	left:0;
	}
	50% {
	width: 100%;
	left:0;
	}
	100% {
	left: 105%;
	}
}
@-webkit-keyframes slider_block_ie {
0% {
width: 0;
left:0;
}
50% {
width: 100%;
left:0;
}
100% {
left: 105%;
}
}
@keyframes sb_next {
0%,
40% {
left: 0;
}
100% {
left: 105%;
}
}
@-webkit-keyframes sb_next {
0%,
40% {
left: 0;
}
100% {
left: 105%;
}
}


.l-top-news-content {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(255,255,255,.6);
	padding: 2vh 10% 3vh;
	opacity: 0;
	transform: translateY(10%);
}
.is-show .l-top-news-content {
	animation:bottom_in .2s ease-in-out both;
	animation-delay: .8s;
	transform: translateY(0);
}

.l-top-news-content .l-top-news-title{
	font-size: 1.6rem;
	font-weight: 600;
	color: #003893;
}
.l-top-news-content .l-top-news-list__title{
	font-size: 1.4rem;
	color: #003893;
	padding: 5px 0 0;
}
.l-top-news-content .l-top-news-list__title span{
	display: inline-block;
	margin-right: 2em;
}




/********************************************


section02


**********************************************/


.l-top-content__wrap.section02{
	position: relative;
	padding: 0 0 17vh;
}

.l-top-content__wrap.section02::after {
	content: '';
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	pointer-events: none;
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);


background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(80,80,80,0.6) 65%);

	mix-blend-mode: multiply;
	position: absolute;
	z-index: -1;
/*	animation:slider_block 0.2s ease-out forwards;
	animation-delay: .1s;
*/	width: 100%;	
}

.l-top-content__wrap.section02 .top-content__title {
	height: 35vh;
	padding-bottom: 5vh;
	margin-top: 0;
}

.top-link__bnr {
	width: 70%;
	margin: 0 auto 0;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 5;
}
.top-link__bnr.only {
	justify-content: center;
}
.l-top-content__wrap.section02.is-show .top-link__bnr {
	margin: -12vh auto 0;
}
.l-top-content__wrap.section02.is-show .top-link__bnr li {
	width: 49%;
}
.l-top-content__wrap.section02.is-show .top-link__bnr li:first-child {
	animation:bottom_in 0.2s ease-in-out both;
	animation-delay: .6s;

}
.l-top-content__wrap.section02.is-show .top-link__bnr li:nth-child(2) {
	animation:bottom_in 0.2s ease-in-out both;
	animation-delay: .8s;

}




.top-link__bnr li a{
	display: block;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(0,0,0,.2);
}
.top-link__bnr li a:hover {
	opacity: 1;

}

.l-top-content__wrap.section02.is-show .top-link__bnr li:first-child a::before{
	background: url(../images/top/top-section02__bnr01.jpg) no-repeat center center;
	background-size: cover;
}
.l-top-content__wrap.section02.is-show .top-link__bnr li:nth-child(2) a::before{
	background: url(../images/top/top-section02__bnr02.jpg) no-repeat center center;
	background-size: cover;
}
.top-link__bnr li a::before{
	content: '';
	width: 100%;
	height: 28vh;
	display: block;
	transition: all .1s ease-in-out;
}
.top-link__bnr li a:hover::before{
	content: '';
	width: 110%;
	margin-left: -5%; 
	transition: all .2s ease-in-out;
}


.top-link__bnr li a p{
	width: 100%;
	padding: 2.5vh 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: #003893;
	position: relative;
	background: #FFF;

}
.l-top-content__wrap.section02.is-show .top-link__bnr li a p::after{
	content: url(../images/top/top-section02__bnr-icon.svg);
	width: 40px;
	display: block;
	line-height: 0;
	margin-left: 1em;	
}
/********************************************


section03


**********************************************/


.l-top-content__wrap.section03  {
	background: url(../images/top/top-section03__bg.jpg) no-repeat center bottom;
	background-size: cover ;
	position: relative;
	padding: 0 0 15vh;
	overflow: hidden;
	z-index: 2;
}
.l-top-content__wrap.section03.is-show::after {
	content: '';
	width: 100%;
	bottom: 0;
	right: 0;
	pointer-events: none;
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	background: rgba(0,56,147,.8);
	mix-blend-mode:multiply;
	position: absolute;
	animation:slider_block_height 0.3s ease-out forwards;
	animation-delay: .3s;
}

.l-top-content__wrap.section03 .top-content__title ,
.l-top-content__wrap.section03 .top-link__bnr {
	opacity: 0;
	margin-top: 10vh;
}
.l-top-content__wrap.section03.is-show .top-content__title{
	opacity: 1;

}

h4.top-works__copy {
	padding-left: 15%;
		visibility: hidden;
		margin: 5vh 0 ;
	position: relative;
	z-index: 2;
}
.is-show h4.top-works__copy {
	z-index: 2;
	animation:bottom_in 0.2s ease-in-out both;
	animation-delay: .2s;
	visibility: visible;
}
h4.top-works__copy p {
	text-align: left;
	color: #FFF;
	font-size: 3.5rem;
		font-family: 'd-din_condensedregular';
	display: inline;
	background: linear-gradient(transparent 75%, #1faddd 75%);
	position: relative;
}
h4.top-works__copy p span{
	font-size: 5rem;
	display: inline-block;
	padding: 0 ;
}


.l-top-content__wrap.section03 .top-link__bnr {
	margin: 9vh auto 0;

}
.l-top-content__wrap.section03.is-show .top-link__bnr {
	opacity: 1;
}
.l-top-content__wrap.section03 .top-link__bnr li {
	width: 30%;
}
.l-top-content__wrap.section03.is-show .top-link__bnr li {
	animation:bottom_in 0.2s ease-in-out both;
}
.l-top-content__wrap.section03.is-show .top-link__bnr li:first-child {
	animation-delay: .3s;
}
.l-top-content__wrap.section03.is-show .top-link__bnr li:nth-child(2) {
	animation-delay: .5s;
}
.l-top-content__wrap.section03.is-show .top-link__bnr li:nth-child(3) {
	animation-delay: .7s;
}
.l-top-content__wrap.section03.is-show .top-link__bnr li:nth-child(4) {
	animation-delay: .9s;
}

.l-top-content__wrap.section03 .top-link__bnr li .top-work-list{
	text-align: center;
	margin-bottom: 2vh;
}
.l-top-content__wrap.section03 .top-link__bnr li .top-work-list p{
	font-weight: 600;
	font-size: 2.1rem;
	color: #FFF100;
	line-height: 1.5em;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 11vh;
}
.l-top-content__wrap.section03 .top-link__bnr li .top-work-list span{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 5.5rem;
	color: #FFF;
	display: block;
	line-height: 0;
	padding-bottom: 3vh;
}


.l-top-content__wrap.section03 .top-link__bnr li a {
	position: relative;
}

.l-top-content__wrap.section03 .top-link__bnr li a::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 25vh;
	background: rgba(0,0,0,.3) url(../images/top/top-section03__more.svg) no-repeat center center;
	background-size: 20%;
}
.l-top-content__wrap.section03 .top-link__bnr li a:hover::after{
	background: rgba(0,0,0,.6) url(../images/top/top-section03__more.svg) no-repeat center center;
	background-size: 30%;
	transition: all .2s ease-in-out;
}


.l-top-content__wrap.section03 .top-link__bnr li a::before{
	height: 25vh;
}
.l-top-content__wrap.section03 .top-link__bnr li:first-child a::before{
	background: url(../images/top/top-section03__img01.jpg) no-repeat center center;
	background-size: cover;
}
.l-top-content__wrap.section03 .top-link__bnr li:nth-child(2) a::before{
	background: url(../images/top/top-section03__img02.jpg) no-repeat center center;
	background-size: cover;
}
.l-top-content__wrap.section03 .top-link__bnr li:nth-child(3) a::before{
	background: url(../images/top/top-section03__img03.jpg) no-repeat center center;
	background-size: cover;
}
.l-top-content__wrap.section03 .top-link__bnr li:nth-child(4) a::before{
	background: url(../images/top/top-section03__img04.jpg) no-repeat center center;
	background-size: cover;
}

.l-top-content__wrap.section03 .top-link__bnr li a p{
	width: 100%;
	height: 8vh;
	padding:  0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	line-height: 1.2em;
	text-align: center;
	font-weight: 600;
	color: #003893;
	position: relative;
	background: #FFF;
}

/********************************************


section04


**********************************************/


.l-top-content__wrap.section04 {
	background:  #1faddd;
	position: relative;
	display: flex;
	align-items: center;
	padding: 5vh 0 10vh;
}
.l-top-content__wrap.section04.other {
	background: #F5F5F5;
}
.l-top-content__wrap.section04.is-show::after {
	content: '';
	width: 60%;
	height: 15vh;
	background: url(../images/top/top-section04__copy.svg) no-repeat right top;
	background-size: contain;
	position: absolute;
	top: -7px;
	right: 0;
	pointer-events: none;
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	animation:fade-in 0.3s ease-out both;
	animation-delay: .3s;
}

.top-content__title_wrap{
	width: 24%;
	margin: 0 auto 0 15%;
}
.top-content__title_wrap .top-content__title {
	width: 100%;
	height: auto;
	background:  none;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 3.5rem;
	font-weight: 600;
	color: #FFF100;
	letter-spacing: .2em;
	margin-top: 5vh;
	position: relative;
	z-index: 2;
}
.top-content__title_wrap dl dt{
	background: #FFF100;
	color: #1faddd;
	padding: 15px 20px;
	font-size: 2rem;
	margin: 25px 0;
}
.top-content__title_wrap dl dd{
	color: #FFF100;
	font-size: 1.5rem;
	line-height: 1.6em;
}
.top-content__title_wrap a{
	display: block;
	width: 55%;
	margin: 40px auto 0 0 ;
}
.top-content__title_wrap a img{
	width:  100%;
}
.l-top-content__wrap.section04.other .top-content__title_wrap .top-content__title {
	color: #000;
}




.l-top-content__wrap.section04.is-show .top-content__people_list{
	width: 50%;
	margin-right: 5%;
	display: flex;
	justify-content: space-between;
	z-index: 3;
}
.l-top-content__wrap.section04.is-show .top-content__people_list li{
	width: 30%;
}
.l-top-content__wrap.section04.is-show .top-content__people_list li:first-child{
	margin: 20vh 0 0;
}
.l-top-content__wrap.section04.is-show .top-content__people_list li:nth-child(2){
	margin: 9vh 0 0;
}
.l-top-content__wrap.section04.is-show .top-content__people_list li:nth-child(3){
	margin: 15vh 0 0;
}
.l-top-content__wrap.section04.is-show .top-content__people_list li a{
	width: 100%;
	display: flex;
	align-items: flex-end;
	padding: 5%;
	min-height: 24vw;

	animation:top_in 0.3s ease-out both;
	height: 100%;

}
.l-top-content__wrap.section04.is-show .top-content__people_list li:first-child a{
	background: url(../images/top/top-section04__img02_2.png) no-repeat center center ;
	background-size: cover;
	animation-delay: .6s;
}
.l-top-content__wrap.section04.is-show .top-content__people_list li:nth-child(2) a{
	background: url(../images/top/top-section04__img01_2.png) no-repeat center center ;
	background-size: cover;
	animation-delay: .8s;
}
.l-top-content__wrap.section04.is-show .top-content__people_list li:nth-child(3) a{
	background: url(../images/top/top-section04__img03.png) no-repeat center center ;
	background-size: cover;
	animation-delay: 1s;
}
.l-top-content__wrap.section04.is-show .top-content__people_list li a span{
	font-size: 1.3rem;
	font-weight: 600;
	color: #FFF;
}


.l-top-content__wrap.section04.other.is-show .top-content__people_list li:first-child a{
	background: url(../images/top/top-section04__img01_2.png) no-repeat center center ;
	background-size: cover;
	animation-delay: .6s;
}
.l-top-content__wrap.section04.other.is-show .top-content__people_list li:nth-child(2) a{
	background: url(../images/top/top-section04__img02_2.png) no-repeat center center ;
	background-size: cover;
	animation-delay: .8s;
}
.l-top-content__wrap.section04.other.is-show .top-content__people_list li:nth-child(3) a{
	background: url(../images/top/top-section04__img03.png) no-repeat center center ;
	background-size: cover;
	animation-delay: 1s;
}


/********************************************


section05


**********************************************/


.l-top-content__wrap.section05.is-show {
	position: relative;
	display: flex;
	align-items: flex-start;
	padding: 14vh 0 10vh;
}

.l-top-content__wrap.section05.is-show::after {
	content: '';
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	pointer-events: none;
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	background: rgba(0,0,0,.4);
	mix-blend-mode: multiply;
	z-index: -1;
	animation:slider_block 0.2s ease-out forwards;
	animation-delay: .3s;
}
.l-top-content__wrap.section05.is-show::before {
	content: '';
	position: absolute;
	bottom:0;
	left: 0;
	width: 60%;
	height: 15vh;
	background: url(../images/top/top-section05__copy.svg) no-repeat left bottom;
	background-size: contain;
	z-index: 2;
	pointer-events: none;
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	animation:fade-in 0.3s ease-out both;
	animation-delay: .6s;
}



.top-content__future-img{
	width: 35%;
	margin-left:15%;
	position: relative;
	z-index: 5;
}
.top-content__future-img li:first-child{
	width: 70%;
	margin: 0 30% 0 0;
}
.top-content__future-img li:nth-child(2){
	width: 40%;
	margin: -100px 0 0 auto;
}
.top-content__future-img li img{
	width: 100%;
	display: block;
}



.l-top-content__wrap.section05.is-show .top-content__title_wrap{
	width: 30%;
	margin: 8vh auto 0 10%;
}

.top-content__title_wrap dl dt{
	background: none;
	color: #FFF100;
	padding: 0;
	font-size: 2.5rem;
	margin: 5vh 0 3.5vh;
}
.top-content__title_wrap dl dd{
	color: #FFF100;
	font-size: 1.5rem;
	line-height: 1.8em;
}
.top-content__title_wrap a{
	display: block;
	width: 55%;
	margin: 40px auto 0 0 ;
}


.l-top-content__wrap.section04.other .top-content__title_wrap dl dt{
	color: #000;
}
.l-top-content__wrap.section04.other .top-content__title_wrap dl dd{
	color: #000;
	font-size: 1.5rem;
	line-height: 1.8em;
}
/********************************************


section06


**********************************************/
.section06{
	position: relative;
	background: #FFF;
}


.section06 a img{
	width: 100%;
}

/********************************************


section07


**********************************************/


.l-top-content__wrap.section07 {
	position: relative;
	background: #EFEFEF;
	padding: 7vh 0 5vh;
}

.l-top-content__wrap.section07.is-show::after {
	content: '';
	width: 0;
	height: 30vh;
	position: absolute;
	top: 0;
	right: 0;
	pointer-events: none;
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	background: #003893;
	z-index: 0;
	animation:slider_block 0.3s ease-out forwards;
	animation-delay: .4s;
}
.l-top-content__wrap.section07.is-show::before {
	content: '';
	width: 0;
	height: 70vh;
	position: absolute;
	top: 30vh;
	left: 0;
	pointer-events: none;
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	animation:slider_block 0.3s ease-out forwards;
	animation-delay: .4s;
	background: #DDD;
	z-index: 0;
}
.l-top-content__wrap.section07 a.l-top-content__parents-btn{
	width: 80%;
	height: 25vh;
	margin: 5vh auto;
	position: relative;
	z-index: 2;

	background:url(../images/top/top-section07__parents.jpg) rgba(0,0,0,.5)  no-repeat center center;
	background-size: cover;
	border: 1px solid #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
	font-weight: 600;
	color: #FFF100;
	visibility: hidden;
}
.l-top-content__wrap.section07 a.l-top-content__welfare-btn{
	width: 80%;
	height: 25vh;
	margin: 5vh auto;
	position: relative;
	z-index: 2;

	background:url(../images/top/top-section07__welfare.jpg) rgba(0,0,0,.5)  no-repeat center center;
	background-size: cover;
	border: 1px solid #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
	font-weight: 600;
	color: #FFF;
	visibility: hidden;
}


.l-top-content__wrap.section07.is-show a.l-top-content__parents-btn,
.l-top-content__wrap.section07.is-show a.l-top-content__welfare-btn{
	animation: fade-in .4s ease-out both;
	animation-delay: 1s;
	visibility: visible;
}
.l-top-content__wrap.section07 .l-top-content__recruit-title{
	width: 70%;
	margin: 0 auto;
	height: 15vh;
	display: flex;
	position: relative;
	z-index: 5;
	visibility: hidden;
}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-title{
	animation:bottom_in 0.4s ease-out both;
	animation-delay: 1s;
	visibility: visible;
}
.l-top-content__wrap.section07 .l-top-content__recruit-title img{
	height: 20vh;
	display: block;
}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-title p{
	font-size: 2.5rem;
	line-height: 1.2em;
	font-weight: 600;
	color: #003893;
	margin-left: 1em;
	padding: 5px 0;
}

.l-top-content__wrap.section07.is-show .l-top-content__recruit-list::before{
	content: '';
	width: 100%;
	max-height: 32vh;
	position: absolute;
	left:0;
	bottom: 0;
	animation:slider_block_height 0.6s ease-out both;
	animation-delay: 1s;
	z-index: 0;
	background: #1faddd;
}


.l-top-content__wrap.section07  .l-top-content__recruit-list{
	width: 80%;
	height: 25vh;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 5%;
	visibility: hidden;
}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-list{
	visibility: visible;
}


.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li{
	animation:bottom_in 0.4s ease-out both;
	animation-delay: 1s;
	width: 20%;
	padding-top: 20px;
}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-list  li:first-child {
	width: 16%;
	padding-top: 0;
}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li span{
	display: block;
	font-size: 2.5rem;
	line-height: 1.2em;
	font-weight: 600;
	color: #FFF;
	transform: rotate(90deg);
	padding-left: 8vh;
}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li a{
	display: block;
	position: relative;
	overflow: hidden;
}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li a:hover {
	opacity: 1;
}



.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li:nth-child(2) a::after{
	background: url(../images/top/top-section07__img01.jpg) no-repeat center top;
	background-size: cover;
}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li:nth-child(3) a::after{
	background: url(../images/top/top-section07__img02.jpg) no-repeat center center;
	background-size: cover;
}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li:nth-child(4) a::after{
	background: url(../images/top/top-section07__img04.jpg) no-repeat center center;
	background-size: cover;
}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li:nth-child(5) a::after{
	background: url(../images/top/top-section07__img03.jpg) no-repeat center center;
	background-size: cover;
}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li a::after{
	content: '';
	width: 100%;
	height: 16vh;
	display: block;
	transition: all .1s ease-in-out;
}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li a:hover::after{
	content: '';
	width: 110%;
	margin-left: -5%; 
	transition: all .2s ease-in-out;
}


.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li a p{
	width: 100%;
	padding: 1vh 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: #003893;
	position: relative;
	background: #FFF;
	letter-spacing:normal;

}
.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li a p::after{
	content: url(../images/top/top-section02__bnr-icon.svg);
	width: 30px;
	display: block;
	line-height: 0;
	margin-left: 1em;	
}



.l-top-content__wrap.section07.is-show a.l-top-content__faq-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: #FFF !important;
	border: 1px solid #FFF;
	font-size: 1.4rem;
	width: 15%;
	margin: 2vh 15% 0 auto;
	height: 5vh;
	animation:bottom_in 0.4s ease-out both;
	animation-delay: 1.6s;
}




/********************************************


section08


**********************************************/


.l-top-content__wrap.section08 {
	padding: 3vh 0 0;
	background: #1faddd;
	min-height: inherit;
}





/* ------------------ Media query	767px以下の場合 スマートフォン設定-----------------*/

@media screen and (max-width: 768px ) {


	body.top-page .content-wrap {
		background: #1faddd;
		position: relative;
		z-index: 0;
	}

	.top-content__title {
		width: 100%;
		height: 100px;
		/*background:  #1faddd;*/
		background: transparent;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 2.7rem;
		font-weight: 600;
		color: #FFF100;
		letter-spacing: .2em;
		margin-top: 30px;
		position: relative;
		z-index: 2;
		margin-left: -100%;
	}

	.is-show .top-content__title.title__slide {
		animation:title__slide-res 0.3s ease-in-out both;
		animation-delay: .4s;
	}
	@keyframes title__slide-res {
		0% {
		margin-left: -100%;
		}
		100% {
		margin-left: 0;
		}
		}
		@-webkit-keyframes title__slide-res {
			0% {
				margin-left: -100%;
				}
				100% {
				margin-left: 0;
				}
				}

.section04 .top-content__title ,
.section05 .top-content__title {
	margin-left: 0;
}

	/*	
	@keyframes title__slide {
	0% {
	transform: translateX(-100%);
	}
	100% {
	transform: translateX();
	}
	}
	@-webkit-keyframes title__slide {
	0% {
	width: 0;
	}
	100% {
	width: 100%;
	}
	}
	
	
	
	 */
	
	
	
	
	
	/********************************************
	
	
	video
	
	
	**********************************************/
	/*
	.top-page .content-wrap {
		padding: 0;
		height: 100vh;
		overflow: hidden;
	}
	*/
	
.video-container {
    width: 100vw;
    height: 75vh;
    overflow: hidden;
    position: fixed;
	top: 60px;
    bottom:inherit;
    left: 0;
    z-index: -1;
}

	/* 	.video-container:before {
		content: "";
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 100;
		position: absolute;
		top: 0;
		left: 0;
		display: inline-block;
		background: rgba(0,0,0,.2);
	}
	.top-page .video-container:after{
		content:"";
		min-width: 100%;
		min-height: 100%;
		width: auto;
		height: auto;
		position: relative;
		z-index:2;
		background: url(../images/top_movie_poster.jpg) no-repeat center center;
		background-size: cover;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.video-container img{
		width: 100%;
		height:auto;
	} */
	
.video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: 100%;
  
  /* Center the video */
  position: relative;
	z-index:10;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%,-10%);
}
	
	/********************************************
	
	
	section01
	
	
	**********************************************/
.l-top-content__wrap {
	padding-top: 0;
	min-height: calc(75vh + 60px);
}

	.top-content__logo {
		height: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
		padding: 4% 5% 7%;
		margin-top: 50px;
	}
	.top-content__logo .slider-square{
		margin-bottom: 20px;
	}
	.top-content__logo img{
		display: block;
		height: auto;
		width: 100%;
		margin-bottom: 4vh;
		animation:sizeup-res 1.8s ease-out both ;
		-webkit-animation:sizeup-res 1.8s ease-out both ;
		animation-delay: .1s;
		opacity: 0;
	}
	
	.top-content__logo .slider-square::after {background: #1faddd;
		position: absolute;
		animation:slider_block-res 1s ease-out forwards;
		-webkit-animation:slider_block-res 1s ease-out forwards;
		animation-delay: .1s;
		width: 200%;
		left: -200%;
	}/*
	@media all and (-ms-high-contrast:none){
	  *::-ms-backdrop, .is-show .slider-square::after {
		animation:slider_block_ie 0.6s ease-out none ;
		-webkit-animation:slider_block_ie 0.6s ease-out none ;
	}
	}
	.is-show .slider-square:nth-of-type(2)::after {
		animation-delay: .2s;
	}
	.is-show .slider-square:nth-of-type(3)::after {
		animation-delay: .3s;
	}
	.is-show .slider-square:nth-of-type(4)::after {
		animation-delay: .4s;
	}
	.is-show .slider-square:nth-of-type(5)::after {
		animation-delay: .5s;
	}
	*/
	.slider-square{
	overflow: hidden;
	display: inline-block;
	position: relative;
	}/*
	.slider-square::after {
	content: '';
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	pointer-events: none;
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	}
	*/
	@keyframes sizeup-res {
	0% {
	width: 90%;
	margin-bottom: 2vh;
	opacity: 0;
	}
	30%{
		opacity:0;
		
	}
	35%{
	
		opacity:1;
	}
	75%{
		width: 90%;
		margin-bottom: 2vh;
		opacity:1;
	}
	80% {
	width: 100%;
	opacity: 1;
	}
	100% {
	width: 90%;
	margin-bottom: 2vh;
	opacity: 1;
	}
	}
	@-webkit-keyframes sizeup-res {
		0% {
			width: 90%;
			margin-bottom: 2vh;
			opacity: 0;
			}
			30%{
				opacity:0;
				
			}
			35%{
			
				opacity:1;
			}
			75%{
				width: 90%;
				margin-bottom: 2vh;
				opacity:1;
			}
			80% {
			width: 100%;
			opacity: 1;
			}
			100% {
			width: 90%;
			margin-bottom: 2vh;
			opacity: 1;
			}
			}
	
	
	@keyframes slider_block-res {
	0% {
	left: -200%;
	}
	100% {
	left: 100%;
	}
	}
	@-webkit-keyframes slider_block-res {
		0% {
			left: -200%;
			}
			100% {
			left: 100%;
			}
			}/*
	@keyframes slider_block_height {
	0% {
	height: 0;
	}
	100% {
	height: 100%;
	}
	}
	@-webkit-keyframes slider_block_height {
	0% {
	height: 0;
	}
	100% {
	height: 100%;
	}
	}
	
	
	
	@keyframes slider_block_ie {
		0% {
		width: 0;
		left:0;
		}
		50% {
		width: 100%;
		left:0;
		}
		100% {
		left: 105%;
		}
	}
	@-webkit-keyframes slider_block_ie {
	0% {
	width: 0;
	left:0;
	}
	50% {
	width: 100%;
	left:0;
	}
	100% {
	left: 105%;
	}
	}
	@keyframes sb_next {
	0%,
	40% {
	left: 0;
	}
	100% {
	left: 105%;
	}
	}
	@-webkit-keyframes sb_next {
	0%,
	40% {
	left: 0;
	}
	100% {
	left: 105%;
	}
	}
	
	
	.l-top-news-content {
		width: 100%;
		position: absolute;
		bottom: 0;
		left: 0;
		background: rgba(255,255,255,.6);
		padding: 2vh 10% 3vh;
		opacity: 0;
		transform: translateY(10%);
	}
	.is-show .l-top-news-content {
		animation:bottom_in .2s ease-in-out both;
		animation-delay: .8s;
		transform: translateY(0);
	}
	
	.l-top-news-content .l-top-news-title{
		font-size: 1.6rem;
		font-weight: 600;
		color: #003893;
	}
	.l-top-news-content .l-top-news-list__title{
		font-size: 1.4rem;
		color: #003893;
		padding: 5px 0 0;
	}
	.l-top-news-content .l-top-news-list__title span{
		display: inline-block;
		margin-right: 2em;
	}
	
	*/
	
	
	/********************************************
	
	
	section02
	
	
	**********************************************/
	

	.l-top-content__wrap.section02.is-show {
		position: relative;
		padding: 5px 0 17px;

		/*background: #1faddd;*/
		background: rgba(31,173,221,0.6);

	}
	.l-top-content__wrap.section02::after {
		display:none;
	}

	.l-top-content__wrap.section02 .top-content__title {
		height: 200px;
		padding-bottom: 80px;
	}

	.top-link__bnr {
		width: 100%;
		margin: 0 auto 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
		z-index: 5;
	}
	.l-top-content__wrap.section02.is-show .top-link__bnr {
		margin: -110px auto 0;
	}
	.l-top-content__wrap.section02.is-show .top-link__bnr li {
		width: 90%;
		margin: 20px 5%;
	}/*
	.l-top-content__wrap.section02.is-show .top-link__bnr li:first-child {
		animation:bottom_in 0.2s ease-in-out both;
		animation-delay: .6s;
	
	}
	.l-top-content__wrap.section02.is-show .top-link__bnr li:nth-child(2) {
		animation:bottom_in 0.2s ease-in-out both;
		animation-delay: .8s;
	
	}
	
	
	
	
	.top-link__bnr li a{
		display: block;
		position: relative;
		overflow: hidden;
		box-shadow: 0 0 20px rgba(0,0,0,.2);
	}
	.top-link__bnr li a:hover {
		opacity: 1;
	
	}
	
	.l-top-content__wrap.section02.is-show .top-link__bnr li:first-child a::before{
		background: url(../images/top/top-section02__bnr01.jpg) no-repeat center center;
		background-size: cover;
	}
	.l-top-content__wrap.section02.is-show .top-link__bnr li:nth-child(2) a::before{
		background: url(../images/top/top-section02__bnr02.jpg) no-repeat center center;
		background-size: cover;
	}*/
	.top-link__bnr li a::before{
		content: '';
		width: 100%;
		height: 200px;
		display: block;
		transition: all .1s ease-in-out;
	}/*
	.top-link__bnr li a:hover::before{
		content: '';
		width: 110%;
		margin-left: -5%; 
		transition: all .2s ease-in-out;
	}
	
	
	.top-link__bnr li a p{
		width: 100%;
		padding: 2.5vh 0;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.8rem;
		color: #003893;
		position: relative;
		background: #FFF;
	
	}
	.l-top-content__wrap.section02.is-show .top-link__bnr li a p::after{
		content: url(../images/top/top-section02__bnr-icon.svg);
		width: 40px;
		display: block;
		line-height: 0;
		margin-left: 1em;	
	}

*/
h4.top-works__copy {
	padding:0 5%;
		visibility: hidden;
		margin: 5vh 0 ;
	position: relative;
	z-index: 2;
}
.is-show h4.top-works__copy {
	z-index: 2;
	animation:bottom_in 0.2s ease-in-out both;
	animation-delay: .2s;
	visibility: visible;
}
h4.top-works__copy p {
	text-align: left;
	color: #FFF;
	font-size: 3rem;
		font-family: 'd-din_condensedregular';
	display: inline;
	background: linear-gradient(transparent 75%, #1faddd 75%);
	position: relative;
}
h4.top-works__copy p span{
	font-size: 4rem;
	display: inline-block;
	padding: 0 ;
}


	/********************************************
	
	
	section03
	
	
	**********************************************/
	
	
	.l-top-content__wrap.section03  {
		background: url(../images/top/top-section03__bg.jpg) no-repeat 59% bottom;
		background-size: 1200%;
/*		position: relative;
		padding: 0 0 15vh;
		overflow: hidden;
		z-index: 2;*/
		position: relative;
	}
	/* .l-top-content__wrap.section03::before  {
		content: '';
		width: 100%;
		height: 100vh;
		background: url(../images/top/top-section03__bg.jpg) no-repeat center center;
		background-size: cover;
		position: absolute;
		top: 0;
		left: 0;
	} */
/*
	.l-top-content__wrap.section03.is-show::after {
		content: '';
		width: 100%;
		bottom: 0;
		right: 0;
		pointer-events: none;
		-webkit-transform: translate3d(0px,0px,0px);
		transform: translate3d(0px,0px,0px);
		background: rgba(0,56,147,.8);
		mix-blend-mode:multiply;
		position: absolute;
		animation:slider_block_height 0.3s ease-out forwards;
		animation-delay: .3s;
	}
	
	.l-top-content__wrap.section03 .top-content__title ,
	.l-top-content__wrap.section03 .top-link__bnr {
		opacity: 0;
		margin-top: 10vh;
	}
	.l-top-content__wrap.section03.is-show .top-content__title{
		opacity: 1;
	
	}
	
	.l-top-content__wrap.section03 .top-link__bnr {
		margin: 9vh auto 0;
	
	}
	.l-top-content__wrap.section03.is-show .top-link__bnr {
		opacity: 1;
	}*/
	.l-top-content__wrap.section03 .top-link__bnr li {
		width: 90%;
		margin: 20px 5%;
	}/*
	.l-top-content__wrap.section03.is-show .top-link__bnr li {
		animation:bottom_in 0.2s ease-in-out both;
	}
	.l-top-content__wrap.section03.is-show .top-link__bnr li:first-child {
		animation-delay: .3s;
	}
	.l-top-content__wrap.section03.is-show .top-link__bnr li:nth-child(2) {
		animation-delay: .5s;
	}
	.l-top-content__wrap.section03.is-show .top-link__bnr li:nth-child(3) {
		animation-delay: .7s;
	}
	.l-top-content__wrap.section03.is-show .top-link__bnr li:nth-child(4) {
		animation-delay: .9s;
	}
	*/
	.l-top-content__wrap.section03 .top-link__bnr li .top-work-list{
		text-align: center;
		margin-bottom: 10px;
		display: flex;
	}
	.l-top-content__wrap.section03 .top-link__bnr li .top-work-list p{
		font-weight: 600;
		font-size: 2rem;
		color: #FFF100;
		line-height: 1.5em;
		display: block;
		text-align: left;
		padding: 0 0 0 15px;
		width: 80%;
	}
	.l-top-content__wrap.section03 .top-link__bnr li .top-work-list span{
		font-family: 'Josefin Sans', sans-serif;
		font-size: 5.5rem;
		color: #FFF;
		display: block;
		line-height: 1;
		padding: 0;
		width: 20%;
	}
	/*
	
	.l-top-content__wrap.section03 .top-link__bnr li a {
		position: relative;
	}
	*/
	.l-top-content__wrap.section03 .top-link__bnr li a::after{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 250px;
		background: rgba(0,0,0,.3) url(../images/top/top-section03__more.svg) no-repeat center center;
		background-size: 40%;
	}
	.l-top-content__wrap.section03 .top-link__bnr li a:hover::after{
		background: rgba(0,0,0,.6) url(../images/top/top-section03__more.svg) no-repeat center center;
		background-size: 40%;
		transition: all .3s ease-in-out;
	}

	
	.l-top-content__wrap.section03 .top-link__bnr li a::before{
		height: 250px;
	}
	.l-top-content__wrap.section03 .top-link__bnr li:first-child a::before{
		background: url(../images/top/top-section03__img01.jpg) no-repeat center top;
		background-size: cover;
	}/*
	.l-top-content__wrap.section03 .top-link__bnr li:nth-child(2) a::before{
		background: url(../images/top/top-section03__img04.jpg) no-repeat center center;
		background-size: cover;
	}
	.l-top-content__wrap.section03 .top-link__bnr li:nth-child(3) a::before{
		background: url(../images/top/top-section03__img02.jpg) no-repeat center center;
		background-size: cover;
	}
	.l-top-content__wrap.section03 .top-link__bnr li:nth-child(4) a::before{
		background: url(../images/top/top-section03__img03.jpg) no-repeat center center;
		background-size: cover;
	}
	
	.l-top-content__wrap.section03 .top-link__bnr li a p{
		width: 100%;
		height: 8vh;
		padding:  0;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		line-height: 1.2em;
		text-align: center;
		font-weight: 600;
		color: #003893;
		position: relative;
		background: #FFF;
	} */
	
	/********************************************
	
	
	section04
	
	
	**********************************************/
	

	.l-top-content__wrap.section04 {
		background:  #1faddd;
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 3vh 0;
		min-height: 0;
	}/* 	
	.l-top-content__wrap.section04.other {
		background: #F5F5F5;
	}	*/
	.l-top-content__wrap.section04.is-show::after {
/*		content: '';
		width: 60%;
		height: 15vh;
		background: url(../images/top/top-section04__copy.svg) no-repeat right top;
		background-size: contain;
		position: absolute;*/
		top: -3px;
/*		right: 0;
		pointer-events: none;
		-webkit-transform: translate3d(0px,0px,0px);
		transform: translate3d(0px,0px,0px);
		animation:fade-in 0.3s ease-out both;
		animation-delay: .3s;*/
	}

	.top-content__title_wrap{
		width: 90%;
		margin: 0 5%;
	}
	.top-content__title_wrap .top-content__title {
		width: 100%;
		height: auto;
		background:  none;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		font-size: 3rem;
		font-weight: 600;
		color: #FFF100;
		letter-spacing: .2em;
		margin-top: 5vh;
		position: relative;
		z-index: 2;
	}/*
	.top-content__title_wrap dl dt{
		background: #FFF100;
		color: #1faddd;
		padding: 15px 20px;
		font-size: 2rem;
		margin: 25px 0;
	}
	.top-content__title_wrap dl dd{
		color: #FFF100;
		font-size: 1.5rem;
		line-height: 1.6em;
	}
	.top-content__title_wrap a{
		display: block;
		width: 55%;
		margin: 40px auto 0 0 ;
	}
	.top-content__title_wrap a img{
		width:  100%;
	}
	.l-top-content__wrap.section04.other .top-content__title_wrap .top-content__title {
		color: #000;
	}
	
	
	
	*/
	.l-top-content__wrap.section04.is-show .top-content__people_list{
		width: 90%;
		margin:0 5%;
		display: flex;
		justify-content: space-between;
		z-index: 3;
	}
	.l-top-content__wrap.section04.is-show .top-content__people_list li{
		width: 30%;
	}
	.l-top-content__wrap.section04.is-show .top-content__people_list li:first-child{
		margin: 3vh 0 0;
		
	}
	.l-top-content__wrap.section04.is-show .top-content__people_list li:nth-child(2){
		margin: 3vh 0 0;
	}
	.l-top-content__wrap.section04.is-show .top-content__people_list li:nth-child(3){
		margin: 3vh 0 0;
	}
	.l-top-content__wrap.section04.is-show .top-content__people_list li a{
		width: 100%;
		display: flex;
		align-items: flex-end;
		padding: 5%;
		min-height: 30rem;
	
		animation:top_in 0.3s ease-out both;
		height: 100%;
	
	}
.l-top-content__wrap.section04.is-show .top-content__people_list li:first-child a{
	background: url(../images/top/top-section04__img02_2.png) no-repeat center center ;
	background-size: cover;
	animation-delay: .6s;
}
.l-top-content__wrap.section04.is-show .top-content__people_list li:nth-child(2) a{
	background: url(../images/top/top-section04__img01_2.png) no-repeat center center ;
	background-size: cover;
	animation-delay: .8s;
}
.l-top-content__wrap.section04.is-show .top-content__people_list li:nth-child(3) a{
	background: url(../images/top/top-section04__img03.png) no-repeat center center ;
	background-size: cover;
	animation-delay: 1s;
}
.l-top-content__wrap.section04.is-show .top-content__people_list li a span{
	font-size: 1.3rem;
	font-weight: 600;
	color: #FFF;
}


.l-top-content__wrap.section04.other.is-show .top-content__people_list li:first-child a{
	background: url(../images/top/top-section04__img01_2.png) no-repeat center center ;
	background-size: cover;
	animation-delay: .6s;
}
.l-top-content__wrap.section04.other.is-show .top-content__people_list li:nth-child(2) a{
	background: url(../images/top/top-section04__img02_2.png) no-repeat center center ;
	background-size: cover;
	animation-delay: .8s;
}
.l-top-content__wrap.section04.other.is-show .top-content__people_list li:nth-child(3) a{
	background: url(../images/top/top-section04__img03.png) no-repeat center center ;
	background-size: cover;
	animation-delay: 1s;
}

	
	
	/********************************************
	
	
	section05
	
	
	**********************************************/
	

	.l-top-content__wrap.section05.is-show {
		position: relative;
		display: flex;
		align-items: flex-start;
		padding: 14vh 0 10vh;
		flex-wrap: wrap;
	}
	.l-top-content__wrap.section05.is-show::after {
/*		content: '';
		width: 0;
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		pointer-events: none;
		-webkit-transform: translate3d(0px,0px,0px);
		transform: translate3d(0px,0px,0px);*/

		/*background: rgba(0,0,0,.4);*/
		background: rgba(0,0,0,.7);

/*		mix-blend-mode: multiply;
		z-index: -1;
		animation:slider_block 0.2s ease-out forwards;
		animation-delay: .3s;*/
	}
/*
	.l-top-content__wrap.section05.is-show::before {
		content: '';
		position: absolute;
		bottom:0;
		left: 0;
		width: 60%;
		height: 15vh;
		background: url(../images/top/top-section05__copy.svg) no-repeat left bottom;
		background-size: contain;
		z-index: 2;
		pointer-events: none;
		-webkit-transform: translate3d(0px,0px,0px);
		transform: translate3d(0px,0px,0px);
		animation:fade-in 0.3s ease-out both;
		animation-delay: .6s;
	}
	
	
	*/
	.top-content__future-img{
		width: 90%;
		margin:50px 5%;
		position: relative;
		z-index: 5;
		order: 2;
	}/*
	.top-content__future-img li:first-child{
		width: 70%;
		margin: 0 30% 0 0;
	}
	.top-content__future-img li:nth-child(2){
		width: 40%;
		margin: -100px 0 0 auto;
	}
	.top-content__future-img li img{
		width: 100%;
		display: block;
	}
	
	
	*/
	.l-top-content__wrap.section05.is-show .top-content__title_wrap{
		width: 90%;
		margin: 0 5%;
		order: 1
	}
	/*
	.top-content__title_wrap dl dt{
		background: none;
		color: #FFF100;
		padding: 0;
		font-size: 2.5rem;
		margin: 5vh 0 3.5vh;
	}
	.top-content__title_wrap dl dd{
		color: #FFF100;
		font-size: 1.5rem;
		line-height: 1.8em;
	}
	.top-content__title_wrap a{
		display: block;
		width: 55%;
		margin: 40px auto 0 0 ;
	}
	
	
	.l-top-content__wrap.section04.other .top-content__title_wrap dl dt{
		color: #000;
	}
	.l-top-content__wrap.section04.other .top-content__title_wrap dl dd{
		color: #000;
		font-size: 1.5rem;
		line-height: 1.8em;
	}
	 */
	
	/********************************************
	
	
	section07
	
	
	**********************************************/
/* 	
	
	.l-top-content__wrap.section07 {
		position: relative;
		background: #EFEFEF;
		padding: 7vh 0 5vh;
	}
	
	.l-top-content__wrap.section07.is-show::after {
		content: '';
		width: 0;
		height: 30vh;
		position: absolute;
		top: 0;
		right: 0;
		pointer-events: none;
		-webkit-transform: translate3d(0px,0px,0px);
		transform: translate3d(0px,0px,0px);
		background: #003893;
		z-index: 0;
		animation:slider_block 0.3s ease-out forwards;
		animation-delay: .4s;
	}
	.l-top-content__wrap.section07.is-show::before {
		content: '';
		width: 0;
		height: 70vh;
		position: absolute;
		top: 30vh;
		left: 0;
		pointer-events: none;
		-webkit-transform: translate3d(0px,0px,0px);
		transform: translate3d(0px,0px,0px);
		animation:slider_block 0.3s ease-out forwards;
		animation-delay: .4s;
		background: #DDD;
		z-index: 0;
	}*/
	.l-top-content__wrap.section07 a.l-top-content__parents-btn{
		width: 80%;
		height: 25vh;
		margin: 5vh auto;
		position: relative;
		z-index: 2;
	
		background:url(../images/top/top-section07__parents.jpg) rgba(0,0,0,.5)  no-repeat center center;
		background-size: cover;
		border: 1px solid #FFF;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 2.4rem;
		font-weight: 600;
		color: #FFF100;
		visibility: hidden;
	}

	.l-top-content__wrap.section07 a.l-top-content__welfare-btn{
		width: 80%;
		height: 25vh;
		margin: 5vh auto;
		position: relative;
		z-index: 2;
	
		background:url(../images/top/top-section07__welfare.jpg) rgba(0,0,0,.5)  no-repeat 80% center;
		background-size: cover;
		border: 1px solid #FFF;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 2.4rem;
		font-weight: 600;
		color: #FFF;
		visibility: hidden;
	}


/*
	.l-top-content__wrap.section07.is-show a.l-top-content__parents-btn,
	.l-top-content__wrap.section07.is-show a.l-top-content__welfare-btn{
		animation: fade-in .4s ease-out both;
		animation-delay: 1s;
		visibility: visible;
	}
	.l-top-content__wrap.section07 .l-top-content__recruit-title{
		width: 70%;
		margin: 0 auto;
		height: 15vh;
		display: flex;
		position: relative;
		z-index: 5;
		visibility: hidden;
	}
	*/
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-title{
		animation:bottom_in 0.4s ease-out both;
		animation-delay: 1s;
		visibility: visible;
		width: 80%;
		height: 6vh;
	}
	/*
	.l-top-content__wrap.section07 .l-top-content__recruit-title img{
		height: 20vh;
		display: block;
	}
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-title p{
		font-size: 2.5rem;
		line-height: 1.2em;
		font-weight: 600;
		color: #003893;
		margin-left: 1em;
		padding: 5px 0;
	} */

	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list::before{
		content: '';
		width: 100%;
		max-height: 38vh;
		position: absolute;
		left:0;
		bottom: 0;
		animation:slider_block_height 0.6s ease-out both;
		animation-delay: 1s;
		z-index: 0;
		background: #1faddd;
	}
	
	.l-top-content__wrap.section07  .l-top-content__recruit-list{
		width: 90%;
		height: auto;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-right: 5%;
		visibility: hidden;
		flex-wrap: wrap;
	}/*
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list{
		visibility: visible;
	}
	
	*/
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li{
		animation:bottom_in 0.4s ease-out both;
		animation-delay: 1s;
		width: 49%;
		padding-top: 20px;
		position: relative;
		z-index: 6;
	}
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list  li:first-child {
		width: 100%;
		padding-top: 0;
	}
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li span{
		display: block;
		font-size: 2.2rem;
		line-height: 1.2em;
		font-weight: 600;
		color: #FFF;
		transform: rotate(0deg);
		padding-left: 25%;
	}/*
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li a{
		display: block;
		position: relative;
		overflow: hidden;
	}
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li a:hover {
		opacity: 1;
	}
	
	
	
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li:nth-child(2) a::after{
		background: url(../images/top/top-section07__img01.jpg) no-repeat center center;
		background-size: cover;
	}
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li:nth-child(3) a::after{
		background: url(../images/top/top-section07__img02.jpg) no-repeat center center;
		background-size: cover;
	}
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li:nth-child(4) a::after{
		background: url(../images/top/top-section07__img03.jpg) no-repeat center center;
		background-size: cover;
	}
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li:nth-child(5) a::after{
		background: url(../images/top/top-section07__img04.jpg) no-repeat center center;
		background-size: cover;
	}*/
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li a::after{
		content: '';
		width: 100%;
		height: 100px;
		display: block;
		transition: all .1s ease-in-out;
	}/*
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li a:hover::after{
		content: '';
		width: 110%;
		margin-left: -5%; 
		transition: all .2s ease-in-out;
	}
	
	*/
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li a p{
		width: 100%;
		padding: 1vh 0;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.3rem;
		letter-spacing: 0;
		color: #003893;
		position: relative;
		background: #FFF;
	
	}
	.l-top-content__wrap.section07.is-show .l-top-content__recruit-list li a p::after{
		content: url(../images/top/top-section02__bnr-icon.svg);
		width: 30px;
		display: block;
		line-height: 0;
		margin-left: 1em;	
	}
	
	/*
	
	.l-top-content__wrap.section07.is-show a.l-top-content__faq-btn{
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 600;
		color: #FFF !important;
		border: 1px solid #FFF;
		font-size: 1.4rem;
		width: 15%;
		margin: 2vh 15% 0 auto;
		height: 5vh;
		animation:bottom_in 0.4s ease-out both;
		animation-delay: 1.6s;
	}
	
	
	 */
	
	/********************************************
	
	
	section08
	
	
	**********************************************/
	/*
	
	.l-top-content__wrap.section08 {
		padding: 3vh 0 0;
		background: #1faddd;
		min-height: inherit;
	}
	
 */

	
}

/********************************************

	dance

**********************************************/

.dance-link{
	display: block;
	width: 100%;
	background-size: cover;
	position:relative;
}
.dance-link a{
	position:absolute;
	width: 100%;
	height: 100%;
	display: block;
}
.dance-link img{
	width: 100%;
}
