@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
@keyframes fadein {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}
@keyframes fadein--left {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}
	100% {
		opacity: 1;
		transform: translatex(0px);
	}
}
@keyframes updown {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes heartbeat {
	from {
		transform: scale(1);
		transform-origin: center center;
		animation-timing-function: ease-out;
	}
	10% {
		transform: scale(0.91);
		animation-timing-function: ease-in;
	}
	17% {
		transform: scale(0.98);
		animation-timing-function: ease-out;
	}
	33% {
		transform: scale(0.87);
		animation-timing-function: ease-in;
	}
	45% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
}
@keyframes jackpot-ani {
	0% {
		text-shadow: 0 0 5px rgba(255, 255, 255, 0.56);
	}
	50% {
		text-shadow: 0 0 10px rgba(255, 255, 255, 0.86);
	}
	100% {
		text-shadow: 0 0 5px rgba(255, 255, 255, 0.56);
	}
}
@keyframes bg-ani {
	0% {
		background-size: 100%;
	}
	100% {
		background-size: 110%;
	}
}
*::-webkit-scrollbar {
	width: 3px;
	height: 3px;
}
*::-webkit-scrollbar-thumb {
	height: 30px;
	border-radius: 10px;
	background: #000000ab;
}
*::-webkit-scrollbar-track {
	background: #ffffff33;
}

body {
	color: rgba(255, 255, 255, 0.8);
	background-color: #222222;
}
a {
	color: inherit;
}
.t_red {
	color: #ff3300;
}
.t_primary {
	color: #385e96;
}
.t_yellow {
	color: #d28300;
}
.t_secondary {
	color: #5097ff;
}

.btn--primary {
	padding: 0 2.4rem;
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 4.4rem;
	background-color: #ff7d51;
	background-image: linear-gradient(
			to bottom,
			#ff7d51 0,
			#dc6135 50%,
			#d64f20 51%,
			#b93202 100%
	);
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
.btn--secondary {
	padding: 0 2.4rem;
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 4.4rem;
	background-color: #8695b4;
	background-image: linear-gradient(
			to bottom,
			#8695b4 0,
			#68748c 50%,
			#5d6a83 51%,
			#394458 100%
	);
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
.btn--gray {
	padding: 0 2.4rem;
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 4.4rem;
	background-color: #8695b4;
	background-image: linear-gradient(
			to bottom,
			#939393 0,
			#5a5a5a 50%,
			#4d4d4d 51%,
			#4f4f4f 100%
	);
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
.btn--blue {
	padding: 0 2.4rem;
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 4.4rem;
	background-color: #255597;
	background-image: linear-gradient(
			to bottom,
			#3366ad 0,
			#1e549e 50%,
			#1b4b8c 51%,
			#1b56a6 100%
	);
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
.btn--green {
	padding: 0 2.4rem;
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	color: #333333;
	font-size: 1.4rem;
	line-height: 4.4rem;
	background-color: #c3fb13;
	background-image: linear-gradient(
			to bottom,
			#c3fb13 0,
			#a4d609 50%,
			#99c906 51%,
			#7fa706 100%
	);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn--orange {
	padding: 0 2.4rem;
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 4.4rem;
	background-color: #f2da01;
	background-image: linear-gradient(
			to bottom,
			#f2da01 0,
			#ffa028 50%,
			#fd8c04 51%,
			#df7c4b 100%
	);
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
.btn--purple {
	padding: 0 2.4rem;
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 4.4rem;
	background-color: #ba91f2;
	background-image: linear-gradient(
			to bottom,
			#ba91f2 0,
			#8d63c7 50%,
			#7b51b4 51%,
			#4b3070 100%
	);
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
.btn--red {
	padding: 0 2.4rem;
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 4.4rem;
	background-color: #dc3535;
	background-image: linear-gradient(
			to bottom,
			#ff5151 0,
			#dc3535 50%,
			#c21d1d 51%,
			#b90202 100%
	);
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
.btn--teal {
	padding: 0 2.4rem;
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 4.4rem;
	background-color: #3fb79e;
	background-image: linear-gradient(
			to bottom,
			#42d4b5 0,
			#3fb79e 50%,
			#2dac92 51%,
			#088484 100%
	);
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
.btn--ghost {
	padding: 0 2.4rem;
	border-radius: 5px;
	transition: all 0.3s ease;
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 4.4rem;
	background-color: rgba(0, 0, 0, 0.8);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2) inset;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(6px);
}
.btn--primary:hover,
.btn--secondary:hover,
.btn--gray:hover,
.btn--blue:hover,
.btn--green:hover,
.btn--orange:hover,
.btn--purple:hover,
.btn--red:hover,
.btn--teal:hover {
	box-shadow: 0 0 10px #ff3994;
}
.btn--ghost:hover {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset,
	0 2px 10px rgba(255, 255, 255, 0.5);
}
.btn--full {
	width: 100%;
}
.btn--l {
	padding: 0 5rem;
	border-radius: 8px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 5rem;
}
.btn--s {
	padding: 0 1.4rem;
	font-size: 1.2rem;
	line-height: 3rem;
}

.lang {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 9;
	pointer-events: auto;
}
.lang ul {
	background: #000000e6;
}
.lang ul li:hover {
	background: #a70b53e6;
}
.ic--login {
	display: inline-block;
	width: 30px;
	height: 30px;
	vertical-align: middle;
	background: url("../../../img/flex/purple/ic-sprite.png") -210px 0 no-repeat;
	background-size: 400px 200px;
}
.ic--join {
	display: inline-block;
	width: 30px;
	height: 30px;
	vertical-align: middle;
	background: url("../../../img/flex/purple/ic-sprite.png") -240px 0 no-repeat;
	background-size: 400px 200px;
}
.ic--logout {
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	background: url("../../../img/flex/purple/ic-sprite.png") -68px 0 no-repeat;
	background-size: 400px 200px;
}
.input-text-box {
	display: flex;
	flex-direction: row;
	position: relative;
	padding-top: 3.1rem;
	text-align: left;
	flex-wrap: wrap;
	gap: 0 0.8rem;
}
.input-text-box label {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: #ffa7eb;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 3rem;
}
.input-text-box input[type="text"],
.input-text-box input[type="password"] {
	width: 100%;
	height: 4.8rem;
	padding: 8px;
	border: 1px solid #ffffff66;
	border-radius: 8px;
	transition: all 0.3s ease;
	color: #ffffffe6;
	font-size: 1.5rem;
	background-color: #000000e6;
	flex: 1;
}
.input-text-box textarea::placeholder,
.input-text-box input[type="text"]::placeholder,
.input-text-box input[type="password"]::placeholder {
	color: #ffffffe6;
	font-weight: normal;
}
.input-text-box input[type="text"]:disabled {
	border-color: #ffffff33;
	cursor: not-allowed;
	background-color: #ffffff1a;
}
.input-text-box textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ffffff66;
	border-radius: 8px;
	resize: none;
	transition: all 0.3s ease;
	color: #ffffffe6;
	font-size: 1.5rem;
	background-color: #000000e6;
}
.input-text-box input[type="text"]:focus,
.input-text-box input[type="password"]:focus,
.input-text-box textarea:focus {
	border-color: #00000080;
	outline: 0;
	color: #000000;
	background-color: #ffffffcc;
	box-shadow: 0 0 10px #000000;
}
.input-text-box input[type="text"]:focus::placeholder,
.input-text-box input[type="password"]:focus::placeholder,
.input-text-box textarea:focus::placeholder {
	color: #333333;
}
.input-text-box input[readonly="readonly"] {
	cursor: not-allowed;
}
.input-text-box input[type="text"].error,
.input-text-box input[type="password"].error,
.input-text-box textarea.error {
	border-color: #ef4444;
	background-color: rgb(239 68 68 / 10%);
}
.input-text-box input[type="text"].error:focus,
.input-text-box input[type="password"].error:focus,
.input-text-box textarea.error:focus {
	border-color: rgb(255 140 140) !important;
	outline: 0;
	color: #ffffff;
	box-shadow: 0 0 10px #ef44447a !important;
}
.input-text-box input[type="text"].error:focus::placeholder,
.input-text-box input[type="password"].error:focus::placeholder,
.input-text-box textarea.error:focus::placeholder {
	color: #ff8b8b;
}
.input-text-box--icon input[type="text"],
.input-text-box--icon input[type="password"] {
	padding-left: 3.8rem;
}
.input-text-box--no-label {
	padding-top: 0;
}
.input-text-box .input-text-box__help {
	flex: 100%;
}
.input-text-box__icon {
	position: absolute;
	top: 0;
	left: 0;
}
.input-text-box__icon svg {
	display: inline-block;
	position: absolute;
	top: -1rem;
	left: 12px;
	width: 2rem;
	height: 2rem;
	margin-top: 5.4rem;
	mix-blend-mode: exclusion;
}
.input-text-box__icon svg path {
	fill: #ffffff;
}
.input-text-box__help {
	display: block;
	position: relative;
	top: auto;
	left: auto;
	width: auto;
	padding-top: 0.4rem;
	color: #ffffff90;
	font-size: 1.3rem;
	line-height: 1.5rem;
	flex: 100%;
}
.input-text-box label.error {
	display: block;
	position: relative;
	top: auto;
	left: auto;
	width: auto;
	padding-top: 0.4rem;
	color: #666666;
	color: #ff6060;
	font-size: 1.3rem;
	line-height: 1.5rem;
	flex: 100%;
	order: 1;
}
.form_money {
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0 auto;
	border: 1px solid rgb(255 255 255 / 23%);
	border-radius: 10px;
	background-color: rgb(152 152 152 / 17%);
	gap: 2rem;
}
.form_money .input-text-box {
	text-align: center;
}
.form_money .input-text-box input {
	height: 6rem;
	text-align: center;
	font-size: 3rem;
}
.form_money dl {
	display: flex;
	margin: 2rem auto;
	border: 1px solid #ffffff66;
	border-radius: 8px;
	font-size: 1.4rem;
	flex-wrap: wrap;
	align-items: stretch;
}
.form_money dt {
	position: relative;
	width: 50%;
	padding: 1rem;
	border-top: 1px solid #ffffff66;
	border-right: 1px solid #ffffff66;
}
.form_money dd {
	width: 50%;
	padding: 1rem;
	border-top: 1px solid #ffffff66;
	word-break: break-all;
}
.form_money dt:first-child {
	border-top: 0;
}
.form_money dd:nth-child(2) {
	border-top: 0;
}
.btn_set {
	display: flex;
	gap: 0.8rem;
	justify-content: center;
	flex-wrap: wrap;
}
.table {
	table-layout: auto;
	color: #333333;
}
.table tbody {
	background-color: rgba(255, 255, 255, 0.2);
}
.table thead th {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.5rem;
	font-weight: normal;
	background: #ba466c;
}
.table td {
	padding: 1rem 0.8rem;
	transition: all 0.3s ease;
	word-break: break-word;
	font-size: 1.5rem;
}
.table .subject {
	text-align: left;
}
.table thead th {
	padding: 1.5rem 0.8rem;
}
.table tbody td {
	border-bottom: 1px solid #00000066;
	background-color: #f5f5f9;
}
.table tbody tr:hover td {
	background-color: #e8e8f6;
}
.table tbody td a {
	transition: all 0.3s ease;
	word-break: break-word;
}
.table tbody td a:hover {
	color: #403892;
}
.table-box {
	overflow: auto;
	position: relative;
}
.table-box table {
	width: 100%;
}

/*일자 검색 추가*/
.calendar-box {
	padding: 1rem 0;
	position: relative;
	text-align: right;
}

.calendar-box label{
	font-size: 1.5rem;
	padding-right: 1rem;
}

.calendar-box .input-text-box {
	padding: 0;
	max-width: 130px;
	min-width: 115px;
	display: inline-block;
}

.calendar-box .input-text-box input{
	height: 4rem;
	text-align: right;
}

.calendar-box .input-text-box:hover:before{
	opacity: 1;
}

.calendar-box .input-text-box:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 1rem;
	width: 2.4rem;
	height: 2.4rem;
	margin-top: -1.2rem;
	background: url(../../../img/flex/purple/ic--calendar.png) center no-repeat;
	background-size: contain;
	user-select: none;
	pointer-events: none;
	opacity: 0.7;
	transition: all .3s ease;
}

@media (max-width: 1000px) {
	.calendar-box{
	}

	.calendar-box label{
		font-size: 1.4rem;
		padding-right: .5rem;
	}

	.calendar-box .input-text-box{
		max-width: 105px;
		min-width: 105px;
	}

	.calendar-box .input-text-box input{
		font-size: 1.3rem;
	}
}

/*/일자 검색*/

.board_view {
	position: relative;
	border-top: 2px solid #ffffff66;
	text-align: left;
	color: #ffffffcc;
}
.board_view li {
	padding: 1rem 1rem;
	border-bottom: 1px solid #ffffff66;
}
.board_view li:last-child {
	border-bottom: 0;
}
.board_view .content {
	border-block-width: 2px;
}
.board_view .info {
	padding-bottom: 0;
	border-bottom: 0;
}
.board_view .info span {
	position: relative;
	font-size: 1.4rem;
}
.board_view .info span:after {
	display: inline-block;
	position: relative;
	width: 1px;
	height: 14px;
	margin-top: -0.1rem;
	margin-right: 0.2rem;
	margin-left: 0.8rem;
	content: "";
	vertical-align: middle;
	background-color: rgba(255, 255, 255, 0.2);
}
.board_view .info span:last-child:after {
	display: none;
}
.paging a {
	display: inline-block;
	width: 4rem;
	margin: 1rem 0.2rem 0 0.2rem;
	border: 2px solid rgba(0, 0, 0, 0);
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.4rem;
	line-height: 3rem;
	background-color: rgba(255, 255, 255, 0.8);
}
.paging a:hover {
	border-color: rgba(0, 0, 0, 0.7);
	box-shadow: 0 0 10px #ffffff;
}
.paging a.on {
	background-color: #efdd3f;
}
.row-box {
	display: flex;
	gap: 4rem;
}
.row-box__item {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	gap: 1rem;
}
.row-box__item .btn_set {
	margin-top: 2rem;
}
.popup {
	overflow: hidden;
	position: absolute;
	top: 200px;
	left: 30%;
	z-index: 9999;
	max-width: 500px;
	border: solid 1px #dd1b75;
	border-radius: 20px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	animation: fadein 1s ease both;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 1px 1px 10px #00000063;
	backdrop-filter: blur(4px);
}
.popup:hover {
	box-shadow: 0 0 20px 0 #0000007a;
}
.popup__title {
	position: relative !important;
	padding: 1rem 2rem !important;
	text-align: center !important;
	word-break: break-word !important;
	color: #ffffff !important;
	font-size: 1.5rem !important;
	line-height: 2rem !important;
	background-color: #2d1826 !important;
}
.popup__content {
	overflow-x: hidden;
	overflow-y: auto;
	min-width: 200px;
	max-width: 500px;
	max-height: 700px;
	padding: 1rem;
	word-break: break-word;
	color: #333333;
	font-size: 1.4rem;
}
.popup__content img {
	max-width: 100%;
}
.popup__bottom {
	display: flex;
	width: 100%;
	padding: 0.4rem 1rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 1.3rem;
	line-height: 40px;
	background-color: #2d1826;
	justify-content: space-between;
	align-items: center;
}
.popup__bottom label {
	cursor: pointer;
	vertical-align: middle;
	line-height: 2rem;
}
.popup__bottom input {
	position: relative;
	margin-top: -2px;
	margin-right: 7px;
	vertical-align: middle;
}
.popup__bottom__close {
	width: 60px;
	height: 3rem;
	margin: 5px 10px;
	padding: 0 1em;
	border-radius: 0.3rem;
	transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #ffffff;
	font-size: 1.4rem;
	font-weight: bold;
	background: #dd1b75;
}
.popup__bottom__close:hover {
	background-color: #ff4d4d;
}
.layer-popup {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	animation: fadein 1s ease both;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.3);
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(1px);
}
.layer-popup__inner {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	max-width: 500px;
	padding: 2rem;
	border-radius: 1.5rem;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	animation: fadein 1s ease both;
	background-color: rgba(0, 0, 0, 0.8);
	box-shadow: 1px 1px 10px #00000063;
	backdrop-filter: blur(4px);
	gap: 1rem;
}
.layer-popup__title {
	text-align: center;
	font-size: 1.7rem;
}
.layer-popup__content {
	text-align: center;
	font-size: 1.4rem;
}
.layer-popup__inner:hover {
	box-shadow: 0 0 20px 0 #0000007a;
}
.layer-popup__bottom {
	display: flex;
	margin-top: 1rem;
	gap: 0.8rem;
	flex-wrap: wrap;
	justify-content: center;
}
.input-text-box__help--red {
	color: #ff6060;
}

@media (min-width: 1001px) {
	.pc--hidden {
		display: none !important;
	}
	.row-box__item {
		max-width: 400px;
	}
}

@media (max-width: 1000px) {
	.mobile--hidden {
		display: none !important;
	}
}

/*mobile css*/
@media (max-width: 1000px) {
	.lang {
		width: 7rem;
		height: 7rem;
		padding: 0 1.6rem;
	}
	.lang .now_lang {
		line-height: 7rem;
	}
	.lang ul {
		margin: 6rem 1.6rem;
	}
	.row-box {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
	.row-box__item {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
	.popup {
		top: 150px !important;
		left: 2.5% !important;
		width: 95%;
	}
	.popup__content {
		overflow-y: auto;
		max-height: 50vh;
	}
	.table thead th {
		padding: 1rem 0.8rem;
		font-size: 1.4rem;
	}
	.table td {
		font-size: 1.3rem;
	}
	.input-text-box label {
		font-size: 1.4rem;
		font-weight: 400;
	}
	.btn--l {
		padding: 0 2rem;
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 4rem;
	}
	.btn--s {
		font-size: 1.2rem;
	}
}

html {
	font-size: 62.5%;
}
header {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-top: 430px;
	border-top: solid 1px #c3206b;
	background-color: rgb(26 11 15 / 90%);
	user-select: none;
	pointer-events: none;
}

@keyframes menuWheelAnim {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}
@keyframes bgLightsAnim {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}
@keyframes lgTextAnim {
	0% {
		opacity: 0;
		transform: scale(0.75);
	}
	8% {
		opacity: 0;
		transform: scale(0.75);
	}
	18% {
		opacity: 1;
		transform: scale(1);
	}
	95% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1);
	}
}
@keyframes casinoTableAnim {
	0% {
		opacity: 0;
		transform: translateX(15%);
	}
	2% {
		opacity: 0;
		transform: translateX(15%);
	}
	10% {
		opacity: 1;
		transform: translateX(0);
	}
	95% {
		opacity: 1;
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		transform: translateX(0);
	}
}
@keyframes bannerItemsAnim {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	5% {
		opacity: 0;
		transform: scale(0);
	}
	10% {
		opacity: 1;
		transform: scale(1.2);
	}
	30% {
		opacity: 1;
		transform: scale(0.9);
	}
	50% {
		opacity: 1;
		transform: scale(1.1);
	}
	70% {
		opacity: 1;
		transform: scale(0.9);
	}
	90% {
		opacity: 1;
		transform: scale(1.1);
	}
	100% {
		opacity: 0;
		transform: scale(0.9);
	}
}
@keyframes bannerGlowImg {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}
@keyframes charRightAnim {
	0% {
		opacity: 0;
		transform: translateX(-15%);
	}
	8% {
		opacity: 1;
		transform: translateX(0);
	}
	95% {
		opacity: 1;
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		transform: translateX(0);
	}
}
@keyframes charLeftAnim {
	0% {
		opacity: 0;
		transform: translateX(15%);
	}
	8% {
		opacity: 1;
		transform: translateX(0);
	}
	95% {
		opacity: 1;
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		transform: translateX(0);
	}
}
@keyframes electricAnim {
	0% {
		opacity: 0.5;
	}
	15% {
		opacity: 1;
	}
	30% {
		opacity: 0.5;
	}
	45% {
		opacity: 1;
	}
	60% {
		opacity: 0.5;
	}
	100% {
		opacity: 0.5;
	}
}
@keyframes leftBgAnim {
	0% {
		opacity: 0;
		transform: translateX(-4%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes rightBgAnim {
	0% {
		opacity: 0;
		transform: translateX(4%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes scFooterGlowAnim {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes scLogoAnim {
	0% {
		opacity: 0;
		transform: translateX(-5%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes scContAnim {
	0% {
		opacity: 0;
		transform: translateY(20px) translateX(5%) scale(0.9);
	}
	100% {
		opacity: 1;
		transform: translateY(0) translateX(0) scale(1);
	}
}
@keyframes rotate-ani {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes fadeOut {
	90% {
		opacity: 100%;
	}
	100% {
		opacity: 0;
	}
}
@keyframes fadeIn {
	90% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes wheelSparkAnim {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}
@keyframes loginAfter {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.header__notice {
	position: absolute;
	top: -3rem;
	left: 0;
	width: 100%;
	background-color: #00000030;
	backdrop-filter: blur(4px);
	overflow: hidden;
}
.header__notice li {
	display: block;
	position: relative;
	vertical-align: middle;
	white-space: nowrap;
	word-break: break-all;
	color: #ffffff;
	font-size: 1.3rem;
	font-weight: lighter;
	line-height: 3rem;
	text-shadow: 0 0 5px #000000;
}
.header__menu-opener {
	display: none;
}
.header__logo {
	overflow: hidden;
	position: absolute;
	top: -430px;
	left: 50%;
	z-index: 99;
	width: 400px;
	height: 430px;
	margin-left: -200px;
	animation: lgTextAnim 8s ease 0.3s infinite backwards;
	text-align: center;
	text-align: left;
	text-indent: -9999px;
	color: #ffffff00;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 80% auto;
	pointer-events: auto;
}
.header__gnb {
	max-width: 1500px;
	height: 100%;
	height: 70px;
	margin: 0 auto;
	user-select: none;
	pointer-events: none;
}
.header__gnb ul {
	position: relative;
	user-select: none;
	pointer-events: auto;
}
.header__gnb .depth1--full {
	display: none;
	position: relative;
}
.header__gnb .depth1--simple {
	display: block;
	position: relative;
	text-align: center;
}
.header__gnb ul li {
	display: inline-block;
	overflow: hidden;
	position: relative;
	padding: 0 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #c191b6;
	font-size: 1.4rem;
	line-height: 70px;
}
.header__gnb ul li:before {
	opacity: 0;
	position: absolute;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	content: "";
	transition: all 0.3s ease;
	transform: translateX(-50%);
	background: linear-gradient(to right, #ff00a3, #e784ca, #ff00c8);
}
.header__gnb li .ic {
	display: inline-block;
	position: relative;
	width: 36px;
	height: 36px;
	margin-right: 4px;
	border-radius: 50%;
	vertical-align: middle;
	background-color: rgba(0, 0, 0, 0.8);
}
.header__gnb li .ic:before {
	display: inline-block;
	position: absolute;
	top: 3px;
	left: 3px;
	z-index: 1;
	width: 30px;
	height: 30px;
	content: "";
	background: url(../../../img/flex/purple/ic-sprite.png) 0 0 no-repeat;
	background-size: 400px 200px;
}
.header__gnb li .ic:after {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	content: "";
	transition: all 0.3s ease;
	animation: menuWheelAnim 1s linear infinite;
	background: url(../../../img/flex/purple/wheel-bg.png) 0 0 no-repeat #000000;
	background-size: cover;
}
.header__gnb li:hover .ic:after {
	opacity: 1;
}
.header__gnb ul li:hover {
	color: #ffffff;
}
.header__gnb ul li:hover:before {
	opacity: 1;
	width: 100%;
	box-shadow: 0 0 15px #ff00c8, 0 0 30px 8px #f033c7;
}
.header__gnb li .ic--gnb01:before {
	background-position: 0 0;
}
.header__gnb li .ic--gnb02:before {
	background-position: -30px 0;
}
.header__gnb li .ic--gnb03:before {
	background-position: -60px 0;
}
.header__gnb li .ic--gnb04:before {
	background-position: -90px 0;
}
.header__gnb li .ic--gnb05:before {
	background-position: -120px 0;
}
.header__gnb li .ic--gnb06:before {
	background-position: -150px 0;
}
.header__gnb li .ic--gnb07:before {
	background-position: -180px 0;
}
.header__gnb ul li:after {
	opacity: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	margin: 0 auto;
	transition: 0.3s;
	background-color: #e784c4;
	background-image: linear-gradient(to right, #ff00a3, #e784ca, #ff00c8);
}
.header__gnb ul li:hover:after {
	opacity: 1;
	width: 100%;
}
.header__gnb ul li .icon-panel {
	width: 36px;
	height: 36px;
	margin-right: 5px;
	border-radius: 50%;
	background-color: #030305;
}
.header__gnb ul li .icon-panel:after {
	opacity: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: 0.3s;
	animation: menuWheelAnim 1s linear infinite;
	background-image: url(../../../img/flex/purple/wheel-bg.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.header__gnb ul li:hover .icon-panel:after {
	opacity: 1;
}
.header__gnb ul li .icon-panel i {
	background-image: -webkit-linear-gradient(#ffffff, #ccb082);
	-webkit-background-clip: text;
	background-size: 100% 100%;
	-webkit-text-fill-color: transparent;
}
.header__gnb ul li:hover span {
	color: #ffffff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75), 0 0 10px rgba(255, 255, 255, 0.25);
}

.menu-wrap {
	position: relative;
	top: -70px;
	height: 0;
	margin: 0 auto;
	text-align: right;
	padding: 0 1.4rem;
}
.menu-wrap__inner {
	text-align: right;
	user-select: none;
	pointer-events: none;
}
.menu-wrap .ic--login {
	margin-top: -2px;
}
.menu-wrap .ic--join {
	margin-top: -2px;
}

.main {
	background-position: 0 0;
	background-repeat: repeat-y;
}
.main:before,
.main:after {
	position: absolute;
	top: 500px;
	left: 50%;
	z-index: 0;
	width: 100%;
	height: 100%;
	content: "";
	transform: translateX(-50%);
	animation: bgLightsAnim 1s ease infinite;
	background-image: url(../../../img/flex/purple/lights-bg.png);
	background-repeat: no-repeat;
	background-position: top 1px left;
}
.main:after {
	transform: translateX(-50%) rotateY(180deg);
}
.main__visual {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 500px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.deco-box {
	display: flex;
	position: absolute;
	top: 0;
	left: 10%;
	z-index: 0;
	width: 80%;
	height: 100%;
	user-select: none;
	pointer-events: none;
	align-items: center;
}
.deco-box__inner {
	position: relative;
	width: 100%;
	height: 90%;
}
.deco-item--left {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30%;
	height: 100%;
	transform-origin: center right;
	animation: fadeOut 12s ease 1s infinite both;
}
.deco-item--left:before {
	position: absolute;
	bottom: 5%;
	left: -30%;
	width: 500px;
	height: 140px;
	content: "";
	animation: casinoTableAnim 12s ease 1s infinite backwards;
	background: url(../../../img/flex/purple/table.png) 0 0 no-repeat;
	background-size: contain;
}
.deco-item--left .deco-item__img--01 {
	position: absolute;
	top: 15%;
	left: -25%;
	width: 100px;
	height: 205px;
	animation: bannerItemsAnim 12s ease 1s infinite backwards;
	background: url(../../../img/flex/purple/casino-items.png) 0 0 no-repeat;
	background-size: cover;
}
.deco-item--left .deco-item__img--01:after {
	position: absolute;
	top: 0;
	bottom: auto;
	left: -4%;
	z-index: 2;
	width: 95px;
	height: 56px;
	content: "";
	animation: bannerGlowImg 0.8s ease 1s infinite backwards;
	background: url(../../../img/flex/purple/glow.png) 0 0 no-repeat;
}
.deco-item--left .deco-item__img--02 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.deco-item--left .deco-item__img--02:before {
	position: absolute;
	left: -20%;
	width: 80%;
	height: 100%;
	content: "";
	animation: charLeftAnim 12s ease 1s infinite backwards;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
}
.deco-item--left .deco-item__img--02:after {
	position: absolute;
	left: 20%;
	z-index: 2;
	width: 90%;
	height: 100%;
	content: "";
	animation: charRightAnim 12s ease 1s infinite backwards;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
}
.deco-item--right {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 30%;
	height: 100%;
	transform-origin: center right;
	animation: fadeOut 12s ease 1s infinite backwards;
}
.deco-item--right .deco-item__img--01 {
	position: absolute;
	bottom: 0;
	left: -20%;
	z-index: 2;
	width: 100%;
	height: 100%;
	animation: charLeftAnim 12s ease 1s infinite backwards;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
}
.deco-item--right .deco-item__img--01:before {
	position: absolute;
	bottom: 25%;
	left: 15%;
	z-index: 2;
	z-index: 3;
	width: 60%;
	height: 100%;
	content: "";
	animation: charRightAnim 12s ease 1s infinite backwards;
	animation: electricAnim 0.8s ease 1s infinite backwards;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
}
.deco-item--right .deco-item__img--02 {
	position: absolute;
	right: -30%;
	bottom: 5%;
	width: 80%;
	height: 100%;
	animation: charRightAnim 12s ease 1s infinite backwards;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
}
.deco-item--right .deco-item__img--02:before {
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
	height: 300px;
	content: "";
	animation: bannerItemsAnim 12s ease 1s infinite backwards;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.main__visual__logo {
	display: none;
}
.main__visual__banner .img-box {
	display: none;
}
.main__visual__banner .txt-box {
	display: none;
}
.main__visual__banner .txt-box h2 {
	display: none;
}
.main__visual__banner .txt-box p {
	display: none;
}
.main__visual__jackpot {
	display: none;
}
.main__visual__cta {
	display: none;
}

.menu-wrap .menu-wrap__close {
	display: none;
}
.menu-wrap .menu-wrap__logo {
	display: none;
}
.menu-wrap .menu-wrap__menu {
	display: none;
}
.menu-wrap .login {
	display: inline-flex;
	position: relative;
	z-index: 3;
	height: 70px;
	gap: 0.4rem;
	justify-content: flex-end;
	align-items: center;
	pointer-events: auto;
}
.menu-wrap .login .btn--primary {
	padding: 0 1.2rem 0 0.3rem;
	line-height: 3.6rem;
}
.menu-wrap .login .btn--secondary {
	padding: 0 1.2rem 0 0.3rem;
	line-height: 3.6rem;
}
.menu-wrap .login .login-box {
	display: inline-block;
}
.menu-wrap .login .login-box label {
	display: none;
}
.menu-wrap .login .login-box .input-text-box {
	display: inline-block;
	padding: 0;
}
.menu-wrap .login .login-box .input-text-box input {
	width: 160px;
	height: 35px;
	margin-left: 2px;
	padding: 0 10px;
	border: solid 1px rgba(255, 255, 255, 0.25);
	border-radius: 5px;
	color: #ffffff;
	font-size: 1.3rem;
	background-color: rgba(255, 255, 255, 0.1);
}
.menu-wrap .login .login-box .input-text-box input::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}
.menu-wrap .login .login-box .input-text-box input:hover,
.menu-wrap .login .login-box .input-text-box input:focus,
.menu-wrap .login .login-box .input-text-box input:active {
	border-color: rgba(255, 255, 255, 0.5);
	outline: 0;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.8);
	box-shadow: 0 0 8px rgba(0, 155, 255, 0.5);
}

.menu-wrap .login--after {
	padding: 0 156px 0 0;
	border-radius: 1.6rem;
	text-align: center;
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 160%;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
	gap: 0 1rem;
	flex-wrap: wrap;
	flex-direction: row;
	width: calc(100% - 750px);
	justify-content: flex-end;
	align-content: center;
	border-radius: 0;
	user-select: none;
	pointer-events: none;
}
.menu-wrap .login--after button {
	line-height: 3rem;
	padding: 0 1rem;
}
.menu-wrap .login--after .btn--primary {
	line-height: 3rem;
	padding: 0 0.8rem;
}
.menu-wrap .login--after .btn-box {
	position: absolute;
	top: 50%;
	right: 0;
	height: 100%;
	width: 156px;
	text-align: right;
	margin-top: -1.5rem;
	pointer-events: auto;
}
.menu-wrap .login--after .info {
	text-align: right;
	line-height: 1.3;
}
.menu-wrap .login--after .info:first-child {
	flex: 100%;
}
.menu-wrap .login--after a b {
	color: #ff7dcb;
	font-size: 1.3rem;
}
.menu-wrap .login--after a {
	color: #ffe97d;
	pointer-events: auto;
}
.menu-wrap .login .info img {
	height: 30px;
}

.main__gamelist-tab {
	display: inline-flex;
	position: relative;
	z-index: 5;
	height: 100px;
	margin: 0 auto;
	text-align: center;
	background: url(../../../img/flex/purple/gamelist-tab-bg--repeat.png) 0 bottom
	repeat-x;
	gap: 6rem;
}
.main__gamelist-tab:before {
	display: inline-block;
	position: absolute;
	top: 0;
	left: -70px;
	width: 70px;
	height: 100%;
	content: "";
	background: url(../../../img/flex/purple/gamelist-tab-bg--side.png) bottom center
	no-repeat;
}
.main__gamelist-tab:after {
	display: inline-block;
	position: absolute;
	top: 0;
	right: -70px;
	z-index: -1;
	width: 70px;
	height: 100%;
	content: "";
	transform: scaleX(-1);
	background: url(../../../img/flex/purple/gamelist-tab-bg--side.png) bottom center
	no-repeat;
}
.main__gamelist-tab li {
	display: inline-block;
	position: relative;
	padding: 0 0 0 78px;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: left;
	filter: saturate(00%);
}
.main__gamelist-tab li:hover,
.main__gamelist-tab li:active,
.main__gamelist-tab li:focus,
.main__gamelist-tab li.active {
	filter: saturate(100%);
}
.main__gamelist-tab li:before {
	display: inline-block;
	position: absolute;
	top: 13px;
	left: 0;
	z-index: 1;
	width: 70px;
	height: 70px;
	content: "";
	user-select: none;
	pointer-events: none;
}
.main__gamelist-tab li:after {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 0;
	width: 100%;
	content: "";
	transition: all 0.3s ease;
	box-shadow: 0 0 80px 40px #ff00c833, 0 0 40px 8px #f033c7;
}
.main__gamelist-tab li:hover:after,
.main__gamelist-tab li.active:after {
	opacity: 1;
}
.main__gamelist-tab li:nth-child(2):before {
	display: inline-block;
	background: url(../../../img/flex/purple/ic-sprite.png) 0 -30px no-repeat;
	background-size: 400px 200px;
}
.main__gamelist-tab li:nth-child(3):before {
	display: inline-block;
	background: url(../../../img/flex/purple/ic-sprite.png) -70px -30px no-repeat;
	background-size: 400px 200px;
}
.main__gamelist-tab li:nth-child(4):before {
	display: inline-block;
	background: url(../../../img/flex/purple/ic-sprite.png) -140px -30px no-repeat;
	background-size: 400px 200px;
}
.main__gamelist-tab li b {
	display: block;
	position: relative;
	z-index: 1;
	padding-top: 26px;
	color: #ffffff;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.4;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.75), 0 0 15px rgba(255, 255, 255, 0.5);
}
.main__gamelist-tab li:nth-child(2) b:after {
	display: block;
	content: "HOTEL CASINO";
	color: #ff9525;
	font-size: 1.2rem;
	font-weight: normal;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
}
.main__gamelist-tab li:nth-child(3) b:after {
	display: block;
	content: "LIVE CASINO";
	color: #25fdff;
	font-size: 1.2rem;
	font-weight: normal;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
}
.main__gamelist-tab li:nth-child(4) b:after {
	display: block;
	content: "SLOT GAME";
	color: #eb456e;
	font-size: 1.2rem;
	font-weight: normal;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
}
.main__gamelist-tab li.all-game {
	display: none;
}
.main__gamelist-box{text-align:center;}
.main__bottom {
	display: flex;
	position: relative;
	max-width: 1500px;
	margin: 0 auto;
	padding: 4rem 0;
	align-items: center;
	justify-content: space-between;
}
.main__bottom:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100vw;
	height: 100%;
	margin-left: calc(-50vw + 50%);
	content: "";
	background: url(../../../img/flex/purple/board-bg.png) center center no-repeat;
	background-size: cover;
}
.main__bottom__board--list {
	position: relative;
	width: 400px;
	padding: 45px 0 32px;
	border-radius: 50%;
	background-color: #090f0a;
}
.main__bottom__board--list:before,
.main__bottom__board--list:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	border-radius: 50%;
	content: "";
}
.main__bottom__board--list:before {
	background-image: linear-gradient(
			#444444,
			#444444,
			#2c2a2b,
			#2c2a2b,
			#ffffff
	);
}
.main__bottom__board--list:after {
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	background-color: #0f090d;
	box-shadow: inset 0 1px 3px rgb(0 0 0 / 50%),
	inset 0 0 70px rgb(108 53 81 / 70%);
}
.main__bottom__board--payment {
	z-index: 1;
	width: 45%;
	order: 1;
}
.main__bottom__board--payment .payment {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.main__bottom__board--payment .payment h2 {
	display: flex;
	width: 100%;
	margin: 0 0 15px;
	border: solid 1px rgba(177, 198, 255, 0.25);
	border-radius: 40px 40px 15px 15px;
	background-color: rgba(87, 104, 143, 0.1);
	flex: 100%;
}

.payment__tab {
	width: 50%;
	padding: 1rem 0;
	text-align: center;
	letter-spacing: -0.1rem;
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 2rem;
}
.payment__tabview {
	display: block !important;
	width: 48%;
	margin: 0 1%;
}
.payment__tabview li {
	display: flex;
	padding: 0.8rem;
	border-top: 1px solid #ffffff30;
	align-items: center;
}
.payment__tabview li:first-child {
	border-top: 0;
	transition: all 0.3s ease;
}
.payment__tabview li p {
	overflow: hidden;
	width: 25%;
	text-align: left;
	text-overflow: ellipsis;
	font-size: 1.3rem;
	font-weight: normal;
}
.payment__tabview li strong {
	text-align: center;
	color: #ffd656;
	font-size: 1.5rem;
	font-weight: normal;
	flex: 1;
}
.payment__tabview li span {
	width: 25%;
	text-align: right;
	color: #999fb8;
	font-size: 1rem;
}
.payment__tabview li:hover {
	background-color: #e0b4d21a;
}

.main__bottom__board--list {
	display: flex;
	flex-direction: column;
	height: 400px;
	text-align: center;
	justify-content: center;
}
.main__bottom__board--list:last-child {
	order: 3;
}
.main__bottom__board--list table {
	overflow: hidden;
	position: relative;
	z-index: 1;
	width: 14vw;
	margin: 0 auto 2rem auto;
}
.main__bottom__board--list table tr {
	display: flex;
	width: 100%;
	margin: 0 auto;
	padding: 0.8rem 0.8rem;
	border-top: 1px solid #ffffff30;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 0 6px;
}
.main__bottom__board--list table tr:first-child {
	border-top: 0;
}
.main__bottom__board--list table tr:hover {
	background-color: #e0b4d21a;
}
.main__bottom__board--list table td {
	display: block;
	padding: 2px 0;
	transition: all 0.3s ease;
	font-size: 1.3rem;
	line-height: 1.5rem;
}

.main__bottom__board--list table td p {
	overflow: hidden;
	height: 1.5rem;
	text-align: left;
	white-space: nowrap;
	text-overflow: ellipsis;
	word-break: break-all;
	width: 14vw;
}
.main__bottom__board--list table td:first-child {
	color: #e17eac;
	order: 0;
}
.main__bottom__board--list table td:nth-child(2) {
	order: 3;
	flex: 1;
}
.main__bottom__board--list table td:last-child {
	text-align: left;
	color: #e17eac;
	order: 1;
	flex-grow: 1;
}
.main__bottom__board--list table .color {
	font-size: 1rem;
	line-height: 1.5rem;
}
.main__bottom__board--list table .color:before {
	content: "[";
}
.main__bottom__board--list table .color:after {
	content: "]";
}
.main__bottom__board--list h2 {
	display: inline-block;
	position: relative;
	z-index: 1;
	margin: 0 auto 1.5rem auto;
	padding: 0.5rem 2rem;
	border: solid 1px rgba(177, 198, 255, 0.25);
	border-radius: 5px;
	text-align: center;
	color: #ffe5ba;
	font-size: 2.2rem;
	font-weight: 500;
	background-color: rgba(87, 104, 143, 0.25);
	text-shadow: 0 0 15px rgba(161, 148, 104, 1);
}

footer {
	border-top: solid 1px #3b2631;
	background-color: #201319;
}
.footer__ico {
	padding: 20px 20%;
	border-top: solid 1px #3b2631;
	border-bottom: solid 1px #3b2631;
	text-align: center;
	background-color: #201319;
}
.footer__ico img {
	max-width: 100px;
	max-height: 30px;
	margin: 10px 12px;
}
.footer__guide {
	display: none;
}
.footer__licence {
	display: none;
}
.footer__copy {
	position: relative;
	padding: 50px 0;
	text-align: center;
	color: #5b4251;
	font-size: 1.2rem;
	background-color: #0c0609;
}
.footer__copy:before,
.footer__copy:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100%;
	content: "";
	transform: translateX(-50%);
	background-image: url(../../../img/flex/purple/footer-bg.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: contain;
	height: 30%;
}
.footer__copy:after {
	transform: translateX(-50%) rotateY(180deg);
}
.footer__copy b {
	margin-right: 5px;
}
.footer__top {
	padding: 3rem 0;
}
.footer__menu {
	display: none;
}

.fnb h2 {
	display: none;
}
.fnb ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 3rem;
	flex-wrap: wrap;
}
.fnb ul li {
	cursor: pointer;
	transition: all 0.3s ease;
	letter-spacing: -0.5px;
	color: #ff0068;
	font-size: 2rem;
	line-height: 1.5;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75), 0 0 8px rgb(224 72 138 / 75%);
}
.fnb ul .fnb__li--24hcenter {
	margin-bottom: 2rem;
	text-align: center;
	font-size: 3rem;
	flex: 100%;
}
.fnb ul .fnb__li--24hcenter .ic {
	display: none;
}
.fnb ul .fnb__li--24hcenter b {
	color: #e1b8c2;
	font-weight: bold;
	text-shadow: 0 0 15px #ff0068;
}
.fnb ul:last-child {
	margin-top: 2rem;
	gap: 0 1rem;
}
.fnb ul:last-child li {
	padding: 0.8rem 2rem;
	border: 1px solid #e563b280;
	border-radius: 8px;
	font-size: 1.5rem;
	box-shadow: 0 5px 0 0 #000000;
}
.fnb ul li b {
	font-weight: normal;
}
.fnb .fnb__ul--link li {
	color: #ff8ebc;
}
.fnb .fnb__ul--link li:hover {
	color: #ffffff;
	background-color: #ffffff1a;
}
.fnb .fnb__ul--help li b {
	vertical-align: middle;
}
.fnb .fnb__ul--help li .ic {
	position: relative;
	margin-right: 4px;
}
.fnb .fnb__ul--help li .ic:before {
	display: inline-block;
	opacity: 0;
	position: absolute;
	bottom: -60%;
	left: -60%;
	width: 150%;
	height: 150%;
	content: "";
	user-select: none;
	transition: all 0.3s ease;
	pointer-events: none;
	background: url(../../../img/flex/purple/contacts-light.png) center no-repeat;
	background-size: contain;
}
.fnb .fnb__ul--help li:hover .ic:before {
	opacity: 1;
	bottom: -50%;
	animation: wheelSparkAnim 1s ease infinite;
}
.fnb__li--telegram:hover {
	color: #ffffff;
}
.fnb__li--kakaotalk:hover {
	color: #ffffff;
}
.fnb__li--teamviewer:hover {
	color: #ffffff;
}
.fnb__li--chrome:hover {
	color: #ffffff;
}
.fnb__li--telegram .ic {
	display: inline-block;
	width: 48px;
	height: 48px;
	vertical-align: middle;
	background: url(../../../img/flex/purple/ic-sprite.png) 0 -100px no-repeat;
	background-size: 400px 200px;
}
.fnb__li--kakaotalk .ic {
	display: inline-block;
	width: 48px;
	height: 48px;
	vertical-align: middle;
	background: url(../../../img/flex/purple/ic-sprite.png) -48px -100px no-repeat;
	background-size: 400px 200px;
}
.fnb__li--teamviewer .ic {
	display: inline-block;
	width: 48px;
	height: 48px;
	vertical-align: middle;
	background: url(../../../img/flex/purple/ic-sprite.png) -96px -100px no-repeat;
	background-size: 400px 200px;
}
.fnb__li--chrome .ic {
	display: inline-block;
	width: 48px;
	height: 48px;
	vertical-align: middle;
	background: url(../../../img/flex/purple/ic-sprite.png) -144px -100px no-repeat;
	background-size: 400px 200px;
}

.layer-popup__inner {
	border: solid 2px #c32046;
	border-radius: 0;
	background-color: #201017;
	background-image: linear-gradient(
			225deg,
			rgb(111 34 76 / 0%),
			rgb(111 34 80 / 25%),
			rgb(111 34 76 / 90%)
	);
	padding: 4rem;
}
.layer-popup__inner:before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.layer-popup__close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9;
	width: 40px;
	height: 40px;
	padding-right: 10px;
	border: none;
	cursor: pointer;
	background-color: #e8032d;
}
.layer-popup__close:before,
.layer-popup__close:after {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 28px;
	width: 100%;
	height: 100%;
	content: "";
	transform: skew(35deg);
	background-color: #a70220;
}
.layer-popup__close:after {
	right: 20px;
	transform: skew(45deg);
	background-color: #e8032d;
}
.layer-popup__close .ic {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.layer-popup__close .ic:before,
.layer-popup__close .ic:after {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 2px;
	height: calc(100% - 20px);
	margin: auto;
	content: "";
	transition: 0.5s;
	transform: rotate(45deg);
	background-color: #ffffff;
}
.layer-popup__close .ic:after {
	transform: rotate(-45deg);
}
.layer-popup__close .ic:hover:before {
	transform: rotate(135deg);
	background-color: #ffec3c;
}
.layer-popup__close .ic:hover:after {
	transform: rotate(-135deg);
	background-color: #ffec3c;
}

.logo--sm {
	display: inline-block;
	width: 100%;
	height: 80px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.sub {
	position: relative;
	min-height: 500px;
	justify-content: center;
	align-items: center;
}

.sub .info--column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.sub .info--table {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
	font-size: 1.4rem;
	gap: 1rem;
	align-items: flex-start;
}

.sub .info--table b {
	margin-left: 0.8rem;
	color: #3f75cc;
}

.sub .info svg {
	vertical-align: -0.6rem;
}

.sub.login {
	display: flex;
	width: 100%;
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	backdrop-filter: none;
	animation: bg-ani 6s ease both;
}

.sub.join {
	display: flex;
	overflow-y: scroll;
	width: 100%;
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	backdrop-filter: none;
	align-items: flex-start;
	animation: bg-ani 6s ease both;
}
.sub.join .row-box {
	flex-wrap: wrap;
}
.sub__logo {
	display: block;
	width: 100%;
	height: 15rem;
	animation: fadein 1s ease both;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.sub__container {
	position: relative;
	background-position: 0 0;
	background-repeat: repeat-y;
}
.sub__container:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 430px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	pointer-events: none;
	user-select: none;
}

.sub.login .sub__container {
	animation: fadein 1s ease both;
	background: none;
}
.sub.login .sub__container:before {
	display: none;
}

.sub.join .sub__container {
	animation: fadein 1s ease both;
	background: none;
}
.sub.join .sub__container:before {
	display: none;
}
.sub__title {
	display: flex;
	flex-direction: column;
	position: relative;
	height: 130px;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.sub__title--bg01 {
	background: url(../../../img/flex/purple/subheader--bg01.jpg) 20% center no-repeat;
	background-size: cover;
}
.sub__title--bg02 {
	background: url(../../../img/flex/purple/subheader--bg02.jpg) 20% center no-repeat;
	background-size: cover;
}
.sub__title--bg03 {
	background: url(../../../img/flex/purple/subheader--bg03.jpg) 20% center no-repeat;
	background-size: cover;
}
.sub__title--bg04 {
	background: url(../../../img/flex/purple/subheader--bg04.jpg) 20% center no-repeat;
	background-size: cover;
}
.sub__title h2 {
	color: #ffffff;
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.5;
	line-height: 1.3;
	text-shadow: 0 0 3px #000;
}
.sub__title b {
	color: #ffffff;
	font-size: 2rem;
	font-weight: normal;
	text-shadow: 0 0 3px #000;
}
.sub__flex-content {
	display: flex;
	flex-direction: column;
	position: relative;
	max-width: 1600px;
	margin: 40px auto 0 auto;
	padding: 3rem 3rem 6rem 3rem;
	transition: all 0.3s ease;
	animation: fadein 0.5s both;
	text-align: center;
	font-size: 1.6rem;
	gap: 3rem;
	align-items: center;
}
.form_money .input-text-box input::placeholder {
	font-size: 2.4rem;
}
.form_money {
	padding: 1.6rem;
}
.form_money dl {
	width: 100%;
	max-width: 700px;
}
.form_money .btn_set svg {
	margin-right: 5px;
	vertical-align: -6px;
}
.sub__tab {
	display: flex;
	max-width: 80%;
	margin: 0 auto;
	border-radius: 50px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
	justify-content: center;
	gap: 0;
	justify-content: space-between;
	border: 2px solid #ffffff;
}
.sub__tab li {
	padding: 2rem 3rem;
}
.sub__tab li {
	position: relative;
	min-width: 100px;
	padding: 1rem 2rem;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: normal;
}
.sub__tab li .svg--dropdown {
	width: 16px;
	height: 16px;
	margin-top: -1px;
	vertical-align: middle;
}
.sub__tab li:hover {
	color: #f920c8;
}
.sub__tab li.on:before,
.sub__tab li:hover:before {
	opacity: 1;
	width: 100%;
}
.sub__tab li.on {
	color: #ffffff;
	font-weight: bold;
	background: #5b0046;
}
.sub__tab-cont .btn_set {
	margin-top: 2rem;
}
.board_view .content {
	min-height: 200px;
	padding: 3rem;
	word-break: break-word;
}
.board_view .subject {
	word-break: break-word;
	font-size: 2rem;
}
.sub.join .sub__container {
	max-width: 1200px;
	margin: 80px auto;
	border-radius: 2rem;
	color: #ffffff;
	background: #22222255;
	box-shadow: 0 10px 37px rgba(0, 0, 0, 0.5), 0 0 0 5px #ffee54 inset;
	backdrop-filter: blur(10px);
}
.sub.join .sub__container .input-text-box__help {
	color: rgba(255, 255, 255, 0.5);
}
.sub.login .sub__container {
	width: 90%;
	max-width: 500px;
	margin: 80px auto;
	border-radius: 2rem;
	color: #ffffff;
	background: rgba(50, 50, 50, 0.3);
	box-shadow: 0 10px 37px rgba(0, 0, 0, 0.5), 0 0 0 5px #ffffff inset;
	backdrop-filter: blur(10px);
}
.sub.login .sub__flex-content {
	margin: 0;
	padding: 3rem 3rem 6rem 3rem;
}
.sub.login .row-box__title {
	width: 100%;
	flex: 100%;
}
.sub.join .sub__flex-content {
	margin: 0;
	padding: 3rem 3rem 6rem 3rem;
}
.sub.join .row-box__title {
	width: 100%;
	flex: 100%;
}
.row-box__title h2 {
	font-size: 3rem;
	margin-top: 1rem;
}
.row-box__title b {
	display: block;
	font-size: 1.6rem;
}
.sub.login .row-box__item {
	width: 100%;
	max-width: 300px;
}
.sub.join .row-box__item {
	width: 100%;
	max-width: 500px;
}
.sub.login .sub__container .btn_set .btn--primary {
	flex-grow: 1;
}
.sub.mypage .sub__container {
	width: auto;
	min-width: auto;
}
.sub.mypage .sub__container .btn_set {
	flex-grow: 1;
	align-items: flex-end;
}
.input-text-box input[type="text"].error,
.input-text-box input[type="password"].error,
.input-text-box textarea.error {
	background: #ffb6b6;
}
.sub__tab-cont {
	width: 100%;
}

@media (max-width: 1500px) {
	.menu-wrap__inner {
		padding-right: 0.8rem;
	}
	.header__gnb ul li {
		padding: 0 0.4rem;
	}
	.menu-wrap .login .login-box .input-text-box input {
		width: 120px;
	}
	.menu-wrap__inner {
		padding: 0;
		width: 100%;
	}
	.menu-wrap .login--after {
		position: absolute;
		top: -431px;
		right: 0;
		left: 0;
		width: 100%;
		padding: 0;
	}
	.menu-wrap .login--after .info {
		word-break: break-all;
	}
	.menu-wrap .login--after {
		padding: 0;
		width: calc(100% - 10rem);
		text-align: center;
		justify-content: center;
		background: linear-gradient(
				90deg,
				transparent 0,
				#ff0ed3cc 10%,
				#001ba2cc 90%,
				transparent 100%
		);
		height: 3rem;
		backdrop-filter: none;
		z-index: 99;
		margin: 0 5rem;
		left: 5rem;
	}
	.menu-wrap .login--after .info {
		text-align: center;
		font-size: 1.2rem;
		display: none;
	}
	.menu-wrap .login--after .info:first-child {
		opacity: 1;
		height: 3rem;
		display: block;
		line-height: 3rem;
	}
	.menu-wrap .login--after .info:first-child a {
		max-width: 40%;
		overflow: hidden;
		display: inline-block;
		height: 3rem;
		vertical-align: top;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.menu-wrap .login--after .info:first-child a b {
		display: none;
	}
	.menu-wrap .login--after .btn-box {
		position: relative;
		flex: 100%;
		margin: 1rem 0 0 0;
		width: auto;
		top: auto;
		right: auto;
		text-align: center;
		display: none;
	}
	.menu-wrap.menu-wrap--open {
		z-index: 999;
	}
	.menu-wrap.menu-wrap--open .login--after {
		height: auto;
		padding-bottom: 1rem;
		background: linear-gradient(
				90deg,
				transparent 0,
				#111111cc 10%,
				#111111cc 90%,
				transparent 100%
		);
		width: 100%;
		margin: 0;
		padding: 3rem 2rem;
		position: fixed;
		top: 0;
		left: 0;
		margin-top: 5rem;
		animation: loginAfter 0.5s ease both;
	}
	.menu-wrap.menu-wrap--open .login--after .info {
		display: block;
		height: auto;
	}
	.menu-wrap.menu-wrap--open .login--after .btn-box {
		display: block;
	}
	.menu-wrap.menu-wrap--open .login--after .info:first-child {
		line-height: 2rem;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0.8rem;
		flex-wrap: wrap;
		padding: 0 5% 1.4rem 5%;
		border-bottom: 1px solid #ffffff30;
		margin-bottom: 1.4rem;
	}
	.menu-wrap.menu-wrap--open .login--after .info:first-child a b {
		display: inline-block;
		font-size: 1.2rem;
	}
	.menu-wrap.menu-wrap--open .login--after .info:first-child a {
		width: auto;
		display: inline;
		height: auto;
		white-space: normal;
		vertical-align: inherit;
	}
	.menu-wrap.menu-wrap--open .login--after .info:first-child a:last-child {
		display: block;
	}
	.header__menu-opener {
		display: inline-block;
		position: absolute;
		top: -430px;
		right: 0;
		z-index: 9;
		width: 40px;
		height: 40px;
		margin: 0.8rem;
		border-radius: 30px;
		cursor: pointer;
		transition: background-color 0.3s ease;
		text-align: left;
		text-indent: -9999px;
		color: transparent;
		background: url(../../../img/flex/purple/ic-sprite.png) -407px -3px no-repeat #fdc51f;
		background-size: 1500% auto;
		box-shadow: 0 0 0 1px #ffffff70;
		pointer-events: auto;
	}
	.header__menu-opener:hover {
		background-color: #fdc51f;
	}
	.lang {
		position: absolute;
		top: -430px;
		left: 0;
		z-index: 100;
		width: 50px;
		padding: 0 0.8rem;
	}
	.lang .now_lang {
		text-indent: -9999px;
		color: transparent;
	}
	.lang .now_lang:after {
		width: 26px;
		height: 26px;
	}
	.lang .now_lang {
		line-height: 5.4rem;
	}
	.lang ul {
		margin: 5rem 0.8rem;
	}
}

@media (max-width: 1200px) {
	.menu-wrap .login .login-box {
		display: none;
	}
	.menu-wrap .login .btn--secondary {
		display: none;
	}
}

@media (max-width: 1000px) {
	html {
		font-size: 55%;
	}
	header {
		margin-top: 40vw;
		z-index: 99;
	}
	.lang {
		top: -40vw;
	}
	.header__menu-opener {
		top: -40vw;
	}
	.menu-wrap .login--after {
		top: 0;
	}
	.header__notice li {
		font-size: 1.2rem;
	}
	.header__logo {
		top: -33vw;
		left: 0;
		width: 100%;
		height: 25vw;
		margin: 0;
		background-size: contain;
		z-index: 0;
	}
	.header__gnb {
		height: auto;
		margin-top: 30px;
	}
	.header__gnb ul li {
		font-size: 1.3rem;
		line-height: 2.5rem;
	}
	.main__visual {
		height: 40vw;
	}
	.menu-wrap {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		width: 100%;
		padding: 0;
		z-index: 10;
	}
	.menu-wrap .login {
		height: auto;
		z-index: 99;
		margin: 0.6rem;
	}
	.menu-wrap .login--before {
		top: -40vw;
	}
	.menu-wrap .login--after {
		top: 0;
	}
	.menu-wrap__inner {
		padding: 0;
		width: 100%;
	}
	.header__gnb .depth1--simple {
		display: flex;
		padding: 0.8rem;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 0 0.4rem;
		align-content: center;
	}
	.deco-item--left:before {
		width: 40vw;
		background-position: left bottom;
	}
	.deco-item--left .deco-item__img--01 {
		top: 0;
		height: 40vw;
		background-size: contain;
	}
	.deco-item--right .deco-item__img--02:before {
		top: 0;
		right: 0;
		height: 25vw;
		background-position: right center;
	}
	.main__gamelist-tab {
		height: auto;
		gap: 1rem;
		width: 100%;
		justify-content: center;
	}
	.main__gamelist-tab:before {
		display: none;
	}
	.main__gamelist-tab:after {
		display: none;
	}
	.main__gamelist-tab li {
		display: flex;
		padding: 0 0 0 40px;
		align-items: center;
	}
	.main__gamelist-tab li b {
		padding: 2rem 0;
		font-size: 1.5rem;
	}
	.main__gamelist-tab li:before {
		width: 35px;
		height: 35px;
	}
	.main__gamelist-tab li:nth-child(2):before {
		background-position: 0 -15px;
		background-size: 200px 100px;
	}
	.main__gamelist-tab li:nth-child(3):before {
		background-position: -35px -15px;
		background-size: 200px 100px;
	}
	.main__gamelist-tab li:nth-child(4):before {
		background-position: -70px -15px;
		background-size: 200px 100px;
	}
	.main:before {
		top: 40vw;
		right: 0;
		left: auto;
		width: 50%;
		transform: rotateY(180deg);
		background-position: -10vw 0;
		background-size: contain;
	}
	.main:after {
		top: 40vw;
		right: auto;
		left: 0;
		width: 50%;
		transform: none;
		background-position: -10vw 0;
		background-size: contain;
	}
	.fnb ul:nth-child(2) li {
		width: 100%;
		text-align: center;
	}
	.fnb ul:nth-child(2) li .ic {
		margin-right: 5px;
	}
	.fnb ul li b {
		font-size: 1.5rem;
	}
	.fnb .fnb__ul--help li {
		width: 40%;
		color: #ff1374;
		font-size: 1.5rem;
	}
	.fnb ul .fnb__li--24hcenter {
		font-size: 2.2rem;
	}
	.fnb ul .fnb__li--24hcenter h6 {
		font-size: 1.8rem;
	}
	.fnb ul .fnb__li--24hcenter b {
		font-size: 2rem;
		display: block;
	}
	.fnb__li--telegram .ic {
		width: 24px;
		height: 24px;
		background-position: 0 -50px;
		background-size: 200px 100px;
	}
	.fnb__li--kakaotalk .ic {
		width: 24px;
		height: 24px;
		background-position: -24px -50px;
		background-size: 200px 100px;
	}
	.fnb__li--teamviewer .ic {
		width: 24px;
		height: 24px;
		background-position: -48px -50px;
		background-size: 200px 100px;
	}
	.fnb__li--chrome .ic {
		width: 24px;
		height: 24px;
		background-position: -72px -50px;
		background-size: 200px 100px;
	}
	.fnb ul:last-child {
		padding: 0 0.8rem;
		gap: 1rem;
	}
	.fnb ul:last-child li {
		font-size: 1.3rem;
	}
	.footer__ico {
		padding: 2rem 0.8rem;
	}
	.footer__ico img {
		max-height: 20px;
		margin: 1rem;
	}
	.footer__top {
		padding: 2rem 0.8rem;
	}
	.footer__copy {
		padding: 3rem 0.8rem;
	}
	.main__bottom {
		flex-direction: column;
		padding: 5rem 0.8rem;
		gap: 1rem;
		gap: 2rem 2rem;
		justify-content: center;
	}
	.main__bottom__board--list {
		order: 1;
	}
	.main__bottom__board--list {
		width: 100%;
		border-radius: 1rem;
	}
	.main__bottom__board--list:before {
		border-radius: 0;
	}
	.main__bottom__board--list:after {
		border-radius: 0;
	}
	.main__bottom__board--payment {
		width: 100%;
	}
	.main__bottom__board--payment .payment h2 {
		margin: 0;
	}
	.payment__tab {
		letter-spacing: 0;
		font-size: 1.5rem;
	}
	.main__bottom__board--list {
		height: auto;
		padding: 2rem 0.8rem;
	}
	.main__bottom__board--list table {
		width: 81vw;
	}
	.main__bottom__board--list table tr {
		margin: 0;
		justify-content: flex-start;
	}
	.main__bottom__board--list table td p {
		width: 81vw;
	}
	.main__bottom__board--list h2 {
		font-size: 1.8rem;
	}
	.sub__container:before {
		height: 40vw;
	}
	.sub__title {
		height: 100px;
		gap: 0.5rem;
	}
	.sub__title h2 {
		font-size: 2.4rem;
	}
	.sub__title b {
		font-size: 1.6rem;
	}
	.sub__flex-content {
		margin: 0 auto 0 auto;
		padding: 2rem 1rem 4rem 1rem;
	}
	.sub__tab {
		max-width: 100%;
	}
	.sub__tab li {
		overflow: hidden;
		min-width: auto;
		padding: 1rem 2rem;
		text-overflow: ellipsis;
	}
	.sub__tab-cont .btn_set {
		margin-top: 1.6rem;
	}
	.board_view .content {
		padding: 1rem;
	}
	.board_view .subject {
		padding: 1rem 1rem;
	}
	.board_view .info span {
		font-size: 1.3rem;
	}
	.sub.join .sub__container {
		width: 90%;
		margin: 2rem 0 3rem 0;
	}
	.sub.login .sub__container .btn_set .btn--secondary {
		flex-grow: 1;
	}
}

@media (max-width: 600px) {

	.sub.login{
		animation: none;
	}
	.sub.join{
		animation: none;
	}
}

@media (max-width: 400px) {
	.main__gamelist-tab li {
		padding: 0;
	}
	.main__gamelist-tab li.active {
		padding: 0 0 0 40px;
	}
	.main__gamelist-tab li:nth-child(2):before {
		display: none;
	}
	.main__gamelist-tab li:nth-child(3):before {
		display: none;
	}
	.main__gamelist-tab li:nth-child(4):before {
		display: none;
	}
	.main__gamelist-tab li.active:before {
		display: inline-block;
	}
}
.header__logo{background-image:url(../../../img/flex/purple/logo.png);}
.main{background-image:url(../../../img/flex/purple/main-bg.jpg);}
.main__visual{background-image:url(../../../img/flex/purple/banner-bg.jpg);}
.deco-item--left .deco-item__img--02:before{background-image:url(../../../img/flex/purple/dealer-back.png);}
.deco-item--left .deco-item__img--02:after{background-image:url(../../../img/flex/purple/dealer-front.png);}
.deco-item--right .deco-item__img--01{background-image:url(../../../img/flex/purple/slot-man.png);}
.deco-item--right .deco-item__img--01:before{background-image:url(../../../img/flex/purple/electricity.png);}
.deco-item--right .deco-item__img--02{background-image:url(../../../img/flex/purple/slot-woman.png);}
.deco-item--right .deco-item__img--02:before{background-image:url(../../../img/flex/purple/slot-items.png);}
.main__gamelist:before{background-image:url(../../../img/flex/purple/left-bg.png);}
.main__gamelist:after{background-image:url(../../../img/flex/purple/right-bg.png);}
.logo--sm{background-image:url(../../../img/flex/purple/logo-sm.png);}
.sub.login{background-image:url(../../../img/flex/purple/login-bg.jpg);}
.sub.join{background-image:url(../../../img/flex/purple/join-bg.jpg);}
.sub__logo{background-image:url(../../../img/flex/purple/logo-sm.png);}
.sub__container{background-image:url(../../../img/flex/purple/main-bg.jpg);}
.sub__container:before{background-image:url(../../../img/flex/purple/banner-bg.jpg);}

.sub__flex-content .help .type1 li {
	margin: 5px 0;
	line-height: 16px;
	padding-left: 10px;
	font-size: 12px;
	color: #f0ff00;
	background: url(../../img/hs/bul.gif) 0 8px no-repeat;
}