@charset "UTF-8";

/*
***************************************************
BASE
***************************************************
*/
:root {
	--etype-ff-body: "paperlogy", sans-serif;
	--etype-ff-heading: "SBAggro", "paperlogy", sans-serif;
	--etype-color-point: #e0a053;
	--popup-concept-color: #f4ed93;
	--popup-text-color: #422c17;
}

/* scroll bar */
::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
	background: rgba(178, 112, 44, 0.5);
	border-radius: 10px;
}

	::-webkit-scrollbar-thumb:hover {
		background: #000;
	}

/* reset */
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	--webkit-box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

b, strong, .bold, .fw-bold {
	font-weight: bold;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

dl, ul, ol, menu, li {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

	blockquote:before, blockquote:after, q:before, q:after {
		content: "";
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body, button, p, a, h1, h2, h3, h4, h5, h6, span, input, textarea, select, caption, tr, th, td {
	font-family: var(--etype-ff-body);
}

body, html {
	--webkit-text-size-adjust: none;
	font-size: 10px;
	letter-spacing: normal;
}

body {
	color: #fafafa;
	background: #15161b;
	line-height: 1.2;
	word-break: keep-all;
	font-weight: normal;
}

fieldset, img {
	border: 0 none;
}

img {
	vertical-align: top;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: #fafafa;
	font-weight: 500;
}

	a:active, a:hover {
		text-decoration: none;
	}

input, textarea, select, button {
	vertical-align: top;
	cursor: pointer;
}

button {
	color: #fafafa;
	border: 0 none;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}

address, caption, cite, code, dfn, em, var {
	font-style: normal;
	font-weight: normal;
}

legend, caption {
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	font-size: 0;
	line-height: 0;
}

textarea {
	resize: none;
}

input {
	outline: none;
}

	input[type="text"]::-ms-clear {
		display: none;
	}

	input[type="file"] {
		--webkit-appearance: button;
		background: transparent;
		border-radius: 0;
		border: 0;
		cursor: pointer;
	}

/* basic */
.hidden {
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
}

#wrap {
	position: relative;
	width: 100%;
	overflow-x: hidden;
}

/* header */
.header {
	position: fixed;
	z-index: 1001;
	left: 0;
	top: 0;
	width: 100%;
	height: 115px;
	background-image: url(/assets/images/content/bg_top.png), url(/assets/images/content/bg_header.png);
	background-repeat: no-repeat, no-repeat;
	background-size: 100% 40px, 100% 100%;
	transition: transform 0.3s ease;
}

	.header.hidden {
		transform: translateY(-100%);
	}

	.header .header_container {
		position: relative;
		width: 100%;
		max-width: 1310px;
		margin: 0 auto;
	}

/* gnb */
.head_top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 40px;
	padding: 0 20px;
}

.nav {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 75px;
}

/* site language dropdown */
.select_lang {
	position: relative;
}

.dropdown {
	display: inline-block;
	color: #ffffff;
}

	.dropdown img {
		max-width: 100%;
		max-height: 100%;
	}

.dropbtn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 1rem;
	background-color: #4e2a0f;
	color: #FFFFFF;
	padding: 0 4px 0 8px;
	font-size: 13px;
	border: 1px solid;
	border-color: transparent;
	border-radius: 6px;
	width: fit-content;
	max-width: 150px;
	height: 28px;
	text-align: left;
}

	.dropbtn .lang-select-tx {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		width: 100%;
		height: 100%;
	}

	.dropbtn img {
		width: 20px;
		height: 20px;
	}
/* .dropdown:hover .dropdown-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
} */
.dropdown-content.show {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.dropdown-content {
	display: none;
	margin-top: 0;
	margin-left: 0;
	overflow: hidden;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.75);
	color: #ffffff;
	font-size: 12px;
	width: fit-content;
	min-width: 100px;
	max-width: fit-content;
	border-radius: 6px 6px;
	box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.52);
	z-index: 1;
	text-align: left;
}

	.dropdown-content a {
		display: inline-flex;
		justify-content: flex-start;
		gap: 0.5rem;
		width: 100%;
		min-width: max-content;
		padding: 6px 10px;
		text-decoration: none;
		color: #ffffff;
		font-size: 12px;
		align-items: center;
	}

		.dropdown-content a:first-child {
			padding-top: 12px;
		}

		.dropdown-content a:last-child {
			padding-bottom: 10px;
		}

		.dropdown-content a img {
			width: 18px;
			height: 18px;
		}

		.dropdown-content a:hover {
			background-color: #5D5D5D;
			color: #ffffff;
		}

.dropdown:hover .dropbtn {
	background-color: #7c3a10;
	border-color: #3e200a;
	color: #ffffff;
}

@media screen and (max-width: 767px) {
	.dropdown-content {
		right: 0;
	}
}



/* logo */
.site_logo {
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 9;
	transform: translate(-50%, 8px);
	width: 200px;
	height: auto;
}

	.site_logo a {
		display: inline-block;
		width: 100%;
		height: 100%;
	}

		.site_logo a img {
			width: 100%;
			height: 100%;
			object-fit: scale-down;
		}

/* header menu */
.nav_menu {
	display: flex;
	flex-direction: row;
	width: calc(50% - 127px);
}

	.nav_menu .nav_item {
		width: calc(100% / 3);
		height: 75px;
	}

		.nav_menu .nav_item a {
			position: relative;
			display: inline-block;
			width: 100%;
			height: 100%;
			text-align: center;
		}

		.nav_menu .nav_item.active a::before {
			content: "";
			display: block;
			position: absolute;
			z-index: -1;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: url(/assets/images/content/nav_hover.png) center top no-repeat;
			background-size: cover;
		}

		.nav_menu .nav_item span {
			position: relative;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			width: 100%;
			height: 100%;
			text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
			font-family: var(--etype-ff-heading);
			font-weight: 400;
			font-size: 1.8rem;
		}

		.nav_menu .nav_item.nav_01.active span:before {
			width: 30px;
			height: 25px;
			background-image: url(/assets/images/content/icon_card.png);
		}

		.nav_menu .nav_item.nav_02.active span:before {
			width: 28px;
			height: 24px;
			background-image: url(/assets/images/content/icon_hotelcasino.png);
		}

		.nav_menu .nav_item.nav_03.active span:before {
			width: 24px;
			height: 20px;
			background-image: url(/assets/images/content/icon_slotcame.png);
		}

		.nav_menu .nav_item span:before {
			content: "";
			display: block;
			position: absolute;
			top: -8px;
			background-size: cover;
			background-repeat: no-repeat;
			filter: drop-shadow(1px 2px 4px #572a09);
		}

.nav_menu_sec {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	width: calc(50% - 127px);
}

	.nav_menu_sec .nav_btn {
		display: inline-block;
		padding: 0 15px;
		text-align: center;
		font-size: 1.6rem;
		font-weight: 600;
		text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	}

.before_login {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: clamp(16px, 5vw, 40px);
}

	.before_login .btn {
		display: inline-block;
		font-size: 1.4rem;
	}

.after_login {
	display: inline-flex;
	align-items: center;
	/*gap: clamp(0.75rem, 2vw, 2.25rem);*/
}

	.after_login .btn {
		display: inline-block;
		font-size: 1.4rem;
	}
		/* .after_login .btn + .btn {
	margin-left: 40px;
	margin-left: 25px;
} */
		.after_login .btn > span {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 5px;
		}

			.after_login .btn > span i {
				color: #eeb167;
				line-height: 0;
			}

.head_top .user_name {
	display: inline-flex;
	align-items: center;
	row-gap: 8px;
	column-gap: clamp(8px, 2vw, 16px);
	font-size: 1.3rem;
	font-weight: 400;
}

	.head_top .user_name > span {
		font-size: 1.2rem;
	}

	.head_top .user_name strong {
		display: inline-block;
		font-family: var(--etype-ff-heading);
		font-weight: 400;
	}

.cashpoint {
	display: none;
}

	.cashpoint dd {
		width: 100%;
		padding: 8px 10px;
		line-height: 1;
		display: flex;
		gap: 6px;
		font-size: 12px;
	}

	.cashpoint .all_my_cash {
		background-color: #c51818;
		justify-content: flex-start;
	}

	.cashpoint .all_my_point {
		background-color: #3F51B5;
		justify-content: flex-end;
	}

	.cashpoint dd i {
		display: inline-flex;
		gap: 4px;
		align-items: center;
	}

.head_top .user_name .cashpoint {
	display: flex;
	overflow: hidden;
	width: fit-content;
	border-radius: 6px;
}

	.head_top .user_name .cashpoint dd {
		padding: 6px 8px;
	}


/* gnb_menu */
.site_gnb {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}

.gnb_menu {
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.panel {
	width: 100%;
}

@media screen and (max-width: 1190px) {
	.site_logo {
		width: auto;
		height: 68px;
		left: 0;
		transform: translate(8px, 42px);
	}

	.gnb_menu .nav {
		justify-content: flex-end;
	}

		.gnb_menu .nav .nav_menu {
			width: auto;
			border-right: 2px solid;
			border-color: rgba(132, 76, 26, 0.45);
		}

		.gnb_menu .nav .nav_menu_sec {
			width: auto;
		}

	.nav_menu .nav_item {
		width: fit-content;
	}

		.nav_menu .nav_item a {
			padding: 0 1.75rem;
		}

		.nav_menu .nav_item span {
			font-size: 1.5rem;
		}

	.nav_menu_sec .nav_btn {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 767px) {
	/* ����� 767px���� ���� */
	.gnb_menu .nav .nav_menu {
		display: inline-flex;
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
	}

		.gnb_menu .nav .nav_menu > li {
			flex: 1 1 0;
		}

			.gnb_menu .nav .nav_menu > li + li {
				border-left: 1px solid;
				border-color: rgba(100, 80, 60, 0.5);
			}

	.site_gnb {
		align-items: center;
		justify-content: center;
		padding-left: 0;
	}

	.site_logo {
		z-index: 2000;
		left: 50%;
		transform: translate(-50%, 8px);
		width: auto;
		height: 60px;
	}

	.header {
		width: 100%;
		height: 60px;
		background: rgba(0, 0, 0, 0.8);
		background-image: none;
	}

		.header .header_container {
			width: 100%;
			max-width: 100%;
			padding: 0 20px;
		}

	.cashpoint {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		position: inherit;
		top: 60px;
		background: rgba(0, 0, 0, 0.75);
		width: 100%;
		height: fit-content;
	}


	/* panel */
	.panel {
		z-index: 1999;
		position: fixed;
		top: 60px;
		left: 0;
		width: 100%;
		max-height: 0;
		background-color: #1a1a1a;
		overflow: hidden;
		transition: max-height 0.3s ease-in-out;
	}

		.panel.open {
			top: 60px;
			max-height: 100vh;
			max-height: 100dvh; /* safari */
		}
		/* ��ư ��Ÿ�� */
		.panel .btn_panel_toggle {
			z-index: 2;
			display: inline-block;
			position: fixed;
			top: 7px;
			right: 0;
			width: 48px;
			height: 48px;
			margin: 0;
			background-color: transparent;
			border: none;
		}

			.panel .btn_panel_toggle span,
			.panel .btn_panel_toggle span:before,
			.panel .btn_panel_toggle span:after {
				width: 18px;
				height: 2px;
				background-color: #fff;
				transition: all 0.3s ease-in-out;
			}

			.panel .btn_panel_toggle span {
				display: inline-block;
				position: relative;
				margin: 22px 0 0 15px;
			}

				.panel .btn_panel_toggle span:before,
				.panel .btn_panel_toggle span:after {
					content: "";
					position: absolute;
					left: 0;
				}

				.panel .btn_panel_toggle span:before {
					top: -7px;
				}

				.panel .btn_panel_toggle span:after {
					top: 7px;
				}
			/* ��ư Ȱ��ȭ ���� */
			.panel .btn_panel_toggle.active span {
				background-color: transparent;
			}

				.panel .btn_panel_toggle.active span:before,
				.panel .btn_panel_toggle.active span:after {
					top: 0;
				}

				.panel .btn_panel_toggle.active span:before {
					transform: rotate(-135deg);
				}

				.panel .btn_panel_toggle.active span:after {
					transform: rotate(135deg);
				}
	/* nav */
	.nav {
		flex-direction: column;
		height: auto;
	}

	.nav_menu,
	.nav_menu_sec {
		width: 100%;
		flex-direction: column;
	}
	/* gnb */
	.gnb_menu {
		height: 100%;
		flex-direction: column;
		padding: 8px 0 0;
	}

	.head_top {
		flex-direction: column;
		justify-content: space-between;
		height: auto;
		padding: 10px 4px;
	}

		.head_top .user_name {
			display: flex;
			flex-direction: row;
			align-items: center;
			flex-wrap: wrap;
			justify-content: center;
			margin-bottom: 10px;
			font-size: 1.3rem;
		}

	.before_login .btn {
		font-size: 1.3rem;
	}

	.nav_menu .nav_item {
		width: 100%;
		height: 52px;
		border-bottom: 1px solid rgba(26, 26, 26, 0.75);
		background-color: #2c241b;
		background: url(/assets/images/content/bg_header.png);
	}

		.nav_menu .nav_item span {
			display: flex;
			flex-direction: row;
			align-items: center;
			justify-content: center;
			gap: 0.75rem;
			font-size: 1.4rem;
		}

		.nav_menu .nav_item.active a:after {
			display: none;
		}

	.nav_menu_sec {
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
		width: 100% !important;
	}

		.nav_menu_sec .nav_btn {
			flex: 1 1 44%;
			height: 40px;
			width: 50%;
			margin-left: -1px;
			margin-top: -1px;
			padding: 0;
			font-size: 1.4rem;
			line-height: 40px;
			background: #66533c;
			border: 1px solid #423628;
		}

	.nav_menu .nav_item span:before {
		width: 24px;
		height: 20px;
		position: relative;
		top: unset;
		background-size: auto 100%;
	}

	.nav .nav_menu .nav_item.nav_01 span:before {
		background-image: url(/assets/images/content/icon_card.png);
	}

	.nav .nav_menu .nav_item.nav_02 span:before {
		background-image: url(/assets/images/content/icon_hotelcasino.png);
	}

	.nav .nav_menu .nav_item.nav_03 span:before {
		background-image: url(/assets/images/content/icon_slotcame.png);
	}

	.nav .nav_menu .nav_item a span:before {
		width: 22px;
		height: 22px;
		background-position: center;
		background-size: auto 80%;
	}
}

@media screen and (max-width: 480px) {
	.after_login {
		display: flex;
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
		line-height: 2;
	}

		.after_login .btn {
			font-size: 1.24rem;
		}
}



/* main_section */
.section {
	position: relative;
	padding: 115px 0 0;
	width: 100%;
	background-image: url(/assets/images/content/bg_all.png);
	background-repeat: repeat-y;
	background-size: contain;
	background-position: center top;
}

.section_inner {
	max-width: 1310px;
	padding: 20px 0;
	margin: 0 auto;
}

@media screen and (max-width: 1310px) {
	.header .header_container {
		max-width: 100%;
	}

	.section_inner {
		max-width: 100%;
	}
}

@media screen and (max-width: 1190px) {
	.section {
		padding: 115px 0 0;
	}

	.section_inner {
		max-width: 100%;
		padding: 0 20px;
	}
}

@media screen and (max-width: 767px) {
	.section {
		padding: 60px 0 0;
	}

	.section_inner {
		padding: 20px 0;
	}
}

/* main slide */
.main_slider {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 470px;
	background-image: url(/assets/images/content/slide-txt-bg.png), url(/assets/images/content/slide-bg.jpg);
	background-repeat: no-repeat;
	background-size: 400px 400px, cover;
	background-position: center, center top;
}

.main_slider_bg {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 1px;
	background-image: url(/assets/images/content/bg_frame.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	width: 100%;
	height: 470px;
}

.main_slider .swiper {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 1310px;
	margin: 0 auto;
}

.main_slider .swiper-slide {
	z-index: 1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 470px;
}

	.main_slider .swiper-slide img {
		display: none;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.main_slider .swiper-pagination {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	bottom: 100px;
}

.main_slider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	opacity: 1;
	background: #fff;
	border-radius: 4px;
}

.main_slider .swiper-pagination-bullet-active {
	background: #efb800;
	width: 30px;
	height: 10px;
}

.main_slider .swiper_text {
	width: 320px;
	height: 400px;
	letter-spacing: -0.175rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

	.main_slider .swiper_text span {
		display: block;
		text-align: center;
		font-size: 1.8rem;
		font-family: var(--etype-ff-heading);
	}

		.main_slider .swiper_text span:last-child {
			letter-spacing: normal;
		}

	.main_slider .swiper_text .g_txt {
		color: transparent;
		background: linear-gradient(to bottom, #ffb13e 0%, #d2b14f 100%);
		background-clip: text;
		-webkit-background-clip: text;
		text-align: center;
		font-size: 3.75rem;
		font-weight: 600;
	}

	.main_slider .swiper_text .g_txt_02 {
		margin-bottom: 20px;
		font-family: var(--etype-ff-heading);
		font-weight: 400;
		font-size: 3.6rem;
		background: linear-gradient(to bottom, #fffb78 0%, #ffffe6 100%);
		background-clip: text;
		-webkit-background-clip: text;
		color: transparent;
	}

.ani_wrap {
	max-width: 1300px;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.ani_chip_wrap {
	position: absolute;
	bottom: 100px;
	right: -215px;
	z-index: 3;
}

	.ani_chip_wrap .ico_chips {
		display: inline-block;
		width: 217px;
		height: 125px;
		animation: heartbeat 1.5s ease-in-out infinite both;
		transform-origin: center;
	}

		.ani_chip_wrap .ico_chips img {
			width: 100%;
			height: 100%;
		}

@keyframes heartbeat {
	from {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	10% {
		-webkit-transform: scale(0.91);
		transform: scale(0.91);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	17% {
		-webkit-transform: scale(0.98);
		transform: scale(0.98);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	33% {
		-webkit-transform: scale(0.87);
		transform: scale(0.87);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	45% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
}

.ani_girl_wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.ani_game_wrap {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.ani_girl_wrap .img_girl {
	display: inline-block;
	width: 400px;
	height: 500px;
}

	.ani_girl_wrap .img_girl img {
		width: 100%;
		height: 100%;
	}

.ani_game_wrap .img_game {
	display: inline-block;
	width: 540px;
	height: 368px;
}

	.ani_game_wrap .img_game img {
		width: 100%;
		height: 100%;
	}

.ani_wrap > div span > img {
	object-fit: scale-down;
	object-position: center bottom;
}

.img_girl {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
}

.img_game {
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: 0;
}

/* �ִϸ��̼� Ű������ ���� */
@keyframes fadeInAndOut {
	0% {
		opacity: 0;
		transform: translateX(-50%);
	}

	6% {
		opacity: 1;
		transform: translateX(0);
	}

	95% {
		opacity: 1;
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		transform: translateX(0);
	}
}

@keyframes fadeInAndOutReverse {
	0% {
		opacity: 0;
		transform: translateX(50%);
	}

	6% {
		opacity: 1;
		transform: translateX(0);
	}

	95% {
		opacity: 1;
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		transform: translateX(0);
	}
}

.img_girl {
	animation: fadeInAndOut 15s ease infinite;
}

.img_game {
	animation: fadeInAndOutReverse 15s ease infinite;
}

/* �ִϸ��̼��� ���� �⺻ ��Ÿ�� */
.swiper_text {
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.swiper-slide-active .swiper_text {
	opacity: 1;
	transform: scale(1);
}

.g_txt,
.g_txt_02,
.swiper_text > span {
	display: block;
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

/* �����̵� Ȱ��ȭ �� �ؽ�Ʈ �ִϸ��̼� ���� */
.swiper-slide-active .g_txt {
	animation: bannerText01 6s ease 1 forwards;
}

.swiper-slide-active .g_txt_02 {
	animation: bannerText02 6s ease 1 forwards;
}

.swiper-slide-active span:not(.g_txt):not(.g_txt_02) {
	animation: bannerText03 6s ease 1 forwards;
}

@keyframes bannerText01 {
	0% {
		opacity: 0;
		transform: scale(0);
	}

	10% {
		opacity: 1;
		transform: scale(1.1);
	}

	20% {
		opacity: 1;
		transform: scale(1);
	}

	95% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(0);
	}
}

@keyframes bannerText02 {
	0% {
		opacity: 0;
		transform: scale(0);
	}

	3% {
		opacity: 0;
		transform: scale(0);
	}

	13% {
		opacity: 1;
		transform: scale(1.1);
	}

	23% {
		opacity: 1;
		transform: scale(1);
	}

	95% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(0);
	}
}

@keyframes bannerText03 {
	0% {
		opacity: 0;
		transform: scale(0);
	}

	6% {
		opacity: 0;
		transform: scale(0);
	}

	16% {
		opacity: 1;
		transform: scale(1.1);
	}

	26% {
		opacity: 1;
		transform: scale(1);
	}

	95% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(0);
	}
}

@media screen and (max-width: 1190px) {
	.ani_wrap {
		max-width: 100%;
	}

	.main_slider {
		background-size: 300px 300px, cover;
	}

		.main_slider .swiper_text {
			width: 300px;
			height: 300px;
		}

			.main_slider .swiper_text span {
				font-size: 1.6rem;
			}

			.main_slider .swiper_text .g_txt {
				font-size: 3rem;
			}

			.main_slider .swiper_text .g_txt_02 {
				font-size: 2.6rem;
			}

		.main_slider .swiper-pagination {
			bottom: 140px;
		}

	.ani_girl_wrap .img_girl {
		width: 345px;
		height: 468px;
	}

	.ani_game_wrap .img_game {
		width: 464px;
		height: 332px;
	}
}

@media screen and (max-width: 767px) {
	.main_slider {
		margin-left: 0;
		height: 360px;
		margin-top: -60px;
		background-size: 250px 250px, auto;
	}

	.main_slider_bg {
		height: 360px;
	}

	.main_slider .swiper-slide {
		height: 360px;
	}

	.main_slider .swiper-slide {
		position: relative;
		width: 100% !important;
	}

	.main_slider .swiper_text {
		width: 250px;
		height: 250px;
	}

		.main_slider .swiper_text span {
			font-size: 1.3rem;
		}

		.main_slider .swiper_text .g_txt {
			font-size: 2.4rem;
		}

		.main_slider .swiper_text .g_txt_02 {
			font-size: 2rem;
			margin-bottom: 10px;
		}

	.main_slider .swiper-pagination {
		bottom: 100px;
	}

	.main_slider .swiper-pagination-bullet {
		width: 5px;
		height: 5px;
	}

	.main_slider .swiper-pagination-bullet-active {
		width: 14px;
		height: 5px;
	}

	.ani_chip_wrap {
		bottom: 0;
		right: unset;
		left: 50%;
		transform: translateX(-50%);
	}

		.ani_chip_wrap .ico_chips {
			width: 100px;
			height: 80px;
		}

	.ani_girl_wrap .img_girl {
		width: 160px;
		min-width: 33vw;
		min-width: 33dvw;
		height: 240px;
		left: -40px;
	}

	.ani_game_wrap .img_game {
		width: 200px;
		min-width: 40vw;
		min-width: 40dvw;
		height: 220px;
		bottom: 0px;
		right: -40px;
	}
}

/* tab */
.menu_tab {
	position: relative;
	width: 100%;
	z-index: 1000;
	transition: top 0.3s, margin-top 0.3s;
}

	.menu_tab ul {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		padding: 0 61px;
	}

		.menu_tab ul::before {
			content: "";
			/* position:absolute;left:0;top:0; */
			display: inline-block;
			width: 61px;
			height: 90px;
			background: url(/assets/images/content/tab_left_bg.png) no-repeat;
			background-size: cover;
		}

		.menu_tab ul::after {
			content: "";
			/* position:absolute;right:0;top:0; */
			display: inline-block;
			width: 61px;
			height: 90px;
			background: url(/assets/images/content/tab_right_bg.png) no-repeat;
			background-size: cover;
		}

	.menu_tab li {
		position: relative;
		background-color: transparent;
		width: 352px;
		height: 90px;
		cursor: pointer;
	}

		.menu_tab li:nth-child(1),
		.menu_tab li:nth-child(2) {
			padding-right: 64px;
			width: 414px;
		}

		.menu_tab li:last-child {
			padding-right: 0;
		}

		.menu_tab li:not(:last-child):after {
			content: "";
			display: inline-block;
			position: absolute;
			right: -1px;
			top: 0;
			width: 65px;
			height: 90px;
			background: url(/assets/images/content/tap_center_bg.png) no-repeat;
			background-size: cover;
		}

		.menu_tab li button {
			display: block;
			position: relative;
			width: 100%;
			height: 90px;
			padding: 0;
			line-height: 1;
			font-size: 2.25rem;
			text-align: center;
			text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.45);
			font-family: var(--etype-ff-heading);
			font-weight: 400;
			color: #ffffff;
			background: transparent;
			background-image: url(/assets/images/content/tab_button.png);
			background-repeat: no-repeat;
			background-size: cover;
			transition: 0.3s;
		}

		.menu_tab li.active button {
			color: #fff;
			background-image: url(/assets/images/content/tab_button_over.png);
		}

		.menu_tab li:nth-child(1) button::before {
			background-image: url(/assets/images/content/icon_card.png);
		}

		.menu_tab li:nth-child(2) button::before {
			background-image: url(/assets/images/content/icon_hotelcasino.png);
		}

		.menu_tab li:nth-child(3) button::before {
			background-image: url(/assets/images/content/icon_slotcame.png);
		}

		.menu_tab li button::before {
			content: "";
			display: inline-block;
			width: 32px;
			height: 32px;
			margin: 0 14px 0 0;
			background-repeat: no-repeat;
			background-size: contain;
			background-position: center;
			vertical-align: middle;
		}

	.menu_tab.fixed {
		position: fixed;
		z-index: 1000;
		top: 0;
		width: 100%;
		max-width: 1310px;
	}

.cont_tab {
	padding: 30px 0;
	transition: margin-top 0.3s;
}

.cont_tab_area {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 1310px) {
	.menu_tab {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 0;
	}

		.menu_tab li {
			width: calc(100% / 3 - 60px);
		}

			.menu_tab li:nth-child(1),
			.menu_tab li:nth-child(2) {
				width: calc(100% / 3 + 30px);
				flex: 1 1 0;
			}
}

@media screen and (max-width: 1190px) {
	.menu_tab li button {
		font-size: 2rem;
	}

	.menu_tab li:nth-child(1) button::before {
		width: 25px;
		height: 22px;
	}

	.menu_tab li:nth-child(2) button::before {
		width: 25px;
		height: 22px;
	}

	.menu_tab li:nth-child(3) button::before {
		width: 25px;
		height: 22px;
	}
}

@media screen and (max-width: 767px) {
	.menu_tab li {
		height: 60px;
	}

	.menu_tab ul {
		padding: 0 10px;
	}

	.menu_tab li,
	.menu_tab li:nth-child(1),
	.menu_tab li:nth-child(2) {
		width: calc(100% / 3);
		flex: 1 1 0;
	}

		.menu_tab li:nth-child(1),
		.menu_tab li:nth-child(2) {
			padding-right: 0;
		}

		.menu_tab ul::before,
		.menu_tab li:not(:last-child):after,
		.menu_tab ul::after {
			display: none;
		}

		.menu_tab li button {
			height: 60px;
			font-size: 1.4rem;
		}

	.cont_tab {
		padding: 10px 0;
	}
}

@media screen and (max-width: 576px) {
	.menu_tab li button {
		font-size: 1.475rem;
	}

		.menu_tab li button:before {
			margin: 0 8px 0 0;
		}

	.menu_tab li:nth-child(1) button::before {
		width: 20px;
		height: 16px;
		margin: 0 5px 0 0;
	}

	.menu_tab li:nth-child(2) button::before {
		width: 20px;
		height: 16px;
		margin: 0 5px 0 0;
	}

	.menu_tab li:nth-child(3) button::before {
		width: 20px;
		height: 16px;
		margin: 0 5px 0 0;
	}
}

.cont_bottom {
	background-color: #15161b;
	width: 100%;
	padding: 70px 0 65px;
}

.cont_bottom_inner {
	max-width: 1310px;
	width: 100%;
	margin: 0 auto;
}




/* board */
.board_wrap {
	display: flex;
	flex-direction: row;
	gap: 4rem;
	width: 100%;
	padding: 0 20px;
}

.board_title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 24px;
	text-align: center;
	margin-bottom: 22px;
}

	.board_title img {
		height: 100%;
	}

	.board_title::before,
	.board_title:after {
		content: "";
		display: inline-block;
		width: 105px;
		height: 7px;
		background-repeat: no-repeat;
		background-size: cover;
		background-image: url(/assets/images/content/notice_line.png);
	}

	.board_title::before {
		left: 0;
	}

	.board_title::after {
		right: 0;
		transform: rotate(-180deg);
	}

.board_wrap .inner_wrap {
	width: 100%;
	height: 290px;
	border: 1px solid #0a0e13;
	background: linear-gradient(135deg, #4b8698 0%, #2b4a65 22%, #162434 52%, #0a0f13 100%);
}

	.board_wrap .inner_wrap .list {
		width: 100%;
	}

		.board_wrap .inner_wrap .list a {
			width: 100%;
			display: flex;
			flex-direction: row;
			justify-content: space-between;
			align-items: center;
		}

.inner_wrap .list.notice span {
	display: inline-block;
	width: 20%;
	text-align: right;
	font-size: 1.1rem;
	font-weight: 300;
}

	.inner_wrap .list.notice span:nth-child(1) {
		width: 80%;
		overflow: hidden;
		font-size: 1.4rem;
		text-overflow: ellipsis;
		white-space: nowrap;
		text-align: left;
	}

.nt_wrap {
	width: 500px;
	padding: 0;
}

	.nt_wrap .inner_wrap {
		overflow: auto;
		padding: 16px 8px;
	}

		.nt_wrap .inner_wrap .list li {
			padding: 8px 15px 8px 10px;
		}

			.nt_wrap .inner_wrap .list li a:before {
				content: "";
				display: inline-block;
				width: 2px;
				height: 2px;
				border-radius: 100%;
				background-color: #fff;
				vertical-align: top;
				margin: 1px 8px 0 0;
			}

.dw_wrap {
	width: calc(100% - 500px);
	height: 290px;
	padding: 0;
}

	.dw_wrap .inner_wrap {
		overflow: auto;
		display: flex;
		flex-direction: row;
		gap: 6px;
		width: 100%;
		padding: 6px;
	}

		.dw_wrap .inner_wrap .list {
			width: 50%;
		}

.inner_wrap .list .sticker {
	display: inline-block;
	width: 38px;
	height: 20px;
	line-height: 18px;
	border-radius: 4px;
}

.inner_wrap .list.withdraw .sticker {
	background: #d9b800;
	border: 1px solid #d9b800;
}

.inner_wrap .list.deposit .sticker {
	background: #284d7a;
	border: 1px solid #0d233e;
}

.dw_wrap .inner_wrap .list li {
	padding: 10px 10px 9px;
}

	.dw_wrap .inner_wrap .list li:nth-child(odd) {
		background-color: rgba(146, 252, 255, 0.125);
	}

.dw_wrap .inner_wrap .list span {
	display: inline-block;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 300;
}

	.dw_wrap .inner_wrap .list span:nth-child(1) {
		width: 12%;
		font-size: 1.2rem;
	}

	.dw_wrap .inner_wrap .list span:nth-child(2) {
		width: calc(28% - 10px);
		text-align: left;
		padding-left: 10px;
	}

	.dw_wrap .inner_wrap .list span:nth-child(3) {
		width: calc(30% - 10px);
		padding-left: 10px;
	}

	.dw_wrap .inner_wrap .list span:nth-child(4) {
		width: calc(30% - 10px);
		padding-left: 10px;
		font-size: 1.1rem !important;
	}

.btn_cs {
	position: relative;
	width: 100%;
	margin: 65px 0 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0 56px;
}

	.btn_cs::before,
	.btn_cs::after {
		content: "";
		position: absolute;
		left: 0;
		display: inline-block;
		width: 56px;
		height: 56px;
		background-repeat: no-repeat;
		background-size: cover;
		background-image: url(/assets/images/content/icon_sns_left.png);
	}

	.btn_cs::after {
		right: 0;
		left: inherit;
	}

	.btn_cs a {
		display: inline-block;
		width: 360px;
		height: 90px;
	}

		.btn_cs a img {
			height: 100%;
			width: auto;
			max-width: 100%;
			object-fit: scale-down;
		}

.cs_divide {
	display: inline-block;
	width: 56px;
	height: 56px;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/assets/images/content/icon_sns_center.png);
}





@media screen and (max-width: 1190px) {
	.cont_bottom_inner {
		max-width: 100%;
	}

	.board_wrap {
		padding: 0 30px;
	}

	.nt_wrap {
		padding: 0;
		width: 40%;
	}

	.dw_wrap {
		width: 60%;
	}

		.dw_wrap .inner_wrap .list span {
			font-size: 1.2rem;
		}

	.board_title {
		height: 15px;
	}

	.cs_divide {
		display: none;
	}

	.btn_cs {
		padding: 0 30px;
	}

		.btn_cs::before,
		.btn_cs::after {
			display: none;
		}

		.btn_cs a {
			width: 32%;
			height: fit-content;
		}
}

@media screen and (max-width: 767px) {
	.board_wrap {
		flex-direction: column;
		padding: 0 10px;
	}

		.board_wrap .inner_wrap {
			height: auto;
			padding: 0;
		}

	.cont_bottom {
		padding: 50px 0;
	}

	.dw_wrap,
	.nt_wrap {
		width: 100%;
	}

	.nt_wrap {
		padding: 0;
	}

	.dw_wrap {
		margin-top: 40px;
		margin-left: 0;
	}

	.board_title::before,
	.board_title:after {
		width: 80px;
		height: 5px;
	}

	.dw_wrap {
		height: auto;
	}

		.dw_wrap .inner_wrap {
			flex-direction: column;
		}

			.dw_wrap .inner_wrap .list {
				width: 100%;
			}

	.btn_cs {
		padding: 0 10px;
		margin-top: 25px;
		flex-direction: column;
		align-items: center;
	}

		.btn_cs a {
			width: 100%;
			height: auto;
			text-align: center;
		}
}

/* footer */
.footer {
	width: 100%;
	background: #040506;
}

.footer_inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	max-width: 1310px;
	margin: 0 auto;
	padding: 50px 0;
}

.copyright {
	height: 60px;
	line-height: 60px;
	background: #0b0d11;
}

	.copyright .info {
		display: block;
		max-width: 1310px;
		height: 100%;
		margin: 0 auto;
		color: #fff;
		font-size: 1.3rem;
		text-align: center;
	}

		.copyright .info em {
			display: inline-block;
			color: #757575;
			margin-left: 10px;
		}

			.copyright .info em::before {
				content: "";
				display: inline-block;
				margin-right: 10px;
				margin-top: -1px;
				width: 1px;
				height: 12px;
				background-color: #757575;
				vertical-align: middle;
			}

@media screen and (max-width: 1310px) {
	.footer_inner {
		max-width: 100%;
	}

		.footer_inner > div {
			padding: 0 20px;
		}

		.footer_inner img {
			width: 100%;
		}
}

@media screen and (max-width: 1190px) {
	.footer_inner {
		max-width: 100%;
		padding: 30px;
	}

		.footer_inner > div {
			padding: 0 20px;
		}

		.footer_inner img {
			width: 100%;
		}
}

@media screen and (max-width: 767px) {
	.footer_inner {
		max-width: 100%;
		flex-direction: column;
		padding: 30px;
	}

		.footer_inner > div {
			width: 100%;
			text-align: center;
		}

			.footer_inner > div + div {
				margin-top: 20px;
			}

		.footer_inner img {
			width: 100%;
		}

		.footer_inner div:nth-child(2) img {
			width: 30%;
		}

	.copyright {
		height: 40px;
		line-height: 40px;
	}

		.copyright .info {
			font-size: 1.2rem;
		}
}




/* popup */
.bg_mask {
	z-index: 8000;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}

.popup_box {
	display: none;
	position: absolute;
	width: 350px;
	border: 5px solid rgba(178, 112, 44, 0.75);
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
	background: url(/assets/images/content/bg_all.png) no-repeat;
	background-size: cover;
	background-position: top right;
}
	.popup_box.joinLayer {
		display: none;
		position: absolute;
		border: 5px solid rgba(178, 112, 44, 0.75);
		box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
		background: url(/assets/images/content/bg_all.png) no-repeat;
		background-size: cover;
		background-position: top right;
	}

	.popup_box.view {
		z-index: 9998;
		display: block;
	}

.popup_multi {
	display: none;
	overflow: hidden;
	position: absolute;
	background: radial-gradient(100% 100% at 50% 0, #2667c0 0, #031f46 100%), linear-gradient(90deg, #bf9b30, #ffecb1 50.93%, #bf9b30);
	width: 280px;
	border-radius: 13px;
	border: 0;
}

	.popup_multi.view {
		z-index: 9998;
		display: block;
	}

.layer_content {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0;
	width: 100%;
	height: 100%;
}

.layer_head {
	text-align: center;
	padding: 20px 0;
	margin: unset;
}

	.layer_head p {
		display: block;
		font-family: var(--etype-ff-heading);
		font-weight: 400;
		font-size: 2rem;
		letter-spacing: 0;
	}

.layer_foot {
	padding: 20px 0;
}

	.layer_foot .text_link {
		text-align: center;
		font-size: 1.3rem;
	}

		.layer_foot .text_link button {
			display: inline-block;
			font-size: 1.4rem;
			margin-left: 10px;
		}

		.layer_foot .text_link span {
			color: #757575;
		}

		.layer_foot .text_link > div {
			display: flex;
			align-items: center;
			justify-content: center;
		}

			.layer_foot .text_link > div + div {
				margin-top: 8px;
			}

.loginboxwidth {
	width: auto !important;
}

.popup_box .close {
	z-index: 9999;
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	vertical-align: unset;
	width: 40px;
	height: 40px;
	color: #c9934c;
	opacity: 1;
	font-size: 2.15rem;
	background: none;
	border-radius: 0;
	transition: all 0.35s ease-in-out;
}

	.popup_box .close:hover {
		background: none;
		border: 0;
		color: #fff;
		transform: scale(1.2);
		transform-origin: center;
	}

	.popup_box .close i {
		line-height: 0;
	}

	.popup_box .close.center-top-close {
		top: 0;
		left: 50%;
		transform: translate(-50%, -100%);
		background: rgb(72, 39, 6);
		border: 4px solid rgba(178, 112, 44, 0.75);
		border-bottom-width: 0;
		color: #ffffff;
		font-size: 1.75rem;
		box-sizing: content-box;
		transition: all 0.3s ease-in-out;
	}

		.popup_box .close.center-top-close:hover {
			background-color: rgba(178, 112, 44, 0.75);
			border-bottom-width: 4px;
		}

		.popup_box .close.center-top-close i {
			display: inline-block;
			transition: transform 0.3s ease-in-out;
		}

		.popup_box .close.center-top-close:hover i {
			transform: rotate(180deg);
		}

		.popup_box .close.center-top-close:not(:hover) i {
			transform: rotate(-180deg);
		}

/* popup : LOGIN */
.joinLayer .layer_content,
.loginLayer .layer_content {
	padding: 30px;
}

/* popup :all_popup */
.popup_box.all_popup {
	max-width: 750px;
	height: 100%;
	width: 100%;
	margin: 0 auto;
}

/* game_list */
.game_list {
	width: 100%;
	padding: 10px 0 0;
}

	.game_list ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px;
		width: 100%;
	}

		.game_list ul li {
			overflow: hidden;
			position: relative;
			width: 314px;
			height: 340px;
			cursor: pointer;
		}

			.game_list ul li:after {
				content: "";
				position: absolute;
				z-index: 11;
				display: block;
				left: 0;
				top: 0;
				/* background:url(/assets/images/content/list_thumb_bg.png) center top no-repeat; */
				background: url(/assets/images/content/list_thumb_bg_title.png) center top no-repeat;
				background-size: 100% 100%;
				width: 100%;
				height: 100%;
			}

			.game_list ul li a {
				overflow: hidden;
				display: block;
				width: 100%;
				height: 100%;
				padding: 8px;
				padding: clamp(8px, 1.125vw, 18px);
			}

				.game_list ul li a > div {
					position: absolute;
					left: 0;
					top: 0;
					width: 100%;
					height: 100%;
					padding: 35px 20px;
				}

			.game_list ul li img {
				position: absolute;
				left: 0;
				top: 0;
				width: 100%;
				height: 100%;
				object-fit: cover;
			}

	.game_list li .game_img {
		overflow: hidden;
		position: relative;
		display: block;
		width: 100%;
		min-height: calc(100% - 28px);
		/* max-height: 256px; min-height: 152px; */
		background-size: cover;
		background-position: top center;
	}

		.game_list li .game_img video {
			position: absolute;
			left: 50%;
			top: 0;
			transform: translate(-50%, 0);
			width: 100%;
			min-width: 100%;
			height: auto;
			min-height: 100%;
			object-fit: unset;
			backface-visibility: hidden;
		}

	.game_list li .games_name {
		position: absolute;
		z-index: 12;
		left: 0;
		bottom: 0;
		display: block;
		width: 100%;
		height: auto;
		padding: 16px 0 30px;
		background: transparent;
		text-align: center;
		font-size: 1.725rem;
		line-height: 1;
		font-family: var(--etype-ff-heading);
		letter-spacing: 0.025rem;
		text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.75);
	}

	.game_list li:hover .games_name {
		background: linear-gradient(0deg, rgba(15, 24, 24, 0.9) 50%, rgba(15, 24, 24, 0) 100%);
	}

	.game_list li .hover_bg {
		position: absolute;
		z-index: 9;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		transition: opacity 0.3s;
	}

	.game_list li:hover .hover_bg {
		opacity: 1;
	}

	.game_list li .hover_bg .btn {
		position: relative;
		background: linear-gradient(180deg, #fff66d, #ffa51a);
		overflow: hidden;
		font-weight: 600;
		font-size: 1.65rem;
		color: #622d11;
		padding: 16px;
		min-width: initial;
		text-align: center;
		opacity: 1;
		transition: all 0.3s;
		border-radius: 8px;
		box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
		display: flex;
		align-items: center;
		justify-content: center;
	}

		.game_list li .hover_bg .btn em {
			font-size: 1.4rem;
			display: inline-block;
			margin-left: 10px;
			font-family: var(--etype-ff-heading);
			font-weight: 400;
		}

		.game_list li .hover_bg .btn:hover {
			text-decoration: none;
			color: #fafafa;
			text-shadow: -2px 2px 4px #00000080;
			background: linear-gradient(180deg, #fff66d, #ffa51a);
			transition: all 0.3s;
		}

			.game_list li .hover_bg .btn:hover i.play img {
				filter: drop-shadow(-4px 0 4px #00000080);
			}

		.game_list li .hover_bg .btn i.play {
			width: 36px;
			height: auto;
		}

			.game_list li .hover_bg .btn i.play img {
				position: relative;
				top: initial;
				left: initial;
			}

@media screen and (max-width: 1310px) {
	.game_list {
		padding: 10px 0;
	}

		.game_list ul li {
			width: 280px;
			height: 250px;
		}

		.game_list li .games_name {
			padding: 14px 0 20px;
		}
}

@media screen and (max-width: 1190px) {
	.game_list {
		padding: 10px 0 0;
	}

		.game_list ul li {
			width: calc(100% / 3 - 12px);
			height: 268px;
		}

		.game_list li .games_name {
			padding: 18px 0 20px;
		}
}

@media screen and (max-width: 916px) {
	.game_list ul li {
		height: 225px;
	}

	.game_list li .games_name {
		font-size: 1.425rem;
		padding: 10px 0 15px;
		height: fit-content;
	}
}

@media screen and (max-width: 767px) {
	.game_list {
		padding: 10px 10px 0;
	}

		.game_list ul {
			gap: 12px;
		}

			.game_list ul li {
				height: 200px;
			}
}

@media screen and (max-width: 576px) {
	.game_list ul li {
		height: 168px;
	}

	.game_list li .games_name {
		font-size: 1.25rem;
	}
}

@media screen and (max-width: 430px) {
	.loginboxwidth {
		width: 94% !important;
		left: 3% !important;
	}

	.game_list ul li {
		width: calc(100% / 2 - 6px);
		height: 180px;
	}
}

/*
@media screen and (max-width:390px)	{
	.game_list ul li	{ height: 128px;}
}
@media screen and (max-width:375px)	{
	.game_list ul li	{ height: 120px;}
}
*/

/* common button */
.button_area {
	width: 100%;
	margin-top: 40px;
}

	.button_area .btn {
		display: block;
		width: 100%;
		height: 40px;
		border-radius: 4px;
		background: #969696;
		color: #fff;
		font-size: 1.4rem;
		line-height: 40px;
		text-align: center;
		font-family: var(--etype-ff-heading);
		font-weight: 400;
		text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	}

		.button_area .btn:hover {
			filter: brightness(1.2);
		}

		.button_area .btn.active {
			background: #d09340;
		}

		.button_area .btn + .btn {
			margin-top: 10px;
		}

	.button_area.button_2 {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 1rem;
	}

		.button_area.button_2 .btn {
			width: 50%;
		}

			.button_area.button_2 .btn + .btn {
				margin-top: 0;
			}

/* common form */
.input input::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.3);
	font-size: 1.6rem;
}

.input input:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.3);
	font-size: 1.6rem;
}

.input input::placeholder {
	color: rgba(0, 0, 0, 0.3);
	font-size: 1.6rem;
}

.inpClear {
	z-index: 10;
	position: absolute;
	right: 15px;
	top: 13px;
	width: 20px;
	height: 20px;
	text-align: center;
	vertical-align: top;
}

	.inpClear i {
		font-size: 1.4rem;
		font-weight: 600;
		color: #ee3e73;
	}

.form + .form {
	margin-top: 15px;
}

.form_text + .form_text {
	margin-top: 15px;
}

.form {
	position: relative;
}

	.form .form_title {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
		font-size: 1.6rem;
		color: #000;
		margin-bottom: 4px;
		font-weight: 400;
	}

		.form .form_title h3 {
			font-weight: 400;
		}

.asc {
	color: #ee3e73;
	display: block;
	text-align: left;
	margin: 5px 0 0 2px;
	font-size: 1.2rem;
	font-weight: 400;
}

.desc {
	display: block;
	color: #000;
	font-size: 1.6rem;
	margin: 9px 0 0 0;
	text-align: right;
}

.form_noti {
	color: #000;
	font-size: 1.6rem;
	line-height: 23px;
	text-align: right;
	margin-bottom: 50px;
}

.form .form_text {
	position: relative;
}

.form .input {
	overflow: hidden;
	position: relative;
	display: block;
	padding: 0;
	width: 100%;
	height: 38px;
	font-size: 1.4rem;
	background-color: #fff;
	border-radius: 4px;
}

	.form .input input {
		width: 100%;
		height: 100%;
		border: 0;
		padding: 0 35px 0 50px;
		font-size: 1.4rem;
		background-color: transparent;
		color: #153858;
		text-align: left;
	}
	.form .input select {
		width: 100%;
		height: 100%;
		border: 0;
		padding: 0 35px 0 50px;
		font-size: 1.4rem;
		background-color: transparent;
		color: #153858;
		text-align: left;
	}

	.form .input .iconImg {
		width: 15px;
		height: 15px;
		position: absolute;
		left: 15px;
		top: 15px;
	}

	.form .input .icon_font {
		position: absolute;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		left: 0;
		top: 0;
		height: 40px;
		width: 40px;
		background-color: #263252;
	}

	.form .input i {
		line-height: 0;
		display: inline-block;
		color: #fff;
	}

input:-internal-autofill-selected {
	background-color: inherit;
}

.form.select {
	text-align: left;
	width: 100%;
}

	.form.select .select_box {
		display: inline-block;
		position: relative;
		width: 100%;
		height: 28px;
		background-color: #fff;
		border-top: 1px solid #1f2937;
		border-bottom: 1px solid #1f2937;
	}

		.form.select .select_box label {
			position: absolute;
			top: 0;
			left: 10px;
			font-size: 1.4rem;
			color: #1f2937;
			line-height: 26px;
		}

		.form.select .select_box:after {
			content: "";
			display: inline-block;
			position: absolute;
			right: 10px;
			top: 11px;
			margin-left: 8px;
			width: 0;
			height: 0;
			vertical-align: top;
			border-style: solid;
			border-width: 5px 5px 0 5px;
			border-color: #1f2937 transparent transparent transparent;
		}

		.form.select .select_box .select {
			width: 100%;
			height: 28px;
			line-height: 28px;
			color: #fff;
			opacity: 0;
			filter: alpha(opacity=0);
			font-size: 1.4rem;
		}

		.form.select .select_box label.on {
			color: #1f2937 !important;
		}

@media screen and (max-width: 767px) {
	.button_area .btn {
		height: 35px;
		line-height: 35px;
		font-size: 1.3rem;
	}
}

.popup_box.w450 {
	width: 450px;
}

.popup_box.w648 {
	width: 648px;
}

.popup_box.w700 {
	width: 700px;
}

.menu_tab_type_02 {
	position: relative;
	width: 100%;
	z-index: 1000;
}

	.menu_tab_type_02 ul {
		position: relative;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		border-bottom: 2px solid #64533e;
	}

	.menu_tab_type_02 li {
		background-color: transparent;
		width: calc(100% / 2);
		height: auto;
		cursor: pointer;
		position: relative;
	}

		.menu_tab_type_02 li button {
			background: rgba(66, 54, 40, 0.3);
			display: block;
			position: relative;
			width: 100%;
			height: 45px;
			padding: 0;
			line-height: 45px;
			font-size: 1.4rem;
			color: #c3ad94;
			text-align: center;
			transition: 0.3s;
		}

		.menu_tab_type_02 li.active button {
			color: #fff;
			background: #66533c;
		}

	.menu_tab_type_02.tab_05 li {
		width: calc(100% / 5);
	}

.common_dl_form {
	width: 100%;
	padding: 0 20px;
}

	.common_dl_form dl {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.common_dl_form dt {
		width: 15%;
		font-size: 1.3rem;
		font-weight: 600;
		padding: 6px 0;
	}

	.common_dl_form dd {
		width: 85%;
		font-size: 1.3rem;
		padding: 6px 0;
	}

		.common_dl_form dd span {
			display: block;
			color: #ffc16c;
		}

			.common_dl_form dd span.msg {
				color: #757575;
				margin-top: 5px;
			}

	.common_dl_form .btn {
		display: inline-block;
		background: #284d7a;
		border: 1px solid #0d233e;
		text-align: center;
		height: 30px;
		line-height: 28px;
		padding: 0 10px;
		border-radius: 4px;
	}

.layer_body {
	width: 100%;
	padding: 0 16px 16px;
	overflow: auto;
}

.common_list {
	position: relative;
	width: 100%;
	height: 100%;
}

.list_inner {
	min-height: 20vh;
	min-height: 20dvh; /* safari */
	max-height: 400px;
	overflow: auto;
}

.common_list ul {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.common_list li {
	padding: 6px;
	font-size: 1.3rem;
	/* border-bottom: 1px solid rgba(0, 0, 0, 0.4); */
}

	.common_list li:not(.w-full) {
		width: 33.3%;
	}

	.common_list li a {
		display: block;
		width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		word-break: break-word;
	}

.common_list .thead {
	margin-bottom: 2px;
}

	.common_list .thead li {
		text-align: center;
		background: rgba(200, 180, 140, 0.1);
		color: #fff;
	}

		.common_list .tlist li:first-child,
		.common_list .thead li:first-child {
			max-width: 100px;
		}

.common_list .tlist li:not(.answer) {
	text-align: center;
}

.common_list.notice li:nth-child(1) {
	width: 10%;
}

.common_list.notice li:nth-child(2) {
	width: 70%;
}

.common_list.notice li:nth-child(3) {
	width: 20%;
}

.common_list .tlist li:nth-child(2) {
	text-align: left;
}

.common_list.coupon li:nth-child(1) {
	width: 70%;
}

.common_list.coupon li:nth-child(2) {
	width: 30%;
	text-align: center;
}

.common_list.list_5 li:nth-child(1) {
	width: 10%;
}

.common_list.list_5 li:nth-child(2) {
	width: 30%;
	text-align: center;
}

.common_list.list_5 li:nth-child(3) {
	width: 20%;
}

.common_list.list_5 li:nth-child(4) {
	width: 20%;
}

.common_list.list_5 li:nth-child(5) {
	width: 20%;
}

.common_list .tlist.contNone li {
	width: 100%;
	padding: 15px 0 25px;
	text-align: center;
	font-size: 1.4rem;
	max-width: 100%; /* */
}

ul.tlist.answer {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	border: 3px double rgba(200, 145, 75, 0.25);
	background: rgba(200, 145, 75, 0.1);
}

	ul.tlist.answer li {
		border: unset;
	}

.m_hiding {
	display: block;
}

.m_memo_date {
	display: none;
}

@media screen and (max-width:420px) {
	.common_list .memo {
	}

	.memo .thead {
	}

		.memo .thead li:nth-child(2) {
			width: 77%;
		}

		.memo .thead li:nth-child(3) {
			display: none;
		}

	.common_list .thead li {
	}

	.memo .tlist {
	}

		.memo .tlist li:nth-child(2) {
			width: 77%;
		}

		.memo .tlist li:nth-child(3) {
			display: none;
		}

	.m_memo_date {
		display: block;
		font-size: 1.1rem;
		color: #ffffff66;
	}

	.m_hiding {
		display: none;
	}

	ul.tlist.answer li {
		padding: 6px 20px;
		margin: 0;
		max-width: 100% !important;
		text-align: left !important;
	}
}

.btn_money {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 4px;
	margin: 10px 0 0;
}

	.btn_money input {
		display: inline-block;
		padding: 0 12px;
		color: #fff;
		height: 32px;
		line-height: 32px;
		font-size: 1.3rem;
		font-weight: 600;
		background: linear-gradient(to bottom, #705ab5 5%, #4e3b8b 100%);
		border: 1px solid #f3d067;
		border: 1px solid #29148b;
		border-radius: 4px;
	}

		.btn_money input:hover {
			filter: brightness(1.2);
		}

		.btn_money input.active {
			filter: brightness(1.2);
		}

	.btn_money .inp_reset {
		display: inline-block;
		padding: 0 15px;
		height: 32px;
		line-height: 32px;
		font-size: 1.4rem;
		font-weight: 600;
		color: #fff;
		background: linear-gradient(to bottom, #f24537 5%, #c62d1f 100%);
		border: 1px solid #d02718;
		border-radius: 4px;
	}

.input_area {
	height: 32px;
	line-height: 32px;
	border-radius: 4px;
}

	.input_area input {
		width: 100%;
		height: 100%;
		text-align: left;
		padding: 0 15px;
	}

.layer_input {
	height: 32px;
	line-height: 32px;
	border-radius: 4px;
}

	.layer_input input {
		width: 100%;
		height: 100%;
		text-align: left;
		padding: 0 15px;
	}

.border_bottom {
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	margin-bottom: 4px;
	padding-bottom: 10px !important;
}

@media screen and (max-width: 767px) {
	.popup_box {
		width: 95%;
	}

		.popup_box.w450 {
			width: 95%;
		}

		.popup_box.w648 {
			width: 95%;
		}

		.popup_box.w700 {
			width: 95%;
		}

	.layer_head p {
		font-size: 1.6rem;
	}

	.menu_tab_type_02 li button {
		height: 40px;
		line-height: 40px;
	}

	.btn_money input {
		padding: 0 8px;
		font-size: 1.2rem;
	}

	.common_dl_form dt {
		width: 30%;
	}

	.common_dl_form dd {
		width: 70%;
	}

	.menu_tab_type_02 li button {
		font-size: 1.2rem;
	}

	.common_list.notice li:nth-child(2) {
		width: 60%;
	}

	.common_list.notice li:nth-child(3) {
		width: 30%;
	}

	.common_list.list_5 li:nth-child(1) {
		width: 20%;
	}

	.common_list.list_5 li:nth-child(2) {
		width: 20%;
		text-align: center;
	}

	.common_list.list_5 li:nth-child(3) {
		width: 20%;
	}

	.common_list.list_5 li:nth-child(4) {
		width: 20%;
	}

	.common_list.list_5 li:nth-child(5) {
		width: 20%;
	}

	.common_list .tlist.contNone li {
		width: 100%;
		font-size: 1.3rem;
	}
}

/* add 20250101 Slot detail */
::-webkit-scrollbar {
	width: 6px;
	height: 0;
	border: 0;
}

.SlotDetail {
	width: 1200px;
	height: 80%;
	min-height: unset;
}

.popup_box.SlotDetail.view {
	position: fixed;
	top: 10vw;
	top: clamp(10%, 14vw, 10rem) !important;
	left: 50% !important;
	transform: translateX(-50%);
}

.popup_box.SlotDetail .game-view > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

	.popup_box.SlotDetail .game-view > a img {
	}

	.popup_box.SlotDetail .game-view > a .nm_sgame {
		text-align: center;
	}

.game-view {
	width: calc(100% / 4 - 12px);
	padding: 6px;
	overflow: hidden;
	background: #ffffff;
	border-radius: 12px;
}

	.game-view img {
		width: 100%;
		max-height: 157px;
		border-radius: 10px;
	}

.modal-dialog {
	height: 100%;
}

.modal-content {
	height: 100%;
	overflow: scroll;
	padding: 0;
	margin: 0;
}

.pop-header {
	position: sticky;
	top: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	height: 60px;
	font-size: 2.4rem;
	background: #4b2700;
}

.slotnav {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 16px;
	height: 100%;
	padding: 16px;
	/* background: rgba(255, 255, 255, 0.2); */
}

.nm_sgame {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0 !important;
	padding: 8px 0 2px;
	font-size: 1.6rem;
	font-weight: 600;
	word-break: keep-all;
	color: #482706;
}

@media screen and (max-width: 1260px) {
	.popup_box {
		width: 94%;
	}
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 986px) {
	.nm_sgame {
		font-size: 1.4rem;
	}

	.game-view {
		width: calc(100% / 3 - 12px);
	}
}

@media screen and (max-width: 730px) {
}

@media screen and (max-width: 500px) {
	.slotnav {
		gap: 8px;
		padding: 8px;
	}

	.game-view {
		width: calc(100% / 2 - 4px);
	}

	.nm_sgame {
		font-size: 1.3rem;
	}
}


.SlotDetail .layer_body {
	width: 100%;
	height: 100%;
	overflow: auto;
}

.SlotDetail .list_inner {
	overflow-y: unset;
	min-height: 60vh;
	min-height: 60dvh; /* safari */
	max-height: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.SlotDetail .common_list li:not(.w-full) {
	width: 23%;
}

@media screen and (max-width: 1114px) {
	.SlotDetail .common_list li:not(.w-full) {
		width: 22%;
	}
}

@media screen and (max-width: 767px) {
	.SlotDetail .common_list li:not(.w-full) {
		width: 21%;
	}
}

@media screen and (max-width: 591px) {
	.SlotDetail .common_list li:not(.w-full) {
		width: 27%;
	}
}


.trans img {
	max-height: max-content !important;
}



.slot_gtitle {
	width: 50%;
	text-align: left;
	font-weight: bold;
	padding-left: 20px !important;
	padding-top: 4px !important;
}

.slot_g_searchbox {
	position: relative;
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
	flex-wrap: nowrap;
	width: 50%;
	padding-right: 8px;
}

@media (max-width: 768px) {
	/*
	.slot_g_searchbox {
		padding-right: 30px;
		width: 50%;
	}
	*/
}

@media (max-width: 420px) {
	.slot_g_searchbox {
		width: 100%;
	}
}

.searchbox {
	background: #fff;
	border: 1px solid #c9c9c9;
	padding: 2px;
	border-radius: 3px;
	width: 50%;
}

.searchbox-txt {
	border: 0px;
	width: 85%;
	height: 30px;
	outline: none;
	font-size: 1.8rem;
	padding-top: 1px;
	padding-left: 6px;
	color: #4a4a4a;
}

.searchbox-bt {
	float: right;
	border: 0px;
	background: #fff;
	width: 30px;
	height: 30px;
	line-height: 3rem;
	color: #000;
}

@media (max-width: 1200px) {
	.searchbox-txt {
		width: 80%;
	}

	.searchbox {
		width: 60%;
	}
}

@media (max-width: 768px) {
	.searchbox-txt {
		width: 74%;
	}

	.searchbox {
		width: 68%;
	}
}

@media (max-width: 500px) {
	.pop-header h2 {
		font-size: 26px !important;
	}

	.searchbox {
		width: 80%;
	}

	.slot_gtitle {
		width: 60%;
	}

	.searchbox-txt {
		width: 70% !important;
	}
}

@media (max-width: 420px) {
	.pop-header h2 {
		font-size: 16px !important;
	}

	.searchbox {
		width: 90%;
	}

	.slot_gtitle {
		width: 76%;
		padding-left: 14px !important;
	}
}

.search-icon {
	font-size: 17px;
	line-height: 0;
	position: relative;
	top: 3px;
}

.custombg1 {
	background: #000000cc;
}

.fi {
	vertical-align: middle;
}

.font1 {
	font-size: 1.8rem;
}

.font2 {
	font-size: 2rem;
}

.mb-6 {
	margin-bottom: 6px !important;
}

.text-right {
	text-align: right;
}
.hide{
	display:none;
}

.joinLayer {
	max-height: 90vh; 
	overflow-y: auto;
}

	.joinLayer .layer_content_2 {
		display: flex;
		flex-wrap: nowrap;
		gap: 2rem;
		justify-content: space-between;
		padding: 1rem;
		box-sizing: border-box;
		flex-direction: row;
	}

	.joinLayer .form_column {
		flex: 1 1 45%;
		min-width: 300px;
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

@media (max-width: 768px) {
	.joinLayer .layer_content {
		flex-direction: column;
	}

	.joinLayer .form_column {
		flex: 1 1 100%;
		min-width: 100%;
	}
}


 .plan-ribbon-wrapper {
	height: 88px;
	overflow: hidden;
	position: absolute;
	right: -3px;
	top: -5px;
	width: 85px;
	z-index: 1;
}

.plan-ribbon {
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	-o-transform: rotate(315deg);
	transform: rotate(315deg);
	background-image: -webkit-linear-gradient(top, #bfdc7a, #8ebf45);
	background-image: linear-gradient(to bottom, #bfdc7a, #8ebf45);
	background-color: #bfdc7a;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
	color: #333;
	font-size: 14px;
	left: -75px;
	padding: 7px 0;
	position: relative;
	text-align: center;
	text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0;
	top: 15px;
	width: 240px;
}

	.plan-ribbon:before {
		left: 0;
		border-left: 3px solid transparent;
		border-right: 3px solid transparent;
		bottom: -3px;
		content: "";
		position: absolute;
	}

.pricing-table .plan-ribbon:after {
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	bottom: -3px;
	content: "";
	position: absolute;
	right: 0;
}

.popupOverlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none; 
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
	background: rgba(0, 0, 0, .7);
}

.popupOverlay .popupWrap {
	position: absolute;
	z-index: 1051;
	width: 100%;
	min-width: 1440px;
	top: 180px;
	display: flex;
	flex-flow: row;
	place-content: flex-start center;
	align-items: flex-start;
	text-align: center;
	background-attachment: fixed;
	color: rgb(255, 255, 255);
	font-size: 14px;
	font-family: var(--font-stylish);
	transition: 0.23s;
}

.popupOverlay .noticeNewPop {
	position: relative;
	margin: 0px 15px;
	box-shadow: rgba(0, 0, 0, 0.85) 0px 0px 10px 0px;
}

.popupOverlay .noticeNewPop .popup_wrap {
	width: 100%;
	min-width: 300px;
	max-width: 520px;
	border-width: 4px;
	border-style: solid;
	border-image: initial;
	border-color: var(--popup-concept-color);
	box-sizing: border-box;
}

.popupOverlay .noticeNewPop .popup_wrap .popup_box2 {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.85);
}

.popupOverlay .noticeNewPop .popup_wrap .popup_box2 .popup_content {
	display: block;
	color: rgb(233, 233, 233);
	box-sizing: border-box;
}

.popupOverlay .popup_wrap .btnPopClose {
	position: absolute;
	right: -15px;
	top: -17px;
}

.popupOverlay .popup_wrap .btnPopClose a {
	background-color: var(--popup-concept-color);
	border-radius: 40px;
	overflow: hidden;
	width: 40px;
	height: 40px;
	text-align: center;
	cursor: pointer;
	display: block;
	opacity: 1;
	transform: scale(1);
	transition: 0.3s ease-in-out;
}

.popupOverlay .popup_wrap .btnPopToday {
	position: absolute;
	margin: 0px auto;
	width: auto;
	top: -10px;
	left: 0px;
}

.popupOverlay .popup_wrap .btnPopToday a {
	background-color: var(--popup-concept-color);
	padding: 4px 10px;
	box-sizing: border-box;
	border-radius: 20px;
	text-align: center;
	cursor: pointer;
	display: block;
	opacity: 1;
	transform: scale(1);
	transition: 0.3s ease-in-out;
}

.popupOverlay .popup_wrap .btnPopToday a:hover {
	opacity: 0.95;
	margin-left: 10px;
	transition: 0.3s ease-in-out;
	box-shadow: rgb(0, 0, 0) 2px 2px 5px;
}

.popupOverlay .popup_wrap .btnPopClose a:hover {
	opacity: 0.85;
	transform: scale(1.25);
	transition: 0.3s ease-in-out;
	box-shadow: rgb(0, 0, 0) 2px 2px 5px;
}

.popupOverlay .popup_wrap .btnPopToday a span {
	font-size: 12px;
	letter-spacing: -0.035rem;
	font-weight: 600;
	color: var(--popup-text-color);
}

.popupOverlay .popup_wrap .btnPopClose a svg {
	fill: var(--popup-text-color);
	width: 16px;
	height: auto;
	display: block;
	margin: 12px auto;
}
.popupOverlay .popup_wrap .btnPopToday a span svg {
	fill: var(--popup-text-color);
	vertical-align: middle;
	margin: -3px 0px 0px 5px;
	opacity: 0.85;
}

@media (max-width: 768px) {

	.noticeNewPop .popup_wrap .popup_box2 .popup_content {
		max-height: 50vh;
	}

	.popupWrap {
		width: 90%;
		margin: 0px auto;
		min-width: 300px;
		top: 100px;
		display: flex;
		align-items: center;
		place-content: center flex-start;
		flex-direction: column;
	}

	.noticeNewPop {
		position: absolute;
		margin: 0px auto;
		width: 100%;
	}

	.noticeNewPop .popup_wrap {
		max-width: none;
	}
}


/*로딩*/
.wrapper_loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1976;
	transition: .5s all cubic-bezier(0, 0, 0, 1);
}

.wrapper_loading_img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -50px;
	margin-left: -50px;
	width: 100px;
	height: 100px;
}

.hidden {
	display: none !important;
	opacity: 0;
	visibility: hidden;
}

.date-range-search-btn.btn {
	display: inline-block;
	background: #284d7a;
	border: 1px solid #0d233e;
	text-align: center;
	height: 30px;
	line-height: 28px;
	padding: 0 10px;
	border-radius: 4px;
}
.input-group {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: nowrap;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
	flex-direction: row;
	gap:2rem;
	margin-bottom:5px;
}
.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 5px);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15sease-in-out, box-shadow .15sease-in-out;
}
.gamePlayarear {
	position: fixed;
	top: 0;
	z-index: 10001;
	width: 100%;
	height: 100vh;
	padding: 20px;
	background: #000;
	display: none;
}

	.gamePlayarear #subPageFrame {
		border: 5px solid rgba(178, 112, 44, 0.75);
		position: relative;
		z-index: 1;
		box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
		background: url(/assets/images/content/bg_all.png) no-repeat;
		background-size: cover;
		background-position: top right;
	}

	.gamePlayarear .winContent {
		color: #e8ce9e;
		position: absolute;
		text-align: center;
		top: 40%;
		left: 50%;
		font-size: 20px;
		transform: translate(-50%, -50%);
	}

	.gamePlayarear .modal-close-btn {
		position: absolute;
		z-index: 2;
		background-color: rgba(0,0,0,.9);
		top: 5px;
		right: 5px;
	}

.gamePlayarear .modal-close-btn .fi {
	font-size: 21px;
	color: rgb(178, 112, 44);
}
