body{
	padding-top: 0;
}

.banner{
	position: relative;
	overflow: hidden;
}
.banner .bg{
	display: block;
	width: 100%;
}
.banner .boat-active{
	position: absolute;
	left: 46.5%;
	top: 48.5%;
	z-index: 2;
	aspect-ratio: 1/1;
	width: 8%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.banner .divpic{
	position: relative;
	z-index: 1;
	animation-name: scalepic;
	animation-duration: 10s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	
}
.banner .boat-active .run-pic{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-image: url('/image/boat-active-pic2.png');
	background-repeat: no-repeat;
	background-size: cover;
	transform-origin: center;
	animation-name: rotate360;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
.banner .line{
	position: absolute;
	left: 54%;
	top: 59%;
	width: 17%;
	height: 5%;
	z-index: 2;
	border-color: #01DFDB;
	border-style: solid;
	border-left-width: 1px;
	border-bottom-width: 1px;
	border-top-width: 0;
	border-right-width: 0;
	transform-origin: left top;
	transform: rotate(-20deg);
}
@keyframes scalepic {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.banner .boat-active .inner{
	width: 85%;
	aspect-ratio: 1/1;
	background-image: url('/image/boat-active-pic1.png');
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 2;
}
.boat-active-mask{
	position: absolute;
	left: 70.8%;
	top: 50%;
	transform: translateY(-50%);
	width: 25.4%;
	z-index: 3;
}
.boat-active-mask img{
	width: 100%;
	height: auto;
	max-width: none;
}
.banner .text-outer{
	position: absolute;
	z-index: 3;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	width: 100%;
	max-width: 1440px;
	padding: var(--section-padding-horizontal);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.banner .text-outer .text{
	max-width: 450px;
	color: #fff;
	gap: 30px;
	display: flex;
	flex-direction: column;
	margin-bottom: 10%;
	align-items: flex-start;
}
.banner .text-outer .text h2{
	font-size: 48px;
	font-weight: normal;
	letter-spacing: -2px;
	line-height: 1.1;
}
.banner .text-outer .text p{
	font-size: 16px;
}
.banner .text-outer .text .default-button{
	background-color: #05DED8;
	color: #fff;
}
.banner .text-outer .text .default-button .btn_mask{
	background-color: rgba(255,255,255,.3);
}

.management{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-bottom: 100px;
}
.management .outer{
	margin: 0 auto;
	width: 100%;
	max-width: 1440px;
	padding: var(--section-padding-horizontal);
}
.management .ionc-list{
	display: flex;
	flex-direction: row;
	background-color: #fff;
	position: relative;
	top: -40px;
	z-index: 5;
	padding: 40px 30px;
	gap: 10px;
}
.management .ionc-list li{
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}
.management .ionc-list li img{
	display: block;
	width: 80px;
	height: 80px;
	object-fit: cover;
}
.management .ionc-list li span{
	font-size: 14px;
	text-align: center;
}
.management dl{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 80px;
	gap: 40px;
}
.management dl dt{
	max-width: 500px;
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.management dl dt h2{
	font-size: 36px;
	color: #111111;
	font-weight: normal;
	letter-spacing: -2px;
	line-height: 1.1;
}
.management dl dd{
	flex: 1;
}
.management dl dd{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.management dl dd img{
	display: block;
	max-width: 650px;
	width: 100%;
}

.service{
	padding-top: var(--section-padding-top);
}
.service .inner{
	width: 100%;
	max-width: 1440px;
	padding: var(--section-padding-horizontal);
	margin: 0 auto;
}
.service .inner .uper{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.service .inner .uper .text{
	display: flex;
	flex-direction: column;
}
.service .inner .uper .text p{
	font-size: 36px;
	letter-spacing: -2px;
}
[data-scheme=dark] .service .inner .uper .text p{
	color: #fff;
}
.service .inner .uper .text p span{
	color: #285BDC;
}
.service .inner .btns .default-button{
	background-color: #285BDC;
	color: #fff;
}
.service .inner .steps-wrapper{
	margin-top: 50px;
}
.service .inner .steps-wrapper .setps-items{
	position: relative;
	display: flex;
	flex-direction: column;
}
.service .inner .steps-wrapper .setps-items:before{
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: rgba(0,0,0, .15);
}
.service .inner .steps-wrapper .setps-items .line{
	position: absolute;
	top: 0;
	z-index: 3;
	width: 2px;
	background-color: #666B6F;
	height: 100%;
	max-height: 0px;
	transition: top .7s cubic-bezier(.4, 0, .25, 1), max-height .7s cubic-bezier(.4, 0, .25, 1);
}
.service .inner .steps-wrapper .setps-items ul li{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom:100px;
}
.service .inner .steps-wrapper .setps-items ul li .text{
	padding-left: 40px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	cursor: pointer;
	width: 35%;
}
.service .inner .steps-wrapper .setps-items ul li .text h5{
	font-size: 36px;
	color: var(--theme-default-text-color);
	font-weight: normal;
	letter-spacing: -2px;
}
.service .inner .steps-wrapper .setps-items ul li .text p{
	font-size: 16px;
	color: var(--theme-default-text-color);
}
.service .inner .steps-wrapper .setps-items ul li .img-box{
	position: relative;
	padding-bottom: 34%;
	border-radius: var(--border-radius-block);
	overflow: hidden;
	width: 60.5%;
}
.service .inner .steps-wrapper .setps-items ul li .img-box img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.apply{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-top: 60px;
}
.apply .inner{
	margin: 0 auto;
	width: 100%;
	max-width: 1440px;
	padding: var(--section-padding-horizontal);
	padding-top: 150px;
	padding-bottom: 150px;
}
.apply .inner dl{
	display: flex;
	flex-direction: row;
	gap: 68px;
}
.apply .inner dl dt{
	width: 100%;
	max-width: 350px;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.apply .inner dl dt h2{
	font-size: 36px;
	font-weight: normal;
	letter-spacing: -2px;
}
.apply .inner dl dt p{
	line-height: 1.2;
}
.apply .inner dl dd{
	flex: 1;
}
.apply .inner dl dd .form-box{
	display: flex;
	flex-direction: row;
	gap: 30px;
}
.apply .inner dl dd .form-box .ipt-box{
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.apply .inner dl dd .form-box .ipt-box input{
	height: 44px;
	background-color: #fff;
	font-size: 16px;
	width: 100%;
	border-radius: 8px;
	padding: 0 20px;
}
.apply .inner dl dd .form-box .msg-box{
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.apply .inner dl dd .form-box .msg-box textarea{
	background-color: #fff;
	font-size: 16px;
	width: 100%;
	border-radius: 8px;
	min-height: 112px;
	padding: 10px 16px;
}
.apply .inner dl dd .form-box .msg-box .sub button{
	height: 44px;
	background-color: #05DED8;
	color: #fff;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 96px;
	border-radius: 8px;
}

@media screen and (max-width: 1300px){
	.banner .text-outer .text{
		gap: 25px;
		max-width: 400px;
	}
	.banner .text-outer .text h2{
		font-size: 42px;
	}
	.banner .text-outer .text p{
		font-size: 15px;
	}
	
	.management .ionc-list{
		top: -30px;
		padding: 30px;
	}
}
@media screen and (max-width: 1024px){
	.banner .text-outer .text {
		gap: 10px;
		max-width: 280px;
		margin-bottom: 5%
	}
	.banner .text-outer .text h2{
		font-size: 28px;
	}
	.banner .text-outer .text p{
		font-size: 12px;
	}
	
	
	.management{
		padding-bottom: 50px;
	}
	.management .inner{
		overflow: hidden;
	}
	.management .ionc-list{
		top: 0;
		margin-top: 40px;
	}
	.management dl dt{
		gap: 30px;
		max-width: 50%;
	}
	.management dl dt h2{
		font-size: 30px;
	}
	.management dl dt p{
		font-size: 14px;
	}
	.management .ionc-list{
		flex-wrap: wrap;
		gap: 30px 10px;
		margin-top: 20px;
		padding: 20px;
	}
	.management .ionc-list li{
		width: calc(50% - 10px);
		flex: none;
	}
	.management dl{
		flex-direction: column;
		margin-top: 40px;
	}
	.management dl dt{
		max-width: 480px;
	}
	
	.service .inner .uper .text p{
		font-size: 28px;
	}
	.service .inner .steps-wrapper .setps-items ul li .text h5{
		font-size: 28px;
	}
	.service .inner .steps-wrapper .setps-items ul li .text p{
		font-size: 14px;
	}
	.service .inner .steps-wrapper .setps-items ul li .text{
		padding-left: 30px;
	}
	.service .inner .steps-wrapper .setps-items ul li{
		margin-bottom: 50px;
	}
	
	.apply .inner dl{
		flex-direction: column;
	}
	.apply .inner dl dt h2{
		font-size: 28px;
	}
	.apply .inner dl dt{
		gap: 20px;
	}
}
@media screen and (max-width: 767px){
	.banner .text-outer .text{
		max-width: 210px;
	}
	.banner .text-outer .text .default-button{
		font-size: 14px;
		height: 26px;
		padding: 0 15px;
	}
	.banner .text-outer .text .default-button .arrow .iconfont{
		font-size: 12px;
	}
	.banner .text-outer .text h2{
		font-size: 18px;
		letter-spacing: 0;
	}
	.banner .text-outer .text p{
		font-size: 10px;
		line-height: 1.1;
	}
	
	.service .inner .uper{
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.service .inner .steps-wrapper .setps-items ul li{
		flex-direction: column;
		gap: 30px;
	}
	.service .inner .steps-wrapper .setps-items:before{
		display: none;
	}
	.service .inner .steps-wrapper .setps-items .line{
		display: none;
	}
	.service .inner .steps-wrapper .setps-items ul li .text{
		border-left: 1px solid #BCBCBC;
		padding-left: 20px;
		width: auto;
		gap: 10px;
	}
	.service .inner .steps-wrapper .setps-items ul li .img-box{
		width: 100%;
		padding: 0;
	}
	.service .inner .steps-wrapper .setps-items ul li .img-box img{
		position: relative;
	}
	
	.apply .inner{
		padding-top: 100px;
		padding-bottom: 100px;
	}
}
@media screen and (max-width: 600px){
	.banner .text-outer .text{
		max-width: 128px;
	}
	.banner .text-outer .text .default-button{
		font-size: 12px;
	}
	.banner .text-outer .text .default-button .arrow .iconfont{
		font-size: 10px;
	}
	.banner .text-outer .text h2{
		font-size: 14px;
		letter-spacing: 0;
	}
	.banner .text-outer .text p{
		font-size: 0.375rem;
	}
	
	.apply .inner{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.apply .inner dl{
		gap: 50px;
	}
	.apply .inner dl dd .form-box{
		flex-direction: column;
	}
}