/* 모바일 헤더 — PC에서 숨김 */
.mobile-header {
	display: none;
}
.mobile-menu-overlay {
	display: none;
}

/* main-visual 진입 애니메이션 */
@keyframes mv-fade-up {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes mv-fade-up-center {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}
@keyframes mv-fade-down {
	from {
		opacity: 0;
		transform: translateY(-40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.mv-fade-up {
	opacity: 0;
	animation: mv-fade-up 0.8s ease-out forwards;
}
.mv-fade-down {
	opacity: 0;
	animation: mv-fade-down 0.8s ease-out 1s forwards;
}

/* 캘린더 */
.calendar-section {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	display: none !important;
}
.calendar-view {
	display: flex;
	width: 218px;
	height: 45px;
	padding: 10px 25px;
	justify-content: center;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
	border-radius: 3px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	cursor: pointer;
	box-sizing: border-box;
}
.calendar-section:hover .calendar-view {
	border-radius: 3px 3px 0 0;
	border: 1px solid rgba(255, 255, 255, 0);
	background: linear-gradient(
		270deg,
		#7850ff 9%,
		#734ffc 25%,
		#664ef6 41%,
		#504ced 59%,
		#324adf 77%,
		#0b46cd 95%,
		#0046c8 100%
	);
}
.calendar-view > p {
	color: #fff;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 17px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 22.1px */
	letter-spacing: -0.34px;
	text-transform: uppercase;
}
.calendar-title {
	margin: 0;
	font-weight: bold;
	font-size: 15px;
	color: #fff;
}
.calendar-buttons {
	position: absolute;
	top: 100%;
	left: 0;
	width: 217px;
	display: flex;
	flex-direction: column;
	background: #fff;
	padding: 15px 25px;
	justify-content: center;
	align-items: center;
	gap: 15px;
	overflow: hidden;
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
	transition:
		max-height 0.4s ease,
		padding 0.4s ease;
	z-index: 2000;
}
.calendar-section:hover .calendar-buttons {
	max-height: 200px;
	padding: 10px;
}
.cal-btn {
	position: relative;
	color: #111;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 17px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 22.1px */
	letter-spacing: -0.51px;
}
.cal-btn::after {
	content: attr(data-text);
	position: absolute;
	inset: 0;
	background: linear-gradient(
		270deg,
		#7850ff 9%,
		#734ffc 25%,
		#664ef6 41%,
		#504ced 59%,
		#324adf 77%,
		#0b46cd 95%,
		#0046c8 100%
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.cal-btn:hover::after {
	opacity: 1;
}

/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 85px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: #030303;
	padding: 0 20px;
	z-index: 1000;
	overflow: visible;
	transition: background 0.3s ease;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

header.scrolled {
	background: rgba(0, 0, 0, 0.5);
}

header .inner {
	position: relative;
	width: 1400px;
	height: 100%;
	margin: 0 auto;
}
.logo {
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translateY(-50%);
}
/* nav */
nav {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
nav ul li a {
	padding: 0 40px;
	color: #ffffff;
	transition: color 0.3s;
}
nav ul li:hover a {
	color: #7850ff;
	transition: color 0.3s;
}
/* 메인 비주얼 */
.main-visual {
	position: relative;
	background-color: #030303;
	height: calc(100vh + 85px);
}
.main-visual > img {
	position: absolute;
	bottom: 0;
	left: 50%;
	opacity: 0;
	animation: mv-fade-up-center 0.8s ease-out forwards;
}
.main-visual .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	z-index: 1;
}

/* 카운트 다운 */
.countdown-section {
	display: inline-flex;
	padding: 7px 35px 7px 7px;
	align-items: center;
	gap: 25px;
	border-radius: 195px;
	background: rgba(255, 255, 255, 0.1);
	margin-bottom: 55px;
	display: none !important;
}
.countdown-text {
	display: flex;
	width: 180px;
	height: 50px;
	padding: 15px 20px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 90px;
	background: var(--bg_black, #030303);
}
.countdown-text p {
	color: #fff;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 23.4px */
	letter-spacing: -0.36px;
}
.countdown-label {
	margin: 0 0 14px 0;
	font-size: 15px;
	font-weight: bold;
	opacity: 0.9;
}
.countdown-boxes {
	display: flex;
	align-items: center;
	gap: 25px;
}
.countdown-box {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 4px;
}
.countdown-num {
	color: #fff;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 20px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 26px */
	letter-spacing: 1.2px;
	width: 30px;
}
.countdown-unit {
	color: #fff;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 23.4px */
	letter-spacing: -0.36px;
	opacity: 0.3;
}
.title-section {
	width: 100%;
	text-align: center;
}
.complete-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 70px;
}
.title-section h1 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 35px;
}
.title-section div {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #dcff05;
	width: 646px;
	height: 51px;
	margin: 0 auto 30px;
}
.info-section {
	width: 100%;
	text-align: center;
	margin-bottom: 24px;
}
.info-section p {
	color: #fff;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
	line-height: 170%; /* 32.3px */
}
.info-section p:first-child {
	margin-bottom: 20px;
}
.info-section p span {
	color: #fff;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 21px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 27.3px */
	letter-spacing: -0.42px;
}
.time-section {
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	gap: 40px;
}
.time-section span {
	color: var(--Color-2, #dcff05);
	font-family: 'NanumSquare Neo';
	font-size: 19px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 24.7px */
	letter-spacing: -0.57px;
}
.time-section b {
	display: inline-block;
	width: 285px;
	height: 1px;
	opacity: 0.3;
	background: #fff;
}

.localtion-section {
	width: 100%;
	text-align: center;
	margin-bottom: 60px;
}
.localtion-section p {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 23.4px */
	letter-spacing: -0.54px;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.localtion-section p:first-child {
	margin-bottom: 15px;
}
.btn-apply {
	display: flex;
	width: 220px;
	height: 65px;
	padding: 12px 0;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	background: #fff;
	color: #111;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 24px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%;
	letter-spacing: -0.48px;
	overflow: hidden;
	position: relative;
}
.btn-apply span {
	display: block;
	transition:
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.35s;
}
.btn-apply .text-default {
	position: relative;
}
.btn-apply .text-hover {
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(100%);
	white-space: nowrap;
	opacity: 0;
}
.btn-apply:hover .text-default {
	transform: translateY(-100%);
	opacity: 0;
}
.btn-apply:hover .text-hover {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

/* why-section 스크롤 애니메이션 */
.why-intro,
.why-wrap {
	opacity: 0;
	transition:
		opacity 0.8s ease-out,
		transform 0.8s ease-out;
}
.why-intro {
	transform: translateY(50px);
}
.why-wrap {
	transform: translateY(-50px);
}
.why-intro.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.why-wrap.is-visible {
	opacity: 1;
	transform: translateY(0);
}
/* text-wrap 자식 요소 개별 애니메이션 */
.text-wrap > * {
	opacity: 0;
	transform: translateX(-60px);
	transition:
		opacity 0.7s ease-out,
		transform 0.7s ease-out;
}
.text-wrap > *.tw-visible {
	opacity: 1;
	transform: translateX(0);
}

/* why 섹션 */
.why-section {
	position: relative;
	height: 100vh;
	background-color: #030303;
	display: flex;
	align-items: center;
	justify-content: center;
}
@keyframes floatUpDown {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-7px);
	}
}
.why-section .scroll-down {
	position: absolute;
	bottom: 23px;
	left: 50%;
	transform: translateX(-50%);
	animation: floatUpDown 3s ease-in-out infinite;
}
.why-section p {
	color: #fff;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 21px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%; /* 37.8px */
}
.why-section p span {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 21px;
	font-style: normal;
	font-weight: 800;
	line-height: 180%;
}
.why-section .why-wrap p {
	color: #fff;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 23px;
	font-style: normal;
	font-weight: 700;
	line-height: 190%; /* 43.7px */
	letter-spacing: -0.46px;
}
.why-section .text-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
.why-section .text-wrap span {
	width: 220px;
	height: 1px;
	background-color: #fff;
	margin-left: 40px;
	margin-right: 37px;
}
.why-section .text-wrap p {
	text-align: right;
	font-family: 'NanumSquare Neo';
	font-size: 38px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 49.4px */
	letter-spacing: -0.76px;
	color: #fff;
}

.why-wrap {
	position: relative;
	width: 674px;
	height: 250px;
	text-align: center;
	margin: 75px auto 100px;
}
.why-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url('/assets/images/why-line-left.svg') center/contain no-repeat;
	width: 20px;
	height: 250px;
}
.why-wrap:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background: url('/assets/images/why-line-right.svg') center/contain no-repeat;
	width: 20px;
	height: 250px;
}

.why-stage {
	position: relative;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
}

.why-stage span {
	position: absolute;
	font-size: 72px;
	opacity: 0;
	pointer-events: none;
}

.why-stage span:nth-child(1) {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	color: #1a1a1a;
}

.why-stage span:nth-child(2) {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #4f46e5;
}

.why-stage span:nth-child(3) {
	font-family: 'Dancing Script', cursive;
	font-weight: 700;
	color: #e5464f;
}

.why-stage span.show {
	opacity: 1;
}

.why-wrap p {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	color: #666;
	line-height: 1.8;
	max-width: 500px;
	margin: 0 auto;
}

/* 준비 섹션 */
.ready-section {
	padding: 120px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ready-section .inner {
	width: 1400px;
}
.ready-section .inner > p {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 44px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.88px;
	margin-bottom: 45px;
	text-align: center;
}
.ready-section .inner > p > span {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 44px;
	font-style: normal;
	font-weight: 900;
	line-height: 130%; /* 57.2px */
	letter-spacing: -0.88px;
}
.ready-section .ready-wrap {
	height: 460px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 50px;
	transition: gap 0.4s ease;
}
.ready-section .ready-wrap > div {
	position: relative;
	width: 695px;
	height: 460px;
	flex-shrink: 0;
}
.ready-section .ready-wrap > div > div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	width: 695px;
	height: 460px;
	backdrop-filter: blur(0px);
	transition:
		transform 0.4s ease,
		backdrop-filter 0.4s ease;
	overflow: hidden;
}
.ready-section .ready-wrap > div:first-child > div {
	background: url('/assets/images/ready-bg-left.png') center/cover no-repeat;
}
.ready-section .ready-wrap > div:last-child > div {
	background: url('/assets/images/ready-bg-right.png') center/cover no-repeat;
}
.ready-section .ready-wrap > div > div::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.4s ease;
}
.ready-section .ready-wrap > div:hover > div {
	transform: translate(-50%, -50%) scale(0.971);
	backdrop-filter: blur(10px);
}
.ready-section .ready-wrap > div:hover > div::before {
	opacity: 1;
}

.ready-section .ready-wrap > div::after {
	display: none;
}
.ready-section .ready-wrap > div:hover::after {
	display: none;
}
.ready-section .ready-wrap > div .box-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.ready-section .ready-wrap > div .box-wrap svg {
	color: #fff;
	transition: color 0.4s ease;
	will-change: transform;
	transform: translateZ(0); /* GPU 레이어 분리 */
}
.ready-section .ready-wrap > div:hover .box-wrap svg {
	color: #dcff05;
}
.ready-section .ready-wrap > div .box-wrap strong {
	display: block;
	width: 100%;
	color: #fff;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 24px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 31.2px */
	letter-spacing: -0.48px;
	margin: 50px auto 20px;
}
.ready-section .ready-wrap > div .box-wrap p {
	color: #fff;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%; /* 30.6px */
	letter-spacing: -0.34px;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transform: translateY(80px);
	transition:
		opacity 0.7s,
		max-height 0.7s,
		transform 0.7s;
}
.ready-section .ready-wrap > div:hover .box-wrap p {
	opacity: 1;
	max-height: 200px;
	transform: translateY(0);
}

.ready-section .btn-apply {
	margin: 0 auto;
	background: #030303;
	color: #fff;
}

/* 탭 섹션 */
.tab-section {
	background: #f7f7f7;
}
.tab-section .inner {
	width: 1400px;
	margin: 0 auto;
	padding: 120px 0;
}
.tab-section .inner .notice {
	display: block;
	width: 100%;
	color: #777;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 20.8px */
	letter-spacing: -0.32px;
	margin-top: 10px;
}
.tab-section h2 {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 44px;
	font-style: normal;
	font-weight: 900;
	line-height: 130%; /* 57.2px */
	letter-spacing: -0.88px;
	margin-bottom: 45px;
	text-align: center;
}
.tab-description {
	display: none;
	color: #111;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%; /* 26px */
	letter-spacing: -0.6px;
	margin: 40px auto;
}
.tab-description.active {
	display: block;
}

/* 탭 버튼 영역 */
.tab-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin-bottom: 45px;
}

.tablinks {
	display: flex;
	width: 100%;
	height: 70px;
	padding: 10px 20px;
	justify-content: center;
	align-items: center;
	color: #888;
	font-family: 'NanumSquare Neo';
	font-size: 20px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 26px */
	letter-spacing: -0.4px;
	background: #ddd;
}

/* Tab1 */
.tablinks:nth-child(1):hover,
.tablinks:nth-child(1).active {
	color: #fff;
	background: #7850ff;
}

/* Tab2 */
.tablinks:nth-child(2):hover,
.tablinks:nth-child(2).active {
	color: #fff;
	background: #471cd5;
}

/* Tab3 */
.tablinks:nth-child(3):hover,
.tablinks:nth-child(3).active {
	color: #fff;
	background: #20047d;
}

/* 탭 콘텐츠 */
.tabcontent {
	display: none;
	padding: 24px 4px;
	animation: fadeIn 0.25s ease;
}

.tabcontent.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tabcontent ul li {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: stretch;
	margin-bottom: 5px;
	cursor: pointer;
}
/* 3월5일 오픈전 */
.tabcontent ul li::after {
	content: '';
	position: absolute;
	top: 30px;
	right: 35px;
	background: url('/assets/images/tab-arrow.svg') center/contain no-repeat;
	width: 19px;
	height: 20px;
}
.tabcontent ul li:last-child {
	margin-bottom: 0;
}
.tabcontent ul li .tab-time {
	display: flex;
	width: 200px;
	padding: 10px;
	justify-content: center;
	align-items: center;
	background: #030303;
}
.tabcontent ul li .tab-time > p {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 23.4px */
	letter-spacing: -0.36px;
}
.tabcontent ul li .tab-text {
	display: flex;
	flex: 1;
	padding: 30px 80px 30px 35px;
	flex-direction: column;
	align-items: flex-start;
	background: #fff;
}
.tabcontent ul li .tab-text strong {
	display: block;
	width: 100%;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 900;
	line-height: 130%; /* 23.4px */
	letter-spacing: -0.36px;
	color: #7850ff;
	margin-bottom: 20px;
}
.tabcontent ul li .tab-text p {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%; /* 23.4px */
	letter-spacing: -0.36px;
	margin-bottom: 10px;
}
.tabcontent ul li .tab-text span {
	display: block;
	width: 100%;
	color: #777;
	font-family: 'NanumSquare Neo';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 20.8px */
	letter-spacing: -0.32px;
}

.tabcontent ul li .tab-text .tab-profile {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	gap: 9px;
}

.tabcontent ul li .tab-text .tab-profile .tab-name {
	width: 100%;
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 20.8px */
	letter-spacing: -0.32px;
}

.tabcontent ul li .tab-text .tab-profile .tab-job {
	position: relative;
	padding-left: 10px;
	color: #777;
	font-family: 'NanumSquare Neo';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 20.8px */
	letter-spacing: -0.32px;
}

/* .tabcontent ul li .tab-text .tab-profile .tab-job:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 10px;
  transform: translateY(0);
  width: 1px;
  height: 15px;
  background: #111;
} */

/* 팝업 오버레이 */
.popup-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}

.popup-overlay.open {
	display: flex;
	animation: fadeInBg 0.25s ease;
}

@keyframes fadeInBg {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* 팝업 */
.popup {
	background: #fff;
	padding: 0 50px;
	width: 100%;
	height: auto;
	max-height: 558px;
	max-height: 732px;
	overflow-y: auto;
	position: relative;
	animation: slideUp 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
	box-shadow: 0 0 15px 0 rgba(170, 170, 170, 0.5);
}
.popup:before {
	content: '';
	display: block;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: #fff;
	z-index: 1;
}
.popup:after {
	content: '';
	display: block;
	position: sticky;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: #fff;
	z-index: 1;
}
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(24px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* 팝업 래퍼 */
.popup-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 1400px;
	max-width: calc(100vw - 40px);
}

/* 닫기 버튼 */
.popup-close {
	margin-bottom: 10px;
}

.popup-title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	margin-bottom: 30px;
}
.popup-title p {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 17px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%;
	letter-spacing: -0.34px;
}
.popup-title .popup-time {
	display: inline-flex;
	height: 50px;
	padding: 10px 20px;
	justify-content: center;
	align-items: center;
	background: #030303;
}
.popup-title .popup-tab-title {
	display: inline-flex;
	height: 50px;
	padding: 10px 20px;
	justify-content: center;
	align-items: center;
	background: #7850ff;

	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 17px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%;
	letter-spacing: -0.34px;
}

#popup.tab2 .popup-tab-title {
	background: #471cd5;
}

#popup.tab3 .popup-tab-title {
	background: #20047d;
}

.popup-contents {
	margin-bottom: 30px;
}
.popup-contents p {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 19px;
	font-style: normal;
	font-weight: 800;
	line-height: 170%; /* 32.3px */
	letter-spacing: -0.38px;
	margin-bottom: 15px;
}
.popup-contents span {
	color: #777;
	font-family: 'NanumSquare Neo';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%; /* 28.8px */
	letter-spacing: -0.32px;
	word-break: keep-all;
}

.popup-profile {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 211px;
	padding: 25px 30px;
	border-radius: 5px;
	gap: 30px;
	background: #f7f7f7 url('/assets/images/popup-bg.svg') right/contain no-repeat;
}

.popup-profile#popup-profile-2,
.popup-profile#popup-profile-3,
.popup-profile#popup-profile-4 {
	margin-top: 10px;
}

.popup-profile .img-wrap {
	width: 161px;
	height: 161px;
	min-width: 161px;
	border-radius: 100%;
	background-color: #d9d9d9;
	overflow: hidden;
	position: relative;
}

.popup-profile .img-wrap img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.popup-profile .profile-wrap .popup-profile-name {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 20px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 26px */
	letter-spacing: -0.4px;
	margin-bottom: 12px;
}

.popup-profile .profile-wrap .popup-profile-role {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 22.1px */
	letter-spacing: -0.34px;
}
.popup-profile .profile-wrap .popup-profile-context {
	margin-top: 10px;
	color: #666;
	font-family: 'NanumSquare Neo';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 170%; /* 27.2px */
	letter-spacing: -0.32px;
	word-break: keep-all;
}

/* 슬라이드 섹션 */
.slider-section {
	display: flex;
	justify-content: center;
	padding: 120px 0;
}

.slider-section > .inner {
	position: relative;
	width: 1400px;
}
.slider-section > .inner h2 {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 44px;
	font-style: normal;
	font-weight: 900;
	line-height: 130%; /* 57.2px */
	letter-spacing: -0.88px;
	margin-bottom: 45px;
	text-align: center;
}
.swiper {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.swiper-slide {
	display: flex;
	padding: 65px 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 35px;
	transition: background 0.3s ease;
	cursor: pointer;
	background: #f7f7f7;
}
.swiper-slide:hover {
	background: #000;
}
.swiper-slide:hover p {
	background: linear-gradient(
		270deg,
		#dcff05 0%,
		#dafb09 12%,
		#d5f216 24%,
		#cce32c 37%,
		#c0ce4a 51%,
		#b0b271 64%,
		#9d91a1 78%,
		#866ad9 92%,
		#7850ff 100%
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.swiper-slide:hover strong {
	color: #fff;
}
.swiper-slide:hover span {
	color: #999;
}

.swiper-slide .img-wrap {
	position: relative;
	width: 170px;
	height: 170px;
	border-radius: 100%;
	overflow: hidden;
	background: #ddd;
	margin: 0 auto 35px;
}
.swiper-slide .img-wrap img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-slide p {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 21px;
	font-style: normal;
	font-weight: 900;
	line-height: 130%; /* 27.3px */
	letter-spacing: -0.42px;
	margin-bottom: 35px;
	text-align: center;
}

.swiper-slide strong {
	display: block;
	width: 100%;
	color: #111;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 19px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%; /* 24.7px */
	letter-spacing: -0.38px;
	margin-bottom: 10px;
}
.swiper-slide span {
	display: block;
	width: 100%;
	color: #111;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 20.8px */
	letter-spacing: -0.32px;
}
.swiper-button-prev {
	top: calc(50% + 57px) !important;
	left: -53px !important;
	transform: translateY(-50%);
	width: 18px;
	height: 36px;
}
.swiper-button-next {
	top: calc(50% + 57px) !important;
	right: -53px !important;
	transform: translateY(-50%);
	width: 18px;
	height: 36px;
}
.swiper-pagination {
	position: absolute;
	bottom: -40px !important;
	left: 0;
	width: 100%;
	text-align: center;
}
.swiper-pagination-bullet {
	transition:
		width 1s cubic-bezier(0.25, 1, 0.5, 1),
		border-radius 1s cubic-bezier(0.25, 1, 0.5, 1),
		background 1s cubic-bezier(0.25, 1, 0.5, 1);
	transform-origin: left center;
}
.swiper-pagination-bullet-active {
	width: 42px;
	height: 8px;
	border-radius: 99px;
	background: #030303;
	animation: bulletExpand 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes bulletExpand {
	from {
		width: 8px;
	}
	to {
		width: 42px;
	}
}

/* 경품 아이템 섹션 */
.item-section {
	position: relative;
	background-color: #030303;
}
.item-section .inner {
	width: 1400px;
	margin: 0 auto;
	padding: 120px 0;
}
.item-section .inner > p {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 44px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.88px;
	margin-bottom: 45px;
	text-align: center;
}
.item-section .inner > p > span {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 44px;
	font-style: normal;
	font-weight: 900;
	line-height: 130%; /* 57.2px */
	letter-spacing: -0.88px;
}
.item-section .inner .notice {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	display: block;
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.32px;
	text-align: center;
	margin-top: 30px;
}
.item-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 10px;
}
.item-wrap:last-child {
	margin-bottom: 0;
}
.item-wrap:last-child > li:first-child {
	flex: 1;
	width: 930px;
}
.item-wrap li {
	width: 460px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #030303;
	padding: 55px 40px 40px 40px;
	height: 360px;
	position: relative;
	transform: translateZ(0);
	transition:
		border-color 0.4s ease,
		box-shadow 0.4s ease;
}
.item-wrap li::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(
		270deg,
		#dcff05 0.01%,
		#dafb09 12%,
		#d5f216 24%,
		#cce32c 37%,
		#c0ce4a 51%,
		#b0b271 64%,
		#9d91a1 78%,
		#866ad9 92%,
		#7850ff 99.99%
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.item-wrap li:hover {
	border-color: transparent;
}
.item-wrap li:hover::before {
	opacity: 1;
}
.item-wrap li .img-wrap {
	height: 107px;
	margin-bottom: 55px;
}
.item-wrap li p {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 24px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 31.2px */
	letter-spacing: -0.72px;
	margin-bottom: 15px;
}
.item-wrap li em {
	padding-left: 15px;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%; /* 23.4px */
	letter-spacing: -0.54px;
	background: linear-gradient(
		270deg,
		#dcff05 0.01%,
		#dafb09 12%,
		#d5f216 24%,
		#cce32c 37%,
		#c0ce4a 51%,
		#b0b271 64%,
		#9d91a1 78%,
		#866ad9 92%,
		#7850ff 99.99%
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.item-wrap li span {
	display: block;
	width: 100%;
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 17px;
	font-style: normal;
	font-weight: 300;
	line-height: 180%; /* 30.6px */
	letter-spacing: -0.51px;
	opacity: 0.6;
	word-break: keep-all;
}

.item-section .text-bg {
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	text-align: center;
	pointer-events: none;
	overflow: hidden;
}
.item-section .text-bg p {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 106px;
	font-style: normal;
	font-weight: 900;
	line-height: 170%; /* 180.2px */
	letter-spacing: -2.12px;
	opacity: 0.04;
	white-space: nowrap;
}

/* 맵 섹션 */
.cont,
.wrap_controllers,
.wrap_btn_zoom {
	display: none !important;
}
.root_daum_roughmap {
	width: 100% !important;
	max-width: 1400px;
}
.root_daum_roughmap .canvas {
	width: 100% !important;
}
.root_daum_roughmap .wrap_map {
	height: 600px !important; /* 원하는 높이 */
}

.map-section {
	background: #030303;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 30px;
}
.map-section .inner {
	width: 1400px;
	padding-bottom: 120px;
}
.map-section .inner h2 {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 44px;
	font-style: normal;
	font-weight: 900;
	line-height: 130%; /* 57.2px */
	letter-spacing: -0.88px;
	margin-bottom: 45px;
	text-align: center;
}
.map-section .inner .map {
	position: relative;
}
.map-contents {
	position: absolute;
	bottom: 21px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #030303;
	backdrop-filter: blur(10px);
	width: 1360px;
	height: 203px;
	z-index: 1;
	padding-left: 70px;
	padding-right: 60px;
}
.map-contents .map-info-left > div {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 31px;
}
.map-contents .map-info-left > div:last-child {
	margin-bottom: 0;
}
.map-contents .map-info-left > div span {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 20px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 26px */
	letter-spacing: -0.4px;
	padding-left: 15px;
}
.map-contents .map-info-left > div p {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 22.1px */
	letter-spacing: -0.34px;
	padding-left: 25px;
}
.map-contents .map-info-right a {
	display: flex;
	width: 190px;
	height: 52px;
	padding: 10px 30px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 99px;
	background: #fff;
	color: #030303;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 23.4px */
	letter-spacing: -0.36px;
	margin-bottom: 22px;
	margin-right: 0;
	margin-left: auto;
}

.map-contents .map-info-right p {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 20.8px */
	letter-spacing: -0.32px;
	opacity: 0.6;
}

/* YouTube 섹션 */
.youtube-section .inner {
	width: 1400px;
	margin: 0 auto;
	padding: 120px 0 84px;
}
.youtube-section h2 {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 44px;
	font-style: normal;
	font-weight: 900;
	line-height: 130%; /* 57.2px */
	letter-spacing: -0.88px;
	margin-bottom: 45px;
	text-align: center;
}
.youtube-section ul {
	display: flex;
	gap: 10px;
	list-style: none;
}

.youtube-section ul li {
	position: relative;
}
.youtube-section ul li > p {
	display: flex;
	height: 65px;
	padding: 10px;
	justify-content: center;
	align-items: center;
	background: #111;
	backdrop-filter: blur(2px);
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 20px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 26px */
	letter-spacing: -0.4px;
	gap: 10px;
}

.youtube-section ul li:hover > p {
	background: linear-gradient(
		270deg,
		#7850ff 9%,
		#734ffc 25%,
		#664ef6 41%,
		#504ced 59%,
		#324adf 77%,
		#0b46cd 95%,
		#0046c8 100%
	);
	backdrop-filter: blur(2px);
}

.youtube-item {
	flex: 1;
	cursor: pointer;
}

.youtube-thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
}

.youtube-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.2s;
}

.youtube-item:hover .youtube-thumb img {
	opacity: 0.8;
}

.youtube-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	pointer-events: none;
}

.youtube-play-btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 10px 0 10px 20px;
	border-color: transparent transparent transparent #fff;
}

.youtube-item iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	display: block;
}

/* faq 섹션 */
.faq-section {
	background: #f7f7f7;
	padding: 120px 0;
}
.faq-section .inner {
	width: 1400px;
	margin: 0 auto;
}
.faq-section h2 {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 44px;
	font-style: normal;
	font-weight: 900;
	line-height: 130%; /* 57.2px */
	letter-spacing: -0.88px;
	margin-bottom: 45px;
	text-align: center;
}

.faq-list li {
	border-bottom: 1px solid #e0e0e0;
}

.faq-question {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
	transition: color 0.2s;
}

.faq-question:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 40px;
	width: 11px;
	height: 26px;
	transform: translateY(-50%);
	background: url('/assets/images/faq-arrow.svg') no-repeat center;
}
.faq-question.active:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 40px;
	width: 11px;
	height: 26px;
	transform: translateY(-50%);
	background: url('/assets/images/faq-arrow-on.svg') no-repeat center;
}

.faq-question .faq-title {
	display: flex;
	width: 100%;
	height: 71px;
	padding: 20px 40px;
	justify-content: flex-start;
	align-items: center;
	align-self: stretch;
	border-top: 1px solid #ddd;
	background: #fff;
	gap: 15px;
}
.faq-question.active .faq-title {
	background: #000;
}

.faq-question .faq-title b {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 900;
	line-height: 130%; /* 23.4px */
}
.faq-question.active .faq-title b {
	color: #dcff05;
}
.faq-question .faq-title p {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%; /* 23.4px */
	letter-spacing: -0.36px;
}
.faq-question.active .faq-title p {
	color: #fff;
}

.faq-question:hover {
	color: #4f46e5;
}

.faq-question.active {
	color: #4f46e5;
}

.faq-question.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition:
		grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0 40px;
	overflow: hidden;
}
.faq-answer.open {
	grid-template-rows: 1fr;
	padding: 30px 40px;
}

.faq-answer > .faq-answer-inner {
	overflow: hidden;
}

.faq-answer .faq-answer-inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
}
.faq-answer .faq-answer-inner b {
	color: #666;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 900;
	line-height: 130%; /* 23.4px */
}
.faq-answer .faq-answer-inner p {
	color: #000;
	font-family: 'NanumSquare Neo';
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 23.4px */
	letter-spacing: -0.36px;
}

/* 로고 섹션 */
.js-slider-wrap {
	overflow: hidden;
	width: 100%;
	background: #fff;
	position: relative;
	margin-bottom: 35px;
}
.js-slider-wrap:last-child {
	margin-bottom: 0;
}
.js-slider-wrap::before,
.js-slider-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	width: 120px;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}
.js-slider-wrap::before {
	left: 0;
	background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.js-slider-wrap::after {
	right: 0;
	background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.js-slider-track {
	display: flex;
	will-change: transform;
	gap: 10px;
}
.js-slider-item {
	flex-shrink: 0;
	width: 216px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.js-slider-item img {
	height: 70px;
	/* filter: grayscale(100%);
  opacity: 0.6; */
	transition:
		filter 0.3s,
		opacity 0.3s;
}
.js-slider-item img:hover {
	filter: grayscale(0%);
	opacity: 1;
}
.logo-section {
	padding: 120px 0;
}
.logo-section h2 {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 44px;
	font-style: normal;
	font-weight: 900;
	line-height: 130%; /* 57.2px */
	letter-spacing: -0.88px;
	margin-bottom: 30px;
	text-align: center;
}
.logo-section p {
	color: #555;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 180%; /* 36px */
	letter-spacing: -0.6px;
	margin-bottom: 80px;
}

/* 풋터 */
footer {
	display: flex;
	width: 100%;
	height: 70px;
	justify-content: center;
	align-items: center;
	background: #000;
}
footer p {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 19.5px */
	opacity: 0.5;
}

/* 참가신청완료 */
.complete-wrap {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.complete-wrap p {
	width: 100%;
	color: #fff;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 52px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 67.6px */
	letter-spacing: -1.04px;
	text-align: center;
	margin: 0 0 52px;
}
.complete-wrap .btn-apply {
	display: flex;
	width: 300px;
	height: 65px;
	padding: 12px 0;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 50px;
	background: #fff;
}

.complete-section {
	height: 100vh;
}
.move_video {
	padding: 10px 20px;
	background: #dcff05;
	display: inline-flex;
	height: 50px;
	padding: 10px 20px;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.move_video > a {
	color: #111;
	font-family: 'NanumSquare Neo';
	font-size: 17px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 22.1px */
	letter-spacing: -0.34px;
}
.move_video.off {
	background: #ddd;
	pointer-events: none;
	cursor: default;
}
.move_video.off > a {
	color: #666;
	font-family: 'NanumSquare Neo';
	font-size: 17px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 22.1px */
	letter-spacing: -0.34px;
}

.view-session-wrap {
	display: flex;
	width: 730px;
	padding: 30px 45px;
	justify-content: space-between;
	align-items: center;
	background: rgba(255, 255, 255, 0.01);
	box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(7.5px);
}

.view-session-wrap > div {
	display: flex;
	align-items: center;
	gap: 20px;
}
.view-session-wrap > div > p {
	color: #fff;
	font-family: 'NanumSquare Neo';
	font-size: 20px;
	font-style: normal;
	font-weight: 800;
	line-height: 155%; /* 31px */
	letter-spacing: 0.2px;
}
.view-session-wrap a {
	display: flex;
	height: 65px;
	padding: 12px 50px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 50px;
	background: #fff;
}

.view-session-wrap a span {
	color: #111;
	text-align: center;
	font-family: 'NanumSquare Neo';
	font-size: 24px;
	font-style: normal;
	font-weight: 800;
	line-height: 130%; /* 31.2px */
	letter-spacing: -0.96px;
}

/* 등록마감 팝업 */
.off-order-modal .popup-wrap {
	width: auto;
	max-width: calc(100vw - 40px);
	padding: 0;
}
.off-order-modal .popup {
	padding: 0;
	max-height: 757px;
}
.off-order-modal .popup::before,
.off-order-modal .popup::after {
	display: none;
}
.off-order-modal .off-modal-img {
	width: 700px;
}
.off-order-popup {
	position: relative;
}
.off-order-popup a {
	position: absolute;
	bottom: 8.5%;
	left: 50%;
	transform: translateX(-50%);
	width: 47%;
	height: 9%;
}
