/****************** ��� ******************/
#header {
	position: fixed;
	top: 0;
	width: 100%;
    background: transparent;
    z-index: 9;
}
#header.drop {
	position: fixed;
    /*background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);*/
}
.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: 70px;
    vertical-align: middle;
}
.logo a {	
    display: block;
    width: 200px;
    height: 80px;
    background: url("../img/main/logo.png") no-repeat left center / 40px;
    text-indent: -9000px;
}
.menu-wrap .logo {
	position: absolute;
	top: 5px;
	left: 6%;
}

.inner: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: 190px;
	height: 50px;
	border-radius: 25px;
	border: 1px solid var(--main-color);
	background: var(--main-color);
	overflow: hidden;
	cursor: pointer;
	transition: all .2s ease-in;
	animation: blink2 1.5s ease-in-out infinite;
}
@keyframes blink2 {
	0% {
		border-color: #cd001a;
		background-color: #cd001a;
	}
	50% {
		border-color: #f76376;
		background-color: #f76376;
	}
	100% {
		border-color: #cd001a;
		background-color: #cd001a;
	}
  }
.cont-btn span {
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	color: var(--white-color);
	transition: all .5s ease-in;
}
.cont-btn:hover {
	background: var(--white-color);
}
.cont-btn:hover span {
	/* color: var(--main-color); */
}
/****************** ��� ******************/

.on .scroll-menu {
	position: fixed;
	left: 60px;
    top: 130px;
    z-index: 2;
}
.scroll-menu li {
	font-size: 15px;
	font-weight: 500;
	color: #adadad;
}
.scroll-menu li.on {
	font-size: 15px;
	font-weight: 600;
	color: var(--main-color);
}
.scroll-menu li:not(:last-child) {
	margin-bottom: 10px;
} 



/****************** Ǫ�� ******************/
footer.section {
	position: relative;
	padding: 68px 0;
}
footer .wrap-in {
	justify-content: space-between;
}
footer .f-info {
	font-size: 15px;	
    line-height: 2;
}
footer .f-info li {
	display: flex;
	justify-content: center;
	gap: 4px 22px;
}
footer .f-info strong {
	display: inline-block;
	margin-right: 8px;
}
footer .copy {
	display: block;
	margin-top: 30px;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	opacity: 0.5;
}

.floating-btn.call {
	right: 15px;
	bottom: 90px;
	background: var(--black-color);
	animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
	0% {
		background-color: #222;
	}
	50% {
		background-color: #7f7f7f;
	}
	100% {
		background-color: #222;
	}
  }
.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;
}

#ch-plugin-entry{animation: blink3 1.5s ease-in-out infinite;}
@keyframes blink3 {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
  }
/****************** Ǫ�� ******************/


@media all and (max-width:1201px) {
	.inner {width: 94%;}
	#header > .inner {height: 90px;}
	.logo a {height: 60px; background-size: 32px;}
	/* .cont-btn {width: 110px; height: 40px;} */
	.tel {margin-right: 15px;}
	footer.section {padding: 50px 0;}
	footer .copy {margin-top: 15px;}

	.on .scroll-menu {left: 3%;}
}


@media all and (max-width:1025px) {
	#header > .inner {height: 80px;}
	footer .f-info li {flex-wrap: wrap;}
}


@media all and (max-width:641px) {
	footer.section {padding: 50px 0;}

	.floating-btn {width: 56px; height: 56px; border-radius: 24px; right: 14px;}
	.floating-btn img {width: 28px;}
	.floating-btn.call {display: flex; bottom: 90px;}
}

@media all and (max-width:481px) {
	footer.section {padding: 40px 0;}
	footer .f-info {font-size: 14px; line-height: 1.4;}
	footer .f-info li {gap: 2px 18px;}
	footer .copy {margin-top: 10px; font-size: 14px;}
}