@charset "UTF-8";

/*bg*/
.bg{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
}
.bg::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #194493;
	opacity: 0.5;
}
.bg video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
main{
	position: relative;
	z-index: 10;
}

@media ( max-width: 768px ){
	
}

/*mv*/
#mv{
	padding: 0;
	height: 100vh;
	min-height: 910px;
	display: flex;
	justify-content: center;
	align-items: end;

}
#mv .mv_adam{
	max-width: 600px;
	width: 80%;
	margin: 0 auto 60px;
}
#mv .mv_lead{
	text-align: center;
	font-family: "Michroma";
	font-size: 32px;
	background: linear-gradient(110deg,#A1BCE8 0%, #246498 25%, #D5D1A5 45%, #F76518 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.5;
	margin-bottom: 90px;
}
#mv .mv_lead span{
	background: #fff; 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#mv .mv_lead span.blue{
	text-shadow: #fff 0 0 0px,	#008DFF 0 0 10px,#008DFF 0 0 10px,#008DFF 0 0 10px;
	-webkit-backdrop-filter: blur(1px);
	backdrop-filter: blur(1px);
}
#mv .mv_lead span.orange{
	text-shadow: #fff 0 0 0px,	#FF9D00 0 0 10px,#FF9D00 0 0 10px,#FF9D00 0 0 10px;
	-webkit-backdrop-filter: blur(1px);
	backdrop-filter: blur(1px);
}
#mv h2{
	font-size: 50px;
	color: #fff;
	text-align: center;
	letter-spacing: 3px;
}
#mv h2 sub{
	vertical-align: sub;
}
#mv h2 span{
    font-family: "Michroma";
    font-size: 21px;
    line-height: 2;
    display: block;
	letter-spacing: normal;
	text-shadow: #fff 0 0 0;
}
#mv .mv_scroll{
	color: #fff;
	text-align: center;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: end;
	gap: 10.5px;
	margin-top: 100px;
	flex: 1;
}
#mv .mv_scroll::after{
	content: "";
	width: 1px;
	height: 70px;
	background: #fff;
}

@media ( max-width: 1200px ){
	#mv .mv_lead{
		font-size: 3vw;
	}
}
@media ( max-width: 768px ){
	#mv{
		min-height: 100vh;
        height: auto;
		align-items: inherit;
	}
	#mv .inner{
		padding-top: 120px;
		display: flex;
		flex-flow: column;
	}
	#mv .mv_adam{
		width: 90%;
		margin-bottom: 35px;
	}
	#mv .mv_lead{
		font-size: clamp(20px,6vw,32px);
		margin-bottom: 60px;
	}
	#mv h2{
		font-size: clamp(20px,5.5vw,50px);
	}
	#mv h2 span{
		font-size: clamp(14px,3vw,21px);
	}
	#mv .mv_scroll{
		margin-top: 50px;
	}
	#mv .mv_scroll::after{
		height: 44px;
	}
}
/*lead*/
#lead{
	padding: 135px 0 125px;
	position: relative;
	overflow: hidden;
}
#lead::before{
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 2200px;
	height: 100%;
	border-radius: 100% 100% 0 0;
	-webkit-backdrop-filter: blur(10px) brightness(0.8);
	backdrop-filter: blur(10px) brightness(0.8);
}
#lead .inner{
	position: relative;
}
#lead .lead_text{
	color: #fff;
	text-align: center;
	font-size: 24px;
	line-height: 2;
}
#lead .lead_adam{
	max-width: 370px;
	margin: 75px auto 0;
}
#lead .lead_point{
	display: flex;
	justify-content: center;
	color: #fff;
	margin-top: 50px;
}
#lead .lead_point div{
	border: solid 1px #fff;
	border-radius: 380px;
	max-width: 380px;
	max-height: 380px;
	width: 33vw;
	height: 33vw;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Michroma";
	font-size: 24px;
}
#lead .lead_point div:nth-child(2){
	margin: 0 -30px;
}
@media ( max-width: 1200px ){
	#lead .lead_point div{
		font-size: 2vw;
	}
	#lead .lead_text{
		font-size: 3vw;
	}
}
@media ( max-width: 768px ){
	#lead{
		padding: 60px 0;
	}
	#lead::before{
		width: 1200px;
	}
	#lead .lead_text{
		font-size: clamp(12px,2.5vw,24px);
	}
	#lead .lead_point div:nth-child(2){
		margin: 0 -10px;
	}
	#lead .lead_point div{
		font-size: 10px;
		width: 31vw;
		height: 31vw;
	}
}
/*solutions*/
#solutions{
	background: url(../img/top/solution_bg.png) bottom center no-repeat;
	background-size: 100%;
	background-color: #000;
	padding: 110px 0 170px;
}
#solutions .solutions_content{
	display: flex;
	justify-content: space-between;
	flex-flow: row-reverse;
	flex-wrap: wrap;
	margin-top: -100px;
}
#solutions .solutions_box{
	width: 48%;
	max-width: 700px;
}
#solutions .solutions_box:nth-child(2){
	transform: translateY(50%);
}
#solutions .solutions_box:nth-child(n+3){
	margin-top: 160px;
}
#solutions .solutions_box h4{
	background: #D45918;
	font-family: "Michroma";
	font-size: 48px;
	padding: 5px 20px;
	line-height: 1.2;
}
#solutions .solutions_box h5{
	color: #D45918;
	font-family: "Michroma";
	font-size: 24px;
	margin-top: 8px;
}
#solutions .solutions_box p{
	color: #fff;
	margin-top: 30px;
	line-height: 2;
	font-weight: 500;
}
#solutions .solutions_box p + p{
	margin-top: 15px;
}
#solutions .solutions_box img{
	margin-top: 35px;
}

@media ( max-width: 1200px ){
	#solutions .solutions_box h4{
		font-size: 3.5vw;
	}
}
@media ( max-width: 768px ){
	#solutions{
		padding: 30px 0 40px;
	}
	#solutions .solutions_content{
		flex-flow: column;
		margin-top: 20px;
		gap: 40px;
	}
	#solutions .solutions_box{
		width: 100%;
	}
	#solutions .solutions_box:nth-child(2){
		transform: none;
	}
	#solutions .solutions_box:nth-child(n+3){
		margin-top: 0;
	}
	#solutions .solutions_box h4{
		font-size: 24px;
	}
	#solutions .solutions_box h5{
		font-size: 15px;
	}
	#solutions .solutions_box p{
		margin-top: 15px;
		font-size: 12px;
	}
	#solutions .solutions_box p + p{
		margin-top: 10px;
	}
	#solutions .solutions_box img{
		margin-top: 20px;
	}
}
/*comingsoon*/
#comingsoon{
	background: url(../img/top/comingsoon_bg.jpg) center no-repeat;
	background-size: cover;
	padding: 88px 0 220px;
	overflow: hidden;
}
#comingsoon .comingsoon_content{
	display: flex;
	flex-flow: column;
	align-items: end;
}
#comingsoon .comingsoon_box{
	color: #fff;
	max-width: 565px;
	width: 50%;
	font-family: "Michroma";
}
#comingsoon .comingsoon_box:nth-child(2){
	padding-top: 70px;
	margin-top: 100px;
	position: relative;
}
#comingsoon .comingsoon_box:nth-child(2)::before{
	content: "";
	position: absolute;
	width: 100vw;
	height: 1px;
	background: #fff;
	left: 0;
	top: 0;
}
#comingsoon .comingsoon_box .comingsoon_title{
	font-size: 63px;
}
#comingsoon .comingsoon_box .comingsoon_title span{
	font-size: 42px;
}
#comingsoon .comingsoon_box .comingsoon_caption{
	text-indent: 110px;
	font-size: 26px;
}
@media ( max-width: 1200px ){
	#comingsoon{
		padding: 40px 0 120px;
		background: url(../img/top/comingsoon_bg_sp.jpg) center no-repeat;
		background-size: cover;
	}
	#comingsoon .comingsoon_box:nth-child(2){
		margin-top: 50px;
		padding-top: 40px;
	}
	#comingsoon .comingsoon_box .comingsoon_title{
		font-size: clamp(18px,4vw,63px);
	}
	#comingsoon .comingsoon_box .comingsoon_title span{
		font-size: 2vw;
	}
	#comingsoon .comingsoon_box .comingsoon_caption{
		text-indent: 65px;
		font-size: 2vw;
	}
}
@media ( max-width: 768px ){
	#comingsoon{
		padding: 20px 0 60px;
	}
	#comingsoon .comingsoon_box:nth-child(2){
		padding-top: 20px;
		margin-top: 20px;
	}
	#comingsoon .comingsoon_box .comingsoon_title span{
		font-size: 8px;
	}
	#comingsoon .comingsoon_box .comingsoon_caption{
		text-indent: 22px;
		font-size: 8px;
	}
}
/*about us*/
#about{
	background: #000;
	padding: 120px 0 140px;
	margin-top: -120px;
	border-radius: 60px 60px;
}
#about .about_table{
	margin-top: 50px;
}
#about .about_table table{
	width: 100%;
	border-collapse: collapse;
}
#about .about_table table tr th,
#about .about_table table tr td{
	border-top: solid 1px #707070;
	border-bottom: solid 1px #707070;
	color: #fff;
}
#about .about_table table tr th{
	font-weight: bold;
	background: #ffffff2E;
	text-align: center;
	width: 160px;
	padding: 20px;
}
#about .about_table table tr td{
	padding: 20px 40px;
	line-height: 1.75;
}
#about .about_table table tr td .location{
	display: flex;
	justify-content: space-between;
}
#about .about_table table tr td .location_box{
	width: 48%;
}
#about .about_table table tr td .location dl{
	display: flex;
	align-items: center;
	gap: 30px;
}
#about .about_table table tr td .location dl dt{
	border: solid 1px #fff;
	padding: 1px 24px;
	word-break: keep-all;
}
#about .about_table table tr td .location_box .location_map{
	position: relative;
	width: 100%;
	padding-top: 40%;
	margin-top: 20px;
}
#about .about_table table tr td .location_box .location_map iframe{
	position: absolute;
	left: 0;
	top: 0;
	width: 100% !important;
	height: 100% !important;
}
#about .about_table table tr td ul,
#about .about_table table tr td ul li{
	list-style: decimal;
}
#about .about_table table tr td ul{
	padding-left: 1em;
}
@media ( max-width: 1200px ){
	#about{
		padding: 50px 0 80px;
		margin-top: -50px;
	}
	#about .about_table table tr td .location{
		flex-flow: column;
		gap: 15px;
	}
	#about .about_table table tr td .location_box{
		width: 100%;
	}
	#about .about_table table tr td .location_box .location_map{
		margin-top: 10px;
	}
}
@media ( max-width: 768px ){
	#about{
		padding: 30px 0 40px;
		margin-top: -30px;
		border-radius: 20px;
	}
	#about .about_table{
		margin-top: 20px;
		border-bottom: solid 1px #707070;
	}
	#about .about_table table tr,
	#about .about_table table tr th,
	#about .about_table table tr td{
		display: block;
		width: auto;
		font-size: 12px;
	}
	#about .about_table table tr th{
		padding: 7px 10px;
		text-align: left;
	}
	#about .about_table table tr td{
		padding: 14px 10px;
		border-top: none;
		border-bottom: none;
	}
	#about .about_table table tr td .location dl{
		flex-flow: column;
		align-items: start;
		gap: 6px;
	}
}

/*recruit*/
#recruit{
	padding: 120px 0;
}
#recruit h3{
	padding: 0;
}
#recruit h3::before,
#recruit h3::after{
	display: none;
}
#recruit .recruit_content{
	display: flex;
	gap: 20px;
}
#recruit .recruit_box{
	width: 50%;
	padding: 40px;
	border-radius: 10px;
	-webkit-backdrop-filter: blur(10px) brightness(1.5);
	backdrop-filter: blur(10px) brightness(1.5);
	background-color: #ffffff33;
}
#recruit .recruit_box .recruit_box_title{
	font-size: 38px;
	font-family: "Michroma";
	color: #fff;
	background: linear-gradient(to right, #246498 0%,#004B81 40%,#F76518 100%);
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 20px;
}
#recruit .recruit_box .recruit_box_title span{
	font-size: 20px;
	display: block;
}
#recruit .recruit_box table{
	width: 100%;
}
#recruit .recruit_box table tr{
	color: #fff;
}
#recruit .recruit_box table tr th,
#recruit .recruit_box table tr td{
	border-bottom: solid 1px #BFBFBF;
	padding: 20px 0;
	font-weight: normal;
}
#recruit .recruit_box table tr th{
	width: 150px;
}
@media ( max-width: 1000px ){
	#recruit .recruit_content{
		flex-flow: column;
	}
	#recruit .recruit_box{
		width: auto;
	}
	#recruit .recruit_box .recruit_box_title{
		font-size: 4vw;
	}
	#recruit .recruit_box .recruit_box_title span{
		font-size: 2vw;
	}
}

@media ( max-width: 768px ){
	#recruit{
		padding: 30px 0 50px;
	}
	#recruit .recruit_content{
		margin-top: 20px;
	}
	#recruit .recruit_box{
		padding: 20px;
	}
	#recruit .recruit_box .recruit_box_title{
		font-size: 18px;
		margin-bottom: 15px;
		padding: 20px;
	}
	#recruit .recruit_box .recruit_box_title span{
		font-size: 8px;
	}
	#recruit .recruit_box table{
		font-size: 12px;
	}
	#recruit .recruit_box table tr th{
		width: 65px;
	}
	#recruit .recruit_box table tr:first-child th,
	#recruit .recruit_box table tr:first-child td{
		padding-top: 0;
	}
}