/****************** ��� ******************/
#header {
	position: fixed;
	top: 0;
	width: 100%;
    background: transparent;
    z-index: 9;
}
#header.drop {
	position: fixed;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}
#header.drop > .inner {
	height: 80px;
}
.nav-up {
	top: -100px;
}
.header-top {
	height: 48px;
}
.header-top ul {
	display: flex;
    align-items: center;
    justify-content: end;
    margin-left: auto;
    height: 48px;
}
.header-top li {
	margin-left: 20px;
	font-size: 15px;
	opacity: 0.8;
}
#header > .inner {
    position: relative;
    height: 100px;
}
#header > .inner > div {
	display: flex;
    align-items: center;
    justify-content: space-between;
	width: 100%;
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.logo {
    width: 180px;
    vertical-align: middle;
}
.logo a {	
    display: block;
    width: 200px;
    height: 80px;
    text-indent: -9000px;
}
#header.white .logo a {
    background: url("../img/main/logo-w.svg") no-repeat left center / 180px;
}
#header.white.basic .logo a {
    background: url("../img/main/logo.svg") no-repeat left center / 180px;
}
.menu-wrap .logo {
	position: absolute;
	top: 5px;
	left: 6%;
}
.menu-wrap .logo a {
	background: url("../img/main/logo-w.svg") no-repeat left center / 130px;
}
#gnb {
    vertical-align: middle;
}
#gnb > ul > li {
	position: relative;
    display: inline-block;
    margin-left: 44px;
    font-size: var(--font-regular);
	text-transform: uppercase;
    cursor: pointer;
}
#header.white.basic #gnb > ul li > a {
	color: var(--black-color);
}
#header.white #gnb > ul li > a {
	color: var(--white-color);
}
#gnb > ul li > a:hover {
	color: var(--main-color);
}
#gnb > ul > li.active > a {
	font-weight: bold;
	color: #f95e6e;
}
#gnb > ul .deps2 {
	display: none;
    margin: 0 auto;
    padding: 15px 18px;
    width: 100%;
	min-width: 140px;
	position: absolute;
    top: 40px;
    left: 50%;
	transform: translateX(-50%);
    background: #f95e6e;
	border-radius: 10px;
    overflow-x: hidden;
}
#gnb li.active .deps2 {
	display: block;
}
#gnb > ul .deps2 li:not(:last-child) {
	margin-bottom: 10px;
}
#gnb > ul .deps2 li a {
	color: #fff;
    font-size: 15px;
	text-align: center;
}
#gnb > ul .deps2 a:hover {
	font-weight: bold;
	text-decoration: underline;
}

.inner:after {
	content: "";
	display: block;
	clear: both;
}
/****************** ��� ******************/

/****************** ����� �޴� ******************/
.menu-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    padding: 80px 6% 0;
    background-color: var(--main-color);
    transition: right 0.3s ease-in-out;
    box-sizing: border-box;
	overflow-y: hidden;
    z-index: 10;
}
.mo-menu {
	padding-top: 60px;
}
.menu-wrap.show {
	right: 0;
}
.m-login {
	margin-bottom: 50px;
}
.m-login > a {
	margin-right: 5px;
	padding-right: 5px;
	border-right: 1px solid var(--border-color);
}
.m-login > a:last-child {
	border-right: 0;
}
.mo-menu .deps1 {
	width: 100%;
    height: 100%;
    padding: 30px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
}
.mo-menu .deps1:first-child {
	padding-top: 0;
}
.mo-menu .deps1 a {
	display: block;
	padding: 0;
	font-size: 18px;
	line-height: initial;
	color: var(--white-color);
}
.mo-menu .deps1 > a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 22px;
	font-weight: 600;
}
.mo-menu .deps1 > a .mArrow, .mo-menu .deps2 a .mArrow {
	float: right;
	margin-top: 12px;
	vertical-align: bottom;
	transition: all .4s ease-in;
}
/*
.mo-menu .deps1 > a.active .mArrow {
	transform: rotate(180deg);
}
*/
.mo-menu .deps1 > a.active {
	color: #00adec;
}
.mo-menu .deps1 span:first-child {
	display: block;
	font-size: 24px;
	font-weight: 500;
}
.mo-menu .deps1 span:last-child {
	display: block;
	font-size: 26px;
	font-weight: 500;
	color: #fff;
	/*transform: rotate(0deg);*/
	transition: all .3s ease-in;
}
.mo-menu .deps1:last-child span {
	font-size: 22px;
	font-weight: 700;
}
.mo-menu .deps1:last-child img {
	display: inline-block;
	margin-right: 5px;
	width: 20px;
}
/*
.mo-menu .deps1:hover span:last-child {
	transform: rotate(360deg);
}
*/
.mo-menu .deps2 {
	display: none;
}
.mo-menu .deps2 li {
	width: 100%;
	display: block;
}
.mo-menu .deps2 a {
	margin: 14px 0;
}
.mo-menu .deps2 li:last-child a {
	margin-bottom: 0;
}
.mo-menu .deps2 .add > a {
	padding: 10px 0 4px;
    margin: 0;
}
.mo-menu .deps1 > a:after {
	content: "";
	display: block;
	clear: both;
}
.h-right {
	display: flex;
	align-items: center;
}
.tel {
	display: inline-block;
	margin-right: 20px;
	font-size: var(--font-regular);
	font-weight: bold;
	color: var(--main-color);
}
.cont-btn {
	position: relative;
	display: inline-block;
	width: 120px;
	height: 46px;
	border-radius: 25px;
	border: 1px solid var(--white-color);
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
	cursor: pointer;
}
.cont-btn span {
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	font-size: var(--font-small);
	font-weight: 600;
	text-align: center;
	color: var(--white-color);
	/*animation: flowtxt infinite linear 4s;*/
}
#header.white.basic .cont-btn {
	border: 1px solid var(--main-color);
	background: #fffaf6;
}
#header.white.basic .cont-btn span {
	color: var(--main-color);
}
/*
.cont-btn span:nth-child(2) {
	animation-delay: -1.32s;
}
.cont-btn span:nth-child(3) {
	animation-delay: -2.64s;
}
@keyframes flowtxt {
  0% {
    left: 100%;
  }
  100% {
    left: -110%;
  }
}
*/
/****************** ����� �޴� ******************/

/****************** �ܹ��� �޴� ******************/
.ham-btn {
	display: none;
	position: absolute;
	top: 50%;
    right: 0;
	transform: translateY(-50%);
    z-index: 99;
}
.btn-in {
	display: block;
	position: relative;
	width: 28px;
    height: 22px;
	cursor: pointer;
}
.close .btn-in, .close .btn-in span {
	display: inline-block;
	box-sizing: border-box;
}
.btn-in span, .close .btn-in span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 4px;
	background-color: var(--black-color);
}
#header.white .btn-in span, #header.white .close .btn-in span {
	background-color: var(--white-color);
}

#header.white.basic .btn-in span, #header.white.basic .close .btn-in span {
	background-color: var(--black-color);
}

header.active .btn-in span, .header:hover .btn-in span, .close .btn-in span {
	background: var(--black-color);;
}
.btn-in span:nth-of-type(1), .close .btn-in span:nth-of-type(1) {
	top: 0;
}
.btn-in span:nth-of-type(2), .close .btn-in span:nth-of-type(2) {
	top: 10px;
}
.btn-in span:nth-of-type(3), .close .btn-in span:nth-of-type(3) {
	bottom: 0;
}
.btn-in.active span:nth-of-type(1), .close .btn-in span:nth-of-type(1) {
	-webkit-transform: translateY (10px) rotate (-45deg);
	transform: translateY(10px) rotate(-45deg);
	background: var(--white-color);
}
.btn-in.active span:nth-of-type(2), .close .btn-in span:nth-of-type(2) {
	opacity: 0;
}
.btn-in.active span:nth-of-type(3), .close .btn-in span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
	background: var(--white-color);
}

.close-btn {
	position: absolute;
	top: 24px;
    right: 5%;
    z-index: 99;
}
/****************** �ܹ��� �޴� ******************/

/****************** Ǫ�� ******************/
footer {
	position: relative;
	background: var(--white-color);
	z-index: 3;
}
footer.section {
	position: relative;
}
footer .section-in {
	padding: 70px 0;
	justify-content: space-between;
	border-top: 1px solid var(--border-color);
}
footer .f-info {
	font-size: var(--font-footer);	
    line-height: 2;
}
footer .f-info li {
	display: flex;
	gap: 22px;
}
footer .f-info strong {
	display: inline-block;
	margin-right: 8px;
}
footer .copy {
	display: block;
	margin-top: 5px;
	font-size: var(--font-footer);	
	line-height: 1.4;
	color: #a5a5a5;
}
footer .f-list {
	display: flex;
	/*
    flex-wrap: wrap;
    justify-content: end;
    */
	gap: 15px 35px;
	width: 300px;
	font-size: var(--font-footer);	
	text-align: right;
}
footer .section-in:after {
	content: "";
	display: block;
	clear: both;
}
footer .top-btn, footer .chat {
	display: flex;
    align-items: center;
    justify-content: center;
	position: fixed;
	right: 50px;
	bottom: 170px;
	right: 24px;
	width: 56px;
	height: 56px;
	border-radius: 24px;
	border: 1px solid var(--border-color);
	background: var(--white-color);
	z-index: 9;
	transition: all .3s;
}
footer .chat {
	width: 57px;
	height: 57px;
	bottom: 105px;
	background: var(--main-color);
	border-color: var(--main-h-color);
}
footer .top-btn img {
	width: 14px;
}
footer .top-btn:hover {
	background: var(--light-gray-color);
}

.floating-btn.call {
	display: none;
	bottom: 90px;
	background: var(--black-color);
}
.floating-btn {
	position: fixed;
	right: 24px;
	bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: #fae100;
	border-radius: 24px;
	box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.1) 0px 4px 6px, rgba(0, 0, 0, 0.15) 0px 8px 30px;
	cursor: pointer;
	z-index: 9;
}

footer .f-list { margin-bottom: 20px }


footer > .section-in { display: flex; flex-wrap: wrap; }
footer > .section-in > ul { flex: 0 75%; }
footer > .section-in > div { flex: 0 75%; }
footer > .section-in > div+div { flex: 0 25%; }

footer .family-box > div {
	position: relative;
	width: 175px;
	font-size: 14px;
	cursor:pointer;
	color: #000;
	border: 1px solid #888;
	padding: 10px 30px 10px 20px;
	border-radius: 30px;
}
footer .family-box > div > span { display: inline-block; font-size: 25px; }
footer .family-box > div > .ico {
	position: absolute;
	right: 11px;
	display: inline-block;
	width: 21px;
	height: 21px;
	margin-top: -2px;
	background-image: url(/img/ft_plus_ico.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: all 0.8s;
}
footer .family-box > div:hover > .ico {
	transform: rotate(180deg);
}
footer .family-box > ul {
	display: none;
	position: absolute;
	z-index: 9;
	border: 1px solid #888;
	color: #000;
	padding: 10px 10px 10px 20px !important;
	border-radius: 15px;
	font-size: 15px;
	margin-top: -130px !important;
	background: #fff;
}
footer .family-box > ul.open{ display: block; }

footer .family-box > ul > li {
	line-height: 30px;
	padding-right: 20px;
}

footer .family-box > ul > li:hover {
	color: var(--main-color);
}

/*.geZAaL {*/
/*    bottom: 105px;*/
/*}*/

/****************** Ǫ�� ******************/


@media all and (max-width:1501px) {
	#gnb > ul > li {margin-left: 30px;}
}


@media all and (max-width:1201px) {
	.logo {width: 140px;}
	.logo a, .menu-wrap .logo a {width: 140px; background-size: 140px !important;}

	/*footer .section-in {display: flex; flex-direction: column-reverse; padding: 50px 0;}*/
	footer .section-in {display: flex; padding: 50px 0;}
	#footer .left, #footer .right {float: none;}
	#footer .right {margin-bottom: 20px;}
	footer .f-list {justify-content: start; gap: 10px 20px; width: auto; text-align: left;}

	footer .top-btn, footer .chat {width: 44px; height: 44px; border-radius: 16px; right: 14px; bottom: 130px;}
	footer .chat {bottom: 80px;}
}


@media all and (max-width:1025px) {
	.fix #header.drop {background: transparent; backdrop-filter: none;}
	#header > .inner {height: 80px;}
	#gnb, .header-top, .cont-btn {display: none;}
	.ham-btn {display: block;}
	.tel {margin-right: 50px;}

	.mo-menu .deps1 > a.cont-btn.mobile {width: 180px; height: 50px; position: absolute; bottom: 50px; left: 50%; justify-content: center; transform: translateX(-50%); color: var(--main-color); z-index: 99;}
	.cont-btn span {width: 160px;}
	.mo-menu .deps1:nth-child(5), .mo-menu .deps1:last-child {border-bottom: none;}

	footer .f-info li {flex-direction: column; gap: 0;}
}

@media all and (max-width:641px) {
	#header > .inner {height: 70px;}
	.logo, .menu-wrap .logo {width: 120px;}
	.logo a, .menu-wrap .logo a {width: 130px; background-size: 130px !important;}
	footer.section {padding: 50px 0;}
	footer .f-info li {display: block;}

	footer .top-btn img {width: 12px;}
}

@media all and (max-width:800px) {
	footer > .section-in > .family-box  {
		flex: 0 100%;
		margin-top: 20px;
	}
}

/* 빠른 문의 */
.fixed-layout {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: 80px;
    background-color: #1a1a1a;
}
.fixed-layout .fixed-inner {
    display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
}
.fixed-layout .fixed-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    width: 26.72%;
    height: 80px;
    padding: 0 3.125vw 0 5vw;
    background-color: var(--main-color);
}
.fixed-layout .fixed-logo {
	max-width: 155px;
    width: 100%;
}
.fixed-layout .line {
	width: 1px;
    height: 27px;
	background: rgba(255,255,255,0.5);
}
.fixed-layout .fixed-call {}
.fixed-layout .fixed-call a {
	display: flex;
    flex-direction: row;
    align-items: center;
	gap: 10px;
}
.fixed-layout .fixed-call a figure {
	width: 30px;
}
.fixed-layout .fixed-call a .telephone-text {
	color: #fff;
}
.fixed-layout .fixed-call a .telephone-text span {
	font-size: 13px;
	opacity: 0.8;
}
.fixed-layout .fixed-call a .telephone-text p {
	font-size: 22px;
	font-weight: 700;
	white-space: nowrap;
}
.fixed-layout .fixed-right {
    width: 73.28%;
}
.fixed-layout .fixed-right #fixed-form {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
	gap: 30px;
    height: 80px;
    padding: 0 5vw 0 3.125vw;
}
.fixed-layout .fixed-right #fixed-form .fixed-name-box,
.fixed-layout .fixed-right #fixed-form .fixed-number-box {
	display: flex;
    flex-direction: row;
	align-items: center;
	gap: 15px;
	width: 100%;
}
.fixed-layout .fixed-right #fixed-form .fixed-name-box input,
.fixed-layout .fixed-right #fixed-form .fixed-number-box input {
	outline: none;
    border: 0;
    background-color: #323332;
    resize: none;
	padding: 16px 15px;
	border-radius: 4px;
	width: 100%;
	color: #fff;
	font-size: 15px;
}
.fixed-layout .fixed-right #fixed-form .fixed-name-box input::placeholder,
.fixed-layout .fixed-right #fixed-form .fixed-number-box input::placeholder {
	    font-size: 14px;
		color: #5a5a5a;
}
.fixed-layout .fixed-right #fixed-form .fixed-checkbox input[type="checkbox"] {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    outline: none;
    vertical-align: middle;
    cursor: pointer;
	-webkit-appearance: none;
    -webkit-box-sizing: border-box;
	border: 1px solid #ddd;
}
.fixed-layout .fixed-right #fixed-form .fixed-checkbox input[type="checkbox"]:checked {
    background: #fff;
	border: 1px solid #fff;
}
.fixed-layout .fixed-right #fixed-form .fixed-checkbox input[type="checkbox"]:checked::before {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%);
    color: var(--main-color);
	font-size: 12px;
	font-weight: 700;
}
.fixed-layout .fixed-right #fixed-form .fixed-checkbox {
	display: flex;
    align-items: center;
    gap: 5px;
	white-space: nowrap;
}
.fixed-layout .fixed-right #fixed-form .fixed-checkbox label {
	font-size: 14px;
	color: #ddd;
	cursor: pointer;
}
.fixed-layout .fixed-right #fixed-form .fixed-checkbox label a {
	font-weight: 700;
	color: #fff;
}

.fixed-layout .fixed-right form label {
	color: #fff;
	font-size: 15px;
}

.fixed-layout .fixed-right button {
    display: flex;
    align-items: center;
    gap: 30px;
	width: 176.75px;
	font-size: 20px;
	font-weight: 700;
	padding: 12px 30px;
	background-color: var(--main-color);
	color: #fff;
	border-radius: 100px;
	white-space: nowrap;
}
.fixed-layout .fixed-right button:hover {
    background: var(--main-h-color);
}
.fixed-layout .fixed-right button::after {
	display: inline-block;
	content: "";
	width: 12px;
	height: 8px;
	background: url("../img/main/next.png") no-repeat center / cover;
}
input:-internal-autofill-selected {
	background-color: #323332 !important;
    color: #fff !important;
}

/* 빠른 문의 - 모바일*/
.fixed-layout  .m-fixed-inner {
	display: none;
}
.fixed-layout .m-fixed-inner::after {
    content: "";
    width: 1px;
    height: 50%;
	background: rgba(255,255,255,0.5);
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateY(-50%);
}
.m-fixed-inner > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
	height: 70px;
	color: #fff;
}
.m-fixed-inner > div a {
	display: flex;
    align-items: center;
    gap: 8px;
}
.m-fixed-inner > div a img {
	width: 22px;
}
.m-fixed-inner > div a span {
	font-size: 20px;
    font-weight: 500;
}
footer {
    padding-bottom: 80px;
}
@media all and (max-width:1700px) {
	.fixed-layout .fixed-left {
		gap: 20px;
		width: 30%;
		padding: 0 2.5vw 0 5vw;
	}
	.fixed-layout .fixed-right {
		width: 70%;
	}
	.fixed-layout .fixed-right #fixed-form {
		gap: 20px;
	    padding: 0 5vw 0 2.5vw;
	}
}
@media all and (max-width:1500px) {
	.fixed-layout .fixed-left {
		gap: 15px;
	}
	.fixed-layout .fixed-right #fixed-form .fixed-name-box, .fixed-layout .fixed-right #fixed-form .fixed-number-box {
		gap: 10px;
	}
	.fixed-layout .fixed-right #fixed-form .fixed-checkbox label a {
		display: block;
	}
}
@media all and (max-width:1400px) {
	.fixed-layout {
		height: 70px;
	}
	.fixed-layout .fixed-left {
		height: 70px;
		padding: 0 2vw 0 5vw;
	}
	.fixed-layout .fixed-right #fixed-form{
		height: 70px;
		gap: 15px;
		padding: 0 5vw 0 2vw;
	}
	.fixed-layout .fixed-right #fixed-form .fixed-name-box input, 
	.fixed-layout .fixed-right #fixed-form .fixed-number-box input {
		padding: 12px 10px;
		font-size: 13px;
	}
	.fixed-layout .fixed-call a {
		gap: 7px;
	}
	.fixed-layout .fixed-call a figure {
		width: 25px;
	}
	.fixed-layout .fixed-right form label {
		font-size: 14px;
	}
	.fixed-layout .fixed-right button {
		gap: 20px;
		font-size: 18px;
		padding: 10px 20px;
	}
	footer {
		padding-bottom: 70px;
	}
}
@media all and (max-width:1200px) {
	.fixed-layout .fixed-left .fixed-logo,
	.fixed-layout .fixed-left .line {
		display: none;
	}
	    .fixed-layout .fixed-left {
		width: auto;
        height: 70px;
        padding: 0 3vw 0 5vw;
		gap: 0;
    }
	.fixed-layout .fixed-call a .telephone-text p {
		font-size: 20px;
	}
	.fixed-layout .fixed-right {
        width: 100%;
    }
	.fixed-layout .fixed-right #fixed-form {
        padding: 0 5vw 0 3vw;
    }
	.fixed-layout .fixed-right #fixed-form .fixed-checkbox label {
		font-size: 13px;
	}
	.fixed-layout .fixed-right button {
        gap: 15px;
	}
}
@media all and (max-width:1024px) {
	.fixed-layout .p-fixed-inner {
		display: none;
	}
	.fixed-layout  .m-fixed-inner {
		display: flex;
	}
}
@media all and (max-width:768px) {
	.fixed-layout {
		height: 60px;
	}
	.m-fixed-inner > div {
		height: 60px;
	}
	footer {
		padding-bottom: 60px;
	}

}
@media all and (max-width:500px) {
	.fixed-layout {
		height: 55px;
	}
	.m-fixed-inner > div {
		height: 55px;
	}
	.m-fixed-inner > div a img {
		width: 16px;
	}
	.m-fixed-inner > div a span {
		font-size: 16px;
	}
	footer {
		padding-bottom: 50px;
	}
}