::-webkit-scrollbar {
	background-color: transparent;
	width: 0px;
}

html {
	scroll-behavior: smooth;
}

body {
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

img {
	-webkit-user-select: none;
}

.mfloating {
	display: none;
}

/* 플로팅 버튼 */
.floating {
	position: fixed;
	z-index: 99997 !important;
	right: 7%;
	top: 350px;
	cursor: pointer;
}
.floating_item_box {
	position: fixed;
	top: 404px;
	width: 151px;
	height: 89px;
	cursor: pointer;
	overflow: hidden;
}
.floating_item {
	position: absolute;
	top: 16px;
	margin-left: 34px;
	cursor: pointer;
	animation: floating_item ease-in-out 2s infinite;
}
@keyframes floating_item {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	60% {
		opacity: 1;
		transform: translateY(0);
	}
	75% {
		opacity: 0;
		transform: translateY(10px);
	}
	80% {
		opacity: 1;
		transform: translateY(-14px);
	}
	88% {
		opacity: 1;
		transform: translateY(2px);
	}
	93% {
		opacity: 1;
		transform: translateY(-8px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

.floating {
	display: inline-block;
}
.m_floating {
	display: none;
}

.bg01 {
	background-image: url(../img/bg01.jpg);
	height: 1256px;
	position: relative;
	margin: auto;
	background-position: top;
	background-repeat: no-repeat;
	align-items: center;
	text-align: center;
	max-width: 100%;
	z-index: 3;
	width: 100vw;
	background-position-y: bottom;
	background-size: cover;
}

.logo {
	position: absolute;
	width: 100%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	top: 0;
	background-color: #fff;
	padding: 25px;
	z-index: 2;
}

.sec01_box01 {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	top: 70px;
	z-index: 1;
}

.sec01_title {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	top: 90px;
}

.sec01_copy {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	top: 120px;
}

.sec01_box02 {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	top: 145px;
	z-index: 1;
}

.sec01_obj01 {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 145px;
	z-index: 1;
}

/* =========================================================
   SECTION 01 캐릭터 일렬 배치
   - 전체 세로 위치: --characters-top
   - 캐릭터 사이 간격: --characters-gap
========================================================= */
.sec01_characters {
	--characters-top: 900px !important;
	--characters-gap: 18px;

	position: absolute;
	left: 50%;
	top: var(--characters-top);
	transform: translateX(-50%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: var(--characters-gap);
	width: max-content;
	z-index: 3;
}

.sec01_character {
	position: relative;
	flex: 0 0 auto;
}

.sec01_character img {
	display: block;
	max-width: none;
	height: auto;
}

/* =========================================================
   SECTION 01 이미지별 크기 및 위치 조절

   X 값
   - 양수: 오른쪽 이동
   - 음수: 왼쪽 이동

   Y 값
   - 양수: 아래쪽 이동
   - 음수: 위쪽 이동
========================================================= */

/* 캐릭터 01 */
.sec01_char01 {
	--char01-x: 296px;
	--char01-y: 0px;
	left: var(--char01-x);
	top: var(--char01-y);
}

.sec01_char01 img {
	width: 256px;
}

/* 캐릭터 02
   - 슬롯의 가로폭은 고정
   - 이미지는 absolute로 일반 레이아웃 계산에서 제외
   - 아래 img의 width를 변경해도 다른 캐릭터 위치는 움직이지 않음 */
.sec01_char02 {
	--char02-slot-width: 386px;

	position: relative;
	flex: 0 0 var(--char02-slot-width) !important;
	width: var(--char02-slot-width) !important;
	min-width: var(--char02-slot-width) !important;
	max-width: var(--char02-slot-width) !important;
	height: 0;
	align-self: flex-end;
	overflow: visible;
}

.sec01_char02 img {
	display: block;
	width: 375px;
	max-width: none !important;
	height: auto;
	position: absolute;
	left: 204px;
	bottom: -5px;
	top: auto;
	/* transform: translateX(-50%); */
}


/* 캐릭터 03 몸 */
.sec01_char03 img {
	width: 254px;
}

/* 캐릭터 04 몸 */
.sec01_char04 img {
	width: 344px;
}

/* 구기 */
.sec01_gugi img {
	width: 260px;
}

/* 선물상자 */
.sec01_gift img {
	display: block;
	width: 502px;
	height: auto;
	max-width: none;
}

/* 핑거 */
.sec01_gift_finger img {
	display: block;
	width: 26px;
	height: auto;
	max-width: none;
}

/* =========================================================
   선물상자 + 구기
========================================================= */
.sec01_gift_wrap {
	/* 구기가 올라가는 높이 */
	--gugi-pop-y: -135px;

	position: relative;
	overflow: visible;
	isolation: isolate;
}

/* =========================================================
   선물상자 + 핑거 그룹
   이 그룹의 left/top을 변경하면 두 이미지가 함께 이동
========================================================= */
.sec01_gift_group {
	position: relative;
	left: -45px;
	top: -16px;
	width: 498px;
	z-index: 3;
	flex: 0 0 auto;
}
/* 선물상자 */
.sec01_gift_wrap .sec01_gift {
	position: relative;
	left: 0;
	top: 139px;
	z-index: 2;
	animation: none;
	transform: none;
}

.sec01_gift_finger {
	position: absolute;

	/*
	기존 위치 유지:
	gift_group left -45px + finger left 186px = 141px
	gift_group top -16px + finger top 149px = 133px
	*/
	left: 140px;
	top: 90px;

	/* 평소에는 꾸기와 선물상자 뒤 */
	z-index: 1;

	pointer-events: none;

	/* 꾸기 애니메이션과 동일한 2.8초 */
	animation: sec01FingerZIndex 3s step-end infinite;
}


/* 구기는 선물상자 뒤에 배치 */
.sec01_gift_wrap .sec01_gugi {
	position: absolute;
	left: 220px;
	top: 13px;
	z-index: 2;
	pointer-events: none;
}

.sec01_gugi_motion {
	transform-origin: 50% 100%;
	will-change: transform;
	animation: sec01GugiShakeAndPop 3.2s
	cubic-bezier(.22, 1, .36, 1) infinite;
}

/* 기존 상승 모션 유지 + 내려온 뒤 다음 흔들림까지의 대기시간만 단축 */
@keyframes sec01GugiShakeAndPop {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(0deg);
	}

	2% {
		transform: translate3d(-3px, 0, 0) rotate(-2deg);
	}

	5% {
		transform: translate3d(3px, 0, 0) rotate(2deg);
	}

	8% {
		transform: translate3d(-2px, 0, 0) rotate(-1.5deg);
	}

	11% {
		transform: translate3d(2px, 0, 0) rotate(1.5deg);
	}

	14%,
	18% {
		transform: translate3d(0, 0, 0) rotate(0deg);
	}

	32%,
	62% {
		transform: translate3d(0, -135px, 0) rotate(0deg);
	}

	76%,
	100% {
		transform: translate3d(0, 0, 0) rotate(0deg);
	}
}


/* 꾸기가 올라가는 순간 앞으로 나오고,
   다시 내려가기 직전에 뒤로 들어감 */
@keyframes sec01FingerZIndex {
	0%,
	18% {
		z-index: 1;
	}

	19%,
	62% {
		z-index: 4;
	}

	63%,
	100% {
		z-index: 1;
	}
}

/* =========================================================
   캐릭터 03 몸/팔 개별 위치 조절
   --char03-arm-z-index: 2 = 몸 앞, 0 = 몸 뒤
========================================================= */

.sec01_char03 {
	position: relative;
	left: -163px;
	top: -18px;
}

/* =========================================================
   캐릭터 04 몸/팔 개별 위치 조절
   --char04-arm-z-index: 2 = 몸 앞, 0 = 몸 뒤
========================================================= */
.sec01_char04_wrap {
	position: relative;
}

.sec01_char04 {
	position: relative;
	left: -287px;
	top: 9px;
	z-index: 1;
}

.bg02 {
	background-image: url(../img/bg02.jpg);
	height: 1438px;
	position: relative;
	margin: auto;
	background-position: top;
	background-repeat: no-repeat;
	align-items: center;
	text-align: center;
	max-width: 100%;
	z-index: 1;
	width: 100vw;
	background-position-y: bottom;
	background-size: cover;
}

.sec02_copy01 {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	top: 170px;
	z-index: 1;
}

.sec02_video {
	position: relative;
	/* left: 50%; */
	/* transform: translateX(-50%); */
	top: 185px;
	z-index: 1;
	display: inline-block;
	width: max-content;
	line-height: 0;
}

.sec02_video > img {
	display: block;
	width: auto;
	max-width: none;
	height: auto;
}

.sec02_video_iframe {
	position: absolute;
	left: 50%;
	top: calc(50% + 14px);
	transform: translate(-50%, -50%);
	width: 625px;
	height: 352px;
	border: 0;
	z-index: 2;
}

.sec02_content01 {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	top: 210px;
	z-index: 1;
}





.bg03 {
	/*background-image: url(../img/bg03.jpg);*/
	background-color: #D2F2FF;
	border-top: 2px solid #333215;
	height: 1942px;
	position: relative;
	margin: auto;
	background-position: top;
	background-repeat: no-repeat;
	align-items: center;
	text-align: center;
	max-width: 100%;
	z-index: 0;
	width: 100vw;
	background-position-y: bottom;
	background-size: cover;
}

/* =========================================================
   BG03 하단 게임 캐릭터
========================================================= */
.bg03_game_char {
	position: absolute;
	bottom: -35px;
	z-index: 1;
	pointer-events: none;
}

.bg03_game_char img {
	display: block;
	width: auto !important;
	max-width: none !important;
	height: auto !important;
	transform: none !important;
}

.bg03_game_char01 {
	left: 450px;
}

.bg03_game_char02 {
	right: 450px;
}

.sec02_content02 {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	top: 170px;
	z-index: 1;
}

.game_title {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	top: 250px;
	z-index: 1;
}


/* =========================================================
   타겟 게임
========================================================= */
.target_game {
	position: relative;
	left: 50%;
	top: 305px;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: max-content;
	z-index: 2;
}

.target_game_targets {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: max-content;
}

.target_game_target {
	position: relative;
	flex: 0 0 auto;
	perspective: 760px;
	overflow: visible;
}

.target_game_target_inner {
	position: relative;
	display: grid;
	place-items: center;
	transform: none;
	transform-style: preserve-3d;
	transform-origin: 50% 72%;
}

/* 화살이 꽂히는 순간 이미지 비율을 유지한 채 부드럽게 작아졌다가 복귀 */
.target_game_target.is-hit-impact .target_game_target_inner {
	will-change: transform;
	animation: targetGameHitImpact 0.36s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes targetGameHitImpact {
	0% {
		transform: rotateY(0deg) scale(1);
	}

	30% {
		transform: rotateY(0deg) scale(0.93);
	}

	62% {
		transform: rotateY(0deg) scale(0.965);
	}

	82% {
		transform: rotateY(0deg) scale(0.99);
	}

	100% {
		transform: rotateY(0deg) scale(1);
	}
}

/* 화살 적중 후 기본 좌우 플립 */
.target_game_target.is-complete .target_game_target_inner {
	will-change: transform;
	animation: targetGameBasicFlip 0.56s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes targetGameBasicFlip {
	0% {
		transform: rotateY(0deg);
	}

	100% {
		transform: rotateY(180deg);
	}
}

.target_game_target_front,
.target_game_target_back {
	position: relative;
	left: auto;
	top: auto;
	grid-area: 1 / 1;
	display: block;
	height: auto !important;
	image-rendering: auto;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform-origin: 50% 50%;
}

/* 기본 타겟은 PC에서 원본 픽셀 크기 그대로 표시
   평상시 transform/scale을 사용하지 않아 원본 화질을 유지 */
.target_game_target_front {
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	transform: none;
}

.target_game_target_back {
	width: 269px !important;
	height: auto !important;
	transform: rotateY(180deg);
}

/* 기본 플립 완료 상태 */
.target_game_target.is-flip-finished .target_game_target_inner {
	animation: none;
	transform: rotateY(180deg);
}

.target_game_target.is-flip-finished .target_game_target_front {
	opacity: 0;
	visibility: hidden;
}

.target_game_target.is-flip-finished .target_game_target_back {
	width: 269px !important;
	height: auto !important;
}

.target_game_gauge {
	position: relative;
	width: 675px;
	margin-top: 45px;
	overflow: visible;
}

.target_game_gauge_bar {
	display: block;
	width: auto;
	max-width: none;
	height: auto;
}

/* 실패 시 게이지 영역만 짧고 가볍게 좌우 진동 */
.target_game_gauge.is-miss-shake {
	animation: targetGameGaugeMissShake 0.4s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes targetGameGaugeMissShake {
	0%, 100% {
		transform: translateX(0);
	}

	18% {
		transform: translateX(-7px);
	}

	36% {
		transform: translateX(6px);
	}

	54% {
		transform: translateX(-4px);
	}

	72% {
		transform: translateX(3px);
	}

	88% {
		transform: translateX(-1px);
	}
}

.target_game_bow {
	position: absolute;
	left: 0;
	top: 50%;
	display: block;
	width: auto;
	max-width: none;
	height: auto;
	z-index: 2;
	will-change: transform;
	pointer-events: none;
}

.target_game_bow.is-hidden {
	opacity: 0;
}

.target_game_stop {
	display: block;
	margin: 28px 0 0;
	padding: 0;
	margin-top: 60px !important;
	border: 0;
	outline: 0;
	background: transparent;
	cursor: pointer;
	transform: translateY(0) scale(1);
	transition: transform 0.09s ease;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.target_game_stop img {
	display: block;
	width: auto;
	max-width: none;
	height: auto;
}

.target_game_stop.is-pressed,
.target_game_stop:active {
	transform: translateY(5px) scale(0.97);
}

.target_game_stop:disabled {
	cursor: default;
}

.target_game_flying_bow {
	position: fixed;
	display: block;
	max-width: none !important;
	height: auto;
	z-index: 999999999;
	pointer-events: none;
	will-change: left, top, transform, opacity;
	transform-origin: 50% 0%;
	transform-style: preserve-3d;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	filter: drop-shadow(0 14px 10px rgba(0, 0, 0, 0.28));
}



/* =========================================================
   이벤트 안내사항 + SNS
========================================================= */
.event_notice_section {
	position: relative;
	z-index: 2;
	width: 100vw;
	height: 670px;
	box-sizing: border-box;
	background-color: #2b3971;
	padding: 42px 20px 30px;
	overflow: hidden;
}

.event_notice_inner {
	width: 100%;
	max-width: 1180px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 34px;
	box-sizing: border-box;
}

.event_notice_text {
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
	align-self: center;
	color: #ffffff;
	font-family: 'Pretendard', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.58;
	letter-spacing: -0.02em;
	text-align: left;
}

.event_notice_text p {
	margin: 0;
	padding: 0;
}

.event_sns {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	line-height: 0;
}

.event_sns img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 112px;
	height: auto;
}


.notice {
	display: flex;
	justify-content: center;
	padding: 50px;
}
.sns_con {
	display: flex;
	justify-content: center;
	padding: 10px 0px 50px 10px;
}

.footer_con {
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	padding: 50px;
}

.apply_popup {
	max-width: 640px;
	width: 94%;
	display: none;
	text-align: center;
	left: 50% !important;
	transform: translateX(-50%) !important;
	padding-top: 20px;
	box-sizing: border-box;
}

.apply_popup .title {
	background-color: #243197;
	padding: 72px 0 0;
	color: #fff;
	font-family: 'Pretendard', 'NotoSansKR-Regular', sans-serif;
}

.apply_popup .title img {
	display: block;
	width: 200px;
	max-width: none;
	height: auto;
	margin: 0 auto;
}

.board_write_form {
	width: 100%;
	padding: 30px 38px 42px !important;
	background-color: #243197;
	box-sizing: border-box;
}

.board_write_form_table {
	position: relative;
	z-index: 5;
	width: 100%;
	border: 0;
	border-collapse: separate;
	border-spacing: 0 8px;
}

.id_notice {
	font-size: 15px;
	margin-top: 10px;
}

.board_write_form .form_field {
	font-size: 15px;
}

.board_write_form .form_field th {
	width: 170px;
	color: #111;
	text-align: center;
	padding: 9px 14px;
	vertical-align: middle;
	font-family: 'SDSmileysans', 'Pretendard', 'NotoSansKR-Bold', sans-serif;
	font-weight: 700;
	border: 2px solid #000;
	border-right: 0;
	box-sizing: border-box;
}

.board_write_form .form_field_name th {
	background-color: #61d5ff;
}

.board_write_form .form_field_tel th {
	background-color: #b2ea61;
}

input::placeholder {
	font-size: 16px;
	font-family: 'SDSmileysans', 'Pretendard', 'NotoSansKR-Regular', sans-serif;
}

.board_write_form td.field {
	width: auto;
	font-size: 18px;
	padding: 8px 12px;
	text-align: left;
	background-color: #fff;
	vertical-align: middle;
	border: 2px solid #000;
	border-left: 0;
	box-sizing: border-box;
}

.board_write_form .form_field_tel td.field {
	display: flex;
	align-items: center;
	gap: 9px;
}

.phone_select_wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-family: 'SDSmileysans', 'Pretendard', 'NotoSansKR-Regular', sans-serif;
}

.phone_select_wrap::after {
	content: '▼';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-family: 'BMJUA', 'JalnanGothic', 'GmarketSansMedium', 'SDSmileysans', 'Pretendard', sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	color: #111;
	pointer-events: none;
}

.board_write_form .buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
}

.board_write_form .buttons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 220px;
	height: 62px;
	line-height: 1;
	background-color: #a4a4a4;
	color: #000;
	cursor: pointer;
	border: 2px solid #171b27;
	font-family: 'SDSmileysans', 'Pretendard', 'NotoSansKR-Bold', sans-serif;
	letter-spacing: -1px;
	box-sizing: border-box;
}

.board_write_form .buttons a.confirm {
	background-color: #b2ea61;
	color: #000;
}

.board_write_form .buttons a.cancle {
	background-color: #a4a4a4;
}

.board_write_form .buttons a img {
	display: block;
	max-width: 82%;
	max-height: 34px;
	width: auto;
	height: auto;
}

.board_write_form .form-group:nth-of-type(2) {
	margin: 5px 0;
}

.w120 {
	width: 112px;
}

.w200 {
	width: 100%;
}

.w500 {
	width: 400px;
}

.board_write_form input[type='tel'] {
	width: 100px;
}

.board_write_form input[type='text'],
.board_write_form input[type='tel'],
.board_write_form select {
	height: 38px;
	font-size: 18px;
	font-family: 'BMJUA', 'JalnanGothic', 'GmarketSansMedium', 'SDSmileysans', 'Pretendard', sans-serif !important;
	font-weight: 700;
	letter-spacing: 0;
	border: 0 !important;
	outline: 0;
	box-shadow: none;
	box-sizing: border-box;
	background-color: #fff;
	color: #111;
}

.board_write_form select {
	-webkit-appearance: none;
	appearance: none;
	padding: 0 32px 0 8px;
	background-image: none;
	cursor: pointer;
}

.hypen {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'SDSmileysans', 'Pretendard', 'NotoSansKR-Regular', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #111;
}

.pop_content_wrap {
	position: relative;
	z-index: 20;
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 22px auto 10px;
	pointer-events: auto;
}

.pop_content_wrap img {
	display: block;
	width: 499px;
	max-width: 100%;
	height: auto;
	pointer-events: auto;
}

.pop_content_wrap area {
	cursor: pointer;
}

.apply-form {
	padding: 0 0 52px;
}

.apply-form form {
	max-width: 564px;
	margin: auto;
}

.agree_wrap {
	margin-top: 16px;
}

.agree_box {
	width: 100%;
	height: 180px;
	overflow-y: scroll;
	border: 2px solid #000;
	padding: 16px;
	box-sizing: border-box;
	background: #fff;
	color: #333;
	font-size: 14px;
	line-height: 1.55;
	text-align: left;
	font-family: 'Pretendard', 'NotoSansKR-Regular', sans-serif;
	margin-top: 0;
	scrollbar-width: auto;
	scrollbar-color: #243197 #d9d9d9;
}

.agree_box::-webkit-scrollbar {
	width: 17px;
}

.agree_box::-webkit-scrollbar-track {
	background: #d9d9d9;
	border-left: 1px solid #000;
}

.agree_box::-webkit-scrollbar-thumb {
	background: #243197;
	border: 2px solid #d9d9d9;
	border-radius: 8px;
}

.agree_box .h5 {
	display: inline-block;
	font-size: 16px;
	margin-bottom: 8px;
	font-family: 'Pretendard', 'NotoSansKR-Bold', sans-serif;
	font-weight: 700;
}

.agree_box .h6 {
	margin-top: 9px;
	font-family: 'Pretendard', 'NotoSansKR-Bold', sans-serif;
	font-weight: 700;
}


.agree_radio {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 17px;
	text-align: center;
	color: #fff;
	margin: 17px 0 20px;
	font-family: 'Pretendard', 'NotoSansKR-Medium', sans-serif;
}

.agree_radio .block {
	display: block;
	margin-bottom: 10px;
}

.agree_radio .m_block {
	margin-right: 8px;
}

.agree_radio > span:not(.m_block) {
	margin-left: 9px;
}

.agree_radio label {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	cursor: pointer;
	color: #fff;
	font-family: 'Pretendard', 'NotoSansKR-Medium', sans-serif;
}

.agree_radio input[type='radio'] {
	-webkit-appearance: none;
	appearance: none;
	width: 22px !important;
	height: 22px !important;
	margin: 0;
	border: 1px solid #000;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: inset 0 0 0 0 #000;
	vertical-align: middle;
	box-sizing: border-box;
	cursor: pointer;
	transition: box-shadow 0.46s cubic-bezier(.22, 1, .36, 1), border-color 0.46s ease;
}

.agree_radio input[type='radio']:checked {
	border: 1px solid #FCC600;
	background-color: #fff;
	box-shadow: inset 0 0 0 5px #FCC600;
}

/* 모바일 */
@media screen and (max-width: 768px) {
	.floating {
		display: none;
	}
	.mfloating {
		width: 100%;
		display: flex;
		justify-content: center;
		position: fixed;
		bottom: 0;
		z-index: 999999999;
	}

	.sec01_char01 {
		display: none;
	}

	.sec01_gift_wrap .sec01_gift {
		left: -152px;
		top: 301px;
	}

	.sec01_gift_wrap .sec01_gugi {
		left: 71px;
		top: 173px;
	}

	.sec02_content01 {
		top: 247px;
		padding: 10px;
	}

	.sec02_video {
		top: 215px;
	}

	.sec02_copy01 {
		top: 189px;
	}

	.sec01_char03 {
		display: none;
	}

	.event_notice_section {
		height: auto;
	}

	.sec01_char04 {
		display: none;
	}

	.sec01_char02 img {
		display: none;
		/*bottom: -164px;*/
		/*left: 63px;*/
	}



	.notice {
		width: 640px;
		font-size: 18px;
	}
	.agree_radio {
		font-size: 18px !important;
		line-height: 1.35;
	}

	.agree_radio label {
		font-size: 18px;
	}
	.footer_con {
		padding-bottom: 130px;
	}
	.agree_box .h5 {
		font-size: 14px !important;
	}
	.agree_box .h6 {
		font-size: 14px;
	}
	.agree_box {
		font-size: 16px !important;
		line-height: 1.5;
	}

	/* 모바일 타겟 4개가 한 화면에 보이도록 크기 축소 */
	.target_game_target,
	.target_game_target_inner {
		width: 170px !important;
	}

	.target_game_target_front,
	.target_game_target_back,
	.target_game_target.is-flip-finished .target_game_target_back {
		width: 170px !important;
		min-width: 170px !important;
		max-width: 170px !important;
		height: auto !important;
	}
	/*.close_btn {*/
	/*	margin-top: -106px;*/
	/*	cursor: pointer;*/
	/*	width: 32px;*/
	/*	height: 32px;*/
	/*	z-index: 99999999;*/
	/*	width: 130px !important;*/
	/*}*/
}

/* style css */
body,
html {
	overflow-x: hidden;
	min-width: 1280px;
}

img {
	-webkit-user-drag: none;
}

::selection {
	background: #96E4FF;
	color: #000;
}

::-moz-selection {
	background: #96E4FF;
	color: #fff;
}

::-webkit-selection {
	background: #96E4FF;
	color: #fff;
}

body {
	-webkit-font-smoothing: antialiased;
	color: #333;
}

.row {
	padding: 0 20px;
	margin: auto;
}

/* 헤더 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 999999;
	transition: all 300ms ease-in-out;
	min-width: 1280px;
	background-color: #fff;
	height: 100px;
}

.header .row {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.header .nav {
	display: flex;
	/*position:absolute;
	left: 50%;
	transform:translate(-50%, 0);*/
}

.header .right_box {
	display: flex;
	align-items: center;
	height: 100%;
}

.header .nav li {
	width: 120px;
	text-align: center;
	height: 100%;
	line-height: 100px;
}

.header .nav li a {
	font-family: 'NotoSansKR-Bold';
	letter-spacing: -1px;
}

.header .nav li.on a,
.header .nav li a:hover {
	color: #96E4FF;
}

.header .drop_menu {
	display: none;
	position: absolute;
	background-color: #96E4FF;
	width: 100%;
	top: 100px;
	left: 0;
	padding: 30px 0;
	height: 315px;
}

.header .drop_menu .drop {
	position: absolute;
	z-index: 998;
	left: 50%;
	transform: translate(-50%, 0);
	font-size: 15px;
	display: flex;
}

.header .drop_menu .drop > li {
	width: 120px;
	text-align: center;
}

.header .drop_menu .drop > li a {
	color: #fff;
}

.header .drop_menu .drop > li a:hover {
	font-weight: bold;
}

.header .drop_menu .sub_menu > li {
	margin-bottom: 15px;
	letter-spacing: -1px;
}

.footer {
	padding: 60px 0;
	text-align: center;
	background-color: #11243a;
}

.video-container {
	position: relative;
	padding-bottom: 53.5%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (min-width: 992px) {
	.pc {
		display: block !important;
	}

	.mobile {
		display: none !important;
	}
}

@media (max-width: 991px) {
	.pc {
		display: none !important;
	}

	.mobile {
		display: block !important;
	}
}

@media (max-width: 575px) {
}

[data-aos] {
	will-change: transform, opacity;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform-style: preserve-3d;
}

[data-aos="fade-up"] {
	transform: translate3d(0, 30px, 0);
}

[data-aos="fade-down"] {
	transform: translate3d(0, -30px, 0);
}

@media (prefers-reduced-motion: reduce) {
	.sec01_gugi_motion {
		animation: none;
		transform: none;
	}
}




/* =========================================================
   화살 발사 효과 개선
========================================================= */

.target_game_flying_bow {
	/*
	 * 반드시 JS의 화살촉 기준점과 동일하게 설정
	 * 화살이 회전해도 화살촉 위치가 움직이지 않음
	 */
	transform-origin: 50% 0%;

	filter:
			drop-shadow(0 10px 7px rgba(0, 0, 0, 0.28))
			drop-shadow(0 0 3px rgba(255, 255, 255, 0.75));
}

/* 화살 잔상 */
.target_game_arrow_trail {
	position: fixed;
	display: block;
	max-width: none !important;
	height: auto;
	z-index: 999999998;
	pointer-events: none;
	transform-origin: 50% 50%;
	will-change: transform, opacity;
	filter: blur(1px);
}

/* 적중 순간 타겟 반응 */
.target_game_target.is-hit-impact .target_game_target_inner {
	animation: targetGameHitImpactPower 0.42s
	cubic-bezier(.2, .8, .25, 1) both !important;
}

@keyframes targetGameHitImpactPower {
	0% {
		transform: rotateY(0deg)
		translate3d(0, 0, 0)
		rotate(0deg)
		scale(1);
	}

	18% {
		transform: rotateY(0deg)
		translate3d(0, 8px, 0)
		rotate(-2.5deg)
		scaleX(1.04)
		scaleY(0.91);
	}

	38% {
		transform: rotateY(0deg)
		translate3d(0, -5px, 0)
		rotate(2deg)
		scaleX(0.97)
		scaleY(1.04);
	}

	58% {
		transform: rotateY(0deg)
		translate3d(0, 2px, 0)
		rotate(-1deg)
		scale(0.99);
	}

	78% {
		transform: rotateY(0deg)
		translate3d(0, -1px, 0)
		rotate(.5deg)
		scale(1.01);
	}

	100% {
		transform: rotateY(0deg)
		translate3d(0, 0, 0)
		rotate(0deg)
		scale(1);
	}
}

/* 적중 충격파 */
.target_game_impact_ring {
	position: fixed;
	width: 28px;
	height: 28px;
	border: 5px solid rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	box-sizing: border-box;
	z-index: 999999997;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(0.25);
	opacity: 0;
	box-shadow:
			0 0 0 4px rgba(255, 213, 56, 0.65),
			0 0 18px rgba(255, 255, 255, 0.95);
	animation: targetGameImpactRing 0.38s ease-out forwards;
}

@keyframes targetGameImpactRing {
	0% {
		transform: translate(-50%, -50%) scale(0.2);
		opacity: 1;
	}

	65% {
		opacity: 0.85;
	}

	100% {
		transform: translate(-50%, -50%) scale(3.2);
		opacity: 0;
	}
}

/* 적중 중심 섬광 */
.target_game_impact_flash {
	position: fixed;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	z-index: 999999998;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(0);
	background: rgba(255, 255, 255, 1);
	box-shadow:
			0 0 10px rgba(255, 255, 255, 1),
			0 0 24px rgba(255, 221, 80, 0.95);
	animation: targetGameImpactFlash 0.24s ease-out forwards;
}

@keyframes targetGameImpactFlash {
	0% {
		transform: translate(-50%, -50%) scale(0);
		opacity: 1;
	}

	45% {
		transform: translate(-50%, -50%) scale(1.8);
		opacity: 1;
	}

	100% {
		transform: translate(-50%, -50%) scale(0.7);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.target_game_arrow_trail,
	.target_game_impact_ring,
	.target_game_impact_flash {
		display: none !important;
	}
}