/* 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;
	opacity: 1;
}







.mobile {
	display: none !important;
}





























.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-image: url("../img/main/sec01_poster.jpg");
	width: 100vw;
	height: 100vh;
	background-size: cover;
}

.sec01-video-wrap,
.sec01-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.sec01-video {
	object-fit: cover;
	object-position: center center;
	opacity: 0;
	z-index: 1;

	transition: opacity 0.65s ease;
	backface-visibility: hidden;
	transform: translateZ(0);
	will-change: opacity;
}

.sec01-video.is-active {
	opacity: 1;
	z-index: 2;
}

.sec01-video-dim {
	position: absolute;
	inset: 0;
	z-index: 3;
	opacity: 1;
	pointer-events: none;

	background: linear-gradient(
			to bottom,
			rgba(0,0,0,0.55) 0%,
			rgba(0,0,0,0.28) 28%,
			rgba(0,0,0,0.10) 52%,
			rgba(0,0,0,0.18) 100%
	);
}






.sec01-copy {
	position: absolute;
	z-index: 4;
	color: #fff;
	font-family: 'HANDotum', 'Pretendard-Bold', sans-serif;
	font-size: 56px;
	line-height: 1;
	letter-spacing: 0;
	opacity: 0;
	white-space: nowrap;
	word-break: keep-all;
}

.sec01-copy p {
	margin: 0;
	letter-spacing: -8px;
}
.sec01-copy p em {
	height: 10px;
	display: inline-block;
}


.sec01-copy01,
.sec01-copy02 {
	writing-mode: vertical-rl;
	text-orientation: upright;
}

.sec01-copy01 {
	right: 27%;
	top: 24%;
}

.sec01-copy02 {
	right: 19%;
	top: 29%;
}

.sec01-copy03 {
	right: 19%;
	top: 22%;
}

.sec01-copy03-text {
	display: flex;
	align-items: flex-start;
	gap: 0px;
	writing-mode: vertical-rl;
	text-orientation: upright;
	flex-direction: column-reverse;
}

.sec01-copy03 .copy-white {
	color: #fff;
}

.sec01-copy03 .copy-orange {
	color: #e86303;
	margin-top: 70px;
	font-family:'HANDotumB';
}

.sec01-copy03 .copy-orange span {
	color: #fff;
}

.sec01-copy02 p, .sec01-copy03 .copy-orange {
	position: relative;
}
.sec01-copy02 p::after, .sec01-copy03 .copy-orange::after {
	position: absolute;
	display: inline-block;
	content: '';
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 1px solid #fff;
	bottom: 3px;
	right: -2px;
}

.sec01-brand {
	position: absolute;
	left: 50%;
	top: calc(100% + 50px);
	transform: translateX(-50%);
}
.sec01-brand img {
	max-width: unset;
}





/* =========================
   SECTION 02 : SIGNATURE
========================= */

.section-signature {
	background: #000;
	overflow: hidden;
}

.signature-intro {
	position: absolute;
	inset: 0;
	z-index: 5;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #111;
}


.sig-intro-copy {
	position: relative;
	z-index: 2;
	opacity: 0;
	background: #fff;
	padding: 25px;
	cursor: default;
}

.sig-intro-copy p {
	font-family: 'Pretendard-Regular', sans-serif;
	font-size: 25px;
	color: #777;
	letter-spacing: -0.3px;
}

.sig-intro-copy h2 {
	margin: 0;
	font-family:'HANDotum';
	font-size: 60px;
	line-height: 1.45;
	letter-spacing: -1.5px;
	min-height: 174px;
}

.sig-intro-copy h2 strong {
	font-family:'HANDotumB';
}




.sig-line {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 140vw;
	height: 1px;
	background: #ea6e15;
	transform-origin: center center;
	opacity: 0;
	will-change: transform, opacity;
}


.signature-slider {
	position: absolute;
	inset: 0;
	z-index: 3;
	background: #111;
	opacity: 0;
	visibility: hidden;
}

.signature-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
}

.signature-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.signature-slide picture,
.signature-slide img:not(.sig-icon) {
	width: 100%;
	height: 100%;
	display: block;
}

.signature-slide img:not(.sig-icon) {
	object-fit: cover;
	object-position: center center;
}

.sig-slide-dim {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
			to right,
			rgba(0,0,0,0.64) 0%,
			rgba(0,0,0,0.48) 26%,
			rgba(0,0,0,0.16) 52%,
			rgba(0,0,0,0) 78%
	);
	pointer-events: none;
}

.sig-slide-copy {
	position: absolute;
	left: 16%;
	top: 50%;
	z-index: 4;
	transform: translateY(-50%);
	color: #fff;
}

.sig-icon {
	margin-bottom: 16px;
}

.sig-slide-copy em {
	display: block;
	margin-bottom: 15px;
	font-family:'JosefinSans-Regular';
	font-size: 23px;
	letter-spacing: 3px;
	color: rgba(255,255,255,0.75);
	font-style: normal;
}
.sig-slide-copy em strong {
	font-family:'JosefinSans-Bold';
}

.sig-slide-copy h3 {
	margin: 0 0 15px;
	font-family:'HANDotumB';
	font-size: 46px;
	line-height: 1.25;
	letter-spacing: -1px;
}

.sig-slide-copy p {
	margin: 0;
	font-family:'Pretendard-Light';
	font-size: 23px;
	line-height: 1.7;
	color: rgba(255,255,255,0.82);
}

.img-cut {
	position: absolute;
	right: 28px;
	bottom: 15px;
	z-index: 4;
	font-family: 'Pretendard-Regular', sans-serif;
	font-size: 17px;
	color: rgba(255,255,255,0.72);
}

@media screen and (max-width: 768px) {

	.sig-slide-copy {
		left: 10%;
		top: 52%;
	}



}















/* =========================
   SECTION 03 : PREMIUM 6
========================= */

.section-premium-slide {
	background: #fff;
}

.section-premium-slide .fp-tableCell {
	display: block !important;
}

.p3-wrap {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 604px;
	background: #fff;
}

.p3-title {
	position: absolute;
	left: 45.5%;
	top: 0;
	z-index: 20;
	width: 430px;
	color: #111;
}

.p3-title p {
	position: relative;
	font-family: 'Pretendard-Regular', sans-serif;
	font-size: 27px;
	color: #000;
	line-height: 1;
}

.p3-title p::after {
	content: "";
	position: absolute;
	left: 295px;
	top: 50%;
	width: 50vw;
	height: 1px;
	background: #ddd;
}

.p3-title h2 {
	margin: 0;
	font-family: 'JosefinSans-Regular', 'Pretendard-Regular', sans-serif;
	font-size: 59px;
	line-height: 1.5;
	letter-spacing: 1px;
	font-weight: 400;
	display: flex;
	flex-direction: column;
}
.p3-title h2 span {
	line-height: 1.6;
}

.p3-title h2 strong {
	font-family:'JosefinSans-Bold';
	font-size: 59px;
	line-height: 0.9;
	letter-spacing: 3px;
	color: #000;
}
.p3-title h2 strong em {
	color: #e86303;
}

.p3-nav {
	margin-top: 22px;
	display: flex;
	gap: 10px;
}

.p3-main {
	position: absolute;
	left: 16.2%;
	top: 0;
	overflow: visible;
	background: #eee;
}

.p3-info {
	position: absolute;
	left: 45.5%;
	bottom: 0;
	display: flex;
	align-items: flex-start;
	gap: 45px;
}


.p3-icon {
	width: 30px;
	margin-bottom: 12px;
}
.p3-copy {
	height: 235px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.p3-copy p {
	margin: 0 0 10px;
	font-family: 'Pretendard-Regular', sans-serif;
	font-size: 22px;
	line-height: 1.55;
	letter-spacing: -0.6px;
	color: #000;
}

.p3-copy h3 {
	margin: 0;
	font-family:'HANDotumB';
	font-size: 36px;
	line-height: 1.24;
	color: #000;
}

.p3-nav button {
	width: 48px;
	height: 48px;
	border: 1px solid #000;
	background: #fff;
	color: rgba(0, 0, 0, 0.75);
	font-size: 35px;
	cursor: pointer;
	transition: 0.25s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.p3-nav button:hover {
	background: #e86303;
	border-color: #e86303;
	color: #fff;
}

.p3-slider {
	position: absolute;
	inset: 0;
}

.p3-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1;
}

.p3-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 5;
}



.p3-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.main_circle {
	position:absolute;
	left: -47px;
	top: -47px;
	width: 131px;
	height: 131px;
	line-height: 131px;
	text-align:center;
	transition:all 400ms;
	z-index: 999;
}

.main_circle .bg {
	position: absolute;
	width: 131px;
	height: 131px;
	background-image: url('../img/main/sec03_circle_bg.png?new');
	animation: main_circle 7s linear infinite;
	left: 0px;
	top: 0px;
}

.main_circle img {
	width: unset !important;
	height: unset !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}

@keyframes main_circle {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.p3-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.p3-icon {
	width: 34px;
	margin-bottom: 14px;
}


.p3-side {
	position: absolute;
	top: 19.2%;
	width: 260px;
	height: 430px;
	overflow: hidden;
	opacity: 0.42;
	filter: grayscale(1);
	z-index: 2;
}

.p3-side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p3-side-prev {
	left: -230px;
}

.p3-side-next {
	right: -230px;
}

.p3-cut {
	position: absolute;
	right: 42px;
	bottom: 28px;
	z-index: 20;
	font-family:'Pretendard-Light';
	font-size: 17px;
	color: #000;
}






















/* =========================
   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_circle2 {
	position:fixed;
	bottom: 65px;
	right: 70px;
	width: 142px;
	height: 142px;
	line-height: 142px;
	text-align:center;
	transition:all 400ms;
	z-index: 999;
}

.main_circle2 .bg {
	position: absolute;
	width: 142px;
	height: 142px;
	background-image: url('../img/main/main_cicle2_bg.png?new');
	animation: main_circle2 7s linear infinite;
	left: -0px;
	top: -0px;
}

.main_circle2 img {
	transition:all 400ms;
	position: relative;
}

@keyframes main_circle2 {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.main_circle2 {
	filter: none;
}









/* =========================
   SECTION 04 : CONTACT
========================= */

.section-contact {
	background: #7b7168;
	overflow: hidden;
}
.section-contact::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.38);
	z-index: 2;
	pointer-events: none;
}

.contact4-bg-video {
	position: absolute;
	top: 50%;
	right: 0;
	left: auto;
	width: 115%;
	height: 112%;
	max-width: none !important;
	object-fit: cover;
	object-position: right center;
	transform: translateY(-50%);
	z-index: 1;
}

.contact4-inner {
	position: relative;
	z-index: 3;
	width: 1520px;
	height: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.35fr 0.9fr;
	align-items: center;
	gap: 90px;
	color: #fff;
}

.contact4-maps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 46px;
	align-items: start;
}

.contact4-map-card img {
	width: 100%;
	display: block;
}

.contact4-map-card p {
	margin: 18px 0 25px;
	font-family:'Pretendard-ExtraLight';
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: -0.5px;
	color: #fff;
	text-align: center;
}

.contact4-map-card p strong {
	font-family:'Pretendard-Medium';
	font-size: 23px;
}

.contact4-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 26px;
}

.contact4-links a {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	font-family:'Pretendard-Medium';
	font-size: 18px;
	color: #fff;
	text-decoration: none;
}

.contact4-links a img {
	width: 34px;
	height: 34px;
}

.contact4-copy {
	text-align: center;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.contact4-copy h2 {
	margin: 0;
	font-family: 'JosefinSans-Bold', 'Pretendard-Bold', sans-serif;
	font-size: 42px;
	line-height: 1;
	letter-spacing: 1px;
	color: #fff;
	width: 385px;
}

.contact4-copy p {
	border-bottom: 1px solid #fff;
	font-family: 'Pretendard-ExtraLight';
	font-size: 21px;
	color: #fff;
	width: 100%;
	padding: 10px;
	width: 385px;
}

.contact4-copy strong {
	display: block;
	border-bottom: 1px solid #fff;
	font-family:'HANDotumB';
	font-size: 24px;
	letter-spacing: -0.6px;
	color: #fff;
	width: 100%;
	padding: 10px;
	width: 385px;
}

.contact4-tel {
	margin-top: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	width: 385px;
}

.contact4-tel img {
	width: 22px;
}

.contact4-tel span {
	font-family:'JosefinSans-Bold';
	font-size: 34px;
	letter-spacing: 0.5px;
	color: #e86303;
}



/* 노트북 */
@media screen and (max-width: 1650px) {
	.contact4-inner {
		width: min(1180px, 86vw);
		gap: 70px;
	}

	.contact4-maps {
		gap: 36px;
	}

	.contact4-copy h2 {
		font-size: 34px;
	}

	.contact4-copy strong {
		font-size: 18px;
	}

	.contact4-tel span {
		font-size: 24px;
	}
}

/* 모바일 */
@media screen and (max-width: 768px) {
	.section-contact,
	.section-contact .fp-tableCell {
		height: var(--real-vh-px) !important;
		min-height: var(--real-vh-px) !important;
	}

	.contact4-bg-video {
		object-position: center center;
	}

	.contact4-inner {
		width: 100%;
		height: calc(var(--real-vh-px) - 68px);
		padding: 60px 40px 40px 40px;
		box-sizing: border-box;
		display: flex;
		flex-direction: column-reverse;
		justify-content: flex-end;
		gap: 26px;
	}

	.contact4-copy {
		width: 100%;
		text-align: center;
		transform: scale(0.85);
		transform-origin: top;
	}

	.contact4-copy h2 {
		font-size: 65px;
		width: 80%;
	}

	.contact4-copy p {
		margin: 10px 0 12px;
		padding-bottom: 10px;
		font-size: 28px;
		width: 80%;
	}

	.contact4-copy strong {
		width: 80%;
		padding-bottom: 30px;
		font-size: 34px;
	}

	.contact4-tel {
		margin-top: 12px;
	}

	.contact4-tel img {
		width: 32px;
	}

	.contact4-tel span {
		font-size: 40px;
	}

	.contact4-maps {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr;
		gap: 18px;
		position: relative;
		top: -40px;
	}

	.contact4-map-card img {
		width: 100%;
		max-height: 22vh;
		object-fit: contain;
	}

	.contact4-map-card p {
		font-size: 24px;
		margin: 0 auto;
		width: fit-content;
		margin-top: 15px;
		margin-bottom: 25px;
	}

	.contact4-links {
		gap: 18px;
	}

	.contact4-links a {
		font-size: 22px;
	}

	.contact4-links a img {
		width: 55px;
		height: 55px;
	}
}















@media screen and (max-width: 1800px) {
	.p3-wrap {
		transform: translateY(-50%) scale(0.9);
	}
	.p3-title {
		left: 48%;
	}
	.p3-info {
		left: 48%;
	}
}



/* 노트북 */
@media screen and (max-width: 1650px) {



	.p3-wrap {
		min-height: 650px;
	}

	.p3-main {
		width: 400px;
		height: 450px;
		left: 16.2%;
		top: 19%;
	}

	.p3-title {
		left: 45.5%;
		top: 13.5%;
		transform: scale(0.75);
		transform-origin: left;
	}

	.p3-info {
		top: 65%;
		left: 45.5%;
	}

	.p3-thumb {
		width: 200px;
		height: 150px;
	}
	.p3-copy {
		height: unset;
	}
	.p3-copy p {
		font-size: 12px;
	}

	.p3-copy h3 {
		font-size: 24px;
	}

	.p3-side {
		height: 315px;
	}




	.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;
	}
}

/* 테블릿 가로 */
@media (min-width: 1024px) and (max-width: 1400px) {
	.p3-title {
		left: 48%;
	}
	.p3-info {
		left: 48%;
	}
	.p3-wrap {
		transform-origin: bottom;
	}

}




/* =========================
   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-premium-slide,
	.section-premium-slide .fp-tableCell,
	.p3-wrap {
		height: var(--real-vh-px) !important;
		min-height: var(--real-vh-px) !important;
	}

	.p3-wrap {
		padding-top: 68px;
		box-sizing: border-box;
	}

	.p3-title {
		position: absolute;
		left: 24px;
		top: 88px;
		width: calc(100% - 48px);
	}

	.p3-title p {
		font-size: 13px;
	}

	.p3-title p::after {
		left: 140px;
		width: calc(100% - 140px);
	}

	.p3-title h2 {
		font-size: 28px;
		letter-spacing: 4px;
	}

	.p3-title h2 strong {
		font-size: 30px;
	}

	.p3-main {
		left: 24px;
		right: 24px;
		top: 245px;
		width: auto;
		height: 330px;
	}

	.p3-circle {
		left: auto;
		right: 24px;
		top: -48px;
		width: 90px;
		height: 90px;
	}

	.p3-info {
		left: 24px;
		right: 24px;
		top: 590px;
		display: block;
	}

	.p3-thumb {
		width: 120px;
		height: 88px;
		margin-bottom: 22px;
	}

	.p3-copy {
		width: 100%;
	}

	.p3-icon {
		width: 32px;
		margin-bottom: 12px;
	}

	.p3-copy p {
		font-size: 13px;
		line-height: 1.55;
	}

	.p3-copy h3 {
		font-size: 26px;
		line-height: 1.28;
	}

	.p3-nav {
		margin-top: 18px;
	}


	.p3-side {
		display: none;
	}

	.p3-cut {
		left: 24px;
		right: auto;
		bottom: 142px;
		font-size: 11px;
	}

	/* =========================
	   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;
	}























	.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;
		background-color: #000;
	}

	.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: unset;
		bottom: 50px;
		left: 20px;
	}

}



@media screen and (max-width: 768px) {
	.section-premium-slide,
	.section-premium-slide .fp-tableCell,
	.section-premium-slide .p3-wrap {
		height: var(--real-vh-px) !important;
		min-height: var(--real-vh-px) !important;
		background: #fff !important;
		overflow: hidden !important;
	}


	.section-premium-slide .p3-wrap {
		position: relative !important;
		top: auto !important;
		transform: none !important;
		width: 100% !important;
		height: 100% !important;

		padding: 40px 40px !important;
		box-sizing: border-box !important;

		display: flex !important;
		flex-direction: column !important;
		justify-content: center !important;
	}

	.section-premium-slide .p3-title {
		position: relative !important;
		left: auto !important;
		top: auto !important;
		width: 100% !important;
		margin: 0 0 14px !important;
		z-index: 20 !important;
	}

	.section-premium-slide .p3-title p {
		font-size: 30px;
		color: #777 !important;
	}

	.section-premium-slide .p3-title p::after {
		left: 45vw;
		width: 50vw;
	}

	.section-premium-slide .p3-title h2 {
		font-size: 56px;
		letter-spacing: 5px !important;
	}

	.section-premium-slide .p3-title h2 span {
	}

	.section-premium-slide .p3-title h2 strong {
		font-size: 56px;
		line-height: 1.05 !important;
		letter-spacing: 1px !important;
	}

	.section-premium-slide .p3-nav {
		margin-top: 50px !important;
		gap: 6px !important;
	}



	.section-premium-slide .p3-slider {
		position: relative !important;
		inset: auto !important;

		display: flex !important;
		flex-direction: column !important;
		justify-content: center !important;

		width: 100% !important;
		flex: 1 1 auto !important;
		min-height: 0 !important;
	}

	.main_circle2 {
		transition: opacity .35s ease, visibility .35s ease;
	}

	.main_circle2.hide {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.section-premium-slide .p3-main {
		position: relative !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		width: 100% !important;
		height: 450px !important;
		overflow: visible !important;
		background: #eee !important;
		flex: 0 0 auto !important;
	}

	.section-premium-slide .p3-main > img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}

	.section-premium-slide .main_circle {
		left: auto !important;
		right: 18px !important;
		top: -65px !important;

	}
	.section-premium-slide .p3-side {
		display: none !important;
	}



	.section-premium-slide .p3-info {
		position: relative !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		display: flex !important;
		gap: 30px !important;
		align-items: start !important;
		flex: 0 0 auto !important;
		margin-top: 30px;
	}

	.section-premium-slide .p3-thumb {
		width: 450px !important;
		height: 220px !important;
		margin: 0 !important;
		overflow: hidden !important;
	}

	.section-premium-slide .p3-thumb img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}

	.section-premium-slide .p3-copy {
		height: 220px;
	}

	.section-premium-slide .p3-icon {
		width: 40px;
	}

	.section-premium-slide .p3-copy p {
		margin: 0 0 14px !important;
		font-size: 20px;
		line-height: 1.55 !important;
		color: #777 !important;
		letter-spacing: -0.4px !important;
		word-break: keep-all !important;
	}

	.section-premium-slide .p3-copy h3 {
		margin: 0 !important;
		font-size: 38px;
		line-height: 1.25 !important;
		letter-spacing: -1px !important;
		color: #111 !important;
	}

	.section-premium-slide .p3-side {
		display: none !important;
	}

	.section-premium-slide .p3-cut {
		position: absolute !important;
		left: 40px !important;
		right: auto !important;
		bottom: 30px !important;
		font-size: 20px !important;
		color: #aaa !important;
		z-index: 30 !important;
	}
}


@media screen and (max-width: 768px) {

	.section-visual .sec01-copy {
		position: absolute;
	}

	.section-visual .sec01-copy > p,
	.section-visual .sec01-copy03-text {
		opacity: 0 !important;
	}

	.section-visual .sec01-copy::after {
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;

		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;

		pointer-events: none;
	}

	.section-visual .sec01-copy01::after {
		width: 60px;
		height: 453px;
		margin-left: -30px;
		margin-top: -226.5px;
		background-image: url("../img/m/m_sec01_copy01.png");
	}

	.section-visual .sec01-copy02::after {
		width: 82px;
		height: 437px;
		margin-left: -41px;
		margin-top: -218.5px;
		background-image: url("../img/m/m_sec01_copy02.png");
	}

	.section-visual .sec01-copy03::after {
		width: 172px;
		height: 533px;
		margin-left: -86px;
		margin-top: -266.5px;
		background-image: url("../img/m/m_sec01_copy03.png");
	}
	.sec01-brand {
		top: calc(100% + 100px);
	}
}

@media screen and (max-width: 390px) {
	.section-premium-slide .p3-wrap {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}

	.section-premium-slide .p3-title {
		margin-bottom: 10px !important;
	}

	.section-premium-slide .p3-main {
		height: min(37vh, 290px) !important;
	}

	.section-premium-slide .p3-info {
		gap: 12px !important;
		margin-top: 10px !important;
	}

	.section-premium-slide .main_circle {

		top: -36px !important;
		right: 14px !important;
	}
}


@media (min-width: 769px) and (max-width: 991px) and (orientation: portrait) {
	.main-section {
		min-height: 0 !important;
	}
}

@media screen and (max-width: 768px) {


	html.is-ios .sig-intro-copy h2 span span {
		display: inline !important;
		transform: none !important;
	}

	html.is-ios .sig-slide-copy em {
		filter: none !important;
		transform: translateZ(0);
		backface-visibility: hidden;
	}
}
@media screen and (max-width: 768px) {
	html,
	body,
	#fullpage,
	.main-wrap {
		background: #000 !important;
	}
	.sig-intro-copy h2 {
		line-height: 1.45;
		letter-spacing: -1.5px;
		word-break: keep-all;
	}

	.sig-intro-copy h2 strong {
		display: inline;
	}

	.signature-slider,
	.signature-slide {
		inset: -1px 0 !important;
		height: calc(var(--real-vh-px) + 2px) !important;
		min-height: calc(var(--real-vh-px) + 2px) !important;
	}

	.signature-slide picture,
	.signature-slide img:not(.sig-icon) {
		width: 100% !important;
		height: 100% !important;
		min-height: calc(var(--real-vh-px) + 2px) !important;
		object-fit: cover !important;
		display: block !important;
	}
}
