@charset "utf-8";
/* CSS Document */
/* -- common ----------------------------------------------------*/
.main h2{
	font-family: 'Roboto', sans-serif;	
}
.blue{
	background: #025BAB;
	padding: 25% 0 0;
	width: 100%;
}
.gray{
	background: #F0F3F5;
	width: 100%;	
}
.block{
	width: 100%;
	max-width: 1300px;
	margin: auto;
}
.block_half{
	width: 50%;
	max-width: 600px;
	margin: auto;
}
.btn .arrow{
	width: 230px;
	color: #FF9E3B;
	border: solid 2px #FF9E3B;
	background: #fff;
	padding: 10px 16px;
	font-size: 20px;
	font-weight: bold;
    border-radius: 6px;
    position: relative;
	font-family: 'Roboto', sans-serif;	
  	transition: background 1s;
}
.btn .arrow:hover{
	border: solid 2px #FF9E3B;
	background: #FF9E3B;
	color: #fff;	
	animation-duration:1s;
	animation-name:right;
}
@keyframes right{
	0%{
		-webkit-transform: translateX(0);
		transform: translateX( 0);
	}
	100%{
		-webkit-transform: translateX(10px);
		transform: translateX( 10px); 
	}
}
.btn .arrow::before,
.btn .arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.btn .arrow::before{
    right: 16px;
    width: 30px;
    height: 2px;
    background: #FF9E3B;
}
.btn .arrow::after{
    right: 16px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FF9E3B;
    border-right: 2px solid #FF9E3B;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn .arrow:hover::before{
    background: #fff;	
}
.btn .arrow:hover::after{
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
/* -- slide ----------------------------------------------------*/
.slide .slidebox{
	background: #025BAB;	
}
.slide .slidebox li{
	position: relative;
}
.slide .slidebox li.s01{
	background: url(../img/slide/slide01.jpg);
}
.slide .slidebox li.s02{
	background: url(../img/slide/slide02.jpg);	
}
.slide .slidebox li.s03{
	background: url(../img/slide/slide03.jpg);	
}
.slide .slidebox li.s04{
	background: url(../img/slide/slide04.jpg);
}
.slide .slidebox li.s01,
.slide .slidebox li.s02,
.slide .slidebox li.s03,
.slide .slidebox li.s04{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;	
	padding-top: 56.25%;
}
.slide .slidebox li p{
	width: 100%;
	color: #fff;
	font-size: 3vw;
	font-weight: bold;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	text-align: center;
}
.slide .slidebox li p span{
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2vw;
    color: rgba(255, 255, 255, 0.5);
}
/* -- topics ----------------------------------------------------*/
.main .topics{
	position: relative;
    width: 100%;
    height: auto;
}
.topics .block{
	margin: -20% auto 0;
	padding: 0 10px;
}	
.topics .inner{
	background: #fff;
	padding: 50px 0;
	border: solid 1px #025BAB;	
}
.topics .inner .flex{
	display: flex;
	max-width: 1000px;
	margin: auto; 
	align-items: center;
	padding: 0 10px;
}
.topics .inner h2{
	font-size: 50px;
	font-weight: bold;
	color: #025BAB;
	margin: 0 20px 0 0;
}
.topics .inner .list{
	display: flex;
	justify-content: space-between;	
	flex-wrap: wrap;
	max-width: 1000px;
    margin: 50px auto 0;
}
.topics .inner .list::after {
    content: "";
    display: block;
    width: 30%;
    height: 0;
}

.topics .inner .list .box{ 
	width: 30%;
}
.topics .inner .list .box a{
	transition: opacity 1s;
}
.topics .inner .list .box a:hover{
	opacity: 0.5;
}
.topics .inner .list .box .img {
    position:relative;
    overflow:hidden;
    box-sizing: content-box;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    border:1px #eee solid;
}
.topics .inner .list .box .no-img{
    position:relative;	
    border:1px #eee solid;
    margin: 0 0 10px;
}
.topics .inner .list .box .img span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}
.topics .inner .list .box .title{
	margin: 20px 0 0;
}
.topics .inner .list .box .tag{
	margin: 20px 0 0;	
	display: flex;
}
.topics .inner .list .box .tag p{
	width: 24px;	
}
.topics .inner .list .box .tag ul{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	flex: 1 auto;
    margin: 0 0 0 10px;
}
.topics .inner .list .box .tag ul li{
	border: solid 1px #D3D3D3;	
	padding: 3px 6px;
	margin: 0 5px 5px 0;
	font-size: 12px;
}
/* -- concept ----------------------------------------------------*/
.main .concept{
	margin: 100px 0 0;
	position: relative;
}
.concept .block{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.concept h2{
	font-size: 60px;
    font-weight: bold;
    color: #025BAB;
    margin: 0 20px 0 0;
	padding: 0 10px;  
    position: relative;
    z-index: 1;
}
.concept .img{
    margin: -45px 0 0;
    z-index: -1;
}
.concept .gray{
	margin: -800px 0 0;
    height: 900px;
    position: relative;
    bottom: 0;
    z-index: -2;
}
.concept .gray:after{
	position: static;
}
.concept .text{
	margin: 100px 0 0;
	padding: 0 10px; 
}
.concept .text h3{
	font-size: 30px;
	font-weight: bold;
}
.concept .text p{
	margin: 50px 0 0;
	line-height: 32px;	
}
.concept .btn{
	margin: 50px 0 0;
	padding: 0 10px; 
}
/* -- staff ----------------------------------------------------*/
.main .staff{
	margin: 100px 0 0;
}
.staff .block{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.staff .flex{
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 50px 0 0;
	padding: 0 10px; 	
}
.staff .flex h2{
	width: 30%;
	font-size: 60px;
    font-weight: bold;
    color: #025BAB;
    line-height: 70px;
}
.staff .flex .img{
	width: 70%;
}
.staff .gray{
	height: 590px;
    margin: -490px 0 0;
}
.staff .text h3{
	font-size: 30px;
	font-weight: bold;
}
.staff .text{
	margin: 50px 0 0;
	padding: 0 10px; 	
}
.staff .text p{
	margin: 50px 0 0;
}
.staff .btn{
	margin: 50px 0 0;
	padding: 0 10px; 
}
/* -- recruit ----------------------------------------------------*/
.main .recruit{
	margin: 100px 0 0;
	position: relative;
}
.recruit .block{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.recruit h2{
	font-size: 60px;
    font-weight: bold;
    color: #025BAB;
    margin: 0 20px 0 0;
	padding: 0 10px;  
    position: relative;
    z-index: 1;
}
.recruit .img{
    margin: -45px 0 0;
    z-index: -1;
}
.recruit .gray{
	height: 700px;	
	margin: -600px 0 0;
    position: relative;
    bottom: 0;
    z-index: -2;
}
.recruit .text{
	margin: 100px 0 0;
	padding: 0 10px; 
}
.recruit .text h3{
	font-size: 30px;
	font-weight: bold;
}
.recruit .text p{
	margin: 50px 0 0;
	line-height: 32px;
}
.recruit .btn{
	margin: 50px 0 0;
	padding: 0 10px; 
}



.josei,
.online,
.support{
	width: 175px;
}
.josei {
	position: fixed;
    right: 10px;
    bottom: 260px;
    z-index: 10000;
}
.online {

	position: fixed;
    right: 10px;
    bottom: 180px;
    z-index: 10000;
}
.support{

	position: fixed;
    right: 10px;
    bottom: 100px;
    z-index: 10000;	
}
.josei a {
    background: url("../img/support/josei_off.png");	
}
.online a {
    background: url("../img/support/online_off.png");	
}
.support a {
    background: url("../img/support/support_off.png");	
	
}
.josei a,
.support a,
.online a {
    width: 70px;
    height: 70px;
    background-repeat: no-repeat; 
    background-position: center;
    background-size: contain;   
    margin: 0 0 0 auto;
}

.josei a:hover {
    background: url("../img/support/josei_on.png");	
    background-repeat: no-repeat; 
    background-position: center;
    background-size: contain;   
	width: 100%;
    height: 70px;
}
.online a:hover {
    background: url("../img/support/online_on.png");	
    background-repeat: no-repeat; 
    background-position: center;
    background-size: contain;   
	width: 100%;
    height: 70px;
}

.support a:hover {
	background: url("../img/support/support_on.png");
    background-repeat: no-repeat; 
    background-position: center;
    background-size: contain;   
	width: 100%;
    height: 70px;
}




@media screen and (max-width:899px){
/* -- common ----------------------------------------------------*/
	.btn .arrow{
		width: 200px;
		font-size: 16px;
	}
/* -- slide ----------------------------------------------------*/
	.slide .slidebox li.s01,
	.slide .slidebox li.s02,
	.slide .slidebox li.s03,
	.slide .slidebox li.s04{
		padding-top: 65%;
	}
	.slide .slidebox li p{
		font-size: 5vw;
		top: 50%;
	}
	.slide .slidebox li p span{
		font-size: 3vw;		
	}
/* -- topics ----------------------------------------------------*/
	.topics .inner {
	    padding: 30px 0 50px;
	}	
	.topics .inner h2 {
		font-size: 30px;
	}
	.topics .inner .list{
		padding: 0 10px;
	}
	.topics .inner .list .box{ 
		width: 100%;
		margin: 30px 0 0;
	}
	.topics .inner .list .box:first-child{
		margin: 0;
	}
	.topics .inner .list .box a{  
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.topics .inner .list .box a .img{
		width: 35%;
	}
	.topics .inner .list .box .img {
	    padding-top: 35%;
	}
	.topics .inner .list .box a .text{
		width: 60%;
	}
	.topics .inner .list .box .title {
	    margin: 0;
	}
/* -- concept ----------------------------------------------------*/
	.concept .gray {
		height: 850px;
		margin: -800px 0 0;
	}
	.concept .img {
	    margin: -30px 0 0;
	}
	.main .concept,
	.concept .text {
	    margin: 50px 0 0;
	}
	.concept h2 {
	    font-size: 40px;
	}
	.concept .text h3 {
	    font-size: 20px;
	}
	.concept .text p,
	.concept .btn  {
	    margin: 30px 0 0;
	}
/* -- staff ----------------------------------------------------*/
	.staff .gray {
		height: 400px;
		margin: -350px 0 0;
	}
	.main .staff,
	.staff .text{
	    margin: 50px 0 0;
	}
	.staff .flex{
		flex-wrap: wrap;
		margin: 20px 0 0;
	}
	.staff .flex h2 {
	    width: 100%;
	    font-size: 40px;
	    line-height: 50px;
		position: relative;
		z-index: 1;
	}
	.staff .flex .img {
    	width: 100%;
    	margin: -50px 0 0px;
	}
	.staff .text h3 {
	    font-size: 20px;
	}
	.staff .text p,
	.staff .btn  {
	    margin: 30px 0 0;
	}
/* -- recruit ----------------------------------------------------*/
	.main .recruit,
	.recruit .text {
	    margin: 50px 0 0;
	}
	.recruit .img {
		margin: -30px 0 0;
	}
	.recruit h2 {
	    font-size: 40px;
	}
	.recruit .text h3 {
	    font-size: 20px;
	}
	.recruit .text p,
	.recruit .btn  {
	    margin: 30px 0 0;
	}
	.recruit .gray {	
		height: 600px;
		margin: -550px 0 0;
	}
}
@media screen and (max-width:320px){
/* -- common ----------------------------------------------------*/
	.btn .arrow{
		width: 200px;
		margin: 20px 0 0;
	}	
	.topics .inner .flex,
	.topics .inner .list .box a{  
		flex-wrap: wrap;
	}
	.topics .inner .list .box a .img{
		width: 60%;
		margin: auto;
	}
	.topics .inner .list .box a .text{
		width: 100%;
		margin: 20px 0 0;
	}
	.topics .inner .list .box .img {
		padding-top: 60%;
	}
}