@charset "utf-8";


/* 1) root 설정  */
:root {
	--color-base: #222;
	--color-point: #007ec2;
	--color-point02: #004A99;
	--color-point03: #87c440;
	--color-white: #fff;
	--color-black: #000;
	--font-base: 16rem;
	--font-eng: 'Montserrat', Sans-serif;
	--font-kr: 'Pretendard', Sans-serif;
	--font-serif: "Noto Serif", serif;
}

::-webkit-scrollbar {
	width: 10rem;
}

::-webkit-scrollbar-thumb {
	background-color: hsla(0, 0%, 42%, 0.3);
	border-radius: 100rem;
}


/* 2) 폰트설정 */
body {
	font-size: var(--font-base, 16rem);
	overflow-x: hidden;
}

body.active {
	/*position:fixed;*/
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	overflow: hidden !important;
}

body.mfp-zoom-out-cur {
	overflow-y: hidden;
}

@media (min-width:1921px) {
	html {
		font-size: 0.052vw
			/* 1px */
		;
	}
}

@media (max-width:1500px) {
	html {
		font-size: 0.067vw
			/* 1px */
		;
	}
}

@media (max-width:1300px) {
	html {
		font-size: 0.077vw
			/* 1px */
		;
	}
}

@media (max-width:1024px) {
	html {
		font-size: 0.098vw
			/* 1px */
		;
	}
}

@media (max-width:768px) {
	html {
		font-size: 0.130vw
			/* 1px */
		;
	}
}

@media (max-width:620px) {
	html {
		font-size: 0.161vw
			/* 1px */
		;
	}
}

@media (max-width:480px) {
	html {
		font-size: 0.271vw
			/* 1.3px */
		;
	}
}


[data-flex] {
	display: flex;
}

[data-grid] {
	display: grid;
}

[data-grid="2"] {
	grid-template-columns: 1fr 1fr;
	gap: 50rem;
}

[data-grid="3"] {
	grid-template-columns: 1fr 1fr 1fr;
	gap: 60rem;
}

[data-grid="4"] {
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 35rem;
}

[data-grid="5"] {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 20rem;
}


[data-ani] {
	opacity: 0;
	transition: transform 1.6s ease, opacity 1.3s ease;
	transform-style: preserve-3d;
	will-change: transform;
}

[data-ani].moved {
	opacity: 1;
	transform: none;
}

[data-ani="img"] {
	transform: translate(0%, 40%) matrix3d(1, 0, 0, 0, 0, 0.997564, 0.0697565, -0.00028, 0, -0.0697565, 0.997564, -0.00249391, 0, 0, 40, 0.9);
}

[data-ani="top"] {
	transform: translateY(100rem);
	transition-delay: 0.1s;
}

[data-ani="right"] {
	transform: translateX(80rem);
	transition-delay: 0.1s;
}

[data-ani="left"] {
	transform: translateX(-80rem);
	transition-delay: 0.1s;
}

[data-ani="scale"] {
	transform: scale(2);
	transition-delay: 0.1s;
	opacity: 1 !important;
}

[data-ani="rotate"] {
	transform: scale(1.15);
	transition-delay: 0.1s;
	opacity: 1 !important;
}

/* start motion  for All contents */
.motion-on [data-motion] {
	transition: transform 1.4s ease, opacity 1.3s ease;
	transform: none;
	opacity: 1;
	will-change: transform;
}

[data-motion] {
	opacity: 0;
}

[data-motion="preserveTop"] {
	transform: translateY(100%) rotateX(-80deg);
	transform-style: preserve-3d;
	transform-origin: center bottom;
}

[data-motion="slideBtm"] {
	transform: translateY(-50rem);
}

[data-motion="slideTop"] {
	transform: translateY(50rem);
}

[data-motion="slideLeft"] {
	transform: translateX(-100rem);
}

[data-motion="slideRight"] {
	transform: translateX(100rem);
}

[data-motion="scale"] {
	animation: motion-scale 5s forwards cubic-bezier(0.12, 0.4, 0.41, 0.86);
}

/* delay set */
[data-delay="100"] {
	transition-delay: 100ms !important;
}

[data-delay="150"] {
	transition-delay: 150ms !important;
}

[data-delay="200"] {
	transition-delay: 200ms !important;
}

[data-delay="250"] {
	transition-delay: 250ms !important;
}

[data-delay="300"] {
	transition-delay: 300ms !important;
}

[data-delay="350"] {
	transition-delay: 350ms !important;
}

[data-delay="400"] {
	transition-delay: 400ms !important;
}

[data-delay="450"] {
	transition-delay: 450ms !important;
}

[data-delay="500"] {
	transition-delay: 500ms !important;
}

[data-delay="550"] {
	transition-delay: 550ms !important;
}

[data-delay="600"] {
	transition-delay: 600ms !important;
}

[data-delay="650"] {
	transition-delay: 650ms !important;
}

[data-delay="700"] {
	transition-delay: 700ms !important;
}

[data-list]>* {
	position: relative;
}

[data-list]>*::before {
	content: "";
	position: absolute;
	left: 0;
	background-color: #afafaf;
}

[data-list]>*:last-child {
	margin: 0;
}

[data-list="dot"]>* {
	padding-left: 10rem;
}

[data-list="dot"]>*::before {
	top: 7rem;
	width: 3rem;
	height: 3rem;
	border-radius: 10rem;
}

[data-list="line"]>* {
	padding-left: 13rem;
}

[data-list="line"]>*::before {
	top: 10rem;
	width: 4rem;
	height: 1px;
}

[data-list="square"]>* {
	padding-left: 10rem;
}

[data-list="square"]>*::before {
	top: 7rem;
	width: 4rem;
	height: 4rem;
}

[data-list="num"] {
	counter-reset: num;
}

[data-list="num"]>* {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 5rem;
	padding-left: 27rem;
	counter-increment: num;
}

[data-list="num"]>*::before {
	content: counter(num);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	width: 23rem;
	height: 23rem;
	background: var(--b-01);
	font-size: 12rem;
	color: var(--w);
	text-align: center;
	border-radius: 100%;
}

[data-list="check"]>li {
	display: flex;
	position: relative;
	padding-left: 27rem;
}

[data-list="check"]>li::before {
	top: 1rem;
	width: 20rem;
	height: 20rem;
	background: #f8fafc;
	border-radius: 100%;
}

[data-list="check"]>li::after {
	content: "";
	position: absolute;
	top: 5rem;
	left: 7rem;
	width: 6rem;
	height: 9rem;
	box-sizing: border-box;
	border-right: 2rem solid var(--color-point);
	border-bottom: 2rem solid var(--color-point);
	transition: all .2s;
	transform: rotate(37deg);
	-webkit-transform: rotate(37deg);
	-webkit-transition: all .2s;
}

@media (max-width:768px) {
	[data-grid="3"] {
		grid-template-columns: 1fr 1fr;
	}

	[data-ani="top"] {
		transform: translateY(30rem);
	}

	[data-ani="left"],
	[data-ani="right"] {
		transform: translate(0, 30rem);
	}

	[data-ani="left"].moved {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 540px) {}


/*  keyframe */
@keyframes motion-scale {
	0% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes motion {
	0% {
		opacity: 0.1;
		width: 10rem;
		height: 10rem;
	}

	50% {
		opacity: 0.3;
	}

	100% {
		opacity: 0;
		width: 45rem;
		height: 45rem;
	}
}

@keyframes motion2 {
	0% {
		opacity: 0.1;
		width: 10rem;
		height: 10rem;
	}

	50% {
		opacity: 0.2;
	}

	100% {
		opacity: 0;
		width: 95rem;
		height: 95rem;
	}
}


@keyframes txtrotate {
	to {
		transform: rotate(0deg);
	}

	from {
		transform: rotate(360deg);
	}
}

@media all and (max-width:768px) {

	[data-ani="top"],
	[data-ani="left"] {
		transform: translateY(30rem);
	}
}

/* 3) 레이아웃설정 */
.inr {
	position: relative;
	width: 1400rem;
	margin: 0 auto;
}

.inr-wide {
	position: relative;
	width: 1600rem;
	margin: 0 auto;
}

.inr.sub {
	position: relative;
	width: 1300rem;
	margin: 0 auto;
}

.inr.sub02 {
	position: relative;
	width: 1400rem;
	margin: 0 auto;
}

.inr.sub03 {
	position: relative;
	width: 1300rem;
	margin: 0 auto;
}

/*#header *{transition: all .5s;}*/


#header,
#sub #header.on {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	padding: 0;
	height: 90rem;
	z-index: 101;
	box-sizing: border-box;
}

#header.on {
	box-shadow: 1px 1px 8px 2px rgba(0, 0, 0, 0.05);
	background: #fff;
}

#header.on.gnb-hide {
	box-shadow: none;
}

#sub #header.on.gnb-hide {
	background: transparent;
	border-bottom: none;
}

.active #header {
	background: transparent;
	border: none;
}

#header.web.hd_pops,
#sub #header.web.hd_pops {
	background: #fff;
}

#header .gnb_area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 70rem;
	box-sizing: border-box;
}

#header h1 {}

#header h1>a {
	display: block;
}

#header h1 img {
	display: block;
	height: 45rem;
}

#header h1 img.white,
#header.on h1 img.color,
#sub #header.on h1 img.color,
#header.on.gnb-hide h1 img.white,
#sub #header.on.gnb-hide h1 img.white {
	display: block;
}

#header h1 img.color,
#header.on h1 img.white,
#sub #header.on h1 img.white,
#header.on.gnb-hide h1 img.color,
#sub #header.on.gnb-hide h1 img.color {
	display: none;
}

#header nav .gnb>li {
	margin: 0;
}

#header nav .gnb>li:last-child {
	margin-right: 0;
}

#header nav .gnb>li>a {
	display: block;
	min-width: 156rem;
	font-weight: 500;
	padding: 36rem 30rem;
	box-sizing: border-box;
	text-align: center;
}

#header nav .gnb>li>a>span {
	font-size: 21rem;
	font-weight: 600;
	color: #fff;
}

#header nav .gnb>li ul>li>a>span {
	font-size: 16rem;
	font-weight: 400;
	line-height: 1.2em;
	color: #444;
	font-family: var(--font-kr);
	word-break: keep-all;
}

#header nav .gnb>li ul>li>a>span i {
	font-size: 16rem;
	font-weight: 400;
}

#header.web.on nav .gnb>li>a>span {
	color: #222;
}

#header.hide {
	top: -100rem;
	opacity: 0;
}

#header.hd_pops nav .gnb>li>a>span,
#sub #header.on nav .gnb>li>a>span {
	color: #333;
}

#sub #header.on .menu .menu__burger span {
	background-color: #333;
}

#header .area_cs {
	display: flex;
	top: 0;
	width: 142rem;
	height: 44rem;
	background: var(--color-point);
	border-radius: 50rem;
}

#header .area_cs>a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

#header .area_cs>a>span {
	position: relative;
	padding-left: 20rem;
	font-size: 16rem;
	font-weight: 600;
	color: #fff;
	line-height: 1em;
}

#header .area_cs>a>span:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 15rem;
	height: 15rem;
	background: url(../img/common/ic-cs.svg)no-repeat center;
	background-size: contain;
}

#header .btn_menu {
	display: none;
}

#header .btn_menu {
	position: absolute;
	top: 34rem;
	right: 20rem;
	z-index: 9999;
	width: 25rem;
	height: 18rem;
	font-size: 0rem;
	transition: all 0.3s ease 0s;
}

#header .btn_menu>span {
	display: block;
	position: absolute;
	right: 0rem;
	width: 100%;
	height: 2px;
	background: #fff;
}

#header .btn_menu>span:nth-of-type(1) {
	top: 0;
}

#header .btn_menu>span:nth-of-type(2) {
	top: 50%;
	margin-top: -1rem;
	transition: background 0.3s ease 0s;
}

#header .btn_menu>span:nth-of-type(3) {
	bottom: 0;
}

#header .btn_menu>span:nth-of-type(1),
#header .btn_menu>span:nth-of-type(3) {
	transition: all 0.3s ease;
	transition-property: top, transform;
	transition-delay: 0.3s, 0s;
}

#header .btn_menu.active {
	position: fixed;
	top: 24rem;
}

#header .btn_menu.active:before {
	display: block;
}

#header .btn_menu.active>span {
	background: #222 !important;
}

#header .btn_menu.active>span:nth-of-type(1) {
	top: 7rem;
	transform: rotate(-45deg);
}

#header .btn_menu.active>span:nth-of-type(2) {
	background: transparent !important;
}

#header .btn_menu.active>span:nth-of-type(3) {
	bottom: 9rem;
	transform: rotate(45deg);
}

#header .btn_menu.active>span:nth-of-type(1),
#header .btn_menu.active>span:nth-of-type(3) {
	transition-delay: 0s, 0.3s;
}

#header .btn_close {
	display: none;
	position: fixed;
	opacity: 0;
	visibility: hidden;
	top: 0rem;
	left: 0rem;
	z-index: 99;
	width: -webkit-calc(100% - 320rem);
	width: 100%;
	height: -webkit-calc(100vh - -0rem * 1);
	height: calc(100vh - -0px * 1);
	background: #000;
	font-size: 0;
	transition: all 0.3s ease-out 0s;
}

.active #header .btn_close {
	opacity: 0.4;
	visibility: visible;
}

#header.on .btn_menu>span,
#header.on .full-gnb__btn>span,
#sub #header.on .btn_menu>span {
	background: #222;
}

#header.on .full-gnb__btn.active>span {
	background: #fff;
}

#header .full-gnb__btn {
	position: relative;
	right: 0rem;
	top: 0rem;
	width: 30rem;
	height: 20rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

#header .full-gnb__btn>span {
	display: block;
	position: absolute;
	right: 0rem;
	width: 100%;
	height: 2px;
	background: #fff;
}

#header .full-gnb__btn>span:nth-of-type(1) {
	top: 0;
}

#header .full-gnb__btn>span:nth-of-type(2) {
	top: 50%;
	width: 100%;
	margin-top: -1rem;
	transition: background 0.3s ease 0s;
}

#header .full-gnb__btn>span:nth-of-type(3) {
	bottom: 0;
}

#header .full-gnb__btn>span:nth-of-type(1),
#header .full-gnb__btn>span:nth-of-type(3) {
	transition: all 0.3s ease;
	transition-property: top, transform;
	transition-delay: 0.3s, 0s;
}

#header .full-gnb__btn.active {}

#header .full-gnb__btn.active:before {
	display: block;
}

#header .full-gnb__btn.active>span:nth-of-type(1) {
	top: 6rem;
	transform: rotate(-45deg);
}

#header .full-gnb__btn.active>span:nth-of-type(2) {
	background: transparent;
}

#header .full-gnb__btn.active>span:nth-of-type(3) {
	bottom: 12rem;
	transform: rotate(45deg);
}

#header .full-gnb__btn.active>span:nth-of-type(1),
#header .full-gnb__btn.active>span:nth-of-type(3) {
	transition-delay: 0s, 0.3s;
}

.full-gnb {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: all 1s ease;
}

.full-gnb__bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--color-point02) url(../img/common/bg-fullmenu.jpg)no-repeat center;
	background-size: cover;
	z-index: -1;
	opacity: 0;
	transition: all 1s ease;
}

.full-gnb__content {
	width: 100%;
	height: 100%;
}

.full-gnb__wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.full-gnb__menu {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
}

.full-gnb__menu:before {
	content: '';
	position: absolute;
	top: 56px;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
}

.full-gnb__list {
	display: flex;
	gap: 100rem;
}

.full-gnb__list>li {
	padding: 0;
	box-sizing: border-box;
	padding: 0;
}

.full-gnb__list>li>* {
	color: #fff;
}

.full-gnb__list>li>a>span {
	font-size: 28rem;
	font-weight: 600;
	color: #fff;
	line-height: 1em;
}

.full-gnb__list>li>.box {
	margin: 50rem 0 0;
}

.full-gnb__list>li>.box ul {
	margin: 20rem 0 0;
}

.full-gnb__list>li>.box ul li {
	margin: 0 0 10rem;
}

.full-gnb__list>li>.box ul li a {
	position: relative;
	font-size: 18rem;
	font-weight: 400;
	padding: 10rem 0;
	display: block;
}

.full-gnb__list>li>.box ul li:last-child a:before {
	display: none;
}

.full-gnb__list>li>.box ul li a span {
	color: #fff;
	opacity: 0.7;
	font-weight: 300;
	transition: all 0.3s ease;
}

.full-gnb__list>li>.box ul li a:hover span {
	font-weight: 500;
	opacity: 1;
}

.full-gnb.active {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

.full-gnb.active .full-gnb__bg {
	width: 100%;
	opacity: 1;
}

.full-gnb.active .full-gnb__info-bg {
	width: 100%;
	opacity: 1;
}

.full-gnb.active .full-gnb__list {
	opacity: 1;
	transform: translateY(0);
}

.full-gnb ul.sns-list {
	position: fixed;
	bottom: 50rem;
	display: flex;
	right: 70rem;
	gap: 12rem;
	align-items: center;
}

.full-gnb ul.sns-list>li {
	width: 36rem;
	height: 36rem;
	border-radius: 50rem;
	overflow: hidden;
}

.full-gnb ul.sns-list>li>a {
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
}

.full-gnb ul.sns-list>li>a img {
	height: 18rem;
}

.full-gnb ul.sns-list>li.youtube>a img {
	height: 14rem;
}

.btn-line {
	position: relative;
	z-index: 1;
	display: flex;
	margin: 40rem 0 0;
	padding: 5rem 25rem;
	width: 200rem;
	height: 60rem;
	border: 2px solid #fff;
	box-sizing: border-box;
	border-radius: 5rem;
}

.btn-line:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #fff;
	z-index: -1;
	transition: all 0.3s ease;
}

.btn-line span {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	font-size: 17rem;
	font-weight: 500;
	color: #fff;
	line-height: 1em;
	transition: all 0.3s ease;
}

.btn-line span:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 12rem;
	height: 10rem;
	background: url(../images/common/ic-arr.svg)no-repeat center;
	background-size: contain;
	transform: translateY(-50%);
}

.btn-line:hover span {
	color: #4a4e58;
	font-weight: bold;
}

.btn-line:hover:before {
	width: 100%;
}

.btn_top {
	position: absolute;
	right: 20rem;
	bottom: 20rem;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 55rem;
	height: 55rem;
	background: #fff;
	border-radius: 5rem;
}

.btn_top span {
	margin: 0 0 2rem;
	font-size: 14rem;
	font-weight: 600;
	color: #082958;
	line-height: 1em;
}

.btn_top img {
	width: 14rem;
	height: 9rem;
}

.btn_top img.wt {
	display: none;
}

#ft {
	position: relative;
	background: #012334;
	padding: 75rem 0;
	box-sizing: border-box;
	font-family: var(--font-kr);
}

.ft-bottom {
	display: block;
}

.ft-left address ul li {
	display: flex;
	gap: 10rem;
	margin-bottom: 7rem;
}

.ft-left address ul li div {
	display: flex;
	gap: 5rem;
	font-family: var(--font-kr);
	font-size: 16rem;
	color: #949494;
	font-weight: 400;
}

.ft-copy {
	display: block;
	margin-top: 24rem;
	font-size: 14rem;
	font-weight: 300;
	color: #949494;
	line-height: 1em;
	word-break: keep-all;
	text-transform: uppercase;
}

.ft-logo {
	height: 35rem;
	margin-bottom: 30rem;
}

.ft-logo img {
	height: 100%;
}

.ft-link {
	display: flex;
	gap: 26rem;
	margin-bottom: 20rem;
}

.ft-link>li {
	position: relative;
	display: inline-block;
}

.ft-link>li:before {
	content: '';
	position: absolute;
	top: 7rem;
	right: -13rem;
	width: 2px;
	height: 2px;
	background: #fff;
	border-radius: 50rem;
}

.ft-link>li:last-child:before {
	display: none;
}

.ft-link>li>a {
	display: block;
	font-size: 16rem;
	font-weight: 400;
	color: #fff;
}

.ft-right {
	position: absolute;
	top: 0;
	right: 0;
	text-align: right;
}

.ft-right>em {
	display: inline-block;
	margin-bottom: 12rem;
	font-size: 20rem;
	color: #949494;
	font-weight: 500;
	line-height: 1em;
}

.ft-right>a {
	display: block;
	font-size: 35rem;
	color: #fff;
	line-height: 1em;
	font-weight: 600;
	font-family: var(--font-eng);
}

.ft-right .time-list {
	margin-top: 12rem;
}

.ft-right .time-list>li {
	display: block;
	margin-bottom: 5rem;
	font-size: 16rem;
	font-weight: 300;
	color: #bfbfbf;
	line-height: 1em;
	word-break: keep-all;
}

#ft .sns-list {
	display: flex;
	gap: 10rem;
	margin-top: 30rem;
}

#ft .sns-list>li {
	width: 36rem;
	height: 36rem;
	border-radius: 50rem;
	overflow: hidden;
}

#ft .sns-list>li>a {
	width: 100%;
	height: 100%;
	background: #555;
	display: flex;
	justify-content: center;
	align-items: center;
}

#ft .sns-list>li>a img {
	height: 18rem;
}

#ft .sns-list>li.youtube>a img {
	height: 14rem;
}

#ft .sns-list>li>a:hover {
	background: var(--color-point);
}

#side-area {
	position: fixed;
	right: 50rem;
	bottom: 50rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 101;
	cursor: pointer;
	transition: 0.8s all;
}

#side-area.active {
	right: 25rem;
	bottom: 25rem;
}

.quick-menu {
	position: relative;
	text-align: center;
	box-sizing: border-box;
}

.quick-menu ul {}

.quick-menu ul li {
	margin: 7rem 0 0;
	width: 65rem;
	height: 65rem;
	transition: all 0.3s ease;
	transform: translateY(65rem);
}

.quick-menu ul li:first-child {
	margin: 0;
}

.quick-menu ul li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	box-shadow: 0px 2px 4.75px 0.25px rgba(0, 0, 0, 0.03);
	transition: all 0.3s ease;
}

.quick-menu ul li.naver a {
	background-image: -moz-linear-gradient(-37deg, rgb(28, 216, 91) 0%, rgb(14, 201, 71) 68%, rgb(0, 186, 50) 100%);
	background-image: -webkit-linear-gradient(-37deg, rgb(28, 216, 91) 0%, rgb(14, 201, 71) 68%, rgb(0, 186, 50) 100%);
	background-image: -ms-linear-gradient(-37deg, rgb(28, 216, 91) 0%, rgb(14, 201, 71) 68%, rgb(0, 186, 50) 100%);
}

.quick-menu ul li.cs a {
	background-image: -moz-linear-gradient(-37deg, rgb(54, 155, 255) 0%, rgb(27, 129, 230) 68%, rgb(0, 103, 205) 100%);
	background-image: -webkit-linear-gradient(-37deg, rgb(54, 155, 255) 0%, rgb(27, 129, 230) 68%, rgb(0, 103, 205) 100%);
	background-image: -ms-linear-gradient(-37deg, rgb(54, 155, 255) 0%, rgb(27, 129, 230) 68%, rgb(0, 103, 205) 100%);
}

.quick-menu ul li a img {
	width: 27rem;
}

.quick-menu ul li a img.line {
	display: none;
}

.quick-menu ul li a span {
	display: inline-block;
	margin-top: 6rem;
	font-size: 13rem;
	font-weight: 600;
	color: #fff;
	line-height: 1em;
	word-break: keep-all;
}

.quick-menu ul li.top {
	opacity: 0;
	box-sizing: border-box;
	transform: translateY(65rem);
}

.quick-menu ul li.top a {
	background: #fff;
	border: 1px solid #eee;
}

.quick-menu ul li.top a img {
	width: 12rem;
}

.quick-menu.active ul li {
	transform: translateY(0);
}

.quick-menu.active ul li.top {
	opacity: 1;
	transform: translateY(0);
}




#side-area.common {
	position: fixed;
	bottom: 10rem;
	right: -100rem;
	z-index: 10;
	display: none;
	transition: all 1.4s ease, opacity 1.3s ease;
}

.motion-on #side-area.common {
	right: 10rem;
}

#side-area .top .btn_top {
	position: relative;
	top: 0;
	right: unset;
}

#sub #side-area.common {
	display: block;
	top: 50%;
	right: -100rem;
	height: 166rem;
	transform: translateY(-50%);
	transition: all 1.4s ease, opacity 1.3s ease;
}

#sub.motion-on #side-area.common {
	right: 20rem;
}

#sub #side-area.common .quick-menu ul li a {
	background: rgb(53 87 111 / 40%);
}

#sub #side-area.common .quick-menu ul li.top {
	display: none;
}

#sub #side-area.common .btn_top img.color {
	display: none;
}

#sub #side-area.common .btn_top img.wt {
	display: block;
}

.scroll_ani span {
	font-size: 14rem;
	color: #fff;
	font-weight: 400;
	padding-bottom: 55rem;
	display: block;
	font-family: var(--font-eng);
}

.scroll_ani {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9;
}

.scroll_ani i {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1rem;
	height: 50rem;
	overflow: hidden;
	background: rgba(255, 255, 255, .2);
}

.scroll_ani i::after {
	content: '';
	position: absolute;
	top: 0;
	width: 1rem;
	height: 25rem;
	animation: scrollbar 1.3s infinite ease-in-out;
	background: rgba(255, 255, 255, 1);
}

@keyframes scrollbar {
	0% {
		transform: translateY(-30rem);
	}

	100% {
		transform: translateY(50rem);
	}
}

@media all and (max-width:1700px) {

	.inr-wide {
		margin: 0 50rem;
		width: auto;
	}

	#side-area {
		right: 30rem;
	}
}

@media all and (max-width:1700px) {

	#header .gnb_area {
		margin: 0 40rem;
		width: auto;
		height: 100%;
	}
}

@media all and (max-width:1600px) {
	.inr {
		width: auto;
		margin: 0 80rem;
	}

}

@media all and (max-width:1500px) {
	#header h1 {
		left: 30rem;
	}

	#header.web nav .gnb>li>a {
		padding: 41rem 25rem;
		min-width: 130rem;
	}

	#header.web.hd_pops nav .gnb>li>a {
		padding: 41rem 35rem;
	}


	.full-gnb__list {
		gap: 70rem;
	}

	.full-gnb__list>li>a>span {
		font-size: 25rem;
	}

	.full-gnb ul.sns-list {
		right: 30rem;
	}
}

@media all and (max-width:1400px) {

	.inr.sub03 {
		margin: 0 50rem;
		width: auto;
	}

	#fp-nav.left {
		left: 30rem;
	}

	#side-area {
		right: 20rem;
	}
}

@media all and (max-width:1300px) {

	.inr.sub,
	.inr.sub02 {
		margin: 0 50rem;
		width: auto;
	}

	#header h1 img {
		height: 38rem;
	}

	body.no-scroll #header .menu {
		margin-right: 10rem;
	}

	#header .menu .menu__burger:before {
		width: 50rem;
		height: 50rem;
	}

	#header.web nav .gnb>li>a {
		padding: 41rem 15rem;
		min-width: auto;
	}

	#header.web nav .gnb>li>a>span {
		font-size: 18rem;
	}

	#header.web.hd_pops nav .gnb>li>a {
		padding: 41rem 20rem;
	}

	#header nav .gnb>li ul>li>a>span {
		font-size: 17rem;
		letter-spacing: -0.8rem;
	}

	.btn_top {
		width: 52rem;
		height: 52rem;
	}

	.full-gnb__menu:before {
		top: 48rem;
	}

	.full-gnb__list>li>a>span {
		font-size: 21rem;
	}

	.full-gnb__list>li>.box ul li a {
		padding: 7rem 0;
	}

	.full-gnb__list>li>.box ul li a {
		font-size: 16rem;
	}


}

@media all and (min-width:1025px) {

	#header nav {
		display: flex;
		position: relative;
		/* overflow: hidden; */
	}

	body.active #header nav {
		opacity: 0;
		visibility: hidden;
	}

	body.active #header .area_lang {
		opacity: 0;
	}

	/* #header nav::before{content: ""; width: 100%; height: 100%; background-color: #fff; position: absolute; left: 0; top: 0; transition: all .3s; } */
	#header nav .gnb {
		display: flex;
		font-size: var(--font-default);
	}

	#header nav .gnb>li {
		position: relative;
	}

	#header nav .gnb>li>a {
		position: relative;
		line-height: 1em;
	}



	#header nav .gnb>li>a span {
		font-weight: 600;
	}

	/*#header nav .gnb > li > a.on span,*/
	#header nav .gnb>li:hover>a span {
		color: var(--color-point) !important;
	}

	body.member #header nav .gnb>li>a,
	body.policy #header nav .gnb>li>a {
		color: #222;
	}

	body.member #header.on nav .gnb>li>a,
	body.policy #header.on nav .gnb>li>a {
		color: #fff;
	}


	#header nav .gnb>li.active ul {
		opacity: 1;
		visibility: visible;
		z-index: 10;
		transition-delay: 0.1s !important;
		transition-duration: 0.5s;
	}

	#header nav .gnb>li:hover .box {
		background: #fafcfd;
	}

	#header nav .gnb>li ul {
		display: none;
		position: absolute;
		opacity: 0;
		visibility: hidden;
		top: 70rem;
		left: 50%;
		margin-left: -88rem;
		width: 176rem;
		padding: 14rem 0;
		box-sizing: border-box;
		background: #018cd7;
		transition: all 0.2s ease;
		transition-property: opacity, top, visibility;
		transition-delay: 0s, 0s, 0s;
		border-radius: 10rem;
		box-shadow: 0px 5px 9px 1px rgba(0, 0, 0, 0.07);
	}

	#header nav .gnb>li ul.active {
		display: block;
	}

	#header nav .gnb>li.active ul {
		opacity: 1;
		visibility: visible;
		z-index: 10;
		transition-delay: 0.1s !important;
		transition-duration: 0.5s;
	}

	#header nav .gnb>li ul>li>a {
		display: block;
		position: relative;
		padding: 5rem 0rem;
		transition: all 0.3s ease 0s;
		white-space: nowrap;
		text-align: center;
	}

	#header nav .gnb>li ul>li>a>span {
		font-size: 17rem;
		font-weight: 400;
		color: #fff;
		opacity: 0.7;
		transition: all 0.3s ease;
	}

	#header nav .gnb>li ul>li>a:hover>span {
		opacity: 1;
		color: #fff;
	}

	#header nav .gnb>li ul>li:first-child>a {
		border-top-width: 0px;
	}

	#header nav ul.gnb>li.gnb-hd {
		display: none;
	}

	.gnb-hd {
		display: none;
	}

	#header nav .gnb>li ul>li.intro {
		display: none;
	}

}

@media (max-width:1024px) {

	#header,
	#sub #header.on {
		height: 65rem;
	}

	#header .gnb_area {
		margin: 0 14rem;
	}

	#header h1 {
		top: 20rem;
		left: 20rem;
	}

	#header h1 img {
		height: 32rem;
	}

	[data-site="sub"] #header {
		position: relative;
	}

	#header.on .btn_menu.active>span:nth-of-type(2) {
		background: transparent;
	}

	#header .btn_menu {
		display: block;
	}

	#header .full-gnb__btn,
	#header .full-gnb {
		display: none;
	}

	#header .gnb li ul {
		transition: none !important;
	}

	.hd-btn {
		display: none;
	}


	#header .btn_menu {
		top: 25rem;
		right: 14rem;
	}

	.full-gnb__menu {
		display: none;
	}

	#header .btn_menu,
	#header .btn_close {
		display: block;
	}

	#header nav {
		position: fixed;
		visibility: hidden;
		top: 0px;
		right: -100%;
		z-index: 90;
		width: 100%;
		height: -webkit-calc(100vh - 0px * 1);
		height: calc(100vh - 0px * 1);
		background: rgba(0, 0, 0, 0);
		font-size: 0;
		transition: all 0.3s ease-out 0s;
		transition: all 0.5s ease-out 0s;
	}

	#header nav.active {
		right: 0px;
		background: rgba(0, 0, 0, 0);
		visibility: visible;
	}

	#header nav .gnb {
		position: absolute;
		top: 0px;
		right: -100%;
		z-index: 99;
		width: 100%;
		height: 100%;
		background: #fff;
		background-size: cover;
		box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.1);
		overflow-y: auto;
		transition: all 0.8s ease-out 0s;
	}

	#header nav.active .gnb {
		right: 0;
	}

	#header nav {
		margin: 0;
	}

	#header.mob nav .gnb>li {
		float: unset;
		display: block;
		padding: 0;
		border-bottom: 1px solid #eee;
		box-sizing: border-box;
	}

	#header nav ul.gnb>li.gnb-hd {
		margin: 0;
		padding: 15rem;
		box-sizing: border-box;
		border-bottom: 1rem solid #007ec26e;
	}

	#header nav ul.gnb>li.gnb-hd>img {
		height: 36rem;
	}

	#header nav ul.gnb>li>a {
		position: relative;
		display: block;
		padding: 20rem;
		min-width: auto;
		box-sizing: Border-box;
		text-align: left;
	}

	#header nav ul.gnb>li>a>span {
		display: block;
		font-size: 20rem;
		font-weight: 400 !important;
		color: #333;
	}

	#header nav ul.gnb>li>a>span br {
		display: none;
	}

	#header nav ul.gnb>li>a:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 20rem;
		width: 15rem;
		height: 9rem;
		margin-top: -4rem;
		background: url(../img/common/ic-menu-arr.svg) no-repeat 50% 0;
		background-size: 14rem 7rem;
		transition: all 0.4s ease 0s;
	}

	#header nav ul.gnb>li>a.active:before {
		opacity: 1;
		transform: rotate(180deg);
	}

	#header nav ul.gnb>li.gnb-hd .area-sns a {
		display: block;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#header nav ul.gnb>li.gnb-hd .area-sns a i {
		display: inline-block;
	}

	#header nav ul.gnb>li.gnb-hd .area-sns a i img {
		display: inline-block;
		height: 18rem;
	}

	#header nav ul.gnb>li.gnb-hd .area-sns .youtube a i img {
		height: 13rem;
	}

	#header nav .gnb>li .box {
		display: none;
		background: #f9f9f9;
		border-top: 1px solid #eee;
		padding: 20rem;
		box-sizing: border-box;
		min-height: auto;
	}

	#header nav .gnb>li .box ul {}

	#header nav .gnb>li .box ul>li {
		margin: 0 0 13rem;
	}

	#header nav .gnb>li .box ul>li:last-child {
		margin: 0;
	}

	#header nav .gnb>li .box ul>li>a {
		display: block;
	}

	#header nav .gnb>li .box ul a span {
		font-size: 18rem;
		font-weight: 300;
		color: #777;
	}

	#header nav .gnb>li .box ul a span br {
		display: none;
	}

	#header nav .gnb>li .box ul a span i {
		display: inline-block;
		margin-left: 2rem;
		position: relative;
		top: -1rem;
		font-weight: 400;
	}

	#header nav .gnb>li .box ul a:hover span {
		font-weight: 500;
		color: var(--color-point);
	}


	.inr-wide,
	.inr,
	.inr.sub,
	.inr.sub02,
	.inr.sub03,
	#sub .inr {
		margin: 0 40rem;
		width: auto;
	}

	.full_menu.oepn {
		display: none;
	}

	#side-area.common {
		display: block;
	}

	.quick-menu ul li {
		width: 60rem;
		height: 60rem;
		margin: 6rem 0 0;
		transform: translateY(60rem);
	}

	.quick-menu ul li a img {
		width: 22rem;
	}

	.quick-menu ul li.top a img {
		width: 14rem;
	}

	#ft {
		padding: 50rem 0;
	}

	.ft-right {
		position: relative;
		text-align: left;
		margin-top: 30rem;
	}

	.ft-right>em {
		font-size: 15rem;
	}

	.ft-right .time-list>li {
		margin-bottom: 8rem;
	}


}


@media (max-width:768px) {

	#header,
	#sub #header.on {
		height: 60rem;
	}

	#header h1 img {
		height: 28rem;
	}

	#header .area_cs {
		width: 120rem;
		height: 34rem;
	}

	#header .area_cs>a>span {
		font-size: 15rem;
		padding-left: 18rem;
	}

	#header .btn_menu {
		top: 22rem;
	}

	.inr-wide,
	.inr,
	.inr.sub,
	.inr.sub02,
	.inr.sub03,
	#sub .inr {
		margin: 0 30rem;
	}

	#header .btn_menu {}

	.area_lang {
		right: 60rem;
	}

	#header nav ul.gnb>li>a>span {
		font-size: 18rem;
	}

	#ft {
		padding: 50rem 0 90rem;
	}

	.ft-link {
		gap: 20rem;
	}

	.ft-link>li:before {
		right: -11rem;
	}

	.ft-link>li>a {
		font-size: 15rem;
	}

	.ft-left address ul li div {
		font-size: 15rem;
	}

	.ft-right>a {
		font-size: 35rem;
	}

	.ft-right .time-list>li {
		font-size: 14rem;
	}

	#ft .sns-list {
		margin-top: 20rem;
	}



	#sub #side-area.common {
		right: 10rem;
		bottom: 10rem;
	}

	#sub.motion-on #side-area.common {
		right: 10rem;
	}

	#side-area,
	#side-area.active {
		right: 14rem;
		bottom: 14rem;
	}

	.quick-menu ul li {
		width: 50rem;
		height: 50rem;
		transform: translateY(50rem);
	}


}

@media (max-width:620px) {

	.inr-wide,
	.inr,
	.inr.sub,
	.inr.sub02,
	.inr.sub03,
	#sub .inr {
		margin: 0 20rem;
	}

	#header,
	#sub #header.on {
		height: 50rem;
	}

	#header h1 {
		top: 14rem;
		left: 10rem;
	}

	#header h1 img {
		height: 24rem;
	}

	#header nav .gnb {
		max-width: 100%;
	}

	#header .area_cs {
		width: 110rem;
		height: 30rem;
		margin-right: 30rem;
	}

	#header .area_cs>a>span {
		font-size: 14rem;
	}

	#header .area_cs>a>span:before {
		width: 14rem;
		height: 14rem;
	}


	#header .btn_menu {
		top: 19rem;
		right: 15rem;
		width: 20rem;
		height: 13rem;
	}

	#header .btn_menu>span {
		height: 1px;
	}

	#header nav ul.gnb>li.gnb-hd>img {
		height: 25rem;
	}

	#header nav ul.gnb>li>a {
		padding: 15rem;
	}

	#header nav ul.gnb>li>a>span {
		font-size: 16rem;
	}

	#header .btn_menu.active {
		top: 19rem;
	}

	#header .btn_menu.active>span:nth-of-type(3) {
		bottom: 5rem;
	}


	.ft-menu .inr {
		margin: 0 20rem;
	}

	.ft-logo {
		height: 30rem;
	}

	.quick-menu ul li {
		width: 48rem;
		height: 48rem;
		margin: 4rem 0 0;
	}

	.quick-menu ul li a {
		box-shadow: 0px 2px 4.75px 0.25px rgba(0, 0, 0, 0.1);
	}

	.quick-menu ul li a img {
		width: 18rem;
	}

	.quick-menu ul li a span {
		margin-top: 3rem;
		font-size: 9rem;
	}

	.quick-menu ul li {
		transform: translateY(48rem);
	}

	.quick-menu ul li.top {
		transform: translateY(48rem);
	}
}

@media (max-width:480px) {

	.inr-wide,
	.inr,
	.inr.sub,
	.inr.sub02,
	.inr.sub03,
	#sub .inr {
		margin: 0 14rem;
	}

	#header,
	#sub #header.on {
		height: 49rem;
	}

	/*#header .gnb_area{margin:0 8rem;}*/
	#header h1 {
		top: 13rem;
	}

	#header h1 img {
		height: 24rem;
	}

	#header nav .gnb {
		max-width: 100%;
	}

	#header nav ul.gnb>li>a:before {
		right: 20rem;
	}

	#header .btn_menu {
		top: 16rem;
		right: 14rem;
		width: 18rem;
		height: 12rem;
	}

	#header .btn_menu>span:nth-of-type(3) {
		bottom: 1px;
	}

	#header .btn_menu.active {
		top: 16rem;
		right: 10rem;
		padding: 6rem;
	}

	#header nav ul.gnb>li.gnb-hd {
		padding: 12rem 10rem 12rem;
		margin: 0;
	}

	#header.mob nav .gnb>li {
		margin: 0;
		border-bottom: 1px solid #eee;
	}

	#header nav ul.gnb>li>a {
		padding: 12rem 10rem;
	}

	#header nav ul.gnb>li>a>span {
		font-size: 13rem;
	}

	#header nav .gnb>li .box ul>li {
		margin: 0 0 8rem;
	}

	#header nav .gnb>li .box {
		padding: 12rem 10rem;
	}

	#header nav .gnb>li .box ul a span,
	#header nav .gnb>li .box ul a span i {
		font-size: 13rem;
	}

	#header nav ul.gnb>li>a:before {
		right: 10rem;
	}

	#header .area_cs {
		width: 83rem;
		height: 25rem;
		margin-right: 25rem;
	}

	#header .area_cs>a>span {
		font-size: 11rem;
		padding-left: 13rem;
	}

	#header .area_cs>a>span:before {
		width: 11rem;
		height: 11rem;
	}

	#header nav ul.gnb>li:nth-child(3)>a:before {
		right: 10rem;
		width: 13rem;
		height: 7rem;
	}

	#ft {
		padding: 25rem 0 75rem;
	}

	.ft-link {
		gap: 12rem;
		margin-bottom: 12rem;
	}

	.ft-link>li:before {
		right: -7rem;
		top: 5rem;
	}

	.ft-link>li>a {
		font-size: 10rem;
	}

	.ft-left address ul li {
		flex-direction: column;
		gap: 4rem;
		margin-bottom: 5rem;
	}

	.ft-left address ul li div {
		font-size: 11rem;
	}

	.ft-logo {
		display: block;
		margin-bottom: 15rem;
		height: 20rem;
	}

	.ft-right {
		margin-top: 10rem;
	}

	.ft-right>em {
		margin-bottom: 7rem;
		font-size: 11rem;
	}

	.ft-right>a {
		font-size: 20rem;
	}

	.ft-right .time-list>li {
		font-size: 11rem;
		margin-bottom: 6rem;
	}

	#ft .sns-list {
		gap: 6rem;
		margin-top: 15rem;
	}

	#ft .sns-list>li {
		width: 25rem;
		height: 25rem;
	}

	#ft .sns-list>li>a img {
		height: 13rem;
	}

	#ft .sns-list>li.youtube>a img {
		height: 10rem;
	}

	.ft-copy {
		margin-top: 15rem;
		font-size: 10rem;
	}

	#side-area,
	#side-area.active {
		right: 10rem;
		bottom: 10rem;
	}

	.quick-menu ul li {
		width: 40rem;
		height: 40rem;
		transform: translateY(40rem)
	}

	.quick-menu ul li a img {
		width: 16rem;
	}

	.quick-menu ul li.top a img {
		width: 8rem;
	}

	.quick-menu ul li a span {
		margin-top: 3rem;
		font-size: 7rem;
	}

	.quick-menu ul li.top {
		transform: translateY(50rem);
	}


	.btn_top {
		width: 30rem;
		height: 30rem;
		right: 15rem;
		bottom: 25rem;
	}

	.btn_top img {
		width: 10rem;
		height: 5rem;
	}

	#en .quick-menu ul li a span {
		font-size: 8rem;
	}



}


/* 개인정보수집 */
.agree_pop {
	display: none;
	width: 500px;
	box-sizing: border-box;
	position: fixed;
	left: 50%;
	margin-left: -250px;
	top: 200px;
	z-index: 10000;
	overflow: hidden;
}

.agree_pop:before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: -1;
}

.black {
	font-weight: 800;
}

.agree_pop .title {
	width: 500px;
	background-color: #333;
	padding: 10px 20px;
	box-sizing: border-box;
	color: #fff;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	line-height: 20px;
	text-align: left;
	font-size: 17px;
}

.agree_pop .pop-esc {
	cursor: pointer;
	background-color: #000;
	color: #fff;
	border: 0;
	padding: 10px 12px;
	font-size: 20px;
	right: 0;
	position: absolute;
	top: 0;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	line-height: 40px;
}

.agree_pop .pop-esc img {
	width: 18px;
	height: 18px;
}

.pop-content {
	padding: 30px 20px;
	font-size: 15px;
	background-color: #fff;
	overflow-y: hidden;
	border: 1px solid #ddd;
	line-height: 1.3;
	color: #5d5d5d;
	text-align: left;
}

@media screen and (max-width: 540px) {
	.agree_pop {
		width: 320rem;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		margin-left: 0;
	}

	.agree_pop .title {
		font-size: 14rem;
		padding: 10rem 12rem;
	}

	.pop-content {
		padding: 12rem;
		font-size: 11rem;
	}

	.agree_pop .pop-esc {
		padding: 12rem;
	}

	.agree_pop .pop-esc img {
		width: 15rem;
		height: 15rem;
	}

}


/* inquiry */
.box-inquriy__form>form {
	display: block;
	padding: 40rem;
	background: #fff;
	box-sizing: border-box;
	border-radius: 20rem;
	text-align: left;
}

.box-inquriy__form>form .box {
	display: flex;
	gap: 10rem;
	margin-bottom: 15rem;
	text-align: left;
}

.box-inquriy__form>form .box-full {
	display: block;
}

.box-inquriy__form>form .box .box-input {
	width: calc((100% / 2) - 5rem);
	text-align: left;
}

.box-inquriy__form>form .box label {
	display: inline-block;
	margin-bottom: 8rem;
	font-size: 15rem;
	font-weight: 600;
	color: #222;
	line-height: 1em;
	word-break: keep-all;
}

.box-inquriy__form>form .box input[type="text"] {
	display: block;
	padding: 10rem 13rem;
	width: 100%;
	height: 48rem;
	border-radius: 4rem;
	box-sizing: border-box;
	border: 1px solid #eee;
	font-size: 15rem;
	color: #333;
	line-height: 1em;
	word-break: keep-all;
}

.box-inquriy__form>form .box input[type="text"]::placeholder {
	outline: none;
}

.box-inquriy__form>form .box textarea {
	display: block;
	padding: 15rem;
	width: 100%;
	height: 110rem;
	border-radius: 4rem;
	box-sizing: border-box;
	border: 1px solid #eee;
	font-size: 15rem;
	color: #333;
	line-height: 1em;
	word-break: keep-all;
}

.list-check {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10rem;
}

.box-inquriy__form>form .box .list-check>li {
	position: relative;
	box-sizing: border-box;
	border-radius: 4rem;
}

.box-inquriy__form>form .box .list-check>li>label {
	display: flex;
	align-items: center;
	gap: 5rem;
	margin: 0;
	padding: 13rem;
	border: 1px solid #eee;
	color: #333;
	border-radius: 4rem;
	white-space: nowrap;
	font-size: 15rem;
	font-weight: 600;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	transition: all .2s;
	cursor: pointer;
}

.box-inquriy__form>form .box .list-check>li>label::before {
	display: inline-block;
	position: relative;
	content: "";
	width: 20rem;
	height: 20rem;
	background: url(../img/common/check-gray.svg)no-repeat center;
	background-size: contain;
	transition: transform .3s ease-in-out;
	opacity: 0.2;
}

.box-inquriy__form>form .box .list-check>li input[type="checkbox"]:checked+label::before {
	background: url(../img/common/check-line.svg)no-repeat center;
	background-size: contain;
	transition: transform .3s ease-in-out;
	opacity: 1;
}

.box-inquriy__form>form .box .list-check>li input[type="checkbox"]:checked+label {
	border: 1px solid var(--color-point);
	background-color: #fff;
	color: var(--color-point);
	transition: all .2s;
}

.box-inquriy__form>form .box .list-check>li input[type="checkbox"] {
	position: absolute;
	opacity: 0;
}

.submitBox {
	margin: 25rem auto 0;
	text-align: center;
}

.submitBox input[type=submit] {
	width: 140rem;
	height: 48rem;
	border-radius: 50rem;
	font-size: 16rem;
	font-weight: 500;
	color: #fff;
	line-heightt: 1em;
	word-break: keep-all;
	border: none;
	background: var(--color-point);
}

/* checkbox */
.check-wrap .checkbox_label {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
}

.check-wrap .checkbox_label input[type='checkbox'] {
	display: none;
}

.check-wrap .checkbox_icon::before {
	content: '';
	display: block;
	display: inline-block;
	width: 17rem;
	height: 17rem;
	background-color: #fff;
	border: 1px solid #222;
	box-sizing: border-box;
	position: relative;
	top: 1rem;
	cursor: pointer;
	border-radius: 0;
}

.checkbox_label input:checked+.checkbox_icon::before {
	background: #1974d9 url(../img/common/ic-chk.svg)no-repeat center;
	background-size: 13rem 10rem;
	border: none;
}

.chk-list>li.last .checkbox_icon::before {
	top: -1rem;
}

.check-wrap .checkbox_icon::before {
	width: 17rem;
	height: 17rem;
	top: 2rem;
	border-radius: 2rem;
	border-color: #ddd;
	background: #ddd;
}

.check-wrap .checkbox_label input:checked+.checkbox_icon::before {
	background-size: 10rem 8rem;
}

.check-wrap em {
	display: flex;
	align-items: center;
	margin-left: 7rem;
	font-size: 16rem;
	font-weight: 400;
	color: #333;
	line-height: 1.2em;
	word-break: keep-all;
}

.check-wrap em a {
	display: inline-block;
	margin-left: 5rem;
	background: #eee;
	border-radius: 5rem;
	padding: 3rem 5rem;
	font-size: 13rem;
	font-weight: 500;
	color: #777;
	line-height: 1.2em;
	word-break: keep-all;
}



@media all and (max-width:480px) {
	.box-inquriy__form>form {
		border-radius: 7rem;
		padding: 14rem 14rem 20rem;
	}

	.box-inquriy__form>form .box {
		gap: 5rem;
		margin-bottom: 5rem;
	}

	.box-inquriy__form>form .box .box-input {
		width: calc((100% / 2) - 2.5rem);
	}

	.box-inquriy__form>form .box label {
		font-size: 10rem;
		margin-bottom: 5rem;
	}

	.box-inquriy__form>form .box input[type="text"] {
		height: 34rem;
		padding: 8rem;
		font-size: 11rem;
	}

	.box-inquriy__form>form .box .list-check {
		grid-template-columns: repeat(1, 1fr);
		gap: 5rem;
	}

	.box-inquriy__form>form .box .list-check>li>label {
		gap: 3rem;
		padding: 8rem;
		font-size: 11rem;
	}

	.box-inquriy__form>form .box .list-check>li>label::before {
		width: 12rem;
		height: 12rem;
	}

	.box-inquriy__form>form .box textarea {
		padding: 8rem;
		font-size: 11rem;
		height: 60rem;
	}

	.check-wrap em {
		font-size: 11rem;
		margin-left: 4rem;
	}

	.check-wrap em a {
		font-size: 10rem;
		margin-left: 3rem;
	}

	.check-wrap .checkbox_icon::before {
		width: 14rem;
		height: 14rem;
	}

	.check-wrap .checkbox_label input:checked+.checkbox_icon::before {
		background-size: 8rem 6rem;
	}

	.submitBox {
		margin: 14rem auto 0;
	}

	.submitBox input[type=submit] {
		width: 85rem;
		height: 30rem;
		font-size: 13rem;
	}
}



*.btn-basic {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	box-sizing: border-box;
	margin-top: 60rem;
	min-width: 215rem;
	height: 56rem;
	padding: 10rem;
	background: var(--color-point);
	border-radius: 8rem;
	box-sizing: border-box;
}

*.btn-basic span {
	z-index: 1;
	position: relative;
	padding-right: 44rem;
	font-weight: 600;
	font-size: 15rem;
	color: #fff;
	transition: all 0.3s ease;
}

*.btn-basic span:before {
	content: '';
	position: absolute;
	top: 3rem;
	right: 0;
	width: 30rem;
	height: 9rem;
	background: url(../img/common/ic-btn-arr.png)no-repeat center;
	background-size: contain;
}

*.btn-basic:hover {
	background: var(--color-point02);
}

@media (max-width: 1300px) {
	*.btn-basic {
		margin-top: 40rem;
		min-width: 190rem;
		height: 50rem;
	}
}

@media (max-width: 768px) {
	*.btn-basic {
		margin-top: 30rem;
		min-width: 170rem;
		height: 45rem;
	}

	*.btn-basic span {
		padding-right: 36rem;
		font-size: 14rem;
	}

	*.btn-basic span:before {
		width: 24rem;
	}
}

@media (max-width: 480px) {
	*.btn-basic {
		margin-top: 15rem;
		min-width: 110rem;
		height: 30rem;
		border-radius: 5rem;
	}

	*.btn-basic span {
		padding-right: 23rem;
		font-size: 10rem;
	}

	*.btn-basic span:before {
		top: 2rem;
		width: 15rem;
	}
}

#quickList {
	position: fixed;
	z-index: 8;
	top: 55%;
	right: 3.7%;
	transform: translateY(-50%);
	z-index: 90;
}

#quickList .pl {
	white-space: pre-line
}

#quickList .plus_link {
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	width: 94px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 4px 4px 15px rgba(17, 17, 17, 0.2);
}

#quickList .plus_link img {
	width: 100%;
}

#quickList .plus_link .pl {
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	color: #fff
}

#quickList .plus_link .go {
	display: flex;
	align-items: end;
	font-size: 9px;
	font-weight: 300;
	color: #fff
}

#quickList .plus_link svg {
	width: 12px;
	height: 12px
}

#quickList .list {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 10px;
	padding: 20rem 10rem;
	max-width: 94px;
	border-radius: 8px;
	box-shadow: 4px 4px 20px rgba(17, 17, 17, 0.3);
	background-color: rgb(255 255 255 / 70%);
	color: #111
}

#quickList .list li {
	width: 100%
}

#quickList .list li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	width: 100%;
	border-bottom: 1px solid #eee;
	color: #333;
}

#quickList .list li:last-child a {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: 0px
}

#quickList .list .kakao {
	width: 25rem;
	height: 25rem;
	background: url(../img/common/ic-kakao-blue.svg) no-repeat center / contain
}

#quickList .list .naver {
	width: 24rem;
	height: 24rem;
	background: url(../img/common/ic-naver-reservation.svg) no-repeat center / contain
}

#quickList .list .blog {
	width: 25rem;
	height: 25rem;
	background: url(../img/common/ic-blog-blue.svg) no-repeat center / contain
}


#quickList .list .phone-call {
	width: 23rem;
	height: 21rem;
	background: url(../img/common/ic-phone-call.svg) no-repeat center / contain
}

#quickList .list .youtube {
	width: 25rem;
	height: 25rem;
	background: url(../img/common/ic-youtube-blue.svg) no-repeat center / contain
}

#quickList .list .insta {
	width: 25rem;
	height: 25rem;
	background: url(./insta.png) no-repeat center / contain
}

#quickList .list .cate {
	font-size: 13rem;
	font-weight: 500;
	transition: all .3s
}

#quickList .list .number {
	margin-top: 5px;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	color: var(--color-point);
}

#quickList .list svg {
	color: #111
}

#quickList .progress-wrap {
	position: relative;
	margin: 10px auto 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 3px rgba(200, 200, 200, .5);
	transition: all .2s;
	background-color: #ffffff85;
	cursor: pointer
}

#quickList .progress-wrap span {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 20px;
	transform: translate(-50%, -50%)
}

#quickList .progress-wrap .arrow-up {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/common/arrow-up.svg) no-repeat center / contain
}

#quickList .progress-wrap .arrow-up svg {
	stroke-width: 1.5px;
	color: #000000;
	transition: all .3s
}

#quickList .progress-wrap span svg {
	width: 20px;
	height: 20px;
	stroke-width: 1.5px;
	color: #000000;
	transition: all .3s
}

#quickList .progress-wrap svg path {
	fill: none
}

#quickList .progress-wrap svg.progress-circle path {
	stroke: var(--color-point);
	stroke-width: 4;
	-webkit-transition: all .2s;
	transition: all .2s
}


@keyframes blink-effect {
	50% {
		opacity: 0;
	}
}

.blink {
	animation: blink-effect 1s step-end infinite;
}

/* 반응형 [s] */
@media (hover:hover) {
	#quickList .list li a:hover .cate {
		color: var(--color-point);
	}

	#quickList .progress-wrap:hover span svg {
		color: var(--color-point);
	}
}

@media (max-width:1024px) {
	#quickList {
		right: 1%
	}

	#quickList .plus_link,
	#quickList .list {
		width: 82px;
	}

	#quickList .plus_link .pl {
		font-size: 13px
	}

	#quickList .list li a {
		padding-bottom: 12px;
		margin-bottom: 12px
	}

	#quickList .list .kakao {
		width: 20px;
		height: 18px
	}

	#quickList .list .youtube {
		width: 20px;
		height: 13px
	}

	#quickList .list .insta {
		width: 19px;
		height: 19px;
	}

	#quickList .list svg {
		width: 20px;
		height: 20px
	}

	#quickList .list .number {
		font-size: 17px
	}

	#quickList .progress-wrap {
		width: 48px;
		height: 48px
	}

	#quickList .progress-wrap span svg {
		width: 18px;
		height: 18px
	}
}

@media (max-width:768px) {
	#quickList {
		display: flex;
		right: 0px;
		top: unset;
		bottom: 0px;
		transform: none;
		width: 100%
	}

	#quickList .plus_link {
		display: none
	}

	#quickList .list {
		flex-direction: row;
		margin-top: 0px;
		max-width: unset;
		padding: 10rem;
		width: 100%;
		border-radius: 0px;
		background-color: #ffffff;
	}

	.blink {
		animation: none;
	}

	#quickList .list li a {
		padding-bottom: 0px;
		margin-bottom: 0px;
		border-bottom: none;
	}

	#quickList .list li:last-child a {
		border: none
	}

	#quickList .list .number {
		display: none
	}

	#quickList .progress-wrap {
		display: none
	}

	#quickList .list .naver {
		width: 16rem;
		height: 16rem;
	}

	#quickList .list .blog {
		width: 18rem;
		height: 18rem;
	}

	#quickList .list .phone-call {
		width: 20rem;
		height: 16rem;
	}
}

@media (max-width:480px) {
	#quickList .list {
		padding: 10px 2.5%
	}

	#quickList .list .cate {
		font-size: 11px;
	}

	.buttons {
		bottom: 70px;
		right: 10px;
	}
}