
body::-webkit-scrollbar, html::-webkit-scrollbar {
	display: none;
}
body, html {
	-ms-overflow-style: none;
	scrollbar-width: none;
	user-select:none;
	overflow-x:hidden;
}
html, body {
	touch-action: manipulation; /* 터치 스크롤만 허용 */
	-ms-touch-action: manipulation; /* IE/Edge 구버전 대응 */
	overscroll-behavior: none; /* 스크롤 바운스 방지 */
}
body {
	-webkit-font-smoothing: antialiased;
	color:#333;
}
img {
	-webkit-user-drag: none;
}
::selection {
	background: #00949d;
	color: #fff
}
::-moz-selection {
	background: #00949d;
	color: #fff
}
::-webkit-selection {
	background: #00949d;
	color: #fff
}


section, .footer {
	width: 100vw;
	background-size: cover;
	background-position:center 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}







.intro {
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: 999999999;
	top: 0;
	left: 0;
}
.intro > div {
	width: 100%;
	height: 100%;
	opacity: 0;
}
.intro > div.intro01 {
	opacity: 1;
	transform: scale(1.5) translate(0, -260px);
}
.intro01.ani {
	animation: intro01 ease-in-out 1s .5s forwards;
}
@keyframes intro01 {
	from {
		transform: scale(1.5) translate(0, -260px);
	}
	to {
		transform: scale(6) translate(-80px, -280px);
	}
}









.section01 {
	background-image:url('../img/sec01_bg.png');
	padding-top: 100px;
	height: 3036px;
}

.sec01_title {
	margin-top: 100px;
	margin-bottom: 45px;
	position: relative;
	opacity: 0;
	transform: scale(0.85);
	animation: sec01_title ease-in-out 1s 8s forwards;
}
@keyframes sec01_title {
	from {
		opacity: 0;
		transform: scale(0.85);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
.sec01_con {
	position: relative;
	opacity: 0;
	transform: translateY(70px);
	animation: sec01_con ease-in-out .8s 8.4s forwards;
}
@keyframes sec01_con {
	from {
		opacity: 0;
		transform: translateY(70px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}
.sec01_sub_title {
	margin-top: 380px;
	margin-bottom: 70px;
}
.sec01_con02 {
	padding-left: 40px;
	margin-bottom: 70px;
}





.section02 {
	background-image: url("../img/sec02_bg.png");
	height: 1404px;
	padding-top: 150px;
}

.game_text {
	margin-top: 30px;
	position: relative;
}
.game_text.ani {
	animation: game_text ease-in-out 1.2s infinite;
}
@keyframes game_text {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(0);
	}
}

.master {
	width: 800px;
	height: 800px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	top: -60px;
}
.master.start {
	cursor: url("../img/needle.png")  0 127, auto;
}

.master.start.press {
	transform: scale(0.99) translateY(2px) rotate(3deg);
	transition: transform 0.12s ease;
}


.master > img {
	opacity: 0;
}
.master01, .master02, .piece01, .piece02, .piece03, .piece04, .piece05 {
	position: absolute;
}
.master01 {
	top: 244px;
	left: 316px;
	z-index: 90;
}
.master02 {
	top: 393px;
	left: 344px;
	z-index: 90;
}


.break_master .master01 {
	animation: master01 ease-in-out .2s forwards;
}
@keyframes master01 {
	from {
		transform: translate(0, 0);
	}
	to {
		transform: translate(10px, 30px);
	}
}
.break_master .master02 {
	animation: master02 ease-in-out .2s forwards;
}
@keyframes master02 {
	from {
		transform: translate(0, 0);
	}
	to {
		transform: translate(30px, 5px);
	}
}
.break_master .master03 {
	animation: master03 ease-in-out .2s forwards;
}
@keyframes master03 {
	from {
		transform: translate(0, 0);
	}
	to {
		transform: translate(-10px, -30px);
	}
}

.piece01 {
	top: 97px;
	left: 383px;
}
.piece02 {
	top: 319px;
	left: 402px;
}
.piece03 {
	top: 531px;
	left: 249px;
}
.piece04 {
	top: 337px;
	left: 97px;
}
.piece05 {
	top: 98px;
	left: 102px;
}

.break01, .break_master .piece01 {
	animation: break01 ease-in-out .3s forwards;
}
@keyframes break01 {
	from {
		transform: translate(0, 0);
	}
	to {
		transform: translate(50px, -30px);
	}
}
.break02, .break_master .piece02 {
	animation: break02 ease-in-out .3s forwards;
}
@keyframes break02 {
	from {
		transform: translate(0, 0);
	}
	to {
		transform: translate(50px, 10px);
	}
}
.break03, .break_master .piece03 {
	animation: break03 ease-in-out .3s forwards;
}
@keyframes break03 {
	from {
		transform: translate(0, 0);
	}
	to {
		transform: translate(0px, 50px);
	}
}
.break04, .break_master .piece04 {
	animation: break04 ease-in-out .3s forwards;
}
@keyframes break04 {
	from {
		transform: translate(0, 0);
	}
	to {
		transform: translate(-50px, 0px);
	}
}
.break05, .break_master .piece05 {
	animation: break05 ease-in-out .3s forwards;
}
@keyframes break05 {
	from {
		transform: translate(0, 0);
	}
	to {
		transform: translate(-50px, -30px);
	}
}

img {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}


.sec02_btn {
	cursor: pointer;
	position: relative;
	bottom: 100px;
}


.game_end {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 99999;
}


.needle {
	opacity: 0;
	position: absolute;
	bottom: 200px;
	right: 0px;
	scale: 0.7;
	animation: needle ease-in-out 1s infinite;
}
@keyframes needle {
	0% {
		transform: translate(0,0);
	}
	20% {
		transform: translate(-20px, 20px);
	}
	40% {
		transform: translate(0,0);
	}
	60% {
		transform: translate(-20px, 20px);
	}
	100% {
		transform: translate(0,0);
	}
}












.tab_box {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0px;
	position: absolute;
	top: 0px;
}
.tab_box > div {
	cursor: pointer;
	background-size: cover;
	background-repeat: no-repeat;
	width: 377px;
	height: 86px;
}


.tab_a_btn, .tab_a_btn.on_a {
	background-image: url("../img/tab_a_01.png");
}

.tab_a_btn.on_b {
	background-image: url("../img/tab_a_02.png");
}

.tab_b_btn {
	background-image: url("../img/tab_b_01.png");
}
.tab_b_btn.on_a {
	background-image: url("../img/tab_b_01.png");
}

.tab_b_btn.on_b {
	background-image: url("../img/tab_b_02.png");
}

.tab01_bg {
	background-color: #f4dcff;
	padding: 70px 0 100px;
	width: 100vw;
	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: top;
	position: absolute;
	bottom: 0;
}

.tab_con {
	width: 100vw;
	padding-top: 80px;
	display: none;
	flex-direction: column;
	align-items: center;
}
.tab_con.active {
	display: flex;
}
.tab_a_con {
	padding: 70px 0 100px;
	background-repeat: no-repeat;
	background-size: cover;
}
.tab_b_con {
	padding: 70px 0 100px;
}


.tab01_title, .tab01_con01, .tab01_con03 {
	margin-bottom: 40px;
}



/* 공통 슬라이드 스타일 */
.slider {
	position: relative;
	width: 750px;
	height: 313px;
	margin: 50px auto;
	overflow: hidden;
	border: 2px solid #000000;
}
.slides {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease-in-out;
}
.slide {
	min-width: 100%;
	height: 100%;
}
.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 화살표 버튼 */
.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	padding: 10px 15px;
	border-radius: 50%;
	transition: background 0.3s;
	z-index: 10;
}

.arrow.prev { left: 15px; }
.arrow.next {
	right: 15px;
	transform: scaleX(-1) translateY(-50%);
}














.tab01_btn_box, .tab02_btn_box {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 80px;
	gap: 20px;
}
.tab01_btn_box > div, .tab02_btn_box > div {
	cursor: pointer;
}

.tab02_con01 {
	margin: 40px auto 80px;
}





.section03 {
	padding: 90px 0 140px;
	background-image: url("../img/sec03_bg.png");
	height: 2146px;
}
.sec03_title {
	margin-bottom: 40px;
}




.section04 {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #742c2c;
	padding: 65px 0;
}

.sec04_warn {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding-left: 30px;
}
.sec04_warn > p {
	position: relative;
	font-size: 18px;
	color: #ffffff;
	line-height: 1.7;
	padding-left: 15px;
	font-weight: normal;
	letter-spacing: -1px;
}

.sec04_warn > p::before {
	content: '※';
	display: inline-block;
	position: absolute;
	left: -10px;
	font-size: 18px;
	color: #ffffff;
}




.footer {
	background-color: #342323;
	padding: 60px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 60px;
}




.event_popup, .event_popup2 {
	max-width: 750px;
	width: 100%;
	display:none;
	text-align:center;
	left: 50% !important;
	transform: translateX(-50%) !important;
	padding-top: 20px;
}
.event_pop_title {
	padding: 40px 0;
}

.popup_warn {
	font-size: 17px;
	color: #000000;
}
.popup_warn em {
	color: #707070
}


.board_write_form {
	padding: 0px 50px;
	border: 2px solid #000;
}
.event_pop_sub {
	margin: 0 0 30px;
}

.board_write_form_table {
	position:relative;
	z-index: 5;
	width: 100%;
}

.board_write_form .form_field {
	display: block;
	border: 1px solid #e6e6e6;
	border-right: unset;
	background-color: #fff;
}

.board_write_form .form_field:last-child {
	margin-bottom: 0;
}

.board_write_form .form_field th {
	width: 180px;
	font-size: 22px;
	color: #fff;
	text-align: center;
	background-color: #742c2c;
	line-height: 1.3;
	vertical-align: middle;
	border-right: 2px solid #e6e6e6;
}
.event_popup2 .board_write_form .form_field th {
	background-color: #009263;
}

input::placeholder {
	font-size: 15px;
	font-family:'NotoSansKR-Medium';
}

.board_write_form td.field {
	font-size: 21px;
	padding: 10px;
	padding-right: 0;
	text-align: left;
	background-color: #fff;
	vertical-align:middle;
	padding-left: 30px;
}


.pop01_youtube_btn {
	margin-top: 25px;
	display: inline-block;
}

.agree_box {
	width: 100%;
	overflow-y: auto;
	border: 2px solid #e6e6e6;
	padding: 20px;
	box-sizing: border-box;
	height: 200px;
	background: #fff;
	color: #000;
	font-size: 19px;
	text-align: left;
	margin-top: 30px;
}

.agree_box .h5 {
	display: inline-block;
	font-size: 21px;
	margin-bottom: 5px;
}

.agree_box .h6 {
}

.agree_radio {
	font-size: 22px;
	letter-spacing: -1px;
	display: flex;
	justify-content: center;
	text-align: center;
	color: #fff;
	margin: 15px 0 20px;
}
.agree_radio.pop04 {
	color: #000;
	justify-content: flex-start;
}

.agree_radio .block {
	display: block;
	margin-bottom: 10px;
}

.agree_radio label {
	cursor:pointer;
}
.agree_radio.pop04 label {
	margin-right: 120px;
}

.board_write_form .buttons {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
}




.board_write_form .form-group:nth-of-type(2) {
	margin: 5px 0;
}

.board_write_form input[type='text'],
.board_write_form input[type='tel'],
.board_write_form select {
	height: 45px;
	font-size: 20px;
}
input[type='text']::placeholder {
	font-size: 18px;
}

.agree_radio input {
	width: 20px !important;
	height: 20px !important;
	margin-bottom: 3px;
}

.agree_radio input:checked {
	accent-color: #018e48 !important;
}

.w120 {
	width: 120px !important;
}

.w200 {
	width: 393px !important;
}
.w100 {
	width: 222px !important;
}
.w500 {
	width: 400px;
}

.counting_popup {
	max-width: 750px;
	width: 96%;
	display: none;
	text-align: center;
	left: 50% !important;
	transform: translateX(-50%) !important;
	padding-top: 30px;
}

.counting_popupB {
	display: block;
	max-width: 750px;
	width: 96%;
	text-align: center;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 999999;
	transform: translate(-50%, -50%) !important;
}
.counting_popup_close {
	position: absolute;
	top: 13px;
	right: 0px;
	font-size: 45px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
}

.bg_black {
	position:fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 999998;
	width: 100vw;
	height: 100vh;
	background-color:rgba(0,0,0,.7);
	opacity: 0;
	visibility:hidden;
	cursor:pointer;
}

.bg_black.open {
	opacity: 1;
	visibility:visible;
}

.counting_popup .title, .counting_popupB .title {
	padding-bottom: 25px;
}

.counting_popup .wh__, .counting_popupB .wh__ {
	position: relative;
	background-color: #fff;
	padding: 40px 20px;
	border: 2px solid #e6e6e6;
}

.counting_popupB .md_close_counting {
	position: absolute;
	right: 10px;
	top: 10px;
}
.counting_popupB .md_close_counting img {
	width: 50px;
}

.counting_popup .info__, .counting_popupB .info__ {
	color: #000;
	font-family: 'PyeongChangPeace-Bold';
	font-size: 48px;
}

.counting_popup .info__ span,
.counting_popupB .info__ span {
	color: #58b530;
}

.counting_popupB .sp_Name_Coun_2 { margin-bottom: 20px}
.counting_popupB .sp_Name_Coun_2,
.counting_popupB .sp_Name_Coun_2 span { line-height: 130%}
.counting_popupB #shareBtn2 { display: block}
.counting_popupB #shareBtn2:hover { color: #fd3782}

.counting_popup .btn,
.counting_popupB .btn {
	margin: 30px 0 25px;
}

.counting_popup .btn a,
.counting_popupB .btn a {
	display: block;
	cursor: pointer;
}

.counting_popup .top__btn,
.counting_popupB .top__btn {
	margin-bottom: 20px;
}

.counting_popup .para,
.counting_popupB .para {
	font-size: 20px;
}

.application_popup {
	max-width: 750px;
	width: 96%;
	display: none;
	text-align: center;
	left: 50% !important;
	transform: translateX(-50%) !important;
	padding-top: 30px;
}

.application_popupB {
	/*
        display: block;
        max-width: 750px;
        width: 96%;
        text-align: center;
        position: fixed;
        top: 10px;
        left: 50%;
        z-index: 999999;
        transform: translateX(-50%) !important;
    */
	display: block;
	max-width: 750px;
	width: 96%;
	position: absolute ;

	top: 0;
	left: 50%;

	text-align: center;
	z-index: 999999;
	transform: translateX(-50%) !important;
}


.application_popup .title, .application_popupB .title {
	padding-bottom: 25px;
}

.application_popup .board_write_form td.field {
	width: 530px;
}

.application_popupB .board_write_form td.field {
	width: 530px;
}

.application_popup .cf_btn, .application_popupB .cf_btn {
	width: 714px;
	height: 84px;
	line-height: 90px;
	padding-top: 0;
	margin-bottom: 10px;
	text-align: center;
}

.application_popup .w200, .application_popupB .w200 {
	width: 450px;
}

.application_popup .w120, .application_popupB .w120 {
	width: 138px;
}

.mfloating {
	display: none;
}

.floating {
	position: fixed;
	top: 150px;
	left: 50%;
	margin-left: 400px;
	transition: all .3s ease-in-out;
	z-index: 99999;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-60px);
	animation: floating ease-in-out .8s 2s forwards;
}
@keyframes floating {
	from {
		opacity: 0;
		transform: translateY(-60px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}
.event_btn {
	cursor: pointer;
}



@media screen and (max-width: 1600px) {

}

/* 테블릿 가로 */
@media screen and (max-width: 1200px) {
	.floating {
		left: unset;
		right: 0;
	}
	.sec03_item01 , .sec03_item02 {
		display: none;
	}
	.sec03_item03 {
		left: 20px;
	}
	.sec03_item04 {
		right: -50px;
	}
}

/* 테블릿 세로 */
@media screen and (max-width: 1040px) {

}

/* 모바일 */
@media screen and (max-width: 850px) {
	body,html {
		min-width:320px;
	}

	.row {
		width: 100%;
		padding: 0 20px;
	}

	.footer {
		padding: 80px 0 240px;
	}

	.m_floating {
		position: fixed;
		bottom: 0;
		z-index: 9999;
		width: 100vw;
	}


	.board_write_form td.field,
	.board_write_form .form_field th {
		font-size: 22px;
	}

	.board_write_form td.field {
		padding: 18px 15px;
	}

	.board_write_form .form_field th {
		font-size: 24px;
	}

	.cf_btn {
		width: 130px;
		height: 194px;
		padding-top: 55px;
	}

	.agree_box {
		height: 320px;
		font-size:21px;
	}

	.agree_box .h5 {
		font-size:24px;
	}

	.agree_radio {
		font-size: 24px;
	}

	.agree_radio .block {
		display: block;
		margin-bottom: 10px;
	}

	.board_write_form input[type='text'],
	.board_write_form input[type='tel'],
	.board_write_form select {
		height: 50px;
		line-height:50px;
		font-size:22px !important;
	}

	.board_write_form td input[type='checkbox'],
	.board_write_form td input[type='radio'],
	.agree_radio label input {
		width: 22px;
		height: 22px;
	}

	.board_write_form .buttons {
		width: 680px;
	}

	.board_write_form .buttons a {
		height: 90px;
		line-height: 85px;
		font-size: 33px;
	}

	.w120 {
		width: 90px;
	}

	.w200 {
		width: 300px;
	}
	.w100 {
		width: 130px;
	}

	.w500 {
		width: 510px;
	}

	.application_popup .board_write_form td.field {
		width: 500px;
	}

	.application_popup .cf_btn {
		width: 684px;
	}


	.sec01_item05, .sec01_item06 {
		display: none;
	}
	.board_write_form {
		padding: 35px 20px;
	}
	.video-container {
		top: 80px;
	}
}
