@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;800;900&family=Outfit:wght@600;800&display=swap');

@font-face {
	font-family: 'Ria';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2410-1@1.0/RiaSans-ExtraBold.woff2') format('woff2');
	font-weight: 800;
	font-display: swap;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	width: 100%;
	min-height: 100%;
	overflow-x: hidden;
}

body {
	color: #09003f;
	background: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

button {
	border: 0;
	background: transparent;
	cursor: pointer;
}

img {
	display: block;
	max-width: 100%;
	-webkit-user-drag: none;
}

ul,
ol {
	list-style: none;
}

address {
	font-style: normal;
}

.font-outfit {
	font-family: 'Outfit', 'Noto Sans KR', sans-serif;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container {
	position: relative;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	overflow: hidden;
	background: #fff;
}

.section {
	position: relative;
	width: 100%;
}

.section .inner {
	position: relative;
	width: min(750px, 100%);
	height: 100%;
	margin: 0 auto;
	text-align: center;
	z-index: 5;
}

.quick {
	position: fixed;
	top: 207px;
	right: max(112px, calc((100vw - 1920px) / 2 + 112px));
	z-index: 60;
	width: 170px;
	height: 332px;
}

.quick img {
	width: 100%;
	height: 100%;
}

.quick-link {
	position: absolute;
	left: 0;
	width: 100%;
	height: 50%;
}

.quick-link-subscribe {
	top: 0;
}

.quick-link-apply {
	bottom: 0;
}

.quick-mo {
	display: none;
	position: fixed;
	left: 50%;
	bottom: 0;
	z-index: 70;
	width: min(750px, 100vw);
	line-height: 0;
	transform: translateX(-50%);
}

.quick-mo img {
	width: 100%;
	height: auto;
}

.quick-mo-link {
	position: absolute;
	top: 0;
	width: 33.333%;
	height: 100%;
	cursor: pointer;
}

.quick-mo-subscribe {
	left: 0;
}

.quick-mo-apply {
	left: 33.333%;
}

.quick-mo-share {
	right: 0;
}

@keyframes heroLogoIn {
	0% {
		opacity: 0;
		transform: translateY(-20px) scale(.86);
	}
	65% {
		opacity: 1;
		transform: translateY(4px) scale(1.04);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes heroRibbonIn {
	0% {
		opacity: 0;
		transform: translateY(-18px) scaleX(.82);
	}
	70% {
		opacity: 1;
		transform: translateY(2px) scaleX(1.04);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scaleX(1);
	}
}

@keyframes heroTitleIn {
	0% {
		opacity: 0;
		transform: translateY(30px) scale(.74) rotate(-3deg);
	}
	72% {
		opacity: 1;
		transform: translateY(-4px) scale(1.04) rotate(1deg);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1) rotate(0);
	}
}

@keyframes heroCopyIn {
	0% {
		opacity: 0;
		transform: translateY(24px);
		filter: blur(6px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

@keyframes heroPrizeIn {
	0% {
		opacity: 0;
		transform: translate(-50%, 80px) scale(.88);
	}
	72% {
		opacity: 1;
		transform: translate(-50%, -8px) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, 0) scale(1);
	}
}

@keyframes heroPrizeFloat {
	0%, 100% {
		transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, 10px);
	}
}

@keyframes heroBubblePop {
	0% {
		opacity: 0;
		transform: scale(.2) rotate(-8deg);
	}
	70% {
		opacity: 1;
		transform: scale(1.12) rotate(2deg);
	}
	100% {
		opacity: 1;
		transform: scale(1) rotate(0);
	}
}

@keyframes heroBubbleWiggle {
	0%, 100% {
		transform: rotate(-2.5deg);
	}
	50% {
		transform: rotate(3deg);
	}
}

@keyframes heroSideLeftIn {
	0% {
		opacity: 0;
		transform: translateX(-80px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes heroSideRightIn {
	0% {
		opacity: 0;
		transform: translateX(80px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes heroCloudIn {
	0% {
		opacity: 0;
		transform: translateY(34px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeDownIn {
	0% {
		opacity: 0;
		transform: translateY(-34px);
		filter: blur(8px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

@keyframes tvPopIn {
	0% {
		opacity: 0;
		transform: translateY(26px) scale(.72) rotate(-4deg);
	}
	68% {
		opacity: 1;
		transform: translateY(-8px) scale(1.08) rotate(2deg);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1) rotate(0);
	}
}

@keyframes iconPopIn {
	0% {
		opacity: 0;
		transform: translateY(36px) scale(.7);
	}
	64% {
		opacity: 1;
		transform: translateY(-8px) scale(1.08);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes guideBoardIn {
	0% {
		opacity: 0;
		transform: perspective(900px) translateY(44px) rotateX(12deg) scale(.94);
		filter: blur(8px);
	}
	100% {
		opacity: 1;
		transform: perspective(900px) translateY(0) rotateX(0) scale(1);
		filter: blur(0);
	}
}

@keyframes headlinePopIn {
	0% {
		opacity: 0;
		transform: translateY(22px) scale(.84);
	}
	72% {
		opacity: 1;
		transform: translateY(-5px) scale(1.04);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes formRiseIn {
	0% {
		opacity: 0;
		transform: translateY(38px) scale(.97);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes rowSlideIn {
	0% {
		opacity: 0;
		transform: translateX(-28px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeUpSoftIn {
	0% {
		opacity: 0;
		transform: translateY(28px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes buttonFloatIn {
	0% {
		opacity: 0;
		transform: translateY(28px) scale(.9);
	}
	70% {
		opacity: 1;
		transform: translateY(-4px) scale(1.03);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes noticeLineIn {
	0% {
		opacity: 0;
		transform: translateX(-26px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes tvSwitchOld {
	0%, 34% {
		opacity: 1;
		transform: translateX(0) scale(1) rotate(0);
		filter: blur(0);
	}
	48%, 100% {
		opacity: 0;
		transform: translateX(-16px) scale(.9) rotate(-5deg);
		filter: blur(4px);
	}
}

@keyframes tvSwitchNew {
	0%, 38% {
		opacity: 0;
		transform: translateX(18px) scale(.88) rotate(5deg);
		filter: blur(5px);
	}
	54% {
		opacity: 1;
		transform: translateX(0) scale(1.08) rotate(-1deg);
		filter: drop-shadow(0 0 18px rgba(58, 229, 255, .7));
	}
	72%, 100% {
		opacity: 1;
		transform: translateX(0) scale(1) rotate(0);
		filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18));
	}
}

@keyframes tvSwitchScan {
	0%, 36%, 100% {
		opacity: 0;
		transform: translateX(-58%) skewX(-14deg);
	}
	44% {
		opacity: .9;
	}
	58% {
		opacity: 0;
		transform: translateX(58%) skewX(-14deg);
	}
}

@keyframes tvSwitchGlow {
	0%, 34%, 100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(.86);
	}
	52%, 68% {
		opacity: .7;
		transform: translate(-50%, -50%) scale(1.08);
	}
}

@keyframes iconFloat {
	0%, 100% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-8px) rotate(1.5deg);
	}
}

@keyframes guideFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
}

.anim-ready [data-animate] {
	opacity: 0;
	will-change: opacity, transform, filter;
}

.anim-ready [data-animate].is-inview {
	animation-duration: .82s;
	animation-timing-function: cubic-bezier(.18, .78, .28, 1);
	animation-delay: var(--ani-delay, 0s);
	animation-fill-mode: both;
}

.anim-ready [data-animate='fade-down'].is-inview {
	animation-name: fadeDownIn;
}

.anim-ready [data-animate='tv-pop'].is-inview {
	animation-name: tvPopIn;
}

.anim-ready [data-animate='icon-pop'].is-inview {
	animation-name: iconPopIn;
}

.anim-ready [data-animate='guide-board'].is-inview {
	animation-name: guideBoardIn;
	animation-duration: .96s;
}

.anim-ready [data-animate='headline-pop'].is-inview {
	animation-name: headlinePopIn;
}

.anim-ready [data-animate='form-rise'].is-inview {
	animation-name: formRiseIn;
}

.anim-ready [data-animate='row-slide'].is-inview {
	animation-name: rowSlideIn;
	animation-duration: .68s;
}

.anim-ready [data-animate='fade-up-soft'].is-inview {
	animation-name: fadeUpSoftIn;
}

.anim-ready [data-animate='button-float'].is-inview {
	animation-name: buttonFloatIn;
}

.anim-ready [data-animate='notice-line'].is-inview {
	animation-name: noticeLineIn;
	animation-duration: .64s;
}


.anim-ready .tv-list li.is-inview img {
	animation: iconFloat 3.6s ease-in-out calc(var(--ani-delay, 0s) + 1s) infinite;
}

.anim-ready .tv-list li:nth-child(even).is-inview img {
	animation-delay: calc(var(--ani-delay, 0s) + 1.28s);
}

.anim-ready .event-guide-frame[data-animate='guide-board'].is-inview {
	animation-name: guideBoardIn, guideFloat;
	animation-duration: .96s, 4.8s;
	animation-timing-function: cubic-bezier(.18, .78, .28, 1), ease-in-out;
	animation-delay: var(--ani-delay, 0s), 1.12s;
	animation-fill-mode: both, both;
	animation-iteration-count: 1, infinite;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}

	.hero-logo,
	.hero-title-sub,
	.hero-title,
	.hero-copy-wrap,
	.hero-copy,
	.hero-prize,
	.hero-bubble,
	.hero-side-left,
	.hero-side-right,
	.hero-cloud,
	.anim-ready [data-animate] {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
	}
}

.hero {
	height: 1185px;
	background: #8ae6ff url('../img/main_bg_v2.jpg') center top / cover no-repeat;
	overflow: hidden;
}

.hero-inner {
	padding-top: 72px;
}

.hero-logo {
	width: 160px;
	margin: 0 auto;
	opacity: 0;
	animation: heroLogoIn .72s cubic-bezier(.16, .84, .32, 1.22) .1s both;
}

.hero-title-sub {
	width: 456px;
	margin: 58px auto 0;
	opacity: 0;
	transform-origin: center;
	animation: heroRibbonIn .82s cubic-bezier(.16, .84, .32, 1.08) .34s both;
}

.hero-title {
	width: 530px;
	margin: 31px auto 0;
	opacity: 0;
	transform-origin: center;
	animation: heroTitleIn .9s cubic-bezier(.18, .82, .22, 1.16) .58s both;
}

.hero-copy-wrap {
	position: relative;
	width: 526px;
	margin: 65px auto 0;
	opacity: 0;
	animation: heroCopyIn .74s ease-out .86s both;
}

.hero-copy {
	width: 100%;
	margin: 0 auto;
}

.hero-date-cover,
.hero-date-overlay {
	position: absolute;
	left: 6.8%;
	bottom: 0;
	width: 86.4%;
	height: 30%;
}

.hero-date-cover {
	background: rgba(137, 230, 248);
}

.hero-date-overlay {
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 2px solid rgba(9, 0, 63, .76);
	border-bottom: 2px solid rgba(9, 0, 63, .76);
	color: #09003f;
	font-family: 'Outfit', 'Noto Sans KR', sans-serif;
	font-size: clamp(15px, 4.7vw, 27px);
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.hero-date-overlay strong {
	color: #f02b64;
	font-size: 1.12em;
}

.hero-prize {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 784px;
	height: 414px;
	transform: translateX(-50%);
	z-index: 8;
	opacity: 0;
	animation: heroPrizeIn .95s cubic-bezier(.18, .82, .24, 1.12) 1.12s both, heroPrizeFloat 4.8s ease-in-out 2.2s infinite;
}

.hero-main-object {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 784px;
	height: auto;
}

.hero-bubble {
	position: absolute;
	z-index: 9;
	opacity: 0;
	transform-origin: center bottom;
	animation: heroBubblePop .58s cubic-bezier(.2, .78, .28, 1.28) 1.72s both, heroBubbleWiggle 1.8s ease-in-out 2.4s infinite;
}

.hero-bubble-goodok {
	right: 260px;
	top: -18px;
	width: 114px;
}

.hero-bubble-goraebob {
	left: 226px;
	top: 148px;
	width: 196px;
	animation-delay: 1.88s, 2.56s;
}

.hero-side {
	position: absolute;
	bottom: 4px;
	z-index: 3;
	pointer-events: none;
}

.hero-side-left {
	left: 50%;
	margin-left: -960px;
	width: 294px;
	opacity: 0;
	animation: heroSideLeftIn .82s ease-out 1.08s both;
}

.hero-side-right {
	right: 50%;
	margin-right: -960px;
	width: 342px;
	opacity: 0;
	animation: heroSideRightIn .82s ease-out 1.16s both;
}

.hero-cloud {
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 7;
	width: 1918px;
	max-width: none;
	margin-left: -959px;
	pointer-events: none;
	opacity: 0;
	animation: heroCloudIn .85s ease-out 1.28s both;
}

.tv-section {
	height: 750px;
	background: #09003f;
}

.tv-inner {
	padding-top: 105px;
}

.tv-title {
	width: 508px;
	margin: 0 auto;
}

.tv-icon,
.tv-switch {
	width: 230px;
	margin: 0 auto 65px;
}

.tv-switch {
	position: relative;
	height: 144px;
	isolation: isolate;
}

.tv-switch::before,
.tv-switch::after {
	content: '';
	position: absolute;
	pointer-events: none;
}

.tv-switch::before {
	inset: 10% -10%;
	z-index: 3;
	width: 42%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .78), transparent);
	opacity: 0;
}

.tv-switch::after {
	left: 50%;
	top: 50%;
	z-index: -1;
	width: 118%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(45, 219, 255, .35), transparent 62%);
	opacity: 0;
	transform: translate(-50%, -50%) scale(.86);
}

.tv-switch-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: auto;
	margin: auto;
	transform-origin: center;
}

.tv-switch-old {
	opacity: 0;
}

.tv-switch-new {
	opacity: 1;
}

.anim-ready .tv-switch .tv-switch-old {
	opacity: 1;
}

.anim-ready .tv-switch .tv-switch-new {
	opacity: 0;
}

.anim-ready .tv-switch.is-inview::before {
	animation: tvSwitchScan 3.4s ease-in-out 1s infinite;
}

.anim-ready .tv-switch.is-inview::after {
	animation: tvSwitchGlow 3.4s ease-in-out 1s infinite;
}

.anim-ready .tv-switch.is-inview .tv-switch-old {
	animation: tvSwitchOld 3.4s ease-in-out 1s infinite;
}

.anim-ready .tv-switch.is-inview .tv-switch-new {
	animation: tvSwitchNew 3.4s ease-in-out 1s infinite;
}

.tv-list {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 18px;
	margin-top: 50px;
}

.tv-list li {
	flex: 0 0 auto;
	text-align: center;
}

.tv-list a {
	display: block;
	border-radius: 8px;
	transition: transform .24s ease, filter .24s ease;
}

.tv-list a:hover {
	transform: translateY(-6px);
	filter: drop-shadow(0 10px 18px rgba(0, 221, 255, .24));
}

.tv-list a:focus-visible {
	outline: 3px solid #00e5ff;
	outline-offset: 8px;
}

.tv-list img {
	height: 174px;
	width: auto;
	margin: auto;
}

.event-guide {
	height: 920px;
	background: #fff;
}

.event-guide .inner {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 92px;
}

.event-guide-frame {
	position: relative;
	width: 672px;
	max-width: 100%;
}

.event-guide-img {
	width: 100%;
}

.event-date-cover,
.event-date-overlay {
	position: absolute;
	left: 29.2%;
	width: 65.3%;
	height: 5.16%;
}

.event-date-cover {
	background: #F6F6F6;
}

.event-date-cover-period,
.event-date-overlay-period {
	top: 13.08%;
}

.event-date-cover-winner,
.event-date-overlay-winner {
	top: 21.53%;
}

.event-date-overlay {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #09003f;
	font-family: 'Outfit', 'Noto Sans KR', sans-serif;
	font-size: clamp(12px, 3.35vw, 23px);
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.event-date-overlay strong {
	color: #f02b64;
	font-size: 1.06em;
}

.event-shorts-link {
	position: absolute;
	right: 6%;
	bottom: 0;
	width: 24.1%;
	height: 6.8%;
	border-radius: 2px;
}

.event-shorts-link:focus-visible {
	outline: 3px solid #00e5ff;
	outline-offset: 4px;
}

.apply-section {
	min-height: 830px;
	padding: 87px 0 99px;
	background: #f3f1ff;
}

.apply-inner h2 {
	margin-bottom: 42px;
	color: #09003f;
	font-family: 'Ria', 'Noto Sans KR', sans-serif;
	font-size: 57px;
	font-weight: 900;
	line-height: 1;
}

#saveFrmProcess {
	width: 620px;
	margin: 0 auto;
}

.form-table {
	border: 2px solid #09003f;
	background: #fff;
	overflow: hidden;
}

.form-row {
	display: flex;
	min-height: 58px;
	border-bottom: 2px solid #09003f;
	min-width: 0;
}

.form-row:last-child {
	border-bottom: 0;
}

.form-row > label,
.form-label {
	display: flex;
	flex: 0 0 160px;
	align-items: center;
	justify-content: center;
	background: #09003f;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
}

.form-row input[type='text'],
.form-row input[type='tel'] {
	flex: 1;
	min-width: 0;
	width: 100%;
	height: 56px;
	padding: 0 16px;
	border: 0;
	outline: 0;
	color: #09003f;
	background: #fff;
	font-size: 20px;
	font-weight: 700;
}

.phone-field {
	display: flex;
	flex: 1;
	min-width: 0;
	width: 100%;
	align-items: center;
	background: #fff;
}

.form-row-check {
	min-height: 54px;
	background: #008eea;
}

.form-row-check .form-label {
	flex-basis: 342px;
	background: #008eea;
	font-size: 17px;
}

.radio-group {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	gap: 37px;
	min-width: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}

.radio-group label,
.agree label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	cursor: pointer;
	white-space: nowrap;
}

.radio-group input,
.agree input {
	appearance: none;
	position: relative;
	width: 18px;
	height: 18px;
	border: 2px solid #09003f;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
}

.radio-group input:checked::after,
.agree input:checked::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #008eea;
	transform: translate(-50%, -50%);
}

.term-zone {
	margin-top: 14px;
}

.term {
	height: 180px;
	padding: 17px 18px;
	overflow-y: auto;
	border: 2px solid #09003f;
	background: #fff;
	color: #151515;
	text-align: left;
	font-size: 14px;
	line-height: 1.55;
}

.term strong {
	display: block;
	margin-bottom: 8px;
	color: #09003f;
	font-weight: 900;
}

.term p + p {
	margin-top: 10px;
}

.agree {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 17px;
	color: #09003f;
	font-size: 16px;
	font-weight: 700;
}

.agree span,
.agree label {
	font-weight: 700;
}

.form-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 36px;
}

.image-button {
	display: block;
	width: 294px;
	height: 66px;
	border: 0;
	line-height: 0;
}

.submit-button {
	width: 292px;
}

.image-button img {
	width: 100%;
	height: 100%;
}

.submit-button:disabled {
	cursor: wait;
	filter: grayscale(.25);
	opacity: .65;
}

body.survey-modal-open {
	overflow: hidden;
}

.survey-modal {
	display: flex;
	position: fixed;
	inset: 0;
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.survey-modal[hidden] {
	display: none;
}

.survey-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 0, 63, .76);
	opacity: 0;
	transition: opacity .2s ease;
}

.survey-modal-dialog {
	position: relative;
	z-index: 1;
	width: min(480px, 100%);
	padding: 48px 40px 34px;
	border: 3px solid #09003f;
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 20px 55px rgba(9, 0, 63, .35);
	text-align: center;
	opacity: 0;
	transform: translateY(18px) scale(.96);
	transition: opacity .2s ease, transform .2s ease;
}

.survey-modal.is-open .survey-modal-backdrop,
.survey-modal.is-open .survey-modal-dialog {
	opacity: 1;
}

.survey-modal.is-open .survey-modal-dialog {
	transform: translateY(0) scale(1);
}

.survey-modal-close {
	position: absolute;
	top: 13px;
	right: 17px;
	width: 38px;
	height: 38px;
	color: #09003f;
	font-size: 34px;
	font-weight: 400;
	line-height: 34px;
}

.survey-modal-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 104px;
	height: 36px;
	padding: 0 18px;
	border-radius: 999px;
	background: #f02b64;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
}

.survey-modal-dialog h2 {
	margin-top: 18px;
	color: #09003f;
	font-family: 'Ria', 'Noto Sans KR', sans-serif;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.3;
	word-break: keep-all;
}

.survey-modal-dialog p {
	margin-top: 14px;
	color: #44405c;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.65;
	word-break: keep-all;
}

.survey-modal-primary,
.survey-modal-secondary {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.survey-modal-primary {
	height: 60px;
	margin-top: 28px;
	border: 2px solid #09003f;
	border-radius: 999px;
	background: #008eea;
	box-shadow: 0 5px 0 #09003f;
	color: #fff;
	font-size: 19px;
	font-weight: 900;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.survey-modal-primary:hover {
	background: #007dd0;
	transform: translateY(2px);
	box-shadow: 0 3px 0 #09003f;
}

.survey-modal-secondary {
	height: 42px;
	margin-top: 15px;
	color: #6c687d;
	font-size: 15px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.survey-modal-close:focus-visible,
.survey-modal-primary:focus-visible,
.survey-modal-secondary:focus-visible {
	outline: 3px solid #f02b64;
	outline-offset: 3px;
}

.notice-section {
	height: 290px;
	padding-top: 81px;
	background: #09003f;
	color: #fff;
}

.notice-section .inner {
	height: auto;
	text-align: left;
}

.notice-section p {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.72;
}

.footer {
	min-height: 470px;
	padding: 98px 0 100px;
	background: #1f1f1f;
	color: #fff;
}

.footer-inner {
	height: auto;
}

.sns-wrap {
	position: relative;
	width: 618px;
	height: 82px;
	margin: 0 auto;
}

.sns-wrap img {
	width: 100%;
	height: 100%;
}

.sns-wrap a {
	position: absolute;
	top: 0;
	width: 16.666%;
	height: 100%;
}

.sns-wrap a:nth-of-type(1) { left: 0; }
.sns-wrap a:nth-of-type(2) { left: 16.666%; }
.sns-wrap a:nth-of-type(3) { left: 33.333%; }
.sns-wrap a:nth-of-type(4) { left: 50%; }
.sns-wrap a:nth-of-type(5) { left: 66.666%; }
.sns-wrap a:nth-of-type(6) { left: 83.333%; }

.footer-logo {
	width: 160px;
	margin: 94px auto 0;
	filter: brightness(1.55);
}

.footer address {
	margin-top: 22px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
}

@media (max-width: 1600px) {
	.quick {
		right: 32px;
	}
}

@media (min-width: 992px) {
	.quick-mo {
		display: none !important;
		visibility: hidden;
	}
}

@media (max-width: 991px) {
	.quick-pc {
		display: none !important;
	}

	.quick-mo {
		display: block !important;
		visibility: visible;
	}

	.notice-section {
		padding-bottom: 150px;
	}
}

@media (max-width: 750px) {
	.section .inner {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}

	.hero {
		height: calc(118vw + 250px);
	}

	.hero-inner {
		padding-top: 30px;
	}

	.hero-logo {
		width: 118px;
	}

	.hero-title-sub {
		width: min(456px, 68%);
		margin-top: 34px;
	}

	.hero-title {
		width: min(530px, 82%);
		margin-top: 20px;
	}

	.hero-copy-wrap {
		width: min(526px, 86%);
		margin-top: 34px;
	}

	.hero-date-cover,
	.hero-date-overlay {
		left: 3%;
		width: 94%;
	}

	.hero-date-overlay {
		font-size: clamp(10px, 3.7vw, 22px);
	}

	.hero-prize {
		width: min(620px, 118vw);
		height: auto;
		aspect-ratio: 784 / 414;
		bottom: 0;
	}

	.hero-main-object {
		width: 100%;
	}

	.hero-bubble-goodok {
		right: 33.5%;
		top: -2%;
		width: 14.2%;
	}

	.hero-bubble-goraebob {
		left: 28%;
		top: 36%;
		width: 24.8%;
	}

	.tv-section {
		height: 820px;
	}

	.tv-inner {
		padding-top: 66px;
	}

	.tv-title {
		width: min(508px, 82%);
	}

	.tv-icon,
	.tv-switch {
		width: 176px;
		margin-top: 42px;
	}

	.tv-switch {
		height: 110px;
		margin-top: 0;
		margin-bottom: 42px;
	}

	.tv-list {
		display: grid;
		grid-template-columns: repeat(2, 150px);
		justify-content: center;
		gap: 18px 26px;
		margin-top: 34px;
	}

	.tv-list li:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		justify-self: center;
	}

	.tv-list img {
		height: 132px;
	}

	.event-guide {
		height: auto;
		padding-bottom: 72px;
	}

	.event-guide .inner {
		padding-top: 72px;
	}

	.event-guide-frame {
		width: min(672px, 100%);
	}

	.event-date-overlay {
		font-size: clamp(9px, 3vw, 21px);
	}

	.apply-section {
		min-height: auto;
		padding: 68px 0 78px;
	}

	.apply-inner h2 {
		margin-bottom: 32px;
		font-size: 42px;
	}

	#saveFrmProcess {
		width: min(580px, 100%);
	}

	.form-row {
		min-height: 52px;
	}

	.form-row > label,
	.form-label {
		flex-basis: 118px;
		font-size: 16px;
	}

	.form-row input[type='text'],
	.form-row input[type='tel'] {
		height: 50px;
		font-size: 16px;
		padding: 0 12px;
	}

	.form-row-check {
		display: block;
		padding: 0 12px 10px;
	}

	.form-row-check .form-label {
		height: 42px;
		background: #008eea;
		font-size: 15px;
	}

	.radio-group {
		height: 32px;
		gap: 28px;
		font-size: 15px;
	}

	.term {
		height: 150px;
		font-size: 13px;
	}

	.agree {
		flex-wrap: wrap;
		gap: 10px 16px;
		font-size: 14px;
	}

	.agree span {
		flex: 0 0 100%;
	}

	.form-buttons {
		gap: 10px;
		margin-top: 30px;
	}

	.image-button,
	.submit-button {
		width: min(294px, calc((100vw - 50px) / 2));
		height: auto;
	}

	.survey-modal-dialog {
		padding: 43px 24px 28px;
		border-radius: 22px;
	}

	.survey-modal-dialog h2 {
		font-size: 25px;
	}

	.survey-modal-dialog p {
		font-size: 15px;
	}

	.survey-modal-primary {
		height: 56px;
		font-size: 17px;
	}

	.notice-section {
		height: auto;
		padding: 56px 20px 132px;
	}

	.notice-section p {
		font-size: 13px;
		line-height: 1.65;
		word-break: keep-all;
	}

	.footer {
		min-height: auto;
		padding: 66px 0 132px;
	}

	.sns-wrap {
		width: min(618px, calc(100vw - 40px));
		height: auto;
	}

	.footer-logo {
		margin-top: 58px;
	}

}

@media (max-width: 430px) {
	.hero {
		height: calc(116vw + 230px);
	}

	.hero-prize {
		width: 116vw;
	}

	.hero-bubble-goodok {
		right: 33%;
		width: 14%;
	}

	.hero-bubble-goraebob {
		left: 26%;
		top: 35.5%;
		width: 25.2%;
	}

	.tv-list {
		grid-template-columns: repeat(2, 132px);
		gap: 14px 18px;
	}

	.tv-list img {
		height: 116px;
	}

	.tv-section {
		height: 760px;
	}

	.form-row > label,
	.form-label {
		flex-basis: 90px;
	}

	.radio-group {
		gap: 18px;
	}
}
