@charset "utf-8";

.inner {
	position: relative;
	width: 100%;
	max-width: 1640px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}

#header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	padding: 26px 0;
	background: #F7F2F2;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	box-sizing: border-box;
	z-index: 50;
}
#header .inner {
	gap: 20px;
}
#header .logo a {
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 0.9px;
	text-transform: uppercase;
}
#header .gnb ul {
	gap: 60px;
}
#header .gnb ul li a {
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	padding: 6px 0;
}
#header .menu {
	position: relative;
	display: none;
}
#header .menu a {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
}
#header .menu a:before {
	content: '';
	position: absolute;
	top: 9px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 20px;
	height: 1px;
	background: var(--black);
	transition: all .3s;
}
#header .menu a:after {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 20px;
	height: 1px;
	background: var(--black);
	transition: all .3s;
}
#header .menu.on a:before {
	top: 15px;
	transform: translateX(-50%) rotate(45deg);
}
#header .menu.on a:after {
	top: 15px;
	transform: translateX(-50%) rotate(-45deg);
}



.side_wrap {
	position: fixed; 
	top: -100%;
	left: 0;
	width: 100%;
	z-index: 35;
	background: #F5F5F5;
	transition: top .3s ease-in-out;
}
.side_wrap.on {
	top: 84px;
}
.side_wrap .depth {
    padding: 20px 0;
	overflow-y: auto;
	max-height: 80vh;
	box-sizing: border-box;
}
.side_wrap .depth01 {
	position: relative;
}
.side_wrap .depth01 > a {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
    font-weight: 600;
	padding: 15px 10px;
	background: url("../images/arrow_down.svg")no-repeat calc(100% - 10px) 50%;
	box-sizing: border-box;
}
.side_wrap .depth01.no_child > a {
	background: none!important;
}
.side_wrap .depth01.active > a {
	background: var(--key-color);
	color: var(--white);
}
.side_wrap .depth02 {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: all .3s;
}
.side_wrap .depth01.active .depth02 {
	max-height: 1000px;
}
.side_wrap .depth .depth02 li a {
	display: block;
    text-align: left;
    font-size: 14px;
    font-weight: 300;
	border-bottom: 1px solid #e9e9e9;
	padding: 10px 20px;
	box-sizing: border-box;
}
.side_wrap .depth .depth02 li:last-child a {
	border-bottom: 0;
}
.side_wrap .depth .depth02 li a:before {
	content: '-';
	margin-right: 5px;
}
.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;
}



#footer {
	position: relative;
	background: var(--black);
	color: var(--white);
	box-sizing: border-box;
}
#footer .ad {
	padding: 200px 0 100px;
	gap: 20px;
}
#footer .ad h2 {
	font-size: 90px;
	font-weight: 900;
	line-height: 1.2;
}
#footer .ad .m {
	display: none;
}
#footer .ad p {
	font-size: 36px;
	font-weight: 200;
	line-height: 1.4;
}
#footer .ft_box {
	padding: 100px 0;
	gap: 40px 120px;
}
#footer .ft_box > div {
	gap: 40px;
}
#footer .ft_box > div h4 {
	color: var(--text);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
}
#footer .ft_box > div > div {
	gap: 16px;
}
#footer .ft_box > div .tel {
	font-size: 48px;
	font-weight: 900;
}
#footer .ft_box > div p {
	font-size: 20px;
	font-weight: 200;
	line-height: 1.2;
}
#footer .copy {
	border-top: 1px solid var(--white);
	padding: 40px 0;
	gap: 10px 20px;
}
#footer .copy button {
	color: var(--white);
}



#quick {
	position: fixed;
	bottom: 50px;
	right: 50px;
	gap: 20px;
	align-items: end;
	z-index: 11;
}
#quick > a {
	width: 140px;
	height: 140px;
	justify-content: center;
	align-items: center;
	font-size: 36px;
	font-weight: 900;
	background: var(--key-color);
	color: var(--white);
	box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.35);
	border-radius: 30px;
	box-sizing: border-box;
}



.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: #F7F2F2;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
	border-radius: 40px;
	padding: 30px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: calc(95vh - 148px);
    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;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	gap: 10px;
	background: var(--black);
	border-radius: 100px;
	color: var(--white);
	padding: 20px 40px;
	box-sizing: border-box;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.2;
	box-sizing: border-box;
}
.modal .bar .close {
	width: 25px;
	height: 25px;
	background: var(--black) url("../images/ic_close_white.svg")no-repeat 50% 50% / 100%;
}
.modal .btn_area {
	gap: 10px;
	margin-top: 20px;
	justify-content: center;
}
.modal .btn_area > * {
	height: 32px;
	line-height: 32px;
	border-radius: 50px;
	font-size: 16px;
	text-align: center;
	padding: 0 20px;
	box-sizing: border-box;
}


.pagenavi ol {
	justify-content: center;
	gap: 10px;
}
.pagenavi ol li img {
	max-width: 100%;
	vertical-align: middle;
}
.pagenavi ol li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	color: var(--text);
	text-align: center;
}
.pagenavi ol li.this a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	background: var(--black);
	color: var(--white);
	font-size: 24px;
	font-weight: 700;
}


#agree_pop .scroll {
	padding: 16px 30px;
	border-radius: 30px;
	background: #F5F5F5;
	margin-top: 20px;
	box-sizing: border-box;
}
#agree_pop .scroll h4 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 14px;
	letter-spacing: 0.5px;
	line-height: 1.2;
}
#agree_pop .cont {
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0.375px;
}


.title {
	gap: 20px;
	align-items: end;
	padding-bottom: 80px;
	border-bottom: 2px solid var(--black);
	box-sizing: border-box;
}
.title h3 {
	font-size: 96px;
	font-weight: 900;
	line-height: 1.2;
}
.title p {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.2;
}



#contact_pop .modal_cont {
	max-width: 900px;
}
#contact_pop .form {
    gap: 20px;
	margin-top: 30px;
}
#contact_pop .form .grid {
    gap: 20px;
}
#contact_pop .form > div {
    width: 100%;
}
#contact_pop .form .grid > div {
    width: calc(50% - 10px);
}
#contact_pop .form input[type=text],
#contact_pop .form input[type=password] {
    width: 100%;
    height: 68px;
    border-radius: 100px;
    background: var(--white);
    padding: 0 30px;
    font-size: 16px;
    letter-spacing: 0.4px;
    box-sizing: border-box;
}
#contact_pop .form .unit {
	min-height: 68px;
	background: var(--white);
	padding: 16px 30px;
	border-radius: 100px;
	gap: 20px;
	box-sizing: border-box;
}
#contact_pop .form .unit .radio {
	flex: 1;
	width: 100%;
	gap: 20px;
}
#contact_pop .form .unit .radio > div {
	position: relative;
}
#contact_pop .form .unit .radio > div input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
#contact_pop .form .unit .radio > div input + label {
	position: relative;
	display: inline-block;
	padding: 2px 0 2px 27px;
	box-sizing: border-box;
}
#contact_pop .form .unit .radio > div input + label strong {
	font-weight: 500;
}
#contact_pop .form .unit .radio > div input + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid var(--black);
	box-sizing: border-box;
}
#contact_pop .form .unit .radio > div input:checked + label:before {
	border-width: 6px;
}
#contact_pop .form textarea {
    width: 100%;
    height: 250px;
    resize: none;
    border-radius: 30px;
    background: var(--white);
    padding: 30px;
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 1.2;
    border: 0;
    box-sizing: border-box;
}
#contact_pop .form .file_box {
    position: relative;
    border-radius: 100px;
    border: 1px dashed var(--text);
    overflow: hidden;
	box-sizing: border-box;
}
#contact_pop .form .file_box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}
#contact_pop .form .file_box label {
    width: 100%;
    height: 68px;
    line-height: 68px;
    text-align: center;
}
#contact_pop .form .file_box label img {
    vertical-align: middle;
    margin-left: 10px;
}
#contact_pop .form .file_box .box {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F7F2F2;
    text-align: center;
    font-family: inherit;
    font-size: inherit;
    justify-content: center;
    gap: 10px;
}
#contact_pop .form .file_box .box.on {
    display: flex;
}
#contact_pop .form .file_box .upload_name {
    max-width: calc(100% - 110px);
    height: 68px;
    line-height: 68px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
#contact_pop .form .file_box .del_btn {
	width: 25px;
	height: 25px;
	background: var(--black) url("../images/ic_close_white.svg")no-repeat 50% 50% / 11px;
    border-radius: 50%;
}
#contact_pop .form .agree {
    gap: 50px;
    padding: 10px 0;
}
#contact_pop .form .agree > div {
    position: relative;
}
#contact_pop .form .agree > div input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}
#contact_pop .form .agree > div input + label {
    position: relative;
    display: inline-block;
    color: #000;
    padding: 4px 0 4px 35px;
    box-sizing: border-box;
}
#contact_pop .form .agree > div input + label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid #000;
    background: var(--white);
    box-sizing: border-box;
}
#contact_pop .form .agree > div input:checked + label:before {
	border: 1px solid var(--key-color);
    background: var(--key-color) url("../images/ic_check_white.svg")no-repeat 50% 50% / 14px;
}
#contact_pop .form .agree button {
    color: var(--point);
}
#contact_pop .form .btn_area {
	margin-top: 0;
}
#contact_pop .form .btn_area button {
	height: auto;
	line-height: 1;
    padding: 16px 60px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 500;
    box-sizing: border-box;
}





@media screen and (max-width: 1640px) {
	.title h3 {
    	font-size: 84px;
	}
	.title p {
    	font-size: 28px;
	}
}
@media screen and (max-width: 1400px) {
	#footer .ad h2 {
    	font-size: 78px;
	}
	#footer .ad p {
    	font-size: 32px;
	}
}
@media screen and (max-width: 1280px) {
	#header {
		padding: 26px 0;
	}
	#header .gnb ul {
        gap: 20px;
    }

	#quick {
		right: 20px;
	}
	#quick > a {
		width: 120px;
		height: 120px;
		font-size: 30px;
	}

	.title h3 {
        font-size: 64px;
    }
	.title p {
        font-size: 24px;
    }
}
@media screen and (max-width: 1024px) {
	#header .gnb{
		display: none;
	}
	#header .menu {
		display: block;
	}


	#footer .ad {
		padding: 100px 0 50px;
	}
	#footer .ad h2 {
    	font-size: 54px;
	}
	#footer .ad p {
    	font-size: 22px;
	}
	#footer .ft_box {
    	padding: 50px 0;
	}
	#footer .ft_box > div {
		width: 100%;
		gap: 20px;
	}
	#footer .ft_box > div h4 {
    	font-size: 20px;
	}
	#footer .ft_box > div .tel {
    	font-size: 36px;
	}
	#footer .ft_box > div p {
    	font-size: 16px;
	}
	#footer .copy {
		font-size: 14px;
		padding: 20px 0;
	}


	#quick > a {
        width: 90px;
        height: 90px;
        font-size: 20px;
        border-radius: 15px;
    }


	.pagenavi ol li a {
		width: 25px;
		height: 25px;
		line-height: 25px;
		font-size: 14px;
	}
	.pagenavi ol li.this a {
		width: 35px;
		height: 35px;
		line-height: 35px;
		font-size: 20px;
	}

	.modal .modal_cont {
		padding: 20px;
		border-radius: 20px;
	}
	.modal .bar h3 {
		font-size: 22px;
	}
	.modal .bar .close {
		width: 20px;
		height: 20px;
	}

	#agree_pop .scroll {
		border-radius: 20px;
	}
	#agree_pop .scroll h4 {
    	font-size: 16px;
	}
	#agree_pop .cont {
    	font-size: 13px;
	}


	.title {
		padding-bottom: 40px;
		border-width: 1px;
	}
	.title h3 {
        font-size: 48px;
    }
	.title p {
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
	#footer .ad h2 {
        font-size: 42px;
    }
	#footer .ad .m {
		display: block;
	}
	#footer .ad p {
        font-size: 20px;
    }


	.pagenavi ol li a {
        width: 20px;
        height: 20px;
        line-height: 20px;
    }
	.pagenavi ol li.this a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
    }


	.title h3 {
		width: 100%;
        font-size: 34px;
    }
	.title p {
		width: 100%;
        font-size: 16px;
    }


	#contact_pop .form {
        gap: 10px;
    }
    #contact_pop .form .grid > div {
        width: 100%;
    }
    #contact_pop .form input[type=text], 
    #contact_pop .form input[type=password] {
        height: 48px;
        font-size: 14px;
        padding: 0 20px;
    }
    #contact_pop .form textarea {
        height: 220px;
        padding: 20px;
        font-size: 14px;
    }
	#contact_pop .form .unit {
		gap: 10px;
	}
	#contact_pop .form .unit > strong {
		width: 100%;
		font-size: 14px;
	}
	#contact_pop .form .unit .radio > div input + label {
		font-size: 14px;
		padding: 2px 0 2px 23px;
	}
	#contact_pop .form .unit .radio > div input + label:before {
		width: 18px;
		height: 18px;
	}
    #contact_pop .form .file_box label {
        height: 48px;
        line-height: 48px;
        font-size: 14px;
    }
    #contact_pop .form .file_box label img {
        width: 18px;
    }
    #contact_pop .form .file_box .upload_name {
        height: 48px;
        line-height: 48px;
        font-size: 14px;
    }
    #contact_pop .form .file_box .del_btn {
        width: 20px;
        height: 20px;
        background-size: 8px;
    }
    #contact_pop .form .agree {
        font-size: 14px;
        gap: 20px;
    }
    #contact_pop .form .agree > div input + label {
        padding: 3px 0 3px 28px;
    }
    #contact_pop .form .agree > div input + label:before {
        width: 20px;
        height: 20px;
    }
    #contact_pop .form .btn_area button {
        padding: 12px 40px;
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
	#footer .ad h2 {
        font-size: 32px;
    }
	#footer .ad p {
        font-size: 16px;
    }
	#footer .ft_box > div h4 {
        font-size: 16px;
    }
	#footer .ft_box > div .tel {
        font-size: 26px;
    }
	#footer .ft_box > div p {
        font-size: 14px;
    }


	.pagenavi ol {
		gap: 5px;
	}
	.pagenavi ol li a {
        width: 17px;
        height: 17px;
        line-height: 17px;
    }
	.pagenavi ol li.this a {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 14px;
    }
	.pagenavi ol li img {
		vertical-align: 0px;
	}
}
@media screen and (max-width: 380px) {
	.pagenavi ol {
        gap: 2px;
    }
	.pagenavi ol li.this a {
        width: 22px;
        height: 22px;
        line-height: 22px;
	}
	.pagenavi ol li.first a,
	.pagenavi ol li.prev a,
	.pagenavi ol li.next a,
	.pagenavi ol li.last a {
		width: 14px;
		height: 14px;
		line-height: 14px;
	}
}