@charset "utf-8";

.inner {
	position: relative;
	width: 100%;
	max-width: 1360px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}

#header {
	position: fixed;
	top: 25px;
	left: 0;
	width: 100%;
	opacity: 1;
	transition: all .2s;
	padding: 0 20px;
	box-sizing: border-box;
	z-index: 25;
}
#header.nav_down {
	top: -25px;
	opacity: 0;
}
#header .inner {
	height: 71px;
	padding: 16px 30px;
	background: var(--black);
	border-radius: 50px;
	transition: all .2s;
}
#header .logo {
	font-size: 24px;
}
#header .logo a {
	color: var(--white);
}
#header .logo img {
	width: 30px;
}
#header .gnb ul {
	gap: 40px;
}
#header .gnb ul li a {
	color: var(--white);
	transition: color .3s;
}
#header .gnb ul li a:hover {
	color: var(--key-color);
}
#header .h_partner a {
	font-weight: 500;
	background: var(--white);
	border-radius: 50px;
	padding: 10px 26px;
	transition: all .3s;
	box-sizing: border-box;
}
#header .h_partner a:hover {
	background: var(--key-color);
	color: var(--white);
}
#header .menu {
    display: none;
    position: absolute;
    top: 13px;
    right: 20px;
}
#header .menu a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	background: var(--key-color);
	border-radius: 50%;
}
#header .menu a span {
	position: absolute;
	left: 12px;
	display: block;
	width: 16px;
	height: 2px;
	background: var(--black);
	transition: all .2s;
}
#header .menu a span:nth-child(1) {
	top: 13px;
}
#header .menu a span:nth-child(2) {
	top: 19px;
}
#header .menu a span:nth-child(3) {
	top: 25px;
}
#header.on .menu a span:nth-child(1) {
	top: 20px;
	transform: rotate(45deg);
}
#header.on .menu a span:nth-child(2) {
	display: none;
}
#header.on .menu a span:nth-child(3) {
	top: 20px;
	transform: rotate(-45deg);
}


.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}
.not_scroll {
	overflow: hidden;
}


#container {
	position: relative;
	background: var(--bg);
	border-radius: 0 0 100px 100px;
	z-index: 1;	
}


#quick {
	position: fixed;
	bottom: 20px;
	right: 30px;
	width: 247px;
	background: var(--white);
	border-radius: 20px;
	padding: 10px;
	box-sizing: border-box;
	z-index: 20;
}
#quick a {
	font-weight: 500;
	padding: 16px;
	border-radius: 10px;
	box-sizing: border-box;
}
#quick a .m {
	display: none;
}



#footer {
	position: relative;
	background: var(--key-color);
	padding: 220px 0 40px;
	margin-top: -100px;
	box-sizing: border-box;
}
#footer .inner {
	gap: 80px;
	max-width: 1640px;
}
#footer .top {
	gap: 80px;
}
#footer .top h2 {
	min-width: 583px;
	font-size: 64px;
	font-weight: 500;
	line-height: 1.1;
	text-transform: capitalize;
}
#footer .ft_nav {
	gap: 20px;
}
#footer .ft_nav > p {
	color: #AC459D;
	text-transform: uppercase;
}
#footer .ft_nav ul {
	gap: 6px;
}
#footer .ft_nav ul li a {
	display: inline-block;
	height: 43px;
	line-height: 43px;
	padding: 0 20px;
	border-radius: 100px;
	border: 1px solid var(--black);
	font-weight: 500;
	transition: all .3s;
	box-sizing: border-box;
}
#footer .ft_nav ul li a:hover {
	transform: rotate(6deg) scale(1.05, 1.05);
}
#footer .mid {
	gap: 80px;
}
#footer .contact {
	min-width: 583px;
}
#footer .contact p {
	font-size: 20px;
	color: #AC459D;
}
#footer .contact strong {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.2;
}
#footer .bottom {
	gap: 30px;
}
#footer .bottom .logo {
	font-size: 180px;
	gap: 16px;
}
#footer .bottom .copy {
	color: #44403C;
}



.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 100;
}
.modal .modal_cont {
    width: 90%;
    max-width: 1000px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 101;
	background: var(--white);
	font-family: 'SUIT';
	border-radius: 30px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: 95vh;
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
	padding: 30px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	gap: 10px;
	background: var(--black);
	color: var(--white);
	padding: 16px 30px;
	border-radius: 50px;
	gap: 10px;
	margin-bottom: 40px;
	box-sizing: border-box;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 20px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.modal .bar .close {
	width: 15px;
	height: 15px;
	background: url("../images/ic_close_white.svg")no-repeat 50% 50%;
}
.modal .btn_area {
	gap: 10px;
	margin-top: 40px;
	justify-content: center;
}
.modal .btn_area > * {
	padding: 16px 60px;
	border-radius: 50px;
	font-size: 20px;
	text-align: center;
	box-sizing: border-box;
}


#agree_pop .box {
	padding: 20px 30px;
	box-sizing: border-box;
}
#agree_pop .cont {
    line-height: 1.2;
    overflow-y: auto;
    max-height: calc(100vh - 182px);
	white-space: pre-line;
	color: var(--black);
}


.tit_box {
	gap: 40px;
}
.tit_box .badge span {
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	background: var(--key-color);
	padding: 16px 20px;
	border-radius: 100px;
	box-sizing: border-box;
}
.tit_box h3 {
	font-size: 80px;
	font-weight: 500;
	line-height: 1.2;
}
.tit_box p {
	font-size: 24px;
	line-height: 1.4;
}





@media screen and (max-width: 1280px) {
	#footer .top h2 {
		min-width: 420px;
		font-size: 48px;
	}
	#footer .contact {
		min-width: 420px;
	}
	#footer .contact strong {
		font-size: 26px;
	}
	#footer .bottom .logo {
		font-size: 124px;
	}
	#footer .bottom .logo svg {
		width: 170px;
		height: auto;
	}



	.tit_box h3 {
		font-size: 64px;
	}
	.tit_box p {
    	font-size: 20px;
	}
}
@media screen and (max-width: 1024px) {
	#header .inner {
		height: 67px;
		overflow: hidden;
	}
	#header.on .inner {
		height: 373px;
		border-radius: 30px;
	}
	#header .gnb {
        flex: none;
        width: calc(100% - -30px) !important;
        background: var(--white);
        padding: 30px 20px;
        border-radius: 30px;
        box-sizing: border-box;
        margin: 10px -15px 0;
    }
	#header .gnb ul {
		flex-direction: row;
		gap: 20px;
	}
	#header .gnb ul li {
		width: 100%;
	}
	#header .gnb ul li a {
		color: var(--black);
		font-size: 18px;
		font-weight: 500;
	}
	#header .h_partner {
		position: relative;
		width: calc(100% - -30px) !important;
		margin: 0 -15px 10px;
	}
	#header .h_partner a {
		display: inline-block;
		width: 100%;
		padding: 17px 26px 13px;
	}
	#header .h_partner a:after {
		content: '';
		position: absolute;
		top: 8px;
		right: 10px;
		width: 30px;
		height: 30px;
		background: var(--key-color) url("../images/hover_arrow.svg")no-repeat 50% 50% / 22px;
		border-radius: 50%;
	}
	#header .menu {
		display: block;
	}


	#container {
    	border-radius: 0 0 50px 50px;
	}


	#footer {
		padding: 180px 0 40px;
	}
	#footer .top {
		gap: 40px;
	}
	#footer .top h2 {
        min-width: 345px;
        font-size: 36px;
    }
	#footer .mid {
		gap: 40px;
	}
	#footer .contact {
        min-width: 345px;
    }
	#footer .contact strong {
        font-size: 22px;
    }
	#footer .ft_nav > p {
		font-size: 14px;
	}
	#footer .ft_nav ul li a {
		font-size: 14px;
	}
	#footer .bottom .logo {
        font-size: 84px;
    }
	#footer .bottom .logo svg {
		width: 120px;
	}


	.tit_box .badge span {
		font-size: 16px;
	}
	.tit_box h3 {
		font-size: 46px;
	}
	.tit_box p {
    	font-size: 16px;
	}
}
@media screen and (max-width: 768px) {
	#footer .inner {
		gap: 40px;
	}
	#footer .top {
        gap: 30px;
    }
	#footer .top h2 {
		width: 100%;
		min-width: auto;
		font-size: 28px;
	}
	#footer .contact {
		width: 100%;
		min-width: auto;
	}
	#footer .contact strong {
        font-size: 18px;
    }
	#footer .bottom .logo {
        font-size: 54px;
    }
	#footer .bottom .logo svg {
        width: 80px;
    }

	#quick {
		right: 10px;
		width: 145px;
	}
	#quick a {
        font-size: 14px;
        padding: 12px 0;
    }
	#quick a .m {
		display: block;
	}

	.tit_box {
		gap: 30px;
	}
	.tit_box .badge span {
        font-size: 14px;
        padding: 12px 16px;
    }
	.tit_box h3 {
        font-size: 28px;
    }
	.tit_box p {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
	#footer .bottom .logo {
		font-size: 40px;
		gap: 8px;
	}
	#footer .bottom .logo svg {
		width: 58px;
	}

	.tit_box h3 {
        font-size: 26px;
    }
}
@media screen and (max-width: 380px) {
	#footer .bottom .logo {
        font-size: 34px;
    }
	#footer .bottom .logo svg {
        width: 48px;
    }
}