@charset "utf-8";


/* 1) root 설정  */
:root {
	--color-base: #222;
	--color-point: #52C0A5;
	--color-point02: #38c6ff;
	--color-point03: #87c440;
	--color-white: #fff;
	--color-black: #000;
	--font-base: 16rem;
	--font-eng: 'Nunito', Sans-serif;
	--font-kr: 'nanum Myeongjo', Sans-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;
	margin-top: 90rem;
}

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-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-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;
}



/*  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);
	}
}

@keyframes flow1 {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	50% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	50.01% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes flow2 {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-webkit-transform: translateX(-200%);
		transform: translateX(-200%);
	}
}


@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: 1700rem;
	margin: 0 auto;
}

.inr.sub {
	position: relative;
	width: 1200rem;
	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;
	background: #fff;
}

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

/*
#header:before{content:''; position:absolute; left:0; right:0; bottom:0; width:100%; height:1px; background:#eee; opacity:0;}
#header.on:before{opacity:1;}
*/
#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;
	width: 1500rem;
	margin: 0 auto;
	box-sizing: border-box;
}

#header h1 {}

#header h1>a {
	display: block;
}

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

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

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

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

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

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

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

#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.hide {
	top: -100rem;
	opacity: 0;
}

#sub #header nav .gnb>li>a>span,
#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 .list-sns {
	display: flex;
	align-items: center;
	gap: 7rem;
}

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

#header .list-sns>li>a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #fff;
	transition: all 0.3s ease;
}

#header .list-sns>li>a img {
	width: 20rem;
	height: auto;
}

#header .list-sns>li.kakao>a {
	background: #F8E049;
}

#header .list-sns>li.blog>a {
	background: #5DB534;
}
#header .list-sns>li.reservation>a {
	background:#4ab85c;
}
#header .list-sns>li.insta>a {
	background: url(../img/common/bg-insta.svg)no-repeat center;
	background-size: cover;
}

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

#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: #222;
}

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

#header .btn_menu>span:nth-of-type(2) {
	top: 50%;
	width: 80%;
	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: #fff !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,
#sub #header.on .btn_menu>span {
	background: #222;
}


.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;
	top: 20rem;
	display: flex;
	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 {
	height: 17rem;
}

.btn_top img.wt {
	display: none;
}

/*
#ft{position:relative; background:#1A1F25; padding:90rem 0; box-sizing:border-box;}
.ft-tit{}
.ft-tit > h3{display:block; font-size:40rem; font-weight:bold; color:#fff;line-height:1em; word-break:keep-all;}
.ft-tit > span{display:inline-block; margin-top:20rem; font-size:17rem; font-weight:300; color:#fff; line-height:1em; word-break:keep-all; opacity:0.7;}


.ft-bottom{display:flex; justify-content: space-between; align-items: center;}
.ft-left address ul li{display:flex; gap:10rem; margin-bottom:10rem;}
.ft-left address ul li div{display:flex; gap:5rem; font-family:var(--font-kr); font-size:14rem; opacity:0.4; color:#fff; font-weight:300;}
.ft-copy{display:block;font-size:14rem; font-weight:300; color:#fff; opacity:0.4; line-height:1em; word-break:keep-all; text-transform:uppercase;}
.ft-logo{display:flex; justify-content: flex-end; height:31rem; opacity:0.2;}
.ft-logo img{height:100%;}
.ft-link{margin:50rem 0 30rem;  padding-bottom:30rem; border-bottom:1px solid rgba(255,255,255,0.05); box-sizing:border-box;}
.ft-link > li{position:relative; display:inline-block; margin:0 25rem 0 0;}
.ft-link > li > a{display:block; font-size:14rem; font-weight:400; color:#fff; opacity:0.3;}
.ft-link > li:first-child > a{opacity:1; font-weight:600;}
*/


/* location */
#area-location {
	height: 100%;
	border-top: 1px solid #E9E9E9;
	box-sizing: border-box;
}

#area-location .cont-box {
	display: grid;
	grid-template-columns: 50%;
	height: 100%;
}

#area-location .cont-box .top {
	display: block;
	padding: 80rem 100rem 60rem 230rem;
	box-sizing: border-box;
}

#area-location .cont-box .bottom {
	grid-row: 2;
	display: block;
	padding: 50rem 100rem 60rem 230rem;
	box-sizing: border-box;
	border-top: 1px solid #eee;
}

#area-location .cont-box #map {
	grid-column: 2;
	grid-row: 1 / 3;
}

/*#area-location > div{width:50%;}*/
#area-location .left {}

#area-location .left .top {
	display: block;
	padding: 100rem 100rem 60rem 230rem;
	box-sizing: border-box;
}

#area-location .left .bottom {
	display: block;
	padding: 50rem 100rem 0 230rem;
	box-sizing: border-box;
	border-top: 1px solid #eee;
}

.location-info__list {}

.location-info__item {
	margin-bottom: 50rem;
}

.location-info__item:last-child {
	margin: 0;
}

.location-info__item>em {
	display: inline-block;
	margin-bottom: 15rem;
	font-size: 17rem;
	font-weight: 600;
	color: var(--color-point);
	line-height: 1em;
	word-break: keep-all;
}

.location-info__item>h3 {
	display: block;
	font-size: 30rem;
	font-weight: 700;
	color: #222;
	line-height: 1.2em;
	word-break: keep-all;
}

.location-info__item>h4 {
	display: block;
}

.location-info__item>h4 a {
	display: block;
	font-size: 39rem;
	font-weight: 800;
	color: #222;
	line-height: 1em;
	word-break: keep-all;
}

.list-map {
	display: flex;
	gap: 10rem;
	margin-top: 20rem;
}

.list-map>li {
	width: 136rem;
	height: 45rem;
	border: 1px solid #E9E9E9;
	border-radius: 50rem;
}

.list-map>li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 10rem;
	box-sizing: border-box;
}

.list-map>li a span {
	position: relative;
	display: inline-block;
	font-size: 15rem;
	font-weight: 600;
	color: #222;
	line-height: 1.5em;
}

.list-map>li.naver a span {
	padding-left: 22rem;
}

.list-map>li.kakao a span {
	padding-left: 30rem;
}

.list-map>li.google a span {
	padding-left: 24rem;
}

.list-map>li.naver a span:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 16rem;
	height: 21rem;
	background: url(../img/common/ic-map-naver.svg)no-repeat center;
	background-size: contain;
}

.list-map>li.kakao a span:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 23rem;
	height: 23rem;
	background: url(../img/common/ic-map-kakao.svg)no-repeat center;
	background-size: contain;
}

.list-map>li.google a span:before {
	content: '';
	position: absolute;
	top: 2rem;
	left: 0;
	width: 18rem;
	height: 19rem;
	background: url(../img/common/ic-map-google.svg)no-repeat center;
	background-size: contain;
}

.schedule-info {}

.schedule-info>li {
	display: flex;
	gap: 25rem;
	margin-bottom: 15rem;
}

.schedule-info>li:last-child {
	margin: 0;
}

.schedule-info>li>em {
	display: inline-block;
	width: 45rem;
	font-size: 17rem;
	font-weight: bold;
	color: #333;
	line-height: 1em;
	word-break: keep-all;
}

.schedule-info>li>em .blank {
	display: inline-block;
	width: 15rem;
}

.schedule-info>li>span {
	display: inline-block;
	width: calc(100% - 70rem);
	font-size: 17rem;
	font-weight: 400;
	color: #626262;
	line-height: 1em;
}

.ft-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ft-top .ft-logo {
	height: 35rem;
}

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

.list-sns {
	display: flex;
	gap: 10rem;
}

.list-sns>li {
	width: 45rem;
	height: 45rem;
	border-radius: 8rem;
	background: #eee;
	box-sizing: border-box;
}

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

.ft-link {
	margin-top: 35rem;
	display: flex;
	gap: 13rem;
}

.ft-link>li>a {
	display: block;
	font-size: 15rem;
	font-weight: 500;
	color: #333;
	line-height: 1em;
}

.ft-link>li.privacy a {
	color: var(--color-point);
	font-weight: 600;
}

.ft-bottom {
	display: block;
	margin: 30rem 0 0;
}

address ul {
	margin-top: 30rem;
}

address ul>li {
	display: flex;
	align-items: center;
	gap: 10rem;
	margin-bottom: 10rem;
}

address ul>li:last-child {
	margin: 0;
}

address ul>li div {
	display: flex;
	align-items: center;
	gap: 7rem;
}

address ul>li div em {
	display: inline-block;
	font-size: 15rem;
	font-weight: 600;
	color: #333;
	line-height: 1em;
	opacity: 0.3;
}

address ul>li div span {
	display: inline-block;
	font-size: 15rem;
	font-weight: 400;
	color: #777;
	line-height: 1em;
}

.ft-copy {
	margin-top: 25rem;
	font-size: 14rem;
	font-weight: 500;
	color: #333;
	line-height: 1em;
	opacity: 0.5;
}

#area-location #map {
	width: 100%;
	height: 100%;
}

#area-location #map .marker {
	background-color: #2DB47F;
	color: white;
	padding: 10px 15px;
	border-radius: 5px;
	font-weight: bold;
	font-family: sans-serif;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	position: relative;
	margin-bottom: 10px;
}

#area-location #map .marker img {
	height: 32rem;
}

#area-location #map .marker-tail {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #2DB47F;
}

#side-area {
	position: fixed;
	top: 50%;
	right: 60rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 101;
	cursor: pointer;
	transform: translateY(-50%);
	transition: 0.8s all;
}

.quick-menu {
	padding: 0;
	width: 100rem;
	border-radius: 10rem;
	border: 0px solid #eee;
	box-sizing: border-box;
	box-shadow: 2px 2px 10px rgba(17, 17, 17, 0.05);
	overflow: hidden;
}

.quick-menu .title {
	display: block;
	padding: 12rem 0;
	box-sizing: border-box;
	background: var(--color-point);
	font-size: 15rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
}

.quick-menu ul {
	padding: 0 10rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #222;
	background: #fff;
}

.quick-menu ul li {
	width: 100%
}

.quick-menu ul li.call {
	display: none;
}

.quick-menu ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6rem;
	padding: 17rem 0;
	box-sizing: border-box;
	width: 100%;
	border-bottom: 1px dashed #eee;
	text-align:center;
}

.quick-menu ul li:last-child a {
	border: none;
}

.quick-menu ul li a .icon {
	height: 24rem;
}

.quick-menu ul li.insta a .icon {
	height: 21rem;
}

.quick-menu ul li.kakao a .icon {
	height: 22rem;
}

.quick-menu ul li.time a .icon {
	height: 25rem;
}

.quick-menu ul li.time a{border-bottom:none;}

.quick-menu ul li a .icon img {
	height: 100%;
}

.quick-menu ul li.location{display:none;}

.quick-menu ul li a span {
	font-size: 14rem;
	color: #555;
	display: inline-block;
	line-height: 1.2em;
}

.quick-menu ul li a span i{display:block;}

/*
.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);}
*/

.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:1800px) {

	.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;
	}

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

	#area-location .cont-box .top {
		padding: 100rem 100rem 60rem 80rem;
	}

	#area-location .cont-box .bottom {
		padding: 50rem 100rem 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;
	}

	#header .full-gnb__btn {
		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;
	}


}

@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: 0;
		width: 100%;
		padding: 14rem 0;
		box-sizing: border-box;
		background: var(--color-point);
		transition: all 0.2s ease;
		transition-property: opacity, top, visibility;
		transition-delay: 0s, 0s, 0s;
		border-radius: 5rem;
		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: 15rem;
		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) {
	body {
		margin-top: 65rem;
	}

	#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{position:absolute;}
	#header.on{top:-100rem; padding:15rem 0; background:transparent;}
	#header.on .gnb_area{opacity:0;}*/
	#header.on .btn_menu.active>span:nth-of-type(2) {
		background: transparent;
	}

	#header .btn_menu {
		display: block;
	}

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

	.hd-btn {
		display: none;
	}

	#header .area_cs {
		width: 130rem;
		height: 38rem;
		margin-right: 38rem;
	}


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

	#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: 400rem;
		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;
		background: var(--color-point);
	}

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

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

	#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:nth-child(3) > 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);
	}

	#header .list-sns {
		margin-right: 40rem;
	}

	#header .list-sns>li {
		width: 36rem;
		height: 36rem;
	}

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



	.full_menu.oepn {
		display: none;
	}

	.ft-menu {
		display: none;
	}




	#area-location {
		height: auto;
	}

	#area-location .cont-box {
		grid-template-columns: minmax(0, 1fr);
	}

	#area-location .cont-box .top {
		grid-row: 1;
		padding: 50rem 40rem;
	}

	.location-info__item {
		margin-bottom: 30rem;
	}

	#area-location .cont-box .bottom {
		grid-row: 3;
		padding: 50rem 40rem;
	}

	#area-location .cont-box #map {
		height: 500rem;
		grid-row: 2;
		grid-column: 1;
		padding-top: 40%;
	}

	.list-sns>li {
		width: 40rem;
		height: 40rem;
	}

	.list-sns>li img {
		width: 22rem;
	}

}


@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;
	}

	#area-location .cont-box .top {
		padding: 50rem 30rem;
	}

	.location-info__item>em {
		margin-bottom: 10rem;
	}

	.location-info__item>h3 {
		font-size: 28rem;
	}

	.location-info__item>h4>a {
		font-size: 35rem;
	}

	#area-location .cont-box .bottom {
		padding: 50rem 30rem 120rem;
	}

	#area-location .cont-box #map {
		height: 400rem;
	}

	#area-location #map .marker img {
		height: 25rem;
	}

	.ft-top .ft-logo {
		height: 30rem;
	}


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

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


	#side-area {
		display: flex;
		right: 0px;
		top: unset;
		bottom: 0px;
		transform: none;
		width: 100%
	}

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

	.quick-menu .title {
		display: none;
	}

	.quick-menu {
		width: 100%;
		border-radius: 7rem 7rem 0 0;
		padding: 0;
		box-shadow: 0px -4px 10px rgba(17, 17, 17, 0.08);
	}

	.quick-menu ul {
		flex-direction: row;
	}

	.quick-menu ul li.call {
		display: block;
	}

	.quick-menu ul li a {
		border: none;
	}

	.quick-menu ul li.location{display:block;}
	.quick-menu ul li a span i{display:none;}

}

@media (max-width:620px) {
	body {
		margin-top: 50rem;
	}

	.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 .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: 5rem 0;
	}

	#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;
	}



}

@media (max-width:480px) {
	body {
		margin-top: 40rem;
	}

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

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

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

	#header h1 img {
		height: 20rem;
	}

	#header nav .gnb {
		max-width: 200rem;
	}

	#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: 12rem;
		right: 10rem;
		padding: 6rem;
	}

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

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

	#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: 15rem;
	}

	#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;
	}

	#header .list-sns {
		margin-right: 26rem;
		gap: 3rem;
	}

	#header .list-sns>li {
		width: 24rem;
		height: 24rem;
	}

	#header .list-sns>li>a img {
		width: 12rem;
	}


	#area-location .cont-box .top {
		padding: 30rem 14rem;
	}

	.location-info__item>em {
		font-size: 12rem;
		margin-bottom: 6rem;
	}

	.location-info__item>h3 {
		font-size: 18rem;
		width: 80%;
		line-height: 1.3em;
	}

	.list-map {
		gap: 5rem;
		margin-top: 10rem;
	}

	.list-map>li {
		height: 30rem;
		width: 94rem;
	}

	.list-map>li a span {
		font-size: 11rem;
	}

	.list-map>li.naver a span {
		padding-left: 14rem;
	}

	.list-map>li.kakao a span {
		padding-left: 20rem;
	}

	.list-map>li.google a span {
		padding-left: 17rem;
	}

	.list-map>li.naver a span:before {
		width: 10rem;
		height: 15rem;
	}

	.list-map>li.kakao a span:before {
		width: 15rem;
		height: 15rem;
	}

	.list-map>li.google a span:before {
		top: 1rem;
		width: 14rem;
		height: 14rem;
	}

	#area-location .cont-box .bottom {
		padding: 20rem 14rem 70rem;
	}

	.location-info__item {
		margin-bottom: 12rem;
	}

	.location-info__item>h4>a {
		font-size: 24rem;
	}

	.schedule-info {
		margin-top: 3rem;
	}

	.schedule-info>li {
		margin-bottom: 8rem;
		gap: 10rem;
	}

	.schedule-info>li>em {
		width: 33rem;
		font-size: 12rem;
	}

	.schedule-info>li>em .blank {
		width: 11rem;
	}

	.schedule-info>li>span {
		font-size: 12rem;
		width: calc(100% - 43rem);
	}

	#area-location .cont-box {
		height: auto;
	}

	#area-location .cont-box #map {
		height: 250rem;
	}

	#area-location #map .marker {
		padding: 7rem;
	}

	#area-location #map .marker img {
		height: 22rem;
	}

	.ft-top .ft-logo {
		height: 20rem;
	}

	.list-sns {
		gap: 5rem;
	}

	.list-sns>li {
		width: 27rem;
		height: 27rem;
		border-radius: 5rem;
	}

	.list-sns>li img {
		width: 15rem;
	}

	.ft-link {
		margin-top: 15rem;
		gap: 8rem;
	}

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

	address ul {
		margin-top: 15rem;
	}

	address ul>li {
		margin-bottom: 8rem;
	}

	address ul>li div {
		gap: 4rem;
	}

	address ul>li div em,
	address ul>li div span {
		font-size: 11rem;
	}

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


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

	.quick-menu ul li a {
		padding: 12rem 0 8rem;
		gap: 3rem;
	}

	.quick-menu ul li a .icon {
		height: 17rem !important;
	}

	.quick-menu ul li.kakao a .icon img {
		height: 15rem;
	}

	.quick-menu ul li.insta a .icon img {
		height: 15rem;
	}

	.quick-menu ul li a span {
		font-size: 10rem;
	}

}


/* 개인정보수집 
.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;}

}


/* 팝업 전체 컨테이너 */
.agree_pop {
	display: none;
	/* 기본적으로 숨김 */
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 500px;
	/* PC에서의 최대 너비 */
	background: #fff;
	z-index: 1000;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	border-radius: 12px;
	overflow: hidden;
	/* 모서리 둥글게 유지 */
}

/* 상단 타이틀 영역 */
.agree_pop .title {
	padding: 15rem 20rem;
	font-size: 18rem;
	font-weight: 700;
	color: #333;
	border-bottom: 1px solid #eee;
	background: #f9f9f9;
}

/* 닫기 버튼 (X 아이콘) */
.agree_pop .pop-esc {
	position: absolute;
	top: 18rem;
	right: 20rem;
	width: 20rem;
	height: 20rem;
	cursor: pointer;
	transition: transform 0.2s;
}

.agree_pop .pop-esc:hover {
	transform: rotate(90deg);
}

.agree_pop .pop-esc img {
	width: 100%;
	display: block;
	opacity: 0.3;
}

.agree_pop .pop-content {
	padding: 25rem;
	max-height: 400rem;
	overflow-y: auto;
	font-size: 14rem;
	line-height: 1.6;
	color: #666;
	word-break: keep-all;
}

.agree_pop .black {
	display: inline-block;
	color: #000;
	margin-bottom: 5px;
	font-weight: 600;
}

/* 스크롤바 디자인 (크롬/사파리 전용) */
.agree_pop .pop-content::-webkit-scrollbar {
	width: 6px;
}

.agree_pop .pop-content::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.agree_pop .pop-content::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 10px;
}

.pop-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	/* 검정색 50% 투명도 */
	z-index: 999;
}

@media (max-width:480px) {
	.agree_pop .title {
		padding: 10rem 12rem;
		font-size: 14rem;
	}

	.agree_pop .pop-content {
		padding: 12rem;
		font-size: 11rem;
		line-height: 1.5;
	}

	.agree_pop .pop-esc {
		width: 15rem;
		height: 15rem;
		top: 13rem;
		right: 12rem;
	}
}