/*###########################################################################################*/
/* common */
/*###########################################################################################*/
body{
	background-color: #003a91;
}
/* position */
.flex{
	display: flex;
}
.justify_between{
	justify-content: space-between;
}
.justify_even{
	justify-content: space-evenly;
}
.justify_end{
	justify-content: end;
}
.center{
	text-align: center!important;
}
.block_center{
	max-width: 900px;
	margin: 0 auto;
}
.ver_b{
	vertical-align: bottom;
}
.img_scale{
	transform: scale(1, -1);
	position: relative;
	z-index: -1;
	top:-2px;
}

/* color */
.clr_gray{
	color: #4b535f;
}
.clr_blue{
	color: #003a91;
}
.white{
	color: #fff;
}
.bg_blue{
	background-color: #003a91;
}

/* text */
.font_raleway{
	font-family: 'Raleway', sans-serif;
}
.spacing_h{
	letter-spacing: 5px;
}
.pdl50{
	padding-left: 50px;
}
.spb20{
	margin-bottom: 20px;
}
.spt40{
	margin-top: 40px;
}
.pc{
	display: block;
}
.sec_h1{
	font-size: 4rem;
}

/* animation */
.fade_up {
	opacity: 0;
	transition-duration: 0.3s;
	transition-property: opacity, transform;
	transform: translate(0, 60px);
}
.scroll-in {
	opacity: 1;
	transform: translate(0, 0);
}

/* SP,TB */
@media screen and (max-width:768px) {
	.flex{
		display: block;
	}
	.flex_sp{
		display: flex;
	}
	.ver_b{
		display: block;
		vertical-align: bottom;
	}
	.sp_pd5{
		padding: 5px;
	}
	.pc{
		display: none;
	}
}

@media screen and (max-width:992px) {
	.block_center{
		max-width: 95%;	
	}
}

/*###########################################################################################*/
/* mainvisual */
/*###########################################################################################*/
.up{
	width: 100%;
	height: 100vh;
	background-color: #003a91;
	position: fixed;
	z-index: 1;
}
.main_visual{
	height: calc(100vh - 10vh);
	margin: 0 auto;
	background-repeat: no-repeat;
	position: relative;
	color: #fff;
}
.mv_contents{
	position: relative;
	max-width: 1440px;
	margin: 0 auto;
	height: 100%;
}
.mv_title{
	line-height: 1;
	font-weight: bold;
	padding-left: 2rem;
}
.mv_title h1{
	font-size: 10rem;
}
.mv_title p{
	font-size: 2rem;
}
.mv_text{
	padding-right: 10px;
	text-align: end;
	font-weight: bold;
	font-size: 1.6rem;
	top: 100%;
	right: 0;
	opacity: 0;
	position: absolute;
	z-index: 2;
}
.animation-bg .bg_title{
	padding-top: 10.4rem;
	z-index: 10;
}
.mv_video{
	height: 100vw;
	position: fixed;
	top: 0;
	overflow: hidden;
	z-index: -1;
}
.mv_video video{
	height: 70%;
	position: relative;
}
.text-xcluz{
	top: 700px;
	color: #fff;
	font-size: 13vw;
	display: inline;
	position: relative;
	opacity: 0;
	z-index: 2;
}
.text-keep{
	top: 1000px;
	color: #fff;
	position: relative;
	opacity: 0;
	z-index: 2;
}
.text-keep img{
	max-width: 400px;
	margin-left: 10px;
}
#ship_bob{
	position: absolute;
	right: 0;
	bottom: 10%;
}
.bob {
	animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
	0% {
		transform: translateY(-10%);
	}
	100% {
		transform: translateY(10%);
	}
}

/* 背景動画 */
@media screen and (max-width:1220px) {
	.mv_video{
		height: 100%;
	}
	.mv_video video{
		height: 100%;
	}	
}

/* SP,TB */
@media screen and (max-width:1440px) {
	.mv_contents{
		max-width: 1200px;
		margin: 0 auto;
	}
	.mv_text{
		padding-right: 15px;
		font-size: 15px;
	}
	.text-xcluz{
		font-size: 10rem;
	}
	.text-keep img{
		max-width: 300px;
	}
	.waves{
		margin-bottom: -4rem !important;
		min-height: 80px !important;
		height: 10vh !important;
	}
	#ship_bob{
		right: 10px;
		width: 90px;
	}
}

@media screen and (max-width:768px) {
	.mv_title{
		padding-left: 10px;
	}
	.text-xcluz{
		font-size: 7rem;
	}
	.text-xcluz.x{
		font-size: 8rem;
	}
	.text-keep img{
		width: 100%;
	}
}

/*###########################################################################################*/
/* Wave Animation */
/*###########################################################################################*/
.waves {
	position:relative;
	width: 100%;
	height: 20vh;
	top: -7rem;
	margin-bottom:-7px; /*Fix for safari gap*/
	min-height:100px;
	max-height:150px;
	z-index: -1;
}
.parallax > use {
	animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
	animation-delay: -2s;
	animation-duration: 10s;
}
.parallax > use:nth-child(2) {
	animation-delay: -3s;
	animation-duration: 12s;
}
.parallax > use:nth-child(3) {
	animation-delay: -4s;
	animation-duration: 13s;
}
.parallax > use:nth-child(4) {
	animation-delay: -4s;
	animation-duration: 13.1s;
}
@keyframes move-forever {
	0% {
	transform: translate3d(-90px,0,0);
	}
	100% { 
	transform: translate3d(85px,0,0);
	}
}

/*###########################################################################################*/
/* more button */
/*###########################################################################################*/
.more_btn{
	display: inline-block;
	position: relative;
	padding: 12px 60px 12px 50px;
	border: solid 1px #003a91;
	border-radius: 50px;
	z-index: 999;
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
	letter-spacing: 0.2em;
	background-color: #fff;
}
.more_btn::after {
	content: "";
	position: absolute;
	top: 4px;
	bottom: -6px;
	right: 5px;
	left: -6px;
	border: solid 1px #003a91;
	border-radius: 50px;
}
.more_btn:hover {
	color: #fff;
	background: #003a91;
	transition: all 0.6s;
}
.more_white_btn{
	display: inline-block;
	position: relative;
	padding: 12px 60px 12px 50px;
	border: solid 1px #fff;
	color: #fff;
	border-radius: 50px;
	z-index: 999;
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
	letter-spacing: 0.2em;
}
.more_white_btn::after {
	content: "";
	position: absolute;
	top: 4px;
	bottom: -6px;
	right: 5px;
	left: -6px;
	border: solid 1px #fff;
	border-radius: 50px;
}
.more_white_btn:hover {
	color: #003a91;
	background: #fff;
	transition: all 1s;
}

/*###########################################################################################*/
/* main contents */
/*###########################################################################################*/
.sec_about{
	position: relative;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 4rem 3rem;
	border-radius: 25px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 14em;
}
.sec_about h1{
	padding-bottom: 3rem;
}
.gimg_top img{
	width: 45%;
	position: absolute;
	right: -100px;
	top: -80px;
	border-radius: 20px;
}
.gimg_btm img{
	position: absolute;
	width: 50%;
	border-radius: 20px;
	bottom: -240px;
	left: -120px;
}
.sec_recruit{
	padding: 4rem 3rem;
	border-radius: 25px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 6em;
}
.sec_recruit ul li{
	padding-bottom: 2rem;
}
.sec_mission{
	background-color: #d7e9f7;
	padding-top: 3rem;
}
.sec_service{
	padding-bottom: 8rem;
	padding-top: 4rem;
}

/* SP,TB */
@media screen and (max-width:1024px) {
	.sec_about{
		padding: 4rem 1rem;
		border-radius: 20px 20px 0 0;
		margin-bottom: 0;
	}
	.sec_recruit{
		padding: 4rem 1rem;
		margin-top: 0;
		border-radius: 0 0 20px 20px;
		margin-bottom: 4rem;
	}
	.gimg_top img{
		position: initial;
		width: 100%;
		border-radius: 10px;
	}
	.gimg_btm img{
		display: none;
	}
}

/*###########################################################################################*/
/* news */
/*###########################################################################################*/
.news {
	display: block;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4em;
	text-align: center;
	background-color: #edf7ff;
	border-radius: 25px;
	color: #0185d0;
	padding: 1rem;
}
.news .n_title {
	font-weight: bold;
}
