/* main_v04.css */


:root {
	--main-navy: #08031c;
	--main-gold: #c39d82;
	--main-dark: #252525;
	--main-white: #ffffff;
	--main-black: #111111;
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--main-dark);
}

body::-webkit-scrollbar {
	display: none;
}

body {
	-ms-overflow-style: none;
	scrollbar-width: none;
}


body {
	visibility: visible !important;
	opacity: 1 !important;
}




















#intro {
	position: fixed;
	inset: 0;
	background: #0c1d41;
	z-index: 99999999;
	overflow: hidden;
}

#intro.is-skip-ready {
	cursor: none;
}

.intro-skip-cursor {
	position: fixed;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	width: 85px;
	height: 85px;
	border-radius: 50%;
	background: #ffffff;
	border: 1.5px solid #c39d82;
	box-shadow:
			0 10px 30px rgba(0,0,0,0.18),
			inset 0 0 0 4px #fff,        /* 안쪽 여백 */
			inset 0 0 0 5px #c39d82;  /* 그 다음 라인 */
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 999999999;
	transform: translate(-50%, -50%) scale(0.82);
	will-change: transform, opacity;
}
#intro.is-skip-ready .intro-skip-cursor {
	visibility: visible;
}
.intro-skip-cursor span {
	display: block;
	font-family:'Pretendard-Bold';
	font-size: 18px;
	line-height: 1;
	letter-spacing: 1.5px;
	color: #0c1d41;
}

#intro.is-skip-ready .intro-skip-cursor {
	opacity: 1;
}

@media screen and (max-width: 768px) {
	#intro.is-skip-ready,
	#intro.is-skip-ready * {
		cursor: auto !important;
	}

	.intro-skip-cursor {
		display: flex;
		left: auto;
		top: auto;
		right: 80px;
		bottom: 80px;
		transform: scale(0.82);
		opacity: 0;
		visibility: hidden;
		box-shadow:
				0 10px 24px rgba(0,0,0,0.18),
				inset 0 0 0 5px #fff,
				inset 0 0 0 6.5px #0c1d41;
	}



	#intro.is-skip-ready .intro-skip-cursor {
		opacity: 1;
		visibility: visible;
	}
}


.intro-marquee {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 70px;
	pointer-events: none;
	z-index: 1;
	display: flex;
	align-items: center;
}

.marquee-track {
	position: absolute;
	left: 0;
	top: 50%;
	display: flex;
	align-items: center;
	gap: 40px;
	animation: introMarquee 80s linear infinite;
}

.marquee-track--clone {
	left: 100%;
}

.marquee-track span {
	display: inline-block;
	flex: 0 0 auto;
	color: #102248;
	font-size: 90px;
	line-height: 1;
	letter-spacing: 1px;
	font-weight: 300;
	text-rendering: geometricPrecision;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family:'JosefinSans-Bold';
}
.marquee-track span em {

	font-family:'JosefinSans-Regular';
}

@keyframes introMarquee {
	0% {
		transform: translate3d(0, -50%, 0);
	}
	100% {
		transform: translate3d(-100%, -50%, 0);
	}
}




.intro-inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.intro-corners {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 610px;
	height: 350px;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 3;
}

.intro-corners .corner {
	position: absolute;
	width: 18px;
	height: 18px;
	/*opacity: 0;*/
	border-color: #c39d82 !important;
}

.intro-corners .tl {
	left: 0;
	top: 0;
	border-left: 2px solid;
	border-top: 2px solid;
}

.intro-corners .tr {
	right: 0;
	top: 0;
	border-right: 2px solid;
	border-top: 2px solid;
}

.intro-corners .bl {
	left: 0;
	bottom: 0;
	border-left: 2px solid;
	border-bottom: 2px solid;
}

.intro-corners .br {
	right: 0;
	bottom: 0;
	border-right: 2px solid;
	border-bottom: 2px solid;
}

.count-wrap {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 180px;
	height: 130px;
	transform: translate(-50%, -50%);
	overflow: hidden;
	z-index: 5;
}

.count-reel {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

.count-item {
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 84px;
	line-height: 1;
	font-weight: 300;
	color: #c39d82;
	letter-spacing: 1px;

	font-family: 'OneStoreMobileGothicTitleFont';
}

.intro-sentence {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 14px;
	color: #c39d82;
	white-space: nowrap;
	z-index: 6;
	opacity: 0;
	pointer-events: none;

}

.sentence-left,
.sentence-mid {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: 1px;
	font-family:'Pretendard-ExtraLight';
}

.sentence-right {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	position: relative;
}

.sentence-right-num {
	display: inline-block;
	width: 100px;   /* 60 자리 확보 */
	opacity: 0;    /* 실제 숫자는 countWrap가 들어올 거라 숨김 */

	font-family:'ONE Mobile OTF Regular';
}

.sentence-right-unit {
	font-size: 50px;
	line-height: 1;
	font-weight: 300;
	font-family:'Pretendard-ExtraLight';
}



.intro-video {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 610px;
	height: 350px;
	transform: translate(-50%, -50%);
	opacity: 0;
	overflow: hidden;
	z-index: 4;
}

.intro-video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: translate3d(0, 0, 0);
	will-change: transform, opacity;
}

.intro-place {
	position: absolute;
	left: calc(50% - 70px);
	top: 50%;
	width: 1220px;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #c39d82;
	z-index: 7;
	opacity: 0;
	pointer-events: none;
}

.place-left,
.place-right {
	font-size: 80px;
	font-weight: 300;
	letter-spacing: 1px;
	font-family:'Pretendard-ExtraLight';
}

































.main-wrap {
	width: 100%;
	background: var(--main-dark);
}

.main-section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 720px;
	overflow: hidden;
	background: #000;
}

.main-section * {
	box-sizing: border-box;
}

.main-section img,
.main-section video {
	display: block;
	max-width: 100%;
}

.pc-only {
	display: block;
}

.mo-only {
	display: none;
}

[data-motion] {
	will-change: transform, opacity, filter;
}

[data-img-motion] {
	will-change: transform, filter;
}

.section-inner-motion {
	will-change: transform, opacity;
}

/* =========================
   SECTION 01
========================= */

.section-visual {
	background: #111;
}

.visual-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	z-index: 1;
}

.visual-dim {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
			radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.45) 100%),
			linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.35) 100%);
	pointer-events: none;
}

.visual-copy {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	padding-top: 70px;
}

.visual-small {
	margin: 0 0 18px;
	font-family: 'Pretendard-Regular', sans-serif;
	font-size: 22px;
	line-height: 1.65;
	letter-spacing: -0.5px;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	position: relative;
	bottom: 120px;
}
.visual-small .line {
	display: block;
}
.visual-title {
	width: min(1800px, 95vw);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin-top: 12px;
}

.visual-title strong {
	flex: 0 0 auto;
	font-family: 'Pretendard-Bold', sans-serif;
	font-size: clamp(42px, 3.2vw, 64px);
	line-height: 1;
	letter-spacing: -2px;
	color: #fff;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.visual-title span {
	display: block;
	flex: 1 1 auto;
	height: 1px;
	background: rgba(255, 255, 255, 0.78);
}
.visual-title-line {
	display: block;
	flex: 1 1 auto;
	height: 1px;
	background: rgba(255, 255, 255, 0.78);
	transform: scaleX(0);
	transform-origin: left center;
}
.visual-title-left,
.visual-title-right {
	opacity: 0;
}
/* =========================
   SECTION 02
========================= */

.section-time {
	background: #000;
}

.time-grid {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.time-item {
	position: relative;
	height: 100%;
	overflow: hidden;
	background: #111;
}

.time-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.time-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.42) 100%);
	z-index: 2;
	pointer-events: none;
}

.time-item p {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 16%;
	z-index: 3;
	margin: 0;
	padding: 0 24px;
	font-family: 'Pretendard-Bold', sans-serif;
	font-size: 52px;
	line-height: 1.2;
	letter-spacing: -1.5px;
	color: #fff;
	text-align: center;
	text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.time-item:nth-child(2)::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.24) 100%);
}

.time-item:nth-child(2) p {
	color: #000;
	text-shadow: none;
}

/* =========================
   SECTION 03
========================= */

.section-life {
	background: #111;
}

.life-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	z-index: 1;
}

.life-dim {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.44) 100%);
	pointer-events: none;
}

.life-copy {
	position: absolute;
	left: 50%;
	bottom: 12%;
	z-index: 3;
	width: min(1000px, 90vw);
	transform: translateX(-50%);
	text-align: center;
	color: #fff;
}

.life-copy h2 {
	margin: 0;
	font-family: 'Pretendard-Light', sans-serif;
	font-size: clamp(48px, 4.5vw, 86px);
	line-height: 1.05;
	text-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}

.life-copy h2 strong {
	font-family: 'Pretendard-Bold', sans-serif;
}

.life-copy p {
	margin: 10px 0 0;
	font-family: 'Pretendard-Light', sans-serif;
	font-size: 44px;
	line-height: 1.3;
	text-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}
.life-copy p strong {
	font-family: 'Pretendard-Bold', sans-serif;
}

/* =========================
   SECTION 04
========================= */

.section-premium {
	background: #fff;
}

.premium-grid {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-rows: 1fr 220px;
	background: #fff;
}

.premium-visual-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	height: 100%;
}

.premium-item {
	position: relative;
	overflow: hidden;
	background: #111;
}

.premium-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.premium-item.i01 img {
	position: relative;
	top: 70px;
}
.premium-item::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.34) 100%);
	pointer-events: none;
}

.premium-item h3 {
	position: absolute;
	left: 0;
	right: 0;
	top: 30%;
	z-index: 3;
	margin: 0;
	font-family:'NotoSansKR-Bold', 'Pretendard-Bold', sans-serif;
	font-size: 58px;
	line-height: 1;
	letter-spacing: -1px;
	color: #fff;
	text-align: center;
	text-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
}
.premium-item.i01 h3 {
	color: #0e0924;
}

.premium-text-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	height: 220px;
	background: #f3f3f3;
}

.premium-text {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
	padding: 0 30px;
}

.premium-text + .premium-text::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 78px;
	transform: translateY(-50%);
	background: #111;
	opacity: 0.8;
}

.premium-text p {
	margin: 0;
	font-family: 'Pretendard-Bold', sans-serif;
	font-size: clamp(22px, 1.45vw, 30px);
	line-height: 1.45;
	letter-spacing: -0.9px;
	color: #000;
}

/* =========================
   SECTION 05
========================= */

.section-station {
	background: #dfe8ec;
}

.station-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	z-index: 1;
}

.station-copy {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 60px;
	color: #111;
}

.station-copy .station-top {
	margin: 0;
	font-family: 'Pretendard-Bold', sans-serif;
	font-size: clamp(30px, 2vw, 44px);
	line-height: 1.2;
	letter-spacing: -1px;
}

.station-copy .station-line {
	display: block;
	width: 1px;
	height: 170px;
	margin: 20px 0;
	background: rgba(17, 17, 17, 1);
	opacity: 1;
	filter: none;
}

.station-copy .station-sub {
	margin: 0 0 5px;
	font-family: 'Pretendard-Bold', sans-serif;
	font-size: clamp(22px, 1.5vw, 34px);
	line-height: 1.25;
	letter-spacing: -1px;
}

.station-copy .station-sub em {
	font-style: normal;
	font-size: 14px;
	font-family: 'Pretendard-Regular', sans-serif;
}
.station-title-line {
	display: block;
	line-height: 1.2;
}
.station-copy h2 {
	margin: 0;
	font-family: 'Pretendard-Regular', sans-serif;
	font-size: 68px;
	line-height: 1.08;
	color: #111;
}
.station-copy h2 strong {
	font-family: 'Pretendard-Bold', sans-serif;
}

.station-object {
	margin-top: 36px;
}





.typing-target {
	visibility: hidden;
}

.typing-target.is-typing,
.typing-target.is-typed {
	visibility: visible;
}



/* 노트북 (13~15인치 대부분) */
@media screen and (max-width: 1650px) {
	.premium-item h3 {
		font-size: 45px;
	}
	.premium-text-row {
		height: 180px;
	}
	.station-copy .station-line {
		height: 100px;
	}
	.station-copy h2 {
		font-size: 50px;
	}
	.main-section.section-station img.station-object {
		width: 250px;
	}
}



/* =========================
   SECTION 06 : PREMIUM SLIDE
========================= */

.section-premium-slide {
	background: #fff;
}

.section-premium-slide .fp-tableCell {
	display: block !important;
}

.premium-slide-wrap {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 720px;
	overflow: hidden;
	background: #fff;
}

.premium-slide {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: 50% 50%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	background: #fff;
	overflow: hidden;
}

.premium-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}

.premium-big-img {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #ddd;
}

.premium-big-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.premium-big-img span,
.premium-thumb span {
	position: absolute;
	left: 20px;
	bottom: 18px;
	z-index: 3;
	font-family: 'Pretendard-Regular', sans-serif;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.8);
}

.premium-info {
	position: relative;
	height: 100%;
	padding: 72px 80px;
	color: #0d2865;
}

.premium-info::before {
	content: "";
	position: absolute;
	right: -60px;
	top: -80px;
	width: 420px;
	height: 260px;
	background: radial-gradient(ellipse at center, rgba(9, 37, 92, 0.12) 0%, rgba(9, 37, 92, 0.05) 34%, rgba(255, 255, 255, 0) 70%);
	filter: blur(14px);
	opacity: 0.8;
	pointer-events: none;
}

.premium-top {
	position: relative;
	z-index: 2;
	text-align: right;
	display: none;
}

.premium-top p {
	margin: 0;
}

.premium-top p span {
	display: block;
	font-family: 'Pretendard-Bold', sans-serif;
	font-size: 30px;
	line-height: 1.4;
	letter-spacing: -0.4px;
}

.premium-top h2 {
	margin: 14px 0 0;
	font-family: 'Pretendard-Bold', sans-serif;
	font-size: 63px;
	line-height: 1.2;
	letter-spacing: -2px;
}

.premium-content {
	position: absolute;
	left: 80px;
	right: 80px;
	bottom: 90px;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 60px;
}

.premium-text {
	color: #09255c;
}

.premium-text em {
	display: block;
	font-style: normal;
	font-family: 'Pretendard-Bold', sans-serif;
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0.8px;
}

.premium-text h3 {
	font-family: 'Pretendard-Bold', sans-serif;
	font-size: 54px;
	line-height: 1;
	letter-spacing: 3px;
}

.premium-text strong {
	display: block;
	font-family: 'Pretendard-Bold', sans-serif;
	font-size: 42px;
	line-height: 1.35;
	letter-spacing: -1px;
	color: #111;
}

.premium-text p {
	margin: 12px 0 0;
	font-family: 'Pretendard-Regular', sans-serif;
	font-size: 23px;
	line-height: 1.5;
	letter-spacing: -0.5px;
	color: #111;
}
.premium-text p > span {
	font-size: 16px;
	display: inline-block;
}

.premium-thumb {
	position: relative;
	flex: 0 0 auto;
	overflow: hidden;
	background: #ddd;
	bottom: 0px;
	width: 242px;
	height: 218px;
}

.premium-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}

.premium-nav {
	position: absolute;
	right: 80px;
	bottom: 55px;
	z-index: 10;
	display: flex;
	gap: 8px;
}

.premium-nav button {
	width: 55px;
	height: 55px;
	border: 1px solid #808faf;
	border-radius: 50%;
	background: #fff;
	color: #09255c;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.premium-nav button:hover {
	background: #09255c;
	color: #fff;
}


/* SECTION 06 FIX */
.section-premium-slide .premium-text {
	display: flex !important;
	height: 218px !important;
	padding: 0 !important;
	text-align: left !important;
	flex-direction: column;
	justify-content: flex-start !important;
	align-items: flex-start !important;
}

.section-premium-slide .premium-text::before {
	display: none !important;
}

.section-premium-slide .premium-info {
	position: relative;
	padding: 200px 120px 120px 80px;
}

.section-premium-slide .premium-content {
	left: 80px;
	right: 80px;
	bottom: 155px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.section-premium-slide .premium-text em,
.section-premium-slide .premium-text h3,
.section-premium-slide .premium-text strong,
.section-premium-slide .premium-text p {
	display: block;
}

.section-premium-slide .premium-big-img,
.section-premium-slide .premium-info,
.section-premium-slide .premium-top,
.section-premium-slide .premium-text,
.section-premium-slide .premium-thumb {
	will-change: transform, opacity, clip-path, filter;
}





.main_circle {
	position:absolute;
	top: 200px;
	left: -60px;
	width: 119px;
	height: 119px;
	line-height: 119px;
	text-align:center;
	transition:all 400ms;
	z-index: 999;
}

.main_circle .bg {
	position: absolute;
	width: 95px;
	height: 95px;
	background-image: url('../img/main/main_circle_text_open.png?new');
	animation: main_circle 7s linear infinite;
	left: 12px;
	top: 12px;
}

.main_circle img {
	transition:all 400ms;
}

@keyframes main_circle {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}






.main_circle2 {
	position:fixed;
	top: 160px;
	right: 60px;
	width: 116px;
	height: 116px;
	line-height: 116px;
	text-align:center;
	transition:all 400ms;
	z-index: 999;
}

.main_circle2 .bg {
	position: absolute;
	width: 116px;
	height: 116px;
	background-image: url('../img/main/main_circle_text_open_n.png?new');
	animation: main_circle2 7s linear infinite;
	left: -0px;
	top: -0px;
}

.main_circle2 img {
	transition:all 400ms;
}

@keyframes main_circle2 {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.main_circle2 {
	filter: none;
}

body.is-premium-section .main_circle2 {
	filter: brightness(0) saturate(1);
}










/* =========================
   SECTION 07 : CONTACT
========================= */

.section-contact {
	background: #111827;
}

.contact-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	z-index: 1;
}



.contact-inner {
	position: relative;
	z-index: 3;
	width: min(1240px, 90vw);
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.contact-title {
	text-align: center;
	margin-bottom: 100px;
}

.contact-title h2 {
	margin: 0;
	font-family: 'Pretendard-Regular', sans-serif;
	font-size: 45px;
	line-height: 1;
	letter-spacing: 1px;
	color: #fff;
}

.contact-title p {
	margin: 16px 0 0;
	font-family: 'Pretendard-Regular', sans-serif;
	font-size: 24px;
	color: rgba(255, 255, 255, 0.62);
}

.contact-content {
	display: grid;
	grid-template-columns: 560px 1fr;
	align-items: end;
	gap: 70px;
	width: 100%;

}

.contact-map {
	background: #fff;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
	overflow: hidden;
}

.contact-map img {
	width: 100%;
	display: block;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: flex-end;
}

.contact-row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 30px;
}

.contact-text strong {
	display: block;
	margin-bottom: 8px;
	font-family: 'Pretendard-Bold', sans-serif;
	font-size: 27px;
	color: #8090bd;
}

.contact-text p {
	margin: 0;
	font-family: 'Pretendard-Regular', sans-serif;
	font-size: 24px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.72);
}

.contact-links {
	display: flex;
	gap: 12px;
}

.contact-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.35s ease;
}

.contact-links a:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.55);
}


.contact-tel {
	margin-top: 10px;
	width: 100%;
	height: 70px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	color: #fff;
	text-decoration: none;
	transition: 0.35s ease;
}

.contact-tel:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.48);
}

.contact-logo {
	height: 27px;
	width: auto;
}

.tel-icon img {
	width: 18px;
}

.contact-tel strong {
	font-size: 27px;
	letter-spacing: 0.5px;
	color: #d9deec;
}
.contact-tel strong em {
	font-size: 17px;
}

@media screen and (max-width: 768px) {
	#fullpage,
	#fullpage .section,
	#fullpage .fp-tableCell,
	.main-section {
		height: var(--vh) !important;
		min-height: var(--vh) !important;
	}

	.section-visual {
		height: var(--vh) !important;
		min-height: var(--vh) !important;
	}

	.section-visual .visual-copy {
		height: var(--vh) !important;
		padding-bottom: env(safe-area-inset-bottom) !important;
	}


	.contact-inner {
		width: 88vw;
		padding-top: 70px;
		justify-content: flex-start;
	}

	.contact-title {
		margin-bottom: 42px;
	}

	.contact-title h2 {
		font-size: 38px;
	}

	.contact-title p {
		font-size: 22px;
	}

	.contact-content {
		display: block;
	}

	.contact-map {
		width: 100%;
		margin-bottom: 44px;
	}

	.contact-info {
		gap: 30px;
	}

	.contact-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.contact-text strong {
		font-size: 24px;
	}

	.contact-text p {
		font-size: 22px;
	}

	.contact-links a {
		width: 58px;
		height: 58px;
	}

	.contact-tel {
		height: 82px;
		margin-top: 16px;
	}

	.contact-tel strong {
		font-size: 28px;
	}
}


























/* 노트북 */
@media screen and (max-width: 1650px) {
	.premium-info {
		padding: 56px 70px;
	}

	.premium-top h2 {
		font-size: 36px;
	}

	.premium-content {
		left: 70px;
		right: 70px;
		bottom: 80px;
	}

	.premium-text h3 {
		font-size: 32px;
	}

	.premium-text strong {
		font-size: 23px;
	}

	.premium-thumb {
		width: 130px;
		height: 116px;
	}

	.premium-nav {
		right: 70px;
		bottom: 45px;
	}
}

/* =========================
   MOBILE FULLPAGE
========================= */
@media screen and (max-width: 768px) {
	html,
	body {
		width: 100%;
		height: 100% !important;
		overflow: hidden !important;
		background: var(--main-dark);
	}

	.pc-only {
		display: none !important;
	}

	.mo-only {
		display: block !important;
	}

	#fullpage {
		height: auto !important;
	}

	#fullpage .section:not(.fp-auto-height):not(.footer),
	#fullpage .section:not(.fp-auto-height):not(.footer) .fp-tableCell {
		height: var(--vh) !important;
		min-height: var(--vh) !important;
	}

	#fullpage .footer.fp-auto-height,
	#fullpage .footer.fp-auto-height .fp-tableCell {
		height: auto !important;
		min-height: 0 !important;
	}

	#fullpage > .fp-auto-height,
	#fullpage > .footer {
		height: auto !important;
		min-height: 0 !important;
	}
	.footer.fp-auto-height {
		height: auto !important;
		min-height: 0 !important;
	}
	.section-visual,
	.section-station,
	.section-premium-slide,
	.section-contact {
		position: relative !important;
		width: 100% !important;
		height: var(--vh) !important;
		min-height: var(--vh) !important;
		overflow: hidden !important;
		padding-top: 140px;
	}

	/* SECTION 01은 기존 유지 */
	.section-visual .visual-copy {
		position: absolute;
		inset: 0;
		z-index: 3;
		width: 100%;
		height: 100%;
	}

	/* SECTION 01 MOBILE */
	.section-visual .visual-copy {
		padding-top: 0 !important;
		justify-content: center !important;
	}

	.section-visual .visual-small {
		position: relative !important;
		bottom: auto !important;
		margin: 0 0 60px;
		line-height: 1.75 !important;
		letter-spacing: -0.5px !important;
		font-size: 28px;
	}
	.visual-small {
	}
	.visual-small .line {
		line-height: 1.8;
	}
	.section-visual .visual-title {
		width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 0 !important;
		margin-top: 0 !important;
	}

	.section-visual .visual-title strong {
		display: block !important;
		width: 100% !important;
		text-align: center !important;
		font-size: 60px;
		line-height: 1.25 !important;
		letter-spacing: -1.4px !important;
		white-space: nowrap !important;
	}

	.section-visual .visual-title-line {
		flex: none !important;
		width: 1px !important;
		height: 118px !important;
		margin: 20px auto !important;
		background: rgba(255, 255, 255, 0.9) !important;
		transform: scaleY(0);
		transform-origin: top center !important;
	}
	.section-visual .visual-title .visual-title-line {
		display: block !important;
		flex: 0 0 auto !important;
		width: 1px !important;
		min-width: 1px !important;
		max-width: 1px !important;
		height: 350px !important;
		margin: 60px auto !important;
		background: rgba(255, 255, 255, 0.9) !important;
		transform-origin: top center !important;
	}


	/* =========================
	   SECTION 05 MOBILE
	========================= */
	.section-station {
		background: #dfe8ec;
	}

	.section-station .station-bg {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		object-fit: cover !important;
		object-position: center center !important;
		z-index: 1 !important;
	}

	.section-station .station-copy {
		position: absolute !important;
		inset: 0 !important;
		z-index: 5 !important;
		width: 100% !important;
		height: 100% !important;
		padding: 300px 20px 0 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: flex-start !important;
		text-align: center !important;
		color: #111 !important;
	}

	.section-station .station-top {
		font-size: 48px !important;
		line-height: 1.2 !important;
		letter-spacing: -0.5px !important;
	}

	.section-station .station-line {
		width: 1px !important;
		height: 270px !important;
		margin: 18px auto 20px !important;
		background: #111 !important;
	}

	.section-station .station-sub {
		margin: 0 0 8px !important;
		font-size: 36px !important;
		line-height: 1.35 !important;
		letter-spacing: -0.6px !important;
	}

	.section-station .station-sub em {
		font-size: 22px !important;
	}

	.section-station .station-title {
		margin: 0 !important;
		font-size: 73px !important;
		line-height: 1.14 !important;
		letter-spacing: -1.8px !important;
	}

	.section-station .station-title-line {
		display: block !important;
	}

	.section-station .station-object {
		width: unset !important;
		max-width: none !important;
		margin-top: 28px !important;
	}



	/* =========================
	   SECTION 07 MOBILE
	========================= */
	.section-contact {
		background: #111827 !important;
	}

	.section-contact .contact-bg {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		object-fit: cover !important;
		object-position: center center !important;
		z-index: 1 !important;
	}

	.section-contact .contact-inner {
		position: relative !important;
		z-index: 5 !important;
		width: 100% !important;
		height: 100% !important;
		padding: 62px 80px 0 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: flex-start !important;
		color: #fff !important;
	}

	.contact-title {
		margin-bottom: 46px !important;
		text-align: center !important;
	}

	.contact-title h2 {
		font-size: 56px !important;
		line-height: 1 !important;
		letter-spacing: 0.5px !important;
	}

	.contact-title p {
		margin-top: 20px !important;
		font-size: 32px !important;
		color: rgba(255,255,255,0.62) !important;
	}

	.contact-content {
		display: block !important;
		width: 100% !important;
	}

	.contact-map {
		width: 100% !important;
		margin: 0 auto 50px !important;
		box-shadow: none !important;
		background: #fff !important;
	}

	.contact-map img {
		width: 100% !important;
		height: auto !important;
		display: block !important;
	}

	.contact-info {
		display: flex !important;
		flex-direction: column !important;
		gap: 40px !important;
		width: 90% !important;
		margin: 0 auto;
	}

	.contact-row {
		display: grid !important;
		grid-template-columns: 1fr auto !important;
		align-items: center !important;
		gap: 12px !important;
	}

	.contact-text strong {
		margin-bottom: 6px !important;
		font-size: 30px !important;
		color: #8090bd !important;
	}

	.contact-text p {
		font-size: 23px !important;
		line-height: 1.45 !important;
		color: rgba(255,255,255,0.72) !important;
	}

	.contact-links {
		display: flex !important;
		gap: 8px !important;
	}


	.contact-links img {

		max-width: none !important;
	}

	.contact-tel {
		width: 100% !important;
		height: 90px !important;
		margin-top: 8px !important;
	}

	.contact-logo {
		width: auto !important;
	}

	.tel-icon img {
		height: auto !important;
		width: 24px !important;
	}

	.contact-tel strong {
		font-size: 32px !important;
		letter-spacing: 0 !important;
	}

	.contact-tel strong em {
		font-size: 22px !important;
	}










	#intro.is-skip-ready,
	#intro.is-skip-ready * {
		cursor: auto !important;
	}

	.intro-skip-cursor {
		display: flex;
		left: auto;
		top: auto;
		right: 80px;
		bottom: 80px;
		transform: scale(0.82);
		opacity: 0;
		visibility: hidden;
		box-shadow:
				0 10px 24px rgba(0,0,0,0.18),
				inset 0 0 0 5px #fff,
				inset 0 0 0 6.5px #0c1d41;
	}



	#intro.is-skip-ready .intro-skip-cursor {
		opacity: 1;
		visibility: visible;
	}



	.intro-corners,
	.intro-video {
		width: 360px;
		height: 210px;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.count-wrap {
		width: 150px;
		height: 100px;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.count-item {
		height: 100px;
		font-size: 72px;
		display: flex;
		justify-content: center;
		align-items: flex-end;
	}

	.intro-sentence {
		left: 50%;
		top: 50%;
		width: 360px;
		transform: translate(-50%, -50%);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		gap: 8px;
		white-space: normal;
	}

	.sentence-left,
	.sentence-mid {
		display: block;
		width: 100%;
		font-size: 30px;
		line-height: 1.25;
		font-weight: 800;
		letter-spacing: -1px;
		text-align: center;
	}

	.sentence-right {
		display: flex;
		align-items: baseline;
		justify-content: center;
		gap: 6px;
		line-height: 1;
	}

	.sentence-right-num {
		width: 78px;
		font-size: 72px;
		line-height: 1;
	}

	.sentence-right-unit {
		font-size: 24px;
		line-height: 1;
		font-weight: 800;
		position: relative;
		top: -2px;
		left: 10px;
	}

	.intro-place {
		width: 100vw;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		gap: 250px;
		left: 50%;
	}

	.place-left,
	.place-right {
		font-size: 34px;
	}

	.intro-marquee {
		height: 34px;
		bottom: 10px;
	}

	.marquee-track {
		gap: 28px;
	}














	.section-station .station-bg {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		z-index: 1 !important;
	}

	.section-station .station-copy {
		position: absolute !important;
		inset: 0 !important;
		z-index: 5 !important;
	}


	html,
	body {
		width: 100%;
		height: 100%;
		overflow: hidden !important;
	}

	#fullpage {
		position: fixed !important;
		left: 0 !important;
		top: 0 !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		overflow: visible !important;
	}

	#fullpage > .section:not(.fp-auto-height):not(.footer) {
		position: relative !important;
		width: 100% !important;
		height: 100vh !important;
		min-height: 100vh !important;
		overflow: hidden !important;
	}

	#fullpage > .fp-auto-height,
	#fullpage > .footer {
		position: relative !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		overflow: visible !important;
	}

	.section-premium-slide .premium-slide {
		display: flex !important;
		flex-direction: column !important;
		background: #fff !important;

	}

	.section-premium-slide .premium-big-img {
		position: absolute !important;
		left: 0 !important;
		width: 100% !important;
	}

	.section-premium-slide .premium-info {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		padding: 0 !important;
		background: transparent !important;
	}

	.section-premium-slide .premium-top {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 22% !important;
		padding: 50px 18px 0 !important;
		text-align: center !important;
		background: #fff !important;
		z-index: 5 !important;
	}

	.section-premium-slide .premium-top p span {
		display: inline !important;
		font-size: 32px !important;
		line-height: 1.3 !important;
		font-family: 'Pretendard-Bold', sans-serif !important;
		color: #09255c !important;
	}

	.section-premium-slide .premium-top p span + span::before {
		content: " " !important;
	}

	.section-premium-slide .premium-top h2 {
		margin: 25px 0 0 !important;
		font-size: 65px !important;
		line-height: 1.5 !important;
		letter-spacing: -1.6px !important;
		color: #09255c !important;
	}

	.section-premium-slide .premium-content {
		position: absolute !important;
		left: 18px !important;
		right: 18px !important;
		width: auto !important;
		margin: 0 !important;
		display: block !important;
		padding: 40px 30px;
	}

	.section-premium-slide .premium-text {
		display: block !important;
		text-align: left !important;
		color: #09255c !important;
	}

	.section-premium-slide .premium-text em {
		margin-bottom: 12px !important;
		font-size: 26px !important;
		letter-spacing: 1px !important;
		color: #09255c !important;
	}

	.section-premium-slide .premium-text h3 {
		margin: 0 0 28px !important;
		font-size: 65px !important;
		line-height: 1 !important;
		letter-spacing: 2px !important;
		color: #09255c !important;
	}

	.section-premium-slide .premium-text strong {
		font-size: 44px !important;
		line-height: 1.35 !important;
		letter-spacing: -1px !important;
		color: #111 !important;
	}

	.section-premium-slide .premium-text p {
		margin-top: 20px !important;
		font-size: 25px !important;
		line-height: 1.5 !important;
		color: #111 !important;
	}

	.section-premium-slide .premium-thumb {
		display: none !important;
	}

	.section-premium-slide .main_circle {
		top: calc(22% + 36% - 60px) !important;
		right: 40px !important;
		left: auto !important;
		z-index: 10 !important;
	}

	.section-premium-slide .premium-nav {
		right: 40px !important;
		bottom: unset !important;
		top: 1050px !important;
		z-index: 50 !important;
	}
	.section-premium-slide .premium-text strong br {
		display: none !important;
	}






	.section-premium-slide {
		padding-top: 0 !important;
		box-sizing: border-box !important;
	}

	.section-premium-slide .fp-tableCell {
		height: var(--vh) !important;
		padding-top: 140px !important;
		box-sizing: border-box !important;
	}


	.section-premium-slide .premium-slide-wrap {
		width: 100% !important;
		height: calc(var(--vh) - 140px) !important;
		min-height: 0 !important;
		padding-top: 0 !important;
		overflow: hidden !important;
	}

	.section-premium-slide .premium-slide {
		height: 100% !important;
		min-height: 0 !important;
	}



	.section-contact {
		padding-top: 0 !important;
		height: var(--vh) !important;
		min-height: var(--vh) !important;
		overflow: hidden !important;
	}

	.section-contact .fp-tableCell {
		height: var(--vh) !important;
		padding-top: 68px !important; /* 헤더 높이 */
		box-sizing: border-box !important;
	}

	.section-contact .contact-inner {
		position: relative !important;
		width: 100% !important;
		height: calc(var(--vh) - 68px) !important;
		padding: 140px 80px 0 !important;
		box-sizing: border-box !important;
		justify-content: flex-start !important;
	}



	.section-visual {
		padding-top: 0 !important;
	}

	.section-visual .fp-tableCell {
		height: var(--vh) !important;
	}

	.section-visual .visual-copy {
		position: absolute !important;
		top: 68px !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		height: auto !important;
		min-height: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		justify-content: center !important;
	}

	.section-station {
		padding-top: 0 !important;
	}

	.section-station .fp-tableCell {
		height: var(--vh) !important;
	}

	.section-station .station-copy {
		position: absolute !important;
		top: 68px !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		height: auto !important;
		min-height: 0 !important;
		padding: 0 20px !important;
		justify-content: center !important;
	}


	#fullpage .section:not(.fp-auto-height):not(.footer),
	#fullpage .section:not(.fp-auto-height):not(.footer) .fp-tableCell {
		height: var(--real-vh-px) !important;
		min-height: var(--real-vh-px) !important;
	}

	.section-visual,
	.section-station,
	.section-premium-slide,
	.section-contact {
		height: var(--real-vh-px) !important;
		min-height: var(--real-vh-px) !important;
		padding-top: 0 !important;
	}

	.section-premium-slide .premium-slide-wrap {
		height: var(--real-vh-px) !important;
		padding-top: 68px !important;
		box-sizing: border-box !important;
	}

	.section-premium-slide .premium-slide {
		position: absolute !important;
		height: calc(var(--real-vh-px) - 68px) !important;
		display: block !important;
	}

	.section-premium-slide .premium-top {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 280px !important;
		padding: 50px 18px 0 !important;
		box-sizing: border-box !important;
	}

	.section-premium-slide .premium-big-img {
		position: absolute !important;
		top: 280px !important;
		left: 0 !important;
		width: 100% !important;
		height: 450px !important;
	}

	.section-premium-slide .premium-content {
		position: absolute !important;
		top: 730px !important;
		left: 18px !important;
		right: 18px !important;
		bottom: 0 !important;
		padding: 32px 30px 0 !important;
		box-sizing: border-box !important;
	}


	.section-premium-slide,
	.section-premium-slide .fp-tableCell,
	.section-premium-slide .premium-slide-wrap,
	.section-premium-slide .premium-slide {
		height: var(--real-vh-px) !important;
		min-height: var(--real-vh-px) !important;
	}


	.premium-big-img img {
		object-position: bottom;
	}


	.main_circle2 {
		top: 210px;
		right: 20px;
	}

}



