html::-webkit-scrollbar, body::-webkit-scrollbar {
	display: none;
}

html, body {
	-ms-overflow-style: none;
	scrollbar-width: none;
	/*cursor: url('../img/main/sec02_item03.png'), auto;*/
}
html a, body a {
	/*cursor: url('../img/main/scroll_img.png'), auto;*/
}

.main-open {
	display: none;
}
.main-visual {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 760px;
	overflow: hidden;
	background: #f8f8f8;
}
.main-visual.v02 {
	height: calc(100vh + 120px);
}

.main-bg {
	position: absolute;
	inset: 0;
	background: url("../img/main/main_n4.png") no-repeat center bottom / cover;
	transform: scale(1.08);
	opacity: 0;
	animation: mainBgIn 2.2s cubic-bezier(.22, 1, .36, 1) forwards;
}

.main-title {
	position: absolute;
	left: 50%;
	top: 6.5%;
	z-index: 3;
	transform: translateX(-50%) translateY(28px);
	opacity: 0;
	animation: titleIn 1.25s cubic-bezier(.22, 1, .36, 1) .45s forwards;
}
.main-title.v02 {
	top: 170px;
}


/* ===== 메인 타이틀 텍스트 (시안 반영) ===== */
.main-title.v02 {
	width: 100%;
}

.main-title .main-title-text {
	text-align: center;
	color: #fff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .18);
}

.main-title .mt-brand {
	font-size: 36px;
	line-height: 1;
	font-weight: 300;
	letter-spacing: 0.22em;
	text-indent: 0.22em;
	display: flex;
	justify-content: center;
}

.main-title .mt-name {
	margin-top: 16px;
	font-size: 44px;
	line-height: 1.2;
	letter-spacing: -0.5px;
}

.main-title .mt-line {
	display: block;
	width: 26px;
	height: 2px;
	margin: 18px auto 18px;
	background: #fff;
}

.main-title .mt-sub {
	font-size: 26px;
	line-height: 1.4;
	position: relative;
	width: fit-content;
	margin: 0 auto;
}

.main-title .mt-sub em {
	position: absolute;
	top: -15px;
	font-size: 13px;
	font-style: normal;
	right: 55px;
}

.main-title .mt-point {
	font-size: 56px;
	line-height: 1.3;
	letter-spacing: -0.03em;
	color: #fff;
}

.main-title .mt-point b {
	font-weight: 800;
	color: #1ebbed;
}


.main-title img {
	display: block;
}

.main-item {
	position: absolute;
	left: 50%;
	bottom: 350px;
	z-index: 4;
	max-width: 1920px;
	transform: translateX(-50%) translateY(45px);
	opacity: 0;
	animation: itemIn 1.45s cubic-bezier(.22, 1, .36, 1) .95s forwards;
}

.main-item img {
	display: block;
	width: 100%;
}

.main-glow {
	position: absolute;
	left: 50%;
	top: 31%;
	z-index: 2;
	width: 520px;
	height: 520px;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, rgba(255,255,255,.55) 0%, rgba(255,255,255,.28) 28%, rgba(255,255,255,0) 68%);
	opacity: 0;
	animation: glowIn 2.4s ease .7s forwards;
	pointer-events: none;
}

/* 은은한 빛 이동 */
.main-visual::after {
	content: "";
	position: absolute;
	top: 0;
	left: -47%;
	z-index: 5;
	width: 38%;
	height: 100%;
	background: linear-gradient(
			115deg,
			rgba(255,255,255,0) 0%,
			rgba(255,255,255,.16) 45%,
			rgba(255,255,255,0) 100%
	);
	transform: skewX(-18deg);
	animation: shineMove 3.8s ease-in-out 1.4s forwards;
	pointer-events: none;
}

@keyframes mainBgIn {
	0% {
		opacity: 0;
		transform: scale(1.08);
		filter: blur(5px);
	}
	100% {
		opacity: 1;
		transform: scale(1);
		filter: blur(0);
	}
}

@keyframes titleIn {
	0% {
		opacity: 0;
		transform: translateX(-50%) translateY(28px);
		filter: blur(4px);
	}
	100% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
		filter: blur(0);
	}
}

@keyframes itemIn {
	0% {
		opacity: 0;
		transform: translateX(-50%) translateY(45px);
		filter: blur(3px);
	}
	100% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
		filter: blur(0);
	}
}

@keyframes glowIn {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(.85);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

@keyframes shineMove {
	0% {
		left: -45%;
		opacity: 0;
	}
	18% {
		opacity: 1;
	}
	100% {
		left: 120%;
		opacity: 0;
	}
}


.main_circle2 {
	position: fixed;
	top: 150px;
	right: 90px;
	width: 139px;
	height: 139px;
	line-height: 136px;
	text-align: center;
	transition: all 400ms;
	z-index: 999;
	scale: 0.8;
}

.main_circle2 .bg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 194px;
	height: 194px;
	background-image: url('../img/main/main_circle_open_n.png?new');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform-origin: center center;
	animation: main_circle2 9s linear infinite;
}

.main_circle2 img {
	position: relative;
	z-index: 1;
	transition: all 400ms;
}

@keyframes main_circle2 {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}






















.section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 760px;
	overflow: hidden;
}

.main-visual.v02 {
	height: 100vh;
}

.premium-section {
	background: #f6f7f7;
	color: #0d2546;
}



/* section 02 - center life */
.center-life-section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 760px;
	overflow: hidden;
	background: #fff;
	color: #111;
}

.sec02-bg-new {
	position: absolute;
	inset: 0;
	background: url("../img/main/sec02_bg_new.jpg") no-repeat center center / cover;
	z-index: 1;
}

.sec02-inner-new {
	position: relative;
	z-index: 5;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 100px;
	box-sizing: border-box;
	padding-top: 120px;
}


.sec02-copy {
	width: 504px;
	text-align: center;
	color: #111;
}

.sec02-kicker,
.sec02-copy h2,
.sec02-real,
.sec02-desc-new p {
	opacity: 0;
	transform: translateY(34px);
}

.sec02-kicker {
	font-size: 22px;
	line-height: 1.35;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.sec02-copy h2 {
	margin-top: 10px;
	font-size: 22px;
	line-height: 1.35;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.sec02-real {
	margin-top: 10px;
}

.sec02-real img {
	display: block;
	width: 504px;
	margin: 0 auto;
}

.sec02-desc-new {
	margin-top: 30px;
}

.sec02-desc-new p {
	margin-top: 20px;
	font-size: 16px;
	line-height: 1.85;
	font-weight: 500;
	letter-spacing: -0.05em;
}

.sec02-desc-new p:first-child {
	margin-top: 0;
}

.section_02.is-active .sec02-side-left {
	animation: sec02SideLeftIn 1.35s cubic-bezier(.16, 1, .3, 1) .12s forwards;
}

.section_02.is-active .sec02-side-right {
	animation: sec02SideRightIn 1.35s cubic-bezier(.16, 1, .3, 1) .22s forwards;
}

.section_02.is-active .sec02-kicker {
	animation: sec02TextLuxuryIn .9s cubic-bezier(.16, 1, .3, 1) .32s forwards;
}

.section_02.is-active .sec02-copy h2 {
	animation: sec02TextLuxuryIn .9s cubic-bezier(.16, 1, .3, 1) .44s forwards;
}

.section_02.is-active .sec02-real {
	animation: sec02RealClipIn 1.35s cubic-bezier(.16, 1, .3, 1) .62s forwards;
}

.section_02.is-active .sec02-desc-new p:nth-child(1) {
	animation: sec02TextLuxuryIn .9s cubic-bezier(.16, 1, .3, 1) .9s forwards;
}

.section_02.is-active .sec02-desc-new p:nth-child(2) {
	animation: sec02TextLuxuryIn .9s cubic-bezier(.16, 1, .3, 1) 1.08s forwards;
}

.section_02.is-active .sec02-desc-new p:nth-child(3) {
	animation: sec02TextLuxuryIn .9s cubic-bezier(.16, 1, .3, 1) 1.26s forwards;
}



.sec02-side {
	opacity: 0;
	transform: translateY(50px);
	overflow: hidden;
	clip-path: inset(0 0 0 0);
	will-change: transform, opacity, clip-path, filter;
}

.sec02-side img {
	display: block;
	width: 100%;
	height: auto;
	transform: scale(1.12);
	filter: blur(5px) brightness(1.04);
	will-change: transform, filter;
}

.section_02.is-active .sec02-side img {
	animation: sec02ImgZoomOut 1.6s cubic-bezier(.16, 1, .3, 1) forwards;
}

.sec02-real {
	clip-path: inset(0 100% 0 0);
	will-change: clip-path, opacity, transform, filter;
}

.sec02-real img {
	will-change: transform, filter;
}


@keyframes sec02SideLeftIn {
	0% {
		opacity: 0;
		transform: translate3d(-54px, 36px, 0) scale(.96);
		clip-path: inset(10% 0 10% 100%);
		filter: blur(8px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
		clip-path: inset(0 0 0 0);
		filter: blur(0);
	}
}

@keyframes sec02SideRightIn {
	0% {
		opacity: 0;
		transform: translate3d(54px, 36px, 0) scale(.96);
		clip-path: inset(10% 100% 10% 0);
		filter: blur(8px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
		clip-path: inset(0 0 0 0);
		filter: blur(0);
	}
}

@keyframes sec02ImgZoomOut {
	0% {
		transform: scale(1.12);
		filter: blur(5px) brightness(1.04);
	}
	100% {
		transform: scale(1);
		filter: blur(0) brightness(1);
	}
}

@keyframes sec02RealClipIn {
	0% {
		opacity: 0;
		transform: translate3d(0, 18px, 0);
		clip-path: inset(0 100% 0 0);
		filter: blur(3px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		clip-path: inset(0 0 0 0);
		filter: blur(0);
	}
}

@keyframes sec02RealImgIn {
	0% {
		transform: translateX(-24px);
		filter: blur(3px);
	}
	100% {
		transform: translateX(0);
		filter: blur(0);
	}
}

@keyframes sec02TextLuxuryIn {
	0% {
		opacity: 0;
		transform: translate3d(0, 28px, 0);
		filter: blur(4px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		filter: blur(0);
	}
}

@media screen and (max-width: 768px) {
	.center-life-section,
	.center-life-section .fp-tableCell {
		height: var(--app-height) !important;
		min-height: var(--app-height) !important;
		overflow: hidden !important;
	}

	.sec02-bg-new {
		background-image: url("../img/m/m_sec02_bg_new.jpg");
		background-position: center center;
		background-size: cover;
	}

	.sec02-inner-new {
		width: 100%;
		max-width: none;
		height: var(--app-height) !important;
		padding: 0 42px;
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
	}

	.sec02-side {
		display: none;
	}

	.sec02-copy {
		width: 100%;
		padding-top: 20px;
	}

	.sec02-kicker {
		font-size: 38px;
		line-height: 1.45;
	}

	.sec02-copy h2 {
		margin-top: 12px;
		font-size: 42px;
		line-height: 1.45;
	}

	.sec02-real {
		margin-top: 44px;
	}

	.sec02-real img {
		width: 100%;
		max-width: 610px;
	}

	.sec02-desc-new {
		margin-top: 62px;
	}

	.sec02-desc-new p {
		margin-top: 48px;
		font-size: 34px;
		line-height: 1.75;
		letter-spacing: -0.06em;
	}
}







/* footer 자기 높이만 fullpage 이동 */
.footer.fp-auto-height {
	height: auto !important;
	min-height: 0 !important;
}
























/* section 03 - full background premium slide */
.section_03.premium-slide-section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 760px;
	overflow: hidden;
	background: #111;
	color: #fff;
}

.sec03-bg-wrap {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	background: #111;
}

.sec03-bg-wrap picture {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.sec03-bg-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1);
	filter: brightness(.88);
	will-change: opacity;
	backface-visibility: hidden;
}

.sec03-bg-current {
	z-index: 1;
}

.sec03-bg-next {
	z-index: 2;
	opacity: 0;
	pointer-events: none;
}

.sec03-bg-next.is-show {
	animation: sec03BgNextIn 1.05s cubic-bezier(.16, 1, .3, 1) forwards;
}

.sec03-content-new {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	width: 330px;
	transform: translate(-50%, -42%);
}

.sec03-card-group {
	position: relative;
	margin: 0 auto;
}

.sec03-copy-new {
	position: absolute;
	right: -70px;
	top: -110px;
	z-index: 5;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	white-space: nowrap;
	opacity:0;
	transform:translateY(40px) translateZ(0);
	will-change:transform,opacity;
	backface-visibility:hidden;
	filter:none;
	pointer-events: none;
}

.sec03-copy-new h2 {
	padding-top: 60px;
	font-size: 31px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0;
	color: #fff;
}

.sec03-copy-new strong {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 75px;
	font-weight: 500;
	color: #fff;

	/* iOS 대응: 세로쓰기 / 음수 자간 제거 */
	writing-mode: horizontal-tb;
	letter-spacing: normal;
	line-height: 1;
	position: relative;
	top: 20px;
}

.sec03-copy-new strong span{
	display: block;
	line-height: 1.1; /* 글자 위아래 간격. 값을 줄이면 더 붙음 */
}

.sec03-card {
	position: relative;
	z-index: 3;
	width: 330px;
	height: 430px;
	margin: 0 auto;
	padding: 35px;
	box-sizing: border-box;
	background: #fff;
	color: #111;
	opacity: 0;
	transform: translate3d(0, 42px, 0) scale(.97);
	filter: blur(5px);
	will-change: opacity, transform, clip-path, filter;
}

.sec03-dots {
	position: relative;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 9px;
	margin-top: 14px;
	padding-left: 0;
	opacity: 0;
	transform: translate3d(0, 14px, 0);
}






.sec03-card-text h3 {
	font-size: 30px;
	line-height: 1;
	letter-spacing: -0.03em;
	color: #0d2546;
	opacity: 0;
	transform: translate3d(0, 18px, 0);
}

.sec03-card-text span {
	display: block;
	width: 20px;
	height: 3px;
	margin: 17px 0 18px;
	background: #a87d64;
	opacity: 0;
	clip-path: inset(0 100% 0 0);
}

.sec03-card-text p {
	font-size: 16px;
	line-height: 1.78;
	font-weight: 500;
	letter-spacing: -1px;
	color: #111;
	opacity: 0;
	transform: translate3d(0, 18px, 0);
}

.sec03-card-icon {
	position: absolute;
	right: 38px;
	bottom: 36px;
	width: 220px;
	text-align: right;
	opacity: 0;
	transform: translate3d(16px, 20px, 0) scale(.96);
	filter: blur(3px);
}

.sec03-card-icon img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}



.sec03-dots button {
	display: block;
	width: 12px;
	height: 12px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	transition: background .25s ease, transform .25s ease;
}

.sec03-dots button.active {
	background: #b18467;
	transform: scale(1.08);
}

.sec03-notice {
	position: absolute;
	left: 54px;
	bottom: 54px;
	z-index: 10;
	color: rgba(255,255,255,.45);
	font-size: 11px;
	line-height: 1.8;
	letter-spacing: -0.04em;
	opacity: 0;
	transform: translate3d(0, 12px, 0);
}

.sec03-notice p {
	position: relative;
	padding-left: 20px;
}

.sec03-notice p::before {
	content: "!";
	position: absolute;
	left: 0;
	top: 3px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,.45);
	color: #8a6a55;
	font-size: 8px;
	line-height: 13px;
	text-align: center;
	font-weight: 800;
}

.section_03.is-active .sec03-copy-new {
	animation: sec03CopyIn .85s cubic-bezier(.16, 1, .3, 1) .16s forwards;
}

.section_03.is-active .sec03-card {
	animation: sec03CardIn 1s cubic-bezier(.16, 1, .3, 1) .28s forwards;
}

.section_03.is-active .sec03-card-text h3 {
	animation: sec03TextIn .68s cubic-bezier(.16, 1, .3, 1) .48s forwards;
}

.section_03.is-active .sec03-card-text span {
	animation: sec03LineIn .68s cubic-bezier(.16, 1, .3, 1) .58s forwards;
}

.section_03.is-active .sec03-card-text p {
	animation: sec03TextIn .72s cubic-bezier(.16, 1, .3, 1) .68s forwards;
}

.section_03.is-active .sec03-card-icon {
	animation: sec03IconIn .8s cubic-bezier(.16, 1, .3, 1) .84s forwards;
}

.section_03.is-active .sec03-dots {
	animation: sec03TextIn .7s cubic-bezier(.16, 1, .3, 1) .95s forwards;
}

.section_03.is-active .sec03-notice {
	animation: sec03TextIn .7s cubic-bezier(.16, 1, .3, 1) 1.05s forwards;
}



@keyframes sec03BgNextIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes sec03CopyIn {
	from{
		opacity:0;
		transform:translateY(40px) translateZ(0);
	}
	to{
		opacity:1;
		transform:translateY(0) translateZ(0);
	}
}

@keyframes sec03CardIn {
	0% {
		opacity: 0;
		transform: translate3d(0, 42px, 0) scale(.97);
		filter: blur(5px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
		filter: blur(0);
	}
}

@keyframes sec03TextIn {
	0% {
		opacity: 0;
		transform: translate3d(0, 18px, 0);
		filter: blur(3px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		filter: blur(0);
	}
}

@keyframes sec03LineIn {
	0% {
		opacity: 0;
		clip-path: inset(0 100% 0 0);
	}
	100% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}
}

@keyframes sec03IconIn {
	0% {
		opacity: 0;
		transform: translate3d(16px, 20px, 0) scale(.96);
		filter: blur(3px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
		filter: blur(0);
	}
}

@media screen and (max-width: 768px) {
	.section_03,
	.section_03 .fp-tableCell,
	.section_03.premium-slide-section,
	.section_03.premium-slide-section .fp-tableCell {
		height: var(--app-height) !important;
		min-height: var(--app-height) !important;
		overflow: hidden !important;
		background: #111;
	}

	.sec03-bg-wrap img {
		object-position: center center;
	}


	.sec03-content-new {
		left: 40px;
		right: unset;
		top: 50%;
		width: auto;
		transform: translateY(-50%);
	}

	.sec03-card-group {
		width: 100%;
		padding-top: 118px;
	}

	.sec03-copy-new {
		left: unset;
		top: 0;
		gap: 16px;
		right: -95px;
	}



	.sec03-card {
		width: 530px;
		height: 680px;
		padding: 55px;
	}

	.sec03-dots {
		justify-content: flex-start;
		gap: 14px;
		margin-top: 28px;
		padding-left: 10px;
	}


	.sec03-copy-new h2 {
		padding-top: 50px;
		padding-right: 10px;
		font-size: 42px;
		line-height: 1.08;
	}

	.sec03-copy-new {
		left: unset;
		top: 0;
		gap: 16px;
		right: -95px;
		z-index: 20; /* 카드 위로 확실히 올림 */
	}

	.sec03-copy-new strong {
		font-size: 95px;
		line-height: 1;
	}




	.sec03-card-text h3 {
		font-size: 43px;
	}

	.sec03-card-text span {
		width: 34px;
		height: 4px;
		margin: 22px 0 24px;
	}

	.sec03-card-text p {
		font-size: 25px;
		line-height: 1.78;
		letter-spacing: -0.06em;
	}

	.sec03-card-icon {
		right: 20px;
		bottom: 20px;
		width: 330px;
	}
	.sec03-card-icon img {
		height: 190px;
	}

	.sec03-dots button {
		width: 16px;
		height: 16px;
	}

	.sec03-notice {
		left: 52px;
		right: 40px;
		bottom: 54px;
		font-size: 16px;
		line-height: 1.75;
	}

	.sec03-notice p {
		padding-left: 27px;
		white-space: nowrap;
	}

	.sec03-notice p::before {
		top: 7px;
		width: 18px;
		height: 18px;
		font-size: 13px;
		line-height: 18px;
	}
}























.section_04.contact-section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 760px;
	overflow: hidden;
	background: #f5f5f2;
	color: #111;
}

.section_04 .fp-tableCell {
	height: 100vh !important;
}

.sec04-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: url("../img/main/sec04_bg.jpg") no-repeat center center / cover;
	opacity: 0;
	transform: scale(1.05);
}

.section_04.is-active .sec04-bg {
	animation: sec04BgIn 1.35s cubic-bezier(.16, 1, .3, 1) forwards;
}

.sec04-inner {
	position: relative;
	z-index: 5;
	width: 100%;
	height: 100%;
	min-height: 760px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 120px 80px 0;
	gap: 100px;
}



.sec04-title{
	opacity:0;
	transform:translate3d(-34px,0,0);
}

.sec04-title img{
	display:block;
	width:auto;
	max-width:100%;
}

.section_04.is-active .sec04-title {
	animation: sec04TitleIn .9s cubic-bezier(.16, 1, .3, 1) .08s forwards;
}

.sec04-map {
	box-sizing: border-box;
	opacity: 0;
	transform: translate3d(0, 32px, 0) scale(.98);
	overflow: hidden;
}

.section_04.is-active .sec04-map {
	animation: sec04MapIn 1s cubic-bezier(.16, 1, .3, 1) .2s forwards;
}

.sec04-map img {
	display: block;
	height: auto;
}

.sec04-info {
	color: #111;
	opacity: 0;
	transform: translate3d(34px, 0, 0);
}

.section_04.is-active .sec04-info {
	animation: sec04InfoIn 1s cubic-bezier(.16, 1, .3, 1) .32s forwards;
}

.sec04-info h3 {
	font-size: 24px;
	line-height: 1.35;
	font-weight: 800;
	color: #111;
}

.sec04-line {
	width: 100%;
	height: 1px;
	margin: 18px 0 28px;
	background: rgba(0, 0, 0, .45);
}

.sec04-place {
	margin-top: 34px;
}

.sec04-place:first-of-type {
	margin-top: 0;
}

.sec04-place p {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 400;
	color: #111;
}

.sec04-place p strong {
	font-weight: 900;
}

.sec04-btns {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 10px;
}

.sec04-btns a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 112px;
	height: 34px;
	border-radius: 999px;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: -0.06em;
	color: #fff;
	transition: transform .25s ease, box-shadow .25s ease;
}

.sec04-btns a.naver {
	background: #36aa4f;
	color: #fff;
}

.sec04-btns a.kakao {
	background: #f4e52f;
	color: #000;
}

.sec04-btns a:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
}

@keyframes sec04BgIn {
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes sec04TitleIn {
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes sec04MapIn {
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes sec04InfoIn {
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@media screen and (max-width: 768px) {
	html,
	body,
	#fullpage,
	.section,
	.fp-tableCell {
		height: var(--app-height) !important;
		min-height: var(--app-height) !important;
	}

	.section_04.contact-section,
	.section_04.contact-section .fp-tableCell {
		height: var(--app-height) !important;
		min-height: var(--app-height) !important;
		overflow: hidden !important;
	}

	.section_04 .sec04-bg {
		background-image: url("../img/m/m_sec04_bg.jpg");
		background-position: center top;
		background-size: cover;
	}

	.section_04 .sec04-inner {
		width: 100%;
		height: var(--app-height) !important;
		min-height: var(--app-height) !important;
		padding: 0 40px;
		flex-direction: column;
		gap: 40px;
		padding-top: 120px;
	}



	.section_04 .sec04-title{
		width:100%;
		display:flex;
		justify-content:center;
		transform:translate3d(0,28px,0);
	}

	.section_04 .sec04-title img{
		width:auto;
		max-width:100%;
	}



	.section_04 .sec04-info {
		text-align: center;
		transform: translate3d(0, 28px, 0);
	}

	.section_04 .sec04-info h3 {
		font-size: 40px;
		line-height: 1.35;
		font-weight: 900;
	}

	.section_04 .sec04-line {
		width: 100%;
		height: 1px;
		margin: 24px 0 42px;
		background: rgba(0, 0, 0, .55);
	}

	.section_04 .sec04-place {
		margin-top: 40px;
	}

	.section_04 .sec04-place:first-of-type {
		margin-top: 0;
	}

	.section_04 .sec04-place p {
		font-size: 34px;
		line-height: 1.45;
		font-weight: 500;
	}

	.section_04 .sec04-place p strong {
		font-weight: 900;
	}

	.section_04 .sec04-btns {
		justify-content: center;
		gap: 22px;
		margin-top: 22px;
	}

	.section_04 .sec04-btns a {
		width: 194px;
		height: 52px;
		border-radius: 999px;
		font-size: 28px;
		font-weight: 900;
		letter-spacing: -0.07em;
	}

	@media screen and (max-height: 760px) {
		.section_04 .sec04-title {
			font-size: 58px;
		}

		.section_04 .sec04-map {
			margin-top: 34px;
		}

		.section_04 .sec04-info {
			margin-top: 34px;
		}

		.section_04 .sec04-info h3 {
			font-size: 31px;
		}

		.section_04 .sec04-line {
			margin: 18px 0 28px;
		}

		.section_04 .sec04-place {
			margin-top: 32px;
		}

		.section_04 .sec04-place p {
			font-size: 28px;
		}

		.section_04 .sec04-btns {
			margin-top: 16px;
		}

		.section_04 .sec04-btns a {
			width: 170px;
			height: 46px;
			font-size: 24px;
		}
	}
}



































@media screen and (max-width: 768px) {

	html,
	body,
	#fullpage,
	.section,
	.fp-tableCell {
		height:var(--app-height) !important;
		min-height:var(--app-height) !important;
	}

	.section {
		overflow:hidden !important;
	}






































	.main-open {
		display:flex !important;
		flex-direction: row !important;
		align-items:center !important;
		justify-content:center !important;
		position:absolute !important;
		left:50% !important;
		bottom:54px !important;
		z-index:30 !important;
		width:310px !important;
		height:80px;
		border:2px solid #1aa3ff !important;
		border-radius:50px !important;
		background:#fff !important;
		color:#1aa3ff !important;
		font-size:32px !important;
		font-weight:800 !important;
		transform:translateX(-50%) !important;
		opacity:0;
		animation:mainOpenIn .9s cubic-bezier(.16,1,.3,1) 1.15s forwards !important;
		letter-spacing: 1px;
	}
	.main-open.v1 {
		width: unset !important;
		padding: 10px 25px;
	}

	.main-open b {
		font-size:34px;
		font-weight:900;
	}

	@keyframes mainOpenIn {
		0% {
			opacity:0;
			transform:translateX(-50%) translateY(24px) scale(.96);
			filter:blur(4px);
		}
		100% {
			opacity:1;
			transform:translateX(-50%) translateY(0) scale(1);
			filter:blur(0);
		}
	}






}
















@media screen and (max-width: 768px) {
	.main-title.v02 {
		top: 310px !important;
	}

	.main-title .mt-brand {
		font-size: 40px;
		letter-spacing: 0.24em;
		text-indent: 0.24em;
	}

	.main-title .mt-name {
		margin-top: 18px;
		font-size: 52px;
	}

	.main-title .mt-line {
		width: 34px;
		margin: 30px auto 26px;
	}

	.main-title .mt-sub {
		font-size: 36px;
	}

	.main-title .mt-sub em {
		top: -24px;
		font-size: 20px;
		right: 75px;
	}

	.main-title .mt-point {
		font-size: 65px;
	}

}

