/************************** section-1 **************************/
#section-1 {
	position: relative;
	padding: 120px 0 190px;
}
.mv-tit {
	position: relative;
	display: block;
	min-height: 184px;
	margin-bottom: 20px;
	font-size: var(--font-mvtit);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.05em;
	word-break: keep-all;
}
#drawing {
	position: absolute;
    top: -20px;
    left: 0;
    width: 284px;
}
.drawing {
	fill: none;
	stroke: #006aff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 3px;
	stroke-dasharray: 1100;
	stroke-dashoffset: 1100;
	animation: draw 1s linear forwards;
	animation-delay: .4s;
	opacity: 0;
}
@keyframes draw {
    0%	{
		stroke-dashoffset: 1100;
	}
	50% {		
		opacity: 1;
	}
    100% {
		stroke-dashoffset: 0;
		opacity: 1;
	}
}
.mv-txt {
	margin-bottom: 40px;
	font-size: var(--font-mvtxt);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.05em;
	transform: translateY(40px);
	opacity: 0;
	transition: all .4s;
	transition-delay: 1.8s;
}
#section-1 .mv-txt.mobile {
	display: none;
}
#section-1 .left.on .mv-txt {
	transform: translateY(0px);
	opacity: 1;
}
.scroll-down {
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
}
.scroll-down span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 20px;
	height: 20px;
	margin-left: -12px;
	border-left: 2px solid var(--main-color);
	border-bottom: 2px solid var(--main-color);
	transform: translateY(0px) rotate(-45deg);
	animation: scrolldown 1.5s infinite;
	opacity: 0;
	box-sizing: border-box;
}
@-webkit-keyframes scrolldown {
	0% {
		opacity: 0;
		transform: translateY(10px) rotate(-45deg);
	}
	50% {
		opacity: 1;
		transform: translateY(0px) rotate(-45deg);
	}
	100% {
		opacity: 0;
		transform: translateY(10px) rotate(-45deg);
	}
}
#section-1 .contact-btn {
	background: var(--main-color);
	color: var(--white-color);
	transition: all .4s;
	cursor: pointer;
}
.contact-wrap {
	transform: translateY(40px);
	opacity: 0;
	transition: all .4s;
	transition-delay: 2.6s;	
}
#section-1 .left.on .contact-wrap {
	transform: translateY(0px);
	opacity: 1;
}
#section-1 .contact-btn:hover {
	opacity: 0.8;
}
/************************** section-1 **************************/


/************************** section-2 **************************/
#section-2 .bg {
	width: 100%;
	height: 100%;
	position: absolute;
    top: 0;
    left: 0;
	z-index: -1;
	background: var(--light-blue-color);
}
.bg-in {
	width: 0;
	height: 100%;
	background: url("../img/main/sec02-bg.png") no-repeat center / cover;
}
#section-2 .bg.on .bg-in {
    animation: width 1.5s forwards;
}
#section-2 .main-title {
	margin-bottom: 40px;
	text-align: center;
}
#section-2 .list-box {
	display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}
#section-2 .list-box > li {
	display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: calc((100% - 40px) / 3);
	padding: 85px 0;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.95); 
}
#section-2 .list-box > li .icon {
	width: 64px;
	min-height: 70px;
}
#section-2 .list-box > li:nth-child(2) .icon {
	padding-top: 10px;
}
#section-2 .list-box > li p {
	margin: 40px 0 30px;
	font-size: var(--font-basic);
	font-weight: 800;
	text-align: center;
}
#section-2 .list-box > li:nth-child(2) p{
	margin-top: 22px;
}
#section-2 .list-box > li p small {
	display: block;
	font-size: var(--font-small);
	font-weight: 500;
}
#section-2 .list-box > li .num {
    position: relative;
    display: flex;
	align-items: baseline;
	margin-bottom: 20px;
}
#section-2 .list-box > li .num strong {
	font-size: var(--font-mvtit);
}
#section-2 .list-box > li small {
	font-size: var(--font-small);
	color: var(--gray-color);
}
.count-item-wrap {
    position: relative;
    height: 84px;
    overflow: hidden;
    text-align: center;
}
.count-item-box {
	height: 100px;
}
.count-item {
	font-size: var(--font-mvtit);
	font-weight: 800;
}
.num-unit, .comma {
	font-size: 30px;
	font-weight: 800;
}

.list-box.on .count-item-box {
    animation: count-down 2.5s forwards;
}
.list-box.on .count-item-box.down {
    animation: count-down2 2.5s forwards;
}
@-webkit-keyframes count-down {
	0% {
		transform: translate3d(0, -1200%, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@-webkit-keyframes count-down2 {
	0% {
		transform: translate3d(0, -2400%, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@-webkit-keyframes width {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
/************************** section-2 **************************/


/************************** section-3 **************************/
#section-3 .wrap-in {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#section-3 .left, #section-3 .right {
	position: relative;
	width: 50%;
}
#section-3 .main-title {
	position: relative;
	max-width: 400px;
}
#section-3 .main-title img {
	width: 50px;
	position: absolute;
	top: -36px;
	right: 54px;
	opacity: 0;
}
#section-3 .on .main-title img {
    animation: scale .8s linear forwards;
}
.gra {
	position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(181deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 1;
}
.card-list-wrap {
    width: 50%;
	max-width: 700px;
    height: 415px;
    overflow: hidden;
    position: relative;
}
.card-list {
	display: flex;
    flex-direction: column;
	justify-content: space-between;
    width: 100%;
    animation: roll 10s linear infinite;
}
.card-list li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
	margin: 9px auto;
    width: 450px;
    padding: 20px 10px;
    background: var(--light-gray-color);
	border: 1px solid var(--border-color);
	border-radius: 15px;
}
.card-list li:nth-child(odd) {
	margin-left: 0;
}
.card-list li:nth-child(even) {
	margin-right: 0;
}
.card-list li p {
	font-size: var(--font-basic);
	font-weight: 700;
	text-align: center;
	opacity: 0.5;
	word-break: keep-all;
}
@-webkit-keyframes roll {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}
@-webkit-keyframes scale {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
.card-1:last-child {
	animation-delay: 20s;
}
/************************** section-3 **************************/


/************************** section-4 **************************/
#section-4 {
	background: #f8f8f8;
}
#section-4 .main-title, #section-4 .main-title-content {
	text-align: center;
}
#section-4 .main-title-content {
	margin-bottom: 40px;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-right: 10px;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#section-4 .mySwiper {overflow: hidden;display:flex;}
#section-4 .mySwiper .list {display:flex;}
#section-4 .mySwiper .list > div {display:flex;}
#section-4 .mySwiper .list > div > div {position: relative; width: 100%;}
#section-4 .mySwiper .swiper-wrapper {width:auto;}
#section-4 .swiper#a2 {
	margin: 10px 0;
}
#section-4 .swiper-slide {
	width: 140px;
}
#section-4 .swiper-slide img:nth-child(2), #section-4 .swiper-slide:hover img:nth-child(1) {
	display: none;
}
#section-4 .swiper-slide:hover img:nth-child(2) {
	display: block;
}
#section-4 .swiper-slide span {
	display: block;
	width: 98%;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%, 40px);
	font-size: 14px;
	font-weight: 800;
	color: var(--white-color);
	opacity: 0;
	transition: all .2s ease-in;
}
#section-4 .swiper-slide:hover span {
	transform: translate(-50%, 16px);
	opacity: 1;
}

@keyframes flowRollingLeft {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}
@keyframes flowRollingRight {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0);
	}
}
/************************** section-4 **************************/

/************************** section-5 **************************/
#section-5 {
	background: var(--main-color);
}
#section-5 .main-title {
    position: relative;
	margin-bottom: 40px;
	color: var(--white-color);
	text-align: center;
	z-index: 2;
}
#section-5 .contact-wrap {
    position: relative;
	transform: translateY(0px);
	opacity: 1;
	z-index: 2;
}
#section-5 .contact-btn {
	margin: auto;
	background: var(--white-color);
	color: var(--main-color);
	box-shadow: 0 5px 18px 0px rgba(0, 0, 0, 0.2);
	transition: all .3s;
	cursor: pointer;
}
#section-5 .wrap-in.on .contact-btn {
	animation: bounce 1.5s infinite linear;
}
#section-5 .img-wrap {
	width: 540px;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(-200px);
	transition: all .8s;
	z-index: 0;
}
#section-5 .wrap-in.on .img-wrap {
	transform: translateX(0px);
}
#section-5 .contact-btn:hover {
	box-shadow: none;
}

@keyframes bounce {
    0%	{
		transform: translateY(0px);
	}
	50% {	
		transform: translateY(-6px);
	}
    100% {
		transform: translateY(0px);
	}
}
/************************** section-5 **************************/


#section-wrap .contact-btn.fixed {
	position: fixed;
	bottom: 80px;
	left: 50%;
	background: var(--main-color);
	color: var(--white-color);
	box-shadow: 0 5px 18px 0px rgba(26, 109, 255, 0.25);
	transform: translate(-50%, 30px);
	transition: all .3s;
	display: none;
	z-index: 3;
}
#section-wrap .section-wrap-in.on .contact-btn.fixed {
	transform: translate(-50%, 0px);
	display: block;
}
#section-5 .wrap-in.on .contact-btn.fixed {
	transform: translate(-50%, 30px);
	display: none;
}



@media all and (max-width:1501px) {
	#section-5 .img-wrap {width: 450px;}
}

@media all and (max-width:1281px){
	.mv-tit {min-height: 146px; margin-bottom: 15px;}
	#drawing {width: 250px;}
	#section-1 .right img {width: 420px;}

	.count-item-box {height: 70px;}

	#section-3 .left {width: auto;}
	#section-3 .right {width: 52%;}
	#section-3 .main-title img {top: -40px; right: 22px;}
	.card-list li {width: 400px;}
	.card-list li p { font-size: 20px;}

	#section-5 .img-wrap {width: 400px;}
}

@media all and (max-width:1025px){
	.mv-txt, #section-2 .main-title, #section-4 .main-title-content, #section-5 .main-title {margin-bottom: 30px;}
	.mv-tit {min-height: initial;}
	.mv-wrap {height: 500px;}
	#drawing {width: 200px; top: -15px;}
	#section-1 .left, #section-1 .right {width: 50%;}
	#section-1 .right img {width: 100%; padding-left: 50px;}

	#section-2 .list-box {gap: 0 15px;}
	#section-2 .list-box > li {padding: 50px 0; width: calc((100% - 30px) / 3);}
	#section-2 .list-box > li .icon {width: 58px; min-height: 50px;}
	#section-2 .list-box > li p {margin: 30px 0;}
	#section-2 .list-box > li .num {margin-bottom: 10px;}
	.num-unit {font-size: 22px;}
	.count-item {font-size: 50px;}
	.count-item-wrap {height: 59px;}
	.count-item-box {height: 59px;}

	#section-4 .swiper-slide {width: 120px;}

	.card-list li {width: 380px;}
	#section-5 .img-wrap {width: 350px;}
	#section-5 .wrap-in.on .img-wrap {transform: translateX(-20px);}
}


@media all and (max-width:877px){
	#section-1 {padding: 100px 0 170px;}
	#section-1 .left {float: none; width: 100%;}
	#section-1 .right {margin-top: -150px; width: 300px;}
	.mv-tit {min-height: 112px;}
	.scroll-down {bottom: 70px;}

	#section-2 .list-box {flex-direction: column; gap: 15px 0;}
	#section-2 .list-box > li {width: 80%; margin: auto;}
	#section-2 .list-box > li p {margin: 25px 0 20px;}

	#section-3 .wrap-in {flex-direction: column; gap: 30px 0;}
	#section-3 .right {width: 80%;}

	#section-5 .img-wrap {width: 280px;}
}


@media all and (max-width:641px){
	.mv-txt, #section-2 .main-title, #section-4 .main-title-content, #section-5 .main-title {margin-bottom: 24px;}

	#section-1 {padding: 50px 0 150px;}
	#section-1 .right {margin-top: -100px;}
	#drawing {width: 150px;}
	.mv-tit {min-height: 96px;}

	#section-3 .right {width: 90%;}
	.card-list li {width: 350px;}
	.card-list li p {font-size: 18px;}
}


@media all and (max-width:481px){
	#section-1 {padding: 50px 0 100px;}
	#section-1 .mv-tit {min-height: 84px; margin-bottom: 10px}
	#section-1 .mv-txt {display: none;}
	#section-1 .mv-txt.mobile {display: block; width: 90%;}
	#section-1 .right {margin-top: 40px; width: 260px;}
	#section-1 .right img {padding-left: 30px;}
	#drawing {width: 130px; top: -11px;}

	#section-2 .list-box > li {width: 90%;}

	#section-3 .main-title img {width: 42px; right: 44px;}

	.card-list li {width: 100%;}
	.card-list li p {font-size: 16px;}

	#section-4 .swiper-slide {width: 100px;}

	#section-5 .img-wrap {width: 200px; transform: translateX(-50px);}
	#section-wrap .contact-btn.fixed {bottom: 30px;}
}