/* main css */
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.header.w {
	transform: translateY(-110px);
}

.swiper-container {
	overflow:hidden;
}

.swiper-slide {
	position:relative;
	overflow:hidden;
	height: calc(var(--vh));
	min-height:720px;
}

.swiper-slide .bg_wrap {
	position:absolute;
	width: 100%;
	height:100%;
	top: 0;
	left: 0;
	z-index: 2;
}

.swiper-slide .bg_wrap,
.swiper-slide .bg {
	position:absolute;
	width: 100%;
	height:100%;
	top: 0;
	left: 0;
	z-index: 3;
}


.section_01_wrap {
	background-image: url('../img/main/main_bg01.png?new');
	background-size: cover;
	background-position: center;
	position: relative;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;

}
.section_01.active .section_01_wrap {
	animation: zoomOut 4.8s .2s ease both;
}
@keyframes zoomOut {
	from {
		transform:scale3d(1.08, 1.08, 1.08);
	}

	to {
		transform:scale3d(1, 1, 1);
	}
}

.section_01_wrap > div {
	position: absolute;
	top: 28%;
	left: 50%;
	transform: translate(-50%, calc(-50% - 70px));
	opacity: 0;
}

.section_01.active .sec01_a_01 {
	transform: translate(-50%, calc(-50% - 60px));
	animation: sec01_a_01 ease-in-out 4.5s .5s forwards;
}
@keyframes sec01_a_01 {
	0% {
		opacity: 0;
		transform: translate(-50%, calc(-50% - 60px));
	}
	30% {
		opacity: 1;
		transform: translate(-50%, calc(-50% - 90px));
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translate(-50%, calc(-50% - 90px));
	}
}

.section_01.active .sec01_a_02 {
	transform: translate(-50%, calc(-50% + 70px));
	animation: sec01_a_02 ease-in-out 3.8s 1.2s forwards;
}
@keyframes sec01_a_02 {
	0% {
		opacity: 0;
		transform: translate(-50%, calc(-50% + 70px));
	}
	30% {
		opacity: 1;
		transform: translate(-50%, calc(-50% + 100px));
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translate(-50%, calc(-50% + 100px));
	}
}

.section_01.active .sec01_b_01 {
	transform: translate(-50%, calc(-50% - 60px));
	clip:rect(0,0,214px,0);
	animation: sec01_b_01 ease-in-out 4s 5s forwards;
}
@keyframes sec01_b_01 {
	0% {
		opacity: 0;
		clip:rect(0,0,214px,0);
	}
	30% {
		opacity: 1;
		clip:rect(0,900px,214px,0);
	}
	90% {
		clip:rect(0,900px,214px,0);
		opacity: 1;
	}
	100% {
		clip:rect(0,0,214px,0);
		opacity: 0;
	}
}
.section_01.active .sec01_b_02 {
	transform: translate(-50%, calc(-50% + 70px));
	animation: sec01_a_02 ease-in-out 3.5s 5.5s forwards;
}
@keyframes sec01_b_02 {
	0% {
		opacity: 0;
		transform: translate(-50%, calc(-50% + 70px));
	}
	30% {
		opacity: 1;
		transform: translate(-50%, calc(-50% + 100px));
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate(-50%, calc(-50% + 100px));
	}
}
@font-face {
	font-family: 'Escoredream';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
	font-weight: normal;
	font-display: swap;
}

.sec01_c_01 .main-copy {
	font-family: 'Escoredream', sans-serif;
	font-weight: 100;
	font-size:2.5rem;
	color: #1f8d86;
	line-height: 1.4;
	text-align: center;
	white-space: pre;
}


/* 트리플 역세권 */
.sec01_c_01 img {
	width: 600px;
}

.section_01.active .sec01_c_01 {
	transform: translate(-50%, calc(-50% - 60px)) scale(1.2);
	/*clip:rect(0,0,214px,0);*/
	animation: sec01_c_01 ease-in-out 3s 0.3s forwards;
}
@keyframes sec01_c_01 {
	0% {
		opacity: 0;
		transform: translate(-50%, calc(-50% - 60px)) scale(1.2);
		/*clip:rect(0,0,214px,0);*/
	}
	30% {
		opacity: 1;
		transform: translate(-50%, calc(-50% - 60px)) scale(1);
		/*clip:rect(0,900px,214px,0);*/
	}
	90% {
		transform: translate(-50%, calc(-50% - 60px)) scale(1);
		/*clip:rect(0,900px,214px,0);*/
		opacity: 1;
	}
	100% {
		transform: translate(-50%, calc(-50% - 60px)) scale(1);
		/*clip:rect(0,900px,214px,0);*/
		opacity: 1;
	}
}
.section_01.active .sec01_c_02 {
	/*transform: translate(-50%, calc(-50% + 90px));*/
	transform: translate(-50%, calc(-50% + 10px));
	animation: sec01_c_02 ease-in-out 3s 1.2s forwards;
}
@keyframes sec01_c_02 {
	0% {
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}




@keyframes fadeInUp {
	from {
		margin-top: 60px;
		opacity: 0;
		visibility:hidden;
	}

	to {
		margin-top: 0;
		opacity: 1;
		visibility:visible;
	}
}

@keyframes fadeInLeftA {
	from {
		margin-left: -30px;
		opacity: 0;
		visibility:hidden;
	}

	to {
		margin-top: 0;
		opacity: 1;
		visibility:visible;
	}
}

.swiper_main_slider .second.swiper-slide-active .text__box {
	animation: s1__slider02__t__ani 1.2s 1s ease-in-out both;
}

@keyframes s1__slider02__t__ani {
	from {
		clip:rect(0,0,214px,0);
		opacity: 0;
		visibility:hidden;
	}

	to {
		clip:rect(0,900px,214px,0);
		opacity: 1;
		visibility:visible;
	}
}

.section_02 {
	min-height:720px;
}

.section_02 .swiper-container {
	position:absolute;
	right: 250px;
	width: 1090px;
	top: 30%;
	z-index: 5;
	opacity: 0;
	visibility:hidden;
}



.section_02 .swiper-img-container {
	position:absolute;
	top: 0px;
	bottom: 0;
	right: 135px;
	width: 390px;
	height: 508px;
	z-index: 4;

}

.section_02.active .swiper-img-container {
	/*opacity: 0;*/
	/*animation: fadeInLeftSwc 1.5s .3s ease-in-out both;*/
}

@keyframes fadeInLeftSwc {
	from {
		transform:translate(0,-300px);
		opacity: 0;
	}

	to {
		transform:translate(0,0);
		opacity: 1;
	}
}

.sec02_title {
	position: absolute;
	top: 215px;
	left: 235px;
	opacity: 0;
	transform: translateY(80px);
}
.section_02.active .sec02_title {
	animation: sec02_title ease-in-out .8s .5s forwards;
}
@keyframes sec02_title {
	from {
		opacity: 0;
		transform: translateY(80px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.sec02_btn {
	position: absolute;
	bottom: -85px;
	left: 0;
	border: 1px solid #cfcfcf;
}
 


.section_02 .swiper-img-container .swiper-slide {
	width: 100%;
	height: 508px;
}
.section_02 .swiper-wrapper {
	opacity: 0;
	transform: translateY(-50%);
}
.section_02.active .swiper-wrapper {
	animation: sec02_slide ease-in-out 1s forwards;
}
@keyframes sec02_slide {
	from {
		opacity: 0;
		transform: translateY(-50%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*image slide*/
.section_02 .swiper-img-container .swiper-slide.first {
	background-image:url('../img/main/section02_slider_img01.png?new');
}

.section_02 .swiper-img-container .swiper-slide.second {
	background-image:url('../img/main/section02_slider_img02.png?new');
}

.section_02 .swiper-img-container .swiper-slide.third {
	background-image:url('../img/main/section02_slider_img03.png?new');
}

.section_02 .swiper-img-container .swiper-slide.forth {
	background-image:url('../img/main/section02_slider_img04.png?new');
}

.sec02_slider_text {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -125px;
}
.sec02_slider_text > img {
	position: relative;
	top: 24px;
	border-left: 10px solid #fff;
}
.sec02_slider_text::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	left: -1245px;
	width: 1610px;
	height: 1px;
	background-color: #d4d4d4;
	opacity: 0;
	transform: translateX(100px);
}
.section_02.active .sec02_slider_text::before {
	animation: sec02_page ease-in-out .8s .5s forwards;
}
.swiper-pagination {
	width: 935px !important;
	display: flex;
	justify-content: space-between;
	left: -1160px !important;
	bottom: -125px !important;
	opacity: 0;
	transform: translateX(100px);
}
.section_02.active .swiper-pagination {
	animation: sec02_page ease-in-out .8s .5s forwards;
}
@keyframes sec02_page {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
.swiper-pagination-clickable .swiper-pagination-bullet {
	width: 94px;
	height: 94px;
	border-radius: 10px;
	background-size: inherit;
	background-position: center;
	position: relative;
	opacity: 1 !important;
	transition: .3s;
}
.swiper-pagination-clickable .swiper-pagination-bullet:hover {
	transform: translateY(-10px);
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.swiper-pagination-clickable .swiper-pagination-bullet:hover::after {
	transform: translateY(10px);
}
.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(1) {
	background-image: url("../img/main/sec02_page01.png");
	background-color: #624a3d;
}
.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(2) {
	background-image: url("../img/main/sec02_page02.png");
	background-color: #616178;
}
.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(3) {
	background-image: url("../img/main/sec02_page03.png");
	background-color: #624a3d;
}
.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(4) {
	background-image: url("../img/main/sec02_page04.png");
	background-color: #616178;
}

.swiper-pagination-clickable .swiper-pagination-bullet::after {
	position: absolute;
	bottom: -190px;
	left: 0;
	display: inline-block;
	transition: .3s;
}
.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(1)::after {
	content: url("../img/main/sec02_text01.png");
}
.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(2)::after {
	content: url("../img/main/sec02_text02_n.png");
}
.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(3)::after {
	content: url("../img/main/sec02_text03.png");
}
.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(4)::after {
	content: url("../img/main/sec02_text04.png");
}



/*.section_02 .ect {*/
/*	position:absolute;*/
/*	left: 40vw;*/
/*	top: calc(50% - 200px);*/
/*	width: 182px;*/
/*	height: 182px;*/
/*	background-image:url('../img/main/section02_slider_ect.png?new');*/
/*	background-position: 100% center;*/
/*	font-size:0px;*/
/*	transform:translateX(-50%);*/
/*	z-index: 6;*/
/*	opacity: 0;*/
/*	visibility:hidden;*/
/*}*/

/*.section_02.active .ect {*/
/*	animation: s2__act__ani 1s 2s ease-out both;*/
/*}*/

/*@keyframes s2__act__ani {*/
/*	from {*/
/*		opacity: 0;*/
/*		visibility:hidden;*/
/*		clip:rect(0,182px,0,0);*/
/*	}*/

/*	to {*/
/*		opacity: 1;*/
/*		visibility:visible;*/
/*		clip:rect(0,182px,182px,0);*/
/*	}*/
/*}*/





.section_03_wrap {
	height: 100vh;
}

.sec03_s01 {
	background-image: url("../img/main/sec03_bg01.jpg");
}
.sec03_s02 {
	background-image: url("../img/main/sec03_bg02.jpg");
}

.sec03_s01 > div {
	display: flex;
	margin: 0 auto;
	width: fit-content;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	padding-right: 100px;
}
.sec03_a_01 {
	position: relative;
	margin-right: 100px;
	opacity: 0;
	transform: translateX(100px);
}
.section_03.active .swiper-slide-active .sec03_a_01 {
	animation: sec03_a_01 ease-in-out 1s .3s forwards;
}
@keyframes sec03_a_01 {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0px);
	}
}
.sec03_a_01::after {
	position: absolute;
	content: '';
	display: inline-block;
	width: 1px;
	height: 140px;
	background-color: #a17b5b;
	transform: rotate(45deg) translateY(-50%);
	right: -90px;
	top: 50%;
}
.sec03_a_02 {
	margin-left: 100px;
	opacity: 0;
	transform: translateX(-100px);
}
.section_03.active .swiper-slide-active .sec03_a_02 {
	animation: sec03_a_02 ease-in-out 1s .3s forwards;
}
@keyframes sec03_a_02 {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0px);
	}
}
.scroll_down {
	position: absolute !important;
	bottom: 60px;
	right: 135px;
	top: unset !important;
	margin: unset !important;
	transform: unset !important;
	padding: unset !important;
}
.scroll_down::after {
	content: '';
	display: inline-block;
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: #624a3d;
	border-radius: 50%;
	top: calc(50% + 1px);
	transform: translateX(0) translateY(-50%);
	left: 50%;
	animation: scroll_down ease-in-out 1.5s infinite;
}
.sec03_s02 .scroll_down::after {
	background-color: rgba(236, 224, 209, 0.51);
}
@keyframes scroll_down {
	from {
		transform: translateX(0) translateY(-50%);
		opacity: 1;
	}
	to {
		transform: translateX(50px) translateY(-50%);
		opacity: 0;
	}
}


.section_03 .circle_text {
	position: absolute;
	right: -108px;
	top: -30px;
	width: 185px;
	height: 185px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 6;

}


.sec03_s02 > div {
	display: flex;
	margin: 0 auto;
	width: fit-content;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	padding-right: 100px;
}
.sec03_b_01 {
	position: relative;
	margin-right: 100px;
	opacity: 0;
	transform: translateX(100px);
}
.section_03.active .swiper-slide-active .sec03_b_01 {
	animation: sec03_b_01 ease-in-out 1s .4s forwards;
}
@keyframes sec03_b_01 {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0px);
	}
}
.sec03_b_02 {
	margin-left: 100px;
	opacity: 0;
	transform: translateX(-100px);
}
.section_03.active .swiper-slide-active .sec03_b_02 {
	animation: sec03_b_02 ease-in-out 1s .4s forwards;
}
@keyframes sec03_b_02 {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0px);
	}
}


.section_03.active .circle_text {
	animation: FadeInUp 0.7s 2s both;
}



.section_03 .circle_text img {
	position:relative;
	z-index: 5;
}

.section_03 .circle_text::before {
	display:block;
	content:'';
	width: 100%;
	height: 100%;
	background-image:url('../img/main/circle_text.png');
	background-repeat: no-repeat;
	background-position:center;
	position:absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	animation:circleRotate 7s linear infinite;
}

@keyframes circleRotate {
	0% {
		transform:rotate(0deg);
	}

	100% {
		transform:rotate(360deg);
	}
}

.section_03.active .title__box {
	animation: fadeInLeft 1s .5s ease both;
}

@keyframes fadeInLeft {
	from {
		margin-left: -40px;
		opacity: 0;
		visibility:hidden;
	}

	to {
		margin-left: 0;
		opacity: 1;
		visibility:visible;
	}
}

.section_03 .link__box {
	display:flex;
	align-items:center;
}

.section_03 .link__box li {
	margin: 0 40px;
	text-align:center;
}

.section_03.active .link__box li:first-child {
	animation: s3__item__Ani__A 600ms 1.2s ease both;
}

.section_03.active .link__box li:nth-child(2) {
	animation: s3__item__Ani__B 600ms 1.8s ease both;
}

.section_03.active .link__box li:nth-child(3) {
	animation: s3__item__Ani__A 600ms 2.4s ease both;
}

@keyframes s3__item__Ani__A {
	from {
		margin-top: 60px;
		transform:scale3d(1.1,1.1,1.1);
		opacity: 0;
		visibility:hidden;
	}

	to {
		margin-top: 0;
		transform:scale3d(1,1,1);
		opacity: 1;
		visibility:visible;
	}
}

@keyframes s3__item__Ani__B {
	from {
		margin-top: -60px;
		transform:scale3d(1.1,1.1,1.1);
		opacity: 0;
		visibility:hidden;
	}

	to {
		margin-top: 0;
		transform:scale3d(1,1,1);
		opacity: 1;
		visibility:visible;
	}
}


.section_03 .link__box li .image {
	width: 155px;
	height: 176px;
	background-image:url('../img/main/section03_item_bg.png?new');
	background-position:0 center;
	font-size:0px;
	margin-bottom: 40px;
}

.section_03 .link__box li:nth-child(2) .image {
	background-position:-246px center;
}

.section_03 .link__box li:nth-child(3) .image {
	background-position:-485px center;
}

.section_03 .link__box li:last-child {
	margin-right: 0;
}

.section_03 .link__box li .view__more__btn {
	font-size:14px;
	font-family:'Montserrat-Bold';
	letter-spacing:1px;
	padding: 8px 15px;
	border:1px  solid #b0aa9e;
	border-width:1px 0;
	transition-duration: 400ms;
}

.section_03 .link__box li .view__more__btn:hover {
	border-color: #000;
	letter-spacing:2px;
}



.section_04_wrap {
	background-image: url("../img/main/sec04_bg.jpg");
	height: 400px;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
}
.section_04_wrap > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-left: 110px;
	margin-right: 110px;
}
.section_04_wrap > a > img:nth-child(1) {
	margin-bottom: 20px;
	transition: .3s;
}
.section_04_wrap > a:hover > img:nth-child(1) {
	transform: translateY(-10px);
}
.sec04_icon01, .sec04_icon02, .sec04_icon03 {
	opacity: 0;
	transform: translateY(40px);
}
.section_04.active .sec04_icon01 {
	animation: sec04_icon ease-in-out .8s forwards;
}
.section_04.active .sec04_icon02 {
	animation: sec04_icon ease-in-out .8s .3s forwards;
}
.section_04.active .sec04_icon03 {
	animation: sec04_icon ease-in-out .8s .6s forwards;
}
@keyframes sec04_icon {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


@media screen and (max-width:1920px) and (min-width:1740px) {


	.section_02 .ect {
		left: 33vw;
	}
}

@media screen and (max-width:1739px) {


	.section_02 .ect {
		left: 30vw;
	}

	.section_02 .swiper-container {
		width: 790px;
	}

	.section_02 .swiper_premium_slider .swiper-slide {
		width: 250px !important;
		height: 220px !important;
	}
}
