:root {
	--duration: 6s;
	--wave-duration: calc(var(--duration) * 0.25);
	--text-in-delay: calc(var(--duration) * 0.275);
	--text-in-duration: calc(var(--duration) * 0.1);
	--easing: cubic-bezier(0.5,0,0.5,1);
	--dot-color: #0BCF62;
	--dot-color-dark: #0a7a3c;
}
body::-webkit-scrollbar {
    display: none;
}
.step_intro {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 7;
	display: grid;
	align-items: center;
	justify-items: center;
	background: var(--black);
}
.step_intro > * {
	grid-area: 1/1;
}
.step_intro .title {
	font-size: 64px;
	margin: 0;
}
.step_intro .title .char {
	--delay: calc(var(--text-in-delay) + (0.25s * (1 - var(--distance-percent))));
	-webkit-animation: text-in var(--text-in-duration) var(--easing) var(--delay) backwards;
			animation: text-in var(--text-in-duration) var(--easing) var(--delay) backwards;
	transform-origin: center 1em;
  }
  @-webkit-keyframes text-in {
	0% {
	  opacity: 0;
	  transform: translateX(calc(-0.4em * var(--char-offset))) scale(0);
	}
	90% {
	  transform: translateX(0em) scale(1.1);
	}
  }
  @keyframes text-in {
	0% {
	  opacity: 0;
	  transform: translateX(calc(-0.4em * var(--char-offset))) scale(0);
	}
	90% {
	  transform: translateX(0em) scale(1.1);
	}
  }
.step_intro .title .char[data-char=N],
.step_intro .title .char[data-char=T]:not(:last-child),
.step_intro .title .char[data-char=A] {
	visibility: hidden;
	--squish-scale: 0.6;
	--squish-y: 10%;
}
.step_intro .title .char[data-char=N]:before,
.step_intro .title .char[data-char=T]:not(:last-child):before,
.step_intro .title .char[data-char=A]:before {
	animation: text-squish var(--duration) var(--easing) forwards;
	visibility: visible;
	transform-origin: center 1em;
}
.step_intro .title .char[data-char=N],.title .char[data-char=A] {
	--squish-scale: 0.9;
	--squish-y: 5%;
}
@-webkit-keyframes text-squish {
	47.5%, 52.5% {
	  transform: none;
	}
	50% {
	  transform: translateY(calc(var(--squish-y) * 1)) scaleY(calc(var(--squish-scale) * 1));
	}
  }
  @keyframes text-squish {
	47.5%, 52.5% {
	  transform: none;
	}
	50% {
	  transform: translateY(calc(var(--squish-y) * 1)) scaleY(calc(var(--squish-scale) * 1));
	}
  }
.step_intro .title .char:last-child {
	animation: text-in var(--text-in-duration) var(--easing) var(--delay) backwards,text-bonk var(--duration) var(--easing) forwards;
}
@-webkit-keyframes text-bonk {
	80%, 85%, to {
	  transform: none;
	}
	82% {
	  transform: translateX(-20%);
	}
  }
  @keyframes text-bonk {
	80%, 85%, to {
	  transform: none;
	}
	82% {
	  transform: translateX(-20%);
	}
  }
.step_intro .dot {
	font-size: 30px;
	width: 30px;
	height: 30px;
	animation: dot var(--duration) var(--easing) both;
}
.step_intro .dot-inner {
	animation: dot-inner var(--duration) var(--easing) both;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	display: grid;
	align-items: center;
	justify-items: center;
}
.step_intro .dot-inner > * {
	grid-area: 1/1;
}
.step_intro .dot-wave {
	width: 200%;
	height: 200%;
	fill: var(--dot-color);
	animation: wave-in var(--wave-duration) var(--easing);
	--offset-x: -110%;
}
@keyframes wave-in {
	0% {
		 transform: translateY(100%) translateX(var(--offset-x));
	}
	70% {
		 transform: translateY(30%) translateX(0%);
	}
}
.step_intro .dot-wave.background {
	fill: var(--dot-color-dark);
	animation-duration: calc(0.95 * var(--wave-duration));
	--offset-x: 110%;
}
@keyframes dot {
	from {
		 opacity: 0;
		 transform: scale(3);
	}
	10% {
		 opacity: 1;
		 transform: scale(3);
	}
	15% {
		 transform: scale(3) translateY(0.5em) scaleY(1.5);
	}
	20% {
		 transform: scale(1) translateY(-300%);
	}
	30% {
		 transform: translateY(1em) scaleY(0.5);
	}
	40% {
		 transform: translateY(-400%);
	}
	50% {
		 transform: translateY(-1em);
	}
	53% {
		 transform: translateY(-300%);
	}
	56% {
		 transform: translateY(-1em);
	}
	59% {
		 transform: translateY(-200%);
	}
	62% {
		 transform: translateY(1em);
	}
	80%,90%,to {
		 transform: translateY(1em);
	}
}
@keyframes dot-inner {
	from,45% {
		 transform: none;
	}
	70% {
		 transform: translateX(6em);
		 animation-timing-function: cubic-bezier(0.5,0,1,0);
	}
	80% {
		 transform: translateX(5.3em);
		 animation-timing-function: var(--easing);
	}
	83%,to {
		 transform: translateX(5.4em);
	}
}



.contact_slide {
	min-height: 100vh;
	padding: 120px 0 20px;
	box-sizing: border-box;
}
.contact_slide .swiper-pagination {
	position: relative;
	width: 90%;
	max-width: 1000px;
	margin: 0 auto 50px;
}
.contact_slide .swiper-pagination-progressbar {
	background: var(--white);
	height: 35px;
	border-radius: 50px;
	overflow: hidden;
	border: 1px solid #0BCF62;
	box-sizing: border-box;
}
.contact_slide .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--key-color);
}
.contact_slide .box {
	position: relative;
	max-width: 1320px;
	padding: 0 20px;
	margin: 0 auto;
	box-sizing: border-box;
}
.contact_slide .box h2 {
	text-align: center;
	margin-bottom: 50px;
	font-size: 64px;
	letter-spacing: -0.32px;
	line-height: 1.2;
	word-break: keep-all;
}
.contact_slide .select_box {
	gap: 40px;
}
.contact_slide .select_box > div {
	position: relative;
	width: calc(33.333% - 27px);
}
.contact_slide .select_box > div input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -1;
}
.contact_slide .select_box > div input + label {
	display: block;
	width: 100%;
	height: 150px;
	border-radius: 20px;
	background: var(--BG_2);
	color: var(--white);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -0.215px;
	text-align: center;
	padding: 56px 0;
	transition: all .2s;
	box-sizing: border-box;
}
.contact_slide .select_box > div input:checked + label {
	background: var(--key-color);
	color: var(--white);
}

.contact_slide .input_box {
	position: relative;
	gap: 40px;
}
.contact_slide .input_box > div {
	width: calc(50% - 20px);
}
.contact_slide .input_box.flex_col > div {
	width: 100%!important;
}
.contact_slide .input_box input[type=text],
.contact_slide .input_box input[type=number] {
	width: 100%;
	height: 88px;
	border-radius: 20px;
	background: var(--BG_2);
	color: var(--white);
	padding: 0 50px;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -0.16px;
	box-sizing: border-box;
	transition: all .2s;
}
.contact_slide .input_box input[type=text]:focus,
.contact_slide .input_box input[type=number]:focus {
	background: var(--key-color);
}
.contact_slide .input_box input[type=radio] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -1;
}
.contact_slide .input_box input[type=radio] + label {
	display: block;
	width: 100%;
	height: 88px;
	line-height: 88px;
	border-radius: 20px;
	background: var(--BG_2);
	color: var(--white);
	padding: 0 50px;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -0.16px;
	transition: all .2s;
	box-sizing: border-box;
}
.contact_slide .input_box input[type=radio]:checked + label {
	background: var(--key-color);
	color: var(--white);
}
.contact_slide .input_box textarea {
	display: block;
	width: 100%;
	height: 300px;
	padding: 20px 50px;
	resize: none;
	border-radius: 30px;
	background: var(--BG_2);
	color: var(--white);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.12px;
	border: 0;
	box-sizing: border-box;
}
.contact_slide .input_box .file_box {
	position: relative;
	margin-top: 20px;
}
.contact_slide .input_box .file_box #file {
	display: none;
}
.contact_slide .input_box .file_box label {
	display: block;
	width: 100%;
	height: 84px;
	line-height: 84px;
	text-align: center;
	border-radius: 20px;
	background: var(--BG_2);
	color: var(--white);
	box-sizing: border-box;
}
.contact_slide .input_box .file_box .upload {
	gap: 10px;
	margin-top: 30px;
}
.contact_slide .input_box .file_box .upload_file {
	background: transparent url("../images/ic_file.svg")no-repeat 0 50%;
	color: var(--white);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: -0.12px;
    padding: 4px 0 4px 40px;
    box-sizing: border-box;
}
.contact_slide .input_box .file_box .del_file {
	width: 20px;
	height: 20px;
	background: url("../images/ico-close.svg")no-repeat 50% 50% / 100%;
}


.arrow_btn {
	position: relative;
	width: 100%;
	max-width: 1320px;
	padding: 0 20px;
	margin: 20px auto 0;
	box-sizing: border-box;
}
.arrow_btn button {
	position: relative;
	font-size: 32px;
	letter-spacing: -0.16px;
	font-weight: 600;
	padding: 0 30px;
	height: 88px;
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	box-sizing: border-box;
}
.arrow_btn button.prev {
	border: 1px solid #C3CED7;
	color: var(--black);
	background: var(--white);
	width: 0;
	padding: 0;
}
.arrow_btn button.next {
	border: 0;
	background: var(--key-color);
	color: var(--white);
	width: 0;
	padding: 0;
}
.arrow_btn button.complete_btn {
	display: none;
	border: 0;
	background: var(--key-color);
	color: var(--white);
}
.arrow_btn button.on {
	opacity: 1;
	visibility: visible;
	z-index: 0;
	width: auto;
	padding: 0 30px;
}



.result {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black);
	z-index: 40;
	overflow-y: auto;
}
.result .result_form {
	position:relative;
	width:100%;
	display:flex;
	align-items: center;
	min-height:427px;
	overflow:hidden;
	margin-top: 40px;
}
.result .result_form:after {
	content:"";
	position:absolute;
	transform: translateX(-50%);
	top: 0;
	left: 50%;
	width: 94%;
	height: 62px;
	border: 6px solid var(--white);
	border-radius:50px;
	z-index:100;
	box-sizing: border-box;
}
.result .result_box {
	position:relative;
	width: 85%;
	max-width: 1030px;
	-webkit-animation: slideDown 1.5s;
	animation: slideDown 1.5s;
	background: url("../images/receipt_bg.svg")no-repeat 50% 100% / cover;
	color: var(--black);
	padding: 80px;
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	z-index: 101;
	box-sizing: border-box;
}
@-webkit-keyframes slideDown {
	0% {
		-webkit-transform:translateY(-100%);
		transform:translateY(-100%)
	}
	50%,to {
		-webkit-transform:translateY(0);
		transform:translateY(0)
	}
}
@keyframes slideDown {
	0% {
		-webkit-transform:translateY(-100%);
		transform:translateY(-100%)
	}
	50%,to {
		-webkit-transform:translateY(0);
		transform:translateY(0)
	}
}
.result .result_box h2 {
	display: inline-block;
	text-align: center;
	font-size: 43px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.32px;
	border-bottom: 4px solid var(--black);
}
.result .select_box {
	margin-top: 80px;
	border-top: 3px solid #E2E2E2;
	border-bottom: 3px solid #E2E2E2;
	padding: 40px 0;
	gap: 50px;
}
.result .select_box > div {
	gap: 120px;
	font-size: 24px;
	letter-spacing: -0.12px;
}
.result .select_box > div h4 {
	width: 140px;
	color: #BBB;
}
.result .select_box > div > div {
	flex: 1;
	font-weight: 600;
	gap: 10px;
}
.result .select_box > div > div #_download_ {
	background: url("../images/ic_file_black.svg")no-repeat 0 50%;
	padding-left: 30px;
    box-sizing: border-box;
}
.result #agree {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	visibility: hidden;
	z-index: -1;
	opacity: 0;
}
.result #agree + label {
	display: block;
	position: relative;
	font-size: 24px;
	color: #bbb;
	letter-spacing: -0.12px;
	padding-left: 45px;
	margin-top: 35px;
}
.result #agree + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 30px;
	height: 30px;
	border: 1px solid #bbb;
	border-radius: 5px;
}
.result #agree:checked + label:before {
	background: #bbb url("../images/check.svg")no-repeat 50% 50% / 22px;
}
.result .btn_color {
	width: 400px;
	height: 132px;
	border-radius: 20px;
	font-size: 32px;
	letter-spacing: -0.215px;
	font-weight: 700;
	margin: 100px auto;
}






.complete {
	display: none;
	background: var(--black);
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}
.complete h2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	color: var(--white);
	font-size: 80px;
	letter-spacing: -0.4px;
	font-weight: 800;
	word-break: keep-all;
}
#fix {
	display: none!important;
}




@media screen and (max-width: 1480px) {
	.contact_slide {
		padding-top: 150px;
	}
	.contact_slide .swiper-pagination-progressbar {
		height: 28px;
	}
	.contact_slide .box h2 {
		font-size: 40px;
	}
	.contact_slide .select_box {
		gap: 30px;
	}
	.contact_slide .select_box > div {
		width: calc(33.333% - 20px);
	}
	.arrow_btn button {
		font-size: 28px;
		padding: 0 20px;
		height: 65px;
	}


	.result .btn_color {
		height: 120px;
	}

	.complete h2 {
		font-size: 60px;
	}
}
@media screen and (max-width: 1024px) {
	.contact_slide .swiper-wrapper {
		min-height: calc(-290px + 100vh);
	}
	.contact_slide .swiper-pagination {
		margin-bottom: 30px;
	}
	.contact_slide .swiper-pagination-progressbar {
		height: 10px;
	}
	.contact_slide .box h2 {
		font-size: 22px;
		margin-bottom: 30px;
	}
	.contact_slide .select_box {
		gap: 16px;
	}
	.contact_slide .select_box > div {
		width: calc(33.333% - 14px);
	}
	.contact_slide .select_box > div input + label {
		font-size: 14px;
        height: 42px;
        padding: 12px 0;
        border-radius: 10px;
    }

	.contact_slide .input_box {
		gap: 16px;
	}
	.contact_slide .input_box > div {
		width: calc(50% - 8px);
	}
	.contact_slide .input_box input[type=text],
	.contact_slide .input_box input[type=number] {
		height: 42px;
		border-radius: 10px;
		padding: 0 20px;
		font-size: 14px;
	}
	.contact_slide .input_box input[type=radio] + label {
		height: 42px;
        line-height: 43px;
		border-radius: 10px;
		padding: 0 20px;
		font-size: 14px;
	}
	.contact_slide .input_box textarea {
		height: 194px;
		padding: 20px;
		font-size: 14px;
		border-radius: 10px;
	}
	.contact_slide .input_box .file_box {
		margin-top: 16px;
	}
	.contact_slide .input_box .file_box label {
		height: 46px;
        line-height: 46px;
		font-size: 14px;
		border-radius: 10px;
	}
	.contact_slide .input_box .file_box .upload_file {
		font-size: 14px;
		background-size: 15px;
		padding-left: 25px;
	}


	.arrow_btn {
		gap: 10px;
		justify-content: center;
	}
	.arrow_btn button.next {
		font-size: 18px;
		height: 46px;
	}
	.arrow_btn button.complete_btn {
		font-size: 18px;
		height: 46px;
	}
	.arrow_btn button.prev {
		font-size: 0;
		background: var(--white) url(../images/arrow-prev.svg) no-repeat 50% 50%;
		height: 46px;
	}
	.arrow_btn button.prev.on {
		width: 50px;
	}


	.result .result_form:after {
		height: 50px;
		border-width: 5px;
	}
	.result .result_box {
		padding: 40px;
	}
	.result .result_box h2 {
        font-size: 34px;
    }
	.result .select_box {
		margin-top: 40px;
		border-top-width: 2px;
		gap: 30px;
	}
	.result .select_box > div {
		font-size: 20px;
		gap: 60px;
	}
	.result .select_box > div h4 {
		width: 120px;
	}
	.result #agree + label {
		font-size: 18px;
		margin-top: 20px;
		padding-left: 34px;
		padding-bottom: 20px;
	}
	.result #agree + label:before {
		width: 23px;
		height: 23px;
		top: -3px;
	}
	.result .btn_color {
		width: 260px;
		height: 85px;
		font-size: 24px;
		border-radius: 10px;
		margin: 70px auto;
	}

	.complete h2 {
		font-size: 40px;
	}
}
@media screen and (max-width: 768px) {
	.step_intro .title {
		font-size: 40px;
	}
	.step_intro .dot {
		font-size: 18px;
		width: 17px;
		height: 17px;
	}


	.contact_slide {
        padding-top: 110px;
    }
	.contact_slide .swiper-wrapper {
        min-height: calc(-250px + 100vh);
    }
	.contact_slide .input_box > div {
        width: 100%;
    }
	.contact_slide .select_box > div {
        width: 100%;
    }
	.contact_slide .select_box > div input + label {
        height: 52px;
        padding: 18px 20px;
		text-align: left;
    }
	.contact_slide .input_box input[type=radio] + label {
        height: 52px;
        line-height: 52px;
	}
	.contact_slide .input_box input[type=text],
	.contact_slide .input_box input[type=number] {
		height: 52px;
	}

	.result .result_form:after {
		height: 30px;
		border-width: 3px;
	}
	.result .result_box {
		padding: 20px;
	}
	.result .result_box h2 {
        font-size: 24px;
        border-bottom-width: 2px;
    }
	.result .select_box {
        margin-top: 20px;
        border-top-width: 2px;
        gap: 20px;
        padding-top: 20px;
    }
	.result .select_box > div {
        font-size: 14px;
        gap: 20px;
    }
	.result .select_box > div h4 {
        width: 80px;
        font-weight: 500;
    }
	.result .select_box > div > div #_download_ {
		background-size: 12px;
    	padding-left: 20px;
	}
	.result #agree + label {
        font-size: 14px;
		padding-left: 28px;
	}
	.result #agree + label:before {
        width: 18px;
        height: 18px;
        top: -2px;
        border-radius: 3px;
    }
	.result .btn_color {
        width: 160px;
        height: 57px;
        font-size: 14px;
        margin: 30px auto;
    }

	.complete h2 {
		font-size: 24px;
	}
}
@media screen and (max-width: 480px) {
	.result .select_box > div {
		gap: 5px;
	}
	.result .select_box > div h4 {
		width: 100%;
	}
	.result .select_box > div > div {
		flex: none;
		width: 100%;
	}
}
@media screen and (max-width: 380px) {
	.contact_slide .input_box > div {
        width: 100%;
    }
}