@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;900&display=swap");
@keyframes fadein {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}
@keyframes opacity-ani {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadein--left {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		transform: translatex(0px);
	}
}
@keyframes fadein--right {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}
	100% {
		opacity: 1;
		transform: translatex(0px);
	}
}
@keyframes updown {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes updown-sm {
	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 tracking-in-contract {
	0% {
		letter-spacing: 1rem;
		opacity: 0;
	}
	49% {
		opacity: 0.6;
	}
	100% {
		letter-spacing: -1px;
		opacity: 1;
	}
}
@keyframes float-ani {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes shine-ani {
	0% {
		filter: brightness(0.9);
	}
	50% {
		filter: brightness(1.3);
	}
	100% {
		filter: brightness(0.9);
	}
}
*::-webkit-scrollbar {
	width: 5px;
	height: 3px;
}
*::-webkit-scrollbar-thumb {
	height: 30px;
	border-radius: 10px;
	background: #d8a53ccc;
}
*::-webkit-scrollbar-track {
	background: #ffffff33;
}
body {
	color: #333333;
	background-color: #fff8e9;
}
a {
	color: inherit;
}
.t_red {
	color: #ff3300;
}
.t_primary {
	color: #385e96;
}
.t_yellow {
	color: #d28300;
}
.t_secondary {
	color: #5097ff;
}
.btn--primary,
.btn--secondary,
.btn--gray,
.btn--blue,
.btn--green,
.btn--orange,
.btn--purple,
.btn--red,
.btn--teal,
.btn--ghost {
	padding: 0 2.4rem;
	border-radius: 0 1rem 0 1rem;
	font-size: 1.4rem;
	line-height: 4.4rem;
	transition: all 0.3s ease;
}
.btn--primary {
	color: #9f3c00;
	background-color: #d19339;
	box-shadow: -10px -10px 30px #ff7700 inset;
	font-weight: bold;
	text-shadow: 0 0 7px #fff, 0 0 15px #ffdf00;
}
.btn--secondary {
	color: #ffffff;
	background-color: #f37218;
	box-shadow: -10px -10px 30px #5f2000 inset;
}
.btn--gray {
	color: #ffffff;
	background-color: #53565b;
	box-shadow: -10px -10px 30px #282828 inset;
}
.btn--blue {
	color: #ffffff;
	background-color: #6b57f5;
	box-shadow: -10px -10px 30px #0538ff inset;
}
.btn--green {
	color: #ffffff;
	background-color: #59b521;
	box-shadow: -10px -10px 30px #00b876 inset;
}
.btn--orange {
	color: #ffffff;
	background-color: #ff8c21;
	box-shadow: -10px -10px 30px #f5576e inset;
}
.btn--purple {
	color: #ffffff;
	background-color: #8204ff;
	box-shadow: -10px -10px 30px #4e22ff inset;
}
.btn--red {
	color: #ffffff;
	background-color: #f57073;
	box-shadow: -10px -10px 30px #fa4545 inset;
}
.btn--teal {
	color: #ffffff;
	background-color: #00b3da;
	box-shadow: -10px -10px 30px #0882c7 inset;
}
.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active {
	background-color: #d55200;
	color: #fff;
	font-weight: normal;
	text-shadow: 0 0 7px #ffffff00, 0 0 15px #ffdf0000;
}
.btn--secondary:hover,
.btn--secondary:focus,
.btn--secondary:active {
	background-color: #421b00;
}
.btn--gray:hover,
.btn--gray:focus,
.btn--gray:active {
	background-color: #1e1d1f;
}
.btn--blue:hover,
.btn--blue:focus,
.btn--blue:active {
	background-color: #1b23cc;
}
.btn--green:hover,
.btn--green:focus,
.btn--green:active {
	background-color: #1b6827;
}
.btn--orange:hover,
.btn--orange:focus,
.btn--orange:active {
	background-color: #ce3530;
}
.btn--purple:hover,
.btn--purple:focus,
.btn--purple:active {
	background-color: #370cd2;
}
.btn--red:hover,
.btn--red:focus,
.btn--red:active {
	background-color: #cd3033;
}
.btn--teal:hover,
.btn--teal:focus,
.btn--teal:active {
	background-color: #034b8c;
}
.btn--ghost {
	color: #d18e65;
	background-color: transparent;
	box-shadow: 0 0 0 3px #d18e65 inset;
	backdrop-filter: blur(6px);
	font-weight: bold;
}
.btn--ghost:hover,
.btn--ghost:focus,
.btn--ghost:active {
	color: #fff;
	background-color: #d55200;
	box-shadow: 0 0 0 3px #4451ff00 inset, -10px -10px 30px #421b00 inset;
	font-weight: normal;
}
.btn--full {
	width: 100%;
}
.btn--l {
	padding: 0 5rem;
	border-radius: 0 1.4rem 0 1.4rem;
	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: relative;
	width: 2.4rem;
	height: 2.4rem;
	font-size: 1rem;
	cursor: pointer;
	pointer-events: initial;
}
.lang .now_lang {
	position: relative;
	cursor: pointer;
	line-height: 2.4rem;
	color: transparent;
}
.lang .now_lang:after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 28px;
	height: 28px;
	margin-top: -14px;
	border-radius: 8px;
	content: "";
	pointer-events: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	box-shadow: 0 0 0 0.5px #00000080 inset;
	transition: all 0.3s ease;
}
.lang .en:after {
	background-image: url("../../../img/common/lang/en2.png");
}
.lang .ch:after {
	background-image: url("../../../img/common/lang/ch2.png");
	background-position: top left;
}
.lang .jp:after {
	background-image: url("../../../img/common/lang/jp2.png");
}
.lang .ko:after {
	background-image: url("../../../img/common/lang/ko2.png");
}
.lang ul {
	display: none;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	width: 122px;
	padding-top: 30px;
	transition: all 0.3s ease both;
	animation: opacity-ani 0.5s ease both;
}
.lang:hover ul,
.lang:focus ul,
.lang:focus ul {
	display: block;
}
.lang ul li {
	display: block;
	position: relative;
	width: 100%;
	padding: 1rem 1rem 1rem 5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.3rem;
	line-height: 19px;
	border-top: 1px solid #00000040;
	background: #000000cc;
	color: #ffffffcc;
}
.lang ul li:first-child {
	border-top: 0;
}
.lang ul li:after {
	position: absolute;
	top: 50%;
	left: 11px;
	width: 20px;
	height: 20px;
	margin-top: -11px;
	border: 1px #00000047 solid;
	border-radius: 4px;
	content: "";
	pointer-events: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.lang ul li:hover {
	background: #ec6a00;
}
.ic--login {
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	background: url("../../../img/flex/yellow/ic-sprite.png") 0 0 no-repeat;
	background-size: 400px 200px;
	margin-right: 3px;
	margin-top: -1px;
}
.ic--logout {
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	background: url("../../../img/flex/yellow/ic-sprite.png") -20px 0 no-repeat;
	background-size: 400px 200px;
	margin-right: 3px;
	margin-top: -1px;
}
.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%;
	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 #876c5166;
	border-radius: 8px;
	transition: all 0.3s ease;
	color: rgba(0, 0, 0, 0.9);
	font-size: 1.5rem;
	background-color: rgba(255, 255, 255, 0.9);
	flex: 1;
}
.input-text-box textarea::placeholder,
.input-text-box input[type="text"]::placeholder,
.input-text-box input[type="password"]::placeholder {
	color: rgba(0, 0, 0, 0.6);
	font-weight: normal;
}
.input-text-box input[type="text"]:disabled {
	border-color: #876c5166;
	cursor: not-allowed;
	background-color: rgba(0, 0, 0, 0.05);
}
.input-text-box textarea {
	width: 100%;
	padding: 8px;
	border: 2px solid #876c5166;
	border-radius: 8px;
	resize: none;
	transition: all 0.3s ease;
	color: rgba(0, 0, 0, 0.9);
	font-size: 1.5rem;
	background-color: rgba(255, 255, 255, 0.9);
}
.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: rgba(255, 255, 255, 0.8);
	box-shadow: 0 0 0 5px #0000000d;
}
.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;
	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;
}
.input-text-box__icon svg path {
	fill: rgba(0, 0, 0, 0.5);
}
.input-text-box__help {
	display: block;
	position: relative;
	top: auto;
	left: auto;
	width: auto;
	padding-top: 0.4rem;
	color: #666666;
	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: #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;
	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 rgba(0, 0, 0, 0.6);
	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 rgba(0, 0, 0, 0.6);
	border-right: 1px solid rgba(0, 0, 0, 0.6);
}
.form_money dd {
	width: 50%;
	padding: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.6);
	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 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 {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.5rem;
	font-weight: normal;
	background: #876c51;
	padding: 1.5rem 0.8rem;
	border: 1px solid #473625;
}
.table tbody td {
	border: 1px solid rgba(0, 0, 0, 0.2);
	background-color: #fff;
}
.table tbody tr:hover td {
	background-color: #f5d3ad33;
}
.table tbody td a {
	transition: all 0.3s ease;
	word-break: break-word;
}
.table tbody td a:hover {
	color: #876c51;
}
.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/yellow/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 rgba(0, 0, 0, 0.2);
	text-align: left;
	color: #333333;
}
.board_view li {
	padding: 1rem 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.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.1);
}
.paging a:hover {
	border-color: rgba(0, 0, 0, 0.7);
	box-shadow: 0 0 10px #ffffff;
}
.paging a.on {
	border-color: #c91d5c;
}
.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: 100;
	max-width: 500px;
	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: #453b30;
	box-shadow: 1px 1px 10px #00000063;
	backdrop-filter: blur(4px);
}
.popup:hover {
	box-shadow: 0 0 20px 0 #0000007a;
}
.popup__title {
	position: relative;
	padding: 1rem 2rem;
	text-align: center;
	word-break: break-word;
	color: #ffffff;
	font-size: 1.5rem;
	line-height: 2rem;
}
.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;
	margin: 0 0.6rem;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
}
.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;
	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: #292929;
	font-size: 1.4rem;
	font-weight: bold;
	background: #f1f1f1;
}
.popup__bottom__close:hover {
	background-color: #ff4d4d;
}
.layer-popup__close {
	display: inline-block;
	width: 45px;
	height: 45px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}
.layer-popup__close:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	background-image: url(../../../img/flex/yellow/ic-sprite.png);
	background-repeat: no-repeat;
	background-position: -262px -40px;
	background-size: 400px 200px;
	margin: -15px 0 0 -15px;
}
.layer-popup__close:hover {
	background-color: #99999933;
}
.layer-popup {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	animation: fadein 1s ease both;
	color: #333;
	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: #fff;
	box-shadow: 1px 1px 10px #00000063;
	backdrop-filter: blur(4px);
	gap: 1rem;
}
.layer-popup__title {
	text-align: center;
	font-size: 1.7rem;
}
.layer-popup__title .logo--sm {
	display: block;
	height: 80px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.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;
	}
}
@media (max-width: 1000px) {
	.lang {
		width: 7rem;
		height: 7rem;
		padding: 0 1rem;
	}
	.lang .now_lang {
		line-height: 7rem;
	}
	.lang ul {
		margin: 3rem 0;
	}
	.lang .now_lang:after {
		width: 20px;
		height: 20px;
		margin-top: -10px;
	}
	.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 {
		max-height: 50vh;
	}
	.table thead th {
		padding: 0.4rem;
		font-size: 1.4rem;
	}
	.table td {
		font-size: 1.3rem;
		padding: 0.4rem;
	}
}
html {
	font-size: 62.5%;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 260px;
	height: 100%;
	min-height: 850px;
	box-shadow: 5px 0 15px #b2792f33;
	z-index: 99;
}
header:before {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 300px;
	height: 300px;
	content: "";
	user-select: none;
	animation: updown 2s infinite;
	pointer-events: none;
	background-repeat: no-repeat;
	background-position: center right;
	background-size: auto 100%;
}
.header__inner {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	width: calc(100% - 260px);
	height: 70px;
	padding: 0 2rem;
	user-select: none;
	pointer-events: none;
	background: linear-gradient(180deg, #10100f 75%, #d19339 84.9%, rgb(193 167 112 / 0%) 100%);
	gap: 1rem;
	align-items: center;
}
.header__notice {
	pointer-events: inherit;
}
.header__notice ul {
	overflow: hidden;
	max-width: 300px;
	min-width: 300px;
	padding: 0 1rem;
	border: 1px solid #0000001a;
	border-radius: 0.8rem;
	color: #ffffffcc;
	background-color: #876c51;
	box-shadow: -10px -5px 20px #00000066 inset;
}
.header__notice li {
	white-space: nowrap;
	font-size: 1.6rem;
	line-height: 2.8rem;
}
.header__menu-opener {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 20px;
	left: 1.6rem;
	width: 30px;
	height: 30px;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: left;
	text-indent: -9999px;
	pointer-events: auto;
	color: transparent;
	background-image: url(../../../img/flex/yellow/ic-sprite.png);
	background-repeat: no-repeat;
	background-position: -232px -40px;
	background-size: 400px 200px;
}
.header__logo {
	display: none;
}
.header__gnb {
	overflow-y: auto;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	padding-top: 80px;
	background: linear-gradient(21deg, #10100f 15%, #d19339 84.9%, rgb(101 85 52 / 0%) 100%);
	/*
	background: linear-gradient(180deg, #fff9ea 0%, #fff0c8 100%);
		*/
}
.header__gnb .depth1--full {
	position: relative;
	margin: 1rem;
	padding: 5rem 1.6rem 1rem 1.6rem;
	border: 3px solid #000000;
	border: 2px solid rgba(219, 179, 73, 0.3);
	border-radius: 16px;
	background: linear-gradient(298deg, #10100f, #d19339, #ffffff, rgb(193 167 112 / 0%) 100%);
	/*
	background: linear-gradient(
			180deg,
			#fff0c8 0%,
			#fff5db 0.01%,
			#ffebb8 100%
	);
	background-color: #ffaaaa;
		*/
	box-shadow: 0 0 10px 0 #ffffff;
}
.header__gnb .depth1--full:before {
	position: fixed;
	top: 450px;
	left: 0;
	width: 260px;
	height: 500px;
	content: "";
	user-select: none;
	pointer-events: none;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: auto 80%;
}
.header__gnb .depth1--full:after {
	position: absolute;
	top: 1.5rem;
	left: 50%;
	width: 100px;
	height: 27px;
	margin-left: -50px;
	content: "";
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.header__gnb .depth1--simple {
	display: none;
}
.header__gnb .depth1 > li {
	position: relative;
	padding: 1rem 1rem;
	padding-left: 45px;
	border-top: 1px solid #92593a5c;
	cursor: pointer;
	transition: all 0.3s ease;
	pointer-events: inherit;
	color: #141313;
	font-size: 1.4rem;
	font-weight: 600;
}
.header__gnb .depth1 > li:before {
	position: absolute;
	top: 50%;
	left: 1rem;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	content: "";
	transition: all 0.2s ease;
	pointer-events: none;
	background-image: url(../../../img/flex/yellow/ic-sprite.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 400px 200px;
}
.header__gnb .depth1 > li:first-child {
	border-top: 0;
}
.header__gnb .depth1 > li:nth-child(1){
	padding-left: 56px;
	line-height: 3rem;
}
.header__gnb .depth1 > li:nth-child(1):hover:before {
	transform: rotate(-30deg);
}
.header__gnb .depth1 > li:nth-child(1):before {
	left: -1rem;
	width: 70px;
	height: 70px;
	margin-top: -35px;
	background-position: 0 -24px;
}

.header__gnb .depth1 > li:nth-child(1) {
	margin-bottom: 30px;
}
.header__gnb .depth1 > li:nth-child(1) {
	border-top: 0;
}
.header__gnb .depth1 > li:nth-child(2):before, .header__gnb .depth1 > li:nth-child(3):before, .header__gnb .depth1 > li:nth-child(4):before{
	background-position: -40px 0;
}
.header__gnb .depth1 > li:nth-child(5):before {
	background-position: -64px 0;
}
.header__gnb .depth1 > li:nth-child(6):before {
	background-position: -88px 0;
}
.header__gnb .depth1 > li:nth-child(7):before {
	background-position: -112px 0;
}
.header__gnb .depth1 > li:nth-child(8):before {
	background-position: -136px 0;
}
.header__gnb .depth1 > li:nth-child(2):hover:before {
	filter: brightness(20);
}
.header__gnb .depth1 > li:nth-child(5):hover:before {
	filter: brightness(20);
}
.header__gnb .depth1 > li:nth-child(6):hover:before {
	filter: brightness(20);
}
.header__gnb .depth1 > li:nth-child(7):hover:before {
	filter: brightness(20);
}
.header__gnb .depth1 > li:nth-child(8):hover:before {
	filter: brightness(20);
}
.header__gnb .depth1 > li b {
	letter-spacing: -0.5px;
	font-size: 1.8rem;
	font-weight: bold;
}
.header__gnb .depth1 > li:hover {
	color: #ffffff;
	background-color: #d19339 ;
	box-shadow: 6px 6px 0 0 #6f2e1b26;
}
.header__gnb .depth2 {
	display: none;
}
.header__gnb .depth2 > li {
	cursor: pointer;
}
.menu-wrap {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	user-select: none;
	pointer-events: none;
}
.menu-wrap__close {
	display: none;
}
.menu-wrap .login {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	width: 100%;
	height: 40px;
	margin: 15px 1rem;
	justify-content: flex-end;
	gap: 0.8rem;
}
.menu-wrap .login--after {
	align-items: center;
}
.menu-wrap .login--after .btn-box {
	display: flex;
	gap: 0.8rem;
}
.menu-wrap .login--before {
	gap: 0 0.4rem;
}
.menu-wrap .login--before button {
	line-height: 3rem;
}
.menu-wrap .login--before .login-box {
	gap: 0 0.4rem;
}
.menu-wrap .login .login-box {
	display: flex;
	align-items: center;
}
.menu-wrap .login .login-box .input-text-box label {
	display: none;
}
.menu-wrap .login .login-box .input-text-box {
	padding-top: 0;
}
.menu-wrap .login .login-box .input-text-box input {
	width: 130px;
	height: auto;
}
.menu-wrap .login {
	font-size: 1.2rem;
}
.menu-wrap .login a {
	font-size: 1.3rem;
	font-weight: bold;
	color: #e93c00;
}
.menu-wrap .login .btn-box {
	pointer-events: auto;
}
.menu-wrap .login button .ic--login {
	margin-top: -2px;
}
.menu-wrap .login .login__info__level {
	display: inline-block;
	position: relative;
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	margin-top: -15px;
}
.menu-wrap .login .info {
	position: relative;
	padding: 0.4rem 1.8rem;
	border-radius: 10px;
	pointer-events: auto;
	color: #533415;
	font-weight: normal;
	background-color: #f1dfba;
}
.menu-wrap .login .info:first-child {
	padding-left: 35px;
}
.menu-wrap .login .value {
	font-family: "Montserrat";
	font-size: 1.3rem;
	font-weight: bold;
	color: #e93c00;
}
.menu-wrap__menu {
	display: none;
}
.menu-wrap__logo {
	display: inline-block;
	position: relative;
	width: 260px;
	height: 80px;
	padding: 10px;
	cursor: pointer;
	pointer-events: initial;
	background: linear-gradient(180deg, #10100f 75%, #d19339 84.9%, rgb(193 167 112 / 0%) 100%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 60px;
}
.main {
	margin-top: 70px;
	margin-left: 260px;
}
.main__visual {
	position: relative;
}
.main__visual__banner {
	display: flex;
	flex-direction: column;
	height: 500px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}
.main__visual__banner .img-box {
	position: relative;
	z-index: 1;
	width: 70%;
	height: 200px;
	animation: heartbeat 2s ease infinite 0.5s both;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.main__visual__banner .txt-box {
	position: relative;
	z-index: 1;
	width: 100%;
	color: #875d2b;
}
.main__visual__banner .txt-box h2 {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 4rem;
	margin-bottom: 1rem;
	text-align: center;
}
.main__visual__banner .txt-box h2:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	content: "Welcome to ONLINE CASINO";
	animation: tracking-in-contract 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) both;
	text-align: center;
	white-space: nowrap;
	letter-spacing: -1px;
	font-family: "Montserrat", sans-serif;
	font-size: 5rem;
	font-weight: 900;
	line-height: 4rem;
	background: linear-gradient(180deg, #b16000 0%, #000000 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.main__visual__banner .txt-box p {
	position: relative;
	animation: fadein 1s ease both 0.3s;
	text-align: center;
}
.main__visual__banner .txt-box p:before {
	content: "다양하고 흥미진진한 승부를 온라인으로 즐기세요!";
	font-size: 2rem;
	font-weight: bold;
}
.deco-box__inner {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	justify-content: space-between;
}
.deco-item--left {
	width: 100%;
	height: 100%;
	animation: fadein--left 1s ease both;
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: auto 100%;
}
.deco-item--right {
	width: 100%;
	height: 100%;
	animation: fadein--right 1s ease both;
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: contain;
}
.main__visual__jackpot {
	display: none;
}
.main__visual__cta {
	display: none;
}
.main__gamelist-box {
	padding: 3rem;
}
.main__gamelist-tab {
	display: flex;
	height: 60px;
	padding: 0 2rem;
	border-bottom: 2px solid #dbb349cc;
	justify-content: flex-start;
	align-items: flex-end;
	gap: 1rem;
}
.main__gamelist-tab li {
	position: relative;
	position: relative;
	bottom: -2px;
	padding: 14px 3rem 14px 6rem;
	border: 2px solid #dbb349cc;
	border-bottom: 2px solid #dbb349cc;
	border-radius: 1rem 3rem 0 0;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: #f5d3ad;
	box-shadow: 3px 3px 5px #ffffffcc inset;
}
.main__gamelist-tab li:before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 80px;
	margin: 0 0 -1rem -1rem;
	content: "";
	user-select: none;
	transition: all 0.3s ease;
	transform: scale(0.6);
	pointer-events: none;
	background-image: url(../../../img/flex/yellow/ic-sprite.png);
	background-repeat: no-repeat;
	background-size: 400px 200px;
}
.main__gamelist-tab li:nth-child(2):before {
	background-position: 0 -94px;
}
.main__gamelist-tab li:nth-child(3):before {
	background-position: -80px -94px;
}
.main__gamelist-tab li:nth-child(4):before {
	background-position: -160px -94px;
}
.main__gamelist-tab li b {
	color: #965e40cc;
	font-size: 1.8rem;
	line-height: 3rem;
}
.main__gamelist-tab li:hover,
.main__gamelist-tab li.active {
	padding-bottom: 20px;
	padding-left: 8rem;
	border-bottom: 2px solid #fff8e9;
	background-color: #fff8e9;
}
.main__gamelist-tab li:hover b,
.main__gamelist-tab li.active b {
	color: #965e40;
}
.main__gamelist-tab li:hover:before,
.main__gamelist-tab li.active:before {
	margin: 0 0;
	animation: updown-sm 2s ease both infinite 0.2s;
}
.main__gamelist-tab li.all-game {
	padding: 14px 3rem 14px 5rem;
}
.main__gamelist-tab li.all-game:before {
	bottom: 50%;
	left: 2rem;
	width: 24px;
	height: 24px;
	margin: 0;
	margin-bottom: -13px;
	transform: none;
	background-position: -184px 0;
}
.main__gamelist-tab li.all-game:hover {
	padding: 14px 3rem 14px 5rem;
}
.main__gamelist-tab li.all-game:hover:before {
	animation: none;
}
.main__bottom {
	display: flex;
	position: relative;
	padding: 5rem 2rem;
	/*background-color: #dbb349cc;*/
	align-items: stretch;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}
.main__bottom:before {
	opacity: 0.4;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-position: 0 0;
	background-repeat: no-repeat
	background-size: 100% auto;
}
.main__bottom__board {
	position: relative;
	width: 23%;
	min-width: 340px;
}
.main__bottom__board--payment {
	padding: 2rem;
	border-radius: 1rem;
	background-color: #ffffff;
	box-shadow: 1rem 1rem 15px #b99432cc;
}
.main__bottom__board--payment ul {
	margin-top: 2rem;
}
.main__bottom__board--payment ul li:nth-child(odd) {
	background-color: #f6f4ef;
}
.main__bottom__board--payment ul li {
	display: flex;
	position: relative;
	padding: 0.8rem 0.8rem 0.8rem 40px;
	border-bottom: 1px solid #dddddd;
	font-size: 1.3rem;
	flex-wrap: wrap;
	justify-content: space-between;
}
.main__bottom__board--payment ul li:before {
	display: inline-block;
	position: absolute;
	top: 0.8rem;
	left: 0.8rem;
	width: 24px;
	height: 24px;
	margin-top: -1px;
	margin-right: 3px;
	content: "";
	vertical-align: middle;
	background: url("../../../img/flex/yellow/ic-sprite.png") -208px 0 no-repeat;
	background-size: 400px 200px;
}
.main__bottom__board--payment ul li p {
	overflow: hidden;
	max-width: 40%;
	text-overflow: ellipsis;
	color: #666666;
	font-size: 1.2rem;
	font-weight: bold;
}
.main__bottom__board--payment ul li strong {
	font-family: "Montserrat", sans-serif;
	color: #ff5700;
	font-size: 1.4rem;
	font-weight: bold;
}
.main__bottom__board--payment ul li span {
	text-align: left;
	font-family: "Montserrat", sans-serif;
	color: #666666;
	font-size: 1.3rem;
	font-weight: normal;
	order: -1;
	flex: 100%;
}
.main__bottom__board--payment h2 {
	display: flex;
	gap: 1rem;
	justify-content: center;
}
.payment__tab {
	padding: 0.5rem 1rem;
	border-bottom: 3px solid #cccccc;
	cursor: pointer;
	color: #999999;
	font-size: 1.5rem;
}
.payment__tab:hover,
.payment__tab.on {
	border-color: #e2c169;
	color: #956e07;
}
.main__bottom__board--list {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 2rem;
	border: 3px solid #ffffff66;
	border-radius: 1rem 4rem;
	transition: all 0.3s ease;
	justify-content: center;
}
.main__bottom__board--list:before {
	display: inline-block;
	position: absolute;
	top: -0.8rem;
	right: 10%;
	width: 50px;
	height: 50px;
	content: "";
	user-select: none;
	pointer-events: none;
	background: url(../../../img/flex/yellow/board-list-deco.svg) left top
	no-repeat;
	background-size: contain;
}
.main__bottom__board--list:hover {
	background-color: #ffffff33;
}
.main__bottom__board--list table {
	width: 100%;
	min-height: 180px;
}
.main__bottom__board--list table tr:hover td {
	background-color: #ffffff99;
}
.main__bottom__board--list table td {
	border-bottom: 1px solid #0000001a;
	transition: all 0.3s ease;
	text-align: left;
	color: #533415;
}
.main__bottom__board--list table td:first-child {
	padding-left: 0.8rem;
}
.main__bottom__board--list table td:last-child {
	padding-right: 0.8rem;
	text-align: right;
}
.main__bottom__board--list table .color {
	display: inline-block;
	float: left;
	padding: 0.8rem;
	border-radius: 5px;
	color: #ffffff;
	font-weight: normal;
	background-color: #d76314;
}
.main__bottom__board--list:nth-child(odd) table .color {
	background-color: #b34338;
}
.main__bottom__board--list h2 {
	margin-bottom: 2rem;
	letter-spacing: -1px;
	color: #533415;
	font-size: 2.4rem;
}
.main__bottom__board--list p {
	display: inline-block;
	overflow: hidden;
	width: 100%;
	height: 2rem;
	padding-left: 8px;
	cursor: pointer;
	vertical-align: middle;
	text-overflow: ellipsis;
	word-break: break-all;
	word-break: break-all;
	color: #533415;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 2rem;
}
footer {
	position: relative;
	margin-left: 260px;
	padding-bottom: 30px;
	background: linear-gradient(1deg, #10100f 35%, #d19339 84.9%, rgb(101 85 52 / 0%) 100%);
	/*background-color: #100802;*/
}
.footer__top {
	position: relative;
	border-top: 1px solid #ffffff33;
	border-bottom: 1px solid #ffffff33;
}
.footer__top-inner {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding: 3rem 0;
	color: #ffffffcc;
	justify-content: space-between;
	align-items: center;
	gap: 2rem 0;
}
.footer__menu {
	display: none;
}
.footer__menu .footer__logo {
	display: none;
}
.footer__menu .footer__logo:after {
	word-break: keep-all;
	color: #999999;
	font-size: 1.3rem;
}
.footer__menu ul {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}
.footer__menu li {
	display: inline-block;
	cursor: pointer;
	user-select: none;
	transition: all 0.3s ease;
	font-size: 1.6rem;
	font-weight: normal;
}
.footer__menu li:hover {
	background-color: rgba(0, 0, 0, 0.05);
}
.fnb {
	display: flex;
	order: -1;
	align-items: center;
	gap: 1rem;
}
.fnb h2 {
	display: none;
}
.fnb ul {
	display: flex;
	gap: 1rem;
}
.fnb ul li {
	display: inline-flex;
	flex-direction: row;
	position: relative;
	padding: 2px 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.2;
	justify-content: center;
	align-items: center;
}
.fnb ul li b {
	font-weight: normal;
}
.fnb .fnb__ul--help {
	margin-right: 2rem;
}
.fnb .fnb__ul--link li {
	font-size: 1.3rem;
}
.fnb .fnb__ul--link li:before {
	display: inline-block;
	position: absolute;
	top: 0;
	left: -0.7rem;
	content: "/";
	color: #ffffff33;
}
.fnb ul li .ic {
	display: block;
	margin-right: 0.8rem;
	vertical-align: middle;
}
.fnb ul li.fnb__li--24hcenter {
	margin-right: 0.5rem;
	padding: 0 2rem;
	border: 2px solid #ffffff;
	border-radius: 1rem;
	cursor: inherit;
	pointer-events: none;
	font-size: 2.4rem;
}
.fnb ul li.fnb__li--24hcenter b {
	padding-left: 1rem;
	font-family: "Montserrat", sans-serif;
	color: #ffd258;
	font-size: 2.4rem;
	font-weight: bold;
}
.fnb__li--telegram .ic {
	width: 40px;
	height: 40px;
	background-image: url(../../../img/flex/yellow/ic-sprite.png);
	background-repeat: no-repeat;
	background-position: -232px 0;
	background-size: 400px 200px;
}
.fnb__li--kakaotalk .ic {
	width: 40px;
	height: 40px;
	background-image: url(../../../img/flex/yellow/ic-sprite.png);
	background-repeat: no-repeat;
	background-position: -272px 0;
	background-size: 400px 200px;
}
.fnb__li--teamviewer .ic {
	width: 40px;
	height: 40px;
	background-image: url(../../../img/flex/yellow/ic-sprite.png);
	background-repeat: no-repeat;
	background-position: -312px 0;
	background-size: 400px 200px;
}
.fnb__li--chrome .ic {
	width: 40px;
	height: 40px;
	background-image: url(../../../img/flex/yellow/ic-sprite.png);
	background-repeat: no-repeat;
	background-position: -352px 0;
	background-size: 400px 200px;
}
.fnb ul li:hover {
	background-color: #ffffff40;
}
.footer__ico {
	max-width: 1100px;
	margin: 50px auto;
	text-align: center;
}
.footer__ico img {
	width: auto;
	height: 30px;
	margin: 14px 14px;
}
.footer__guide {
	position: relative;
	width: 95%;
	max-width: 1200px;
	margin: 10px auto;
	text-align: center;
	color: rgba(255, 255, 255, 0.4);
	font-size: 1.1rem;
}
.footer__licence {
	overflow: hidden;
	position: relative;
	width: 70%;
	max-width: 1200px;
	margin: 30px auto;
	border: 1px rgba(255, 255, 255, 0.3) solid;
	border-radius: 10px;
	text-align: left;
}
.footer__licence dt,
.footer__licence dd {
	float: left;
}
.footer__licence dt {
	width: 15%;
	padding: 10px 0;
	text-align: center;
}
.footer__licence dt img {
	width: 80%;
}
.footer__licence dd {
	width: 80%;
	padding: 10px;
	border-left: 1px rgba(255, 255, 255, 0.3) solid;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1rem;
}
.footer__copy {
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 30px 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.2rem;
}
.footer__copy b {
	margin-right: 10px;
	font-weight: bold;
}
.footer__copy img {
	opacity: 0.3;
	position: absolute;
	top: 20px;
	right: 5%;
	width: 40px;
}
.sub {
	position: relative;
	min-height: 600px;
	margin-top: 70px;
	margin-left: 260px;
}
.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: #c91d5c;
}
.sub .info svg {
	vertical-align: -0.6rem;
}
.sub.join {
	display: flex;
	overflow-y: scroll;
	width: 100%;
	height: 100vh;
	background-color: #fff8e9;
	align-items: flex-start;
	background-image: linear-gradient(
			45deg,
			#f5eace 25%,
			#fff8e9 25%,
			#fff8e9 50%,
			#f5eace 50%,
			#f5eace 75%,
			#fff8e9 75%,
			#fff8e9 100%
	);
	background-size: 56.57px 56.57px;
	margin: 0;
}
.sub.join .sub__container {
	animation: fadein 1s ease both;
}
	.sub.login {
		display: flex;
		width: 100%;
		height: 100vh;
		background: linear-gradient(142deg, #000000, #d19339, #766a4c, #503c1d);
		margin-top: 0;
		margin-left: 0;
		justify-content: center;
		align-items: center;
		/*
		background-image: linear-gradient(45deg, #0e0e0d 25%, #060606 25%, #000000 50%, #140f03 50%, #2e2612 75%, #2e240f 75%, #816324 100%);
		background-size: 56.57px 56.57px;
			*/
	}
.sub__logo {
	display: block;
	width: 100%;
	height: 9rem;
	animation: fadein 1s ease both;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	margin-bottom: 2rem;
}
.sub__container {
	position: relative;
}
.sub__title {
	display: flex;
	flex-direction: column;
	position: relative;
	position: relative;
	height: 200px;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.sub__title:before {
	opacity: 0.4;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 500px;
	content: "";
}
.sub__title--bg01:before {
	background: url(../../../img/flex/yellow/subheader--bg01.jpg) center top no-repeat;
	background-size: 100% auto;
}
.sub__title--bg02:before {
	background: url(../../../img/flex/yellow/subheader--bg02.jpg) center top no-repeat;
	background-size: 100% auto;
}
.sub__title--bg03:before {
	background: url(../../../img/flex/yellow/subheader--bg03.jpg) center top no-repeat;
	background-size: 100% auto;
}
.sub__title--bg04:before {
	background: url(../../../img/flex/yellow/subheader--bg04.jpg) center top no-repeat;
	background-size: 100% auto;
}
.sub__title h2 {
	width: 100%;
	padding: 6rem 1rem 1rem 1rem;
	color: #4a3826;
	font-size: 4rem;
	font-weight: bold;
	line-height: 1.5;
	line-height: 1.3;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 130px auto;
}
.sub__title b {
	color: #4a3826;
	font-size: 2rem;
	font-weight: normal;
}
.sub__flex-content {
	display: flex;
	flex-direction: column;
	position: relative;
	max-width: 1600px;
	margin: 40px auto 100px 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;
	background-color: #fff;
	box-shadow: 0 10px 37px #cfaf58;
	border-radius: 2rem;
}
.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;
	stroke: #d18e65;
}
.form_money .btn_set button:hover svg {
	stroke: #fff;
}
.sub__tab {
	display: flex;
	max-width: 80%;
	margin: 0 auto;
	justify-content: center;
	gap: 0;
	border: 2px solid #cfaf58;
}
.sub__tab li {
	padding: 0 1rem;
}
.sub__tab li {
	position: relative;
	min-width: 100px;
	padding: 1rem 2rem;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #333333;
	font-size: 1.4rem;
	font-weight: normal;
}
.sub__tab li .svg--dropdown {
	width: 16px;
	height: 16px;
	margin-top: -1px;
	vertical-align: middle;
}
.sub__tab li:hover {
	background-color: #cfaf5833;
}
.sub__tab li.on:before,
.sub__tab li:hover:before {
	opacity: 1;
	width: 100%;
}
.sub__tab li.on {
	color: #ffffff;
	font-weight: bold;
	background-color: #cfaf58;
}
.sub__tab-cont .btn_set {
	margin-top: 2rem;
}
.board_view .content {
	min-height: 200px;
	padding: 1rem;
	word-break: break-word;
	word-wrap: 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: #333;
	background-color: #fff;
	box-shadow: 0 10px 37px #cfaf58;
	backdrop-filter: blur(10px);
}
.sub.join .sub__container .input-text-box__help {
	color: #333;
}
.sub.login .sub__container {
	border-radius: 2rem;
	background-color: #fff;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	animation: fadein 0.5s both;
	min-width: 80%;
	box-shadow: 0 10px 37px #cfaf58;
}
.sub.login .sub__flex-content {
	margin: 0 auto;
	padding: 5rem 0 8rem 0;
	box-shadow: none;
	position: relative;
	background: linear-gradient(0deg, #10100f 35%, #d19339 84.9%, rgb(101 85 52 / 0%) 100%);
	z-index: 1;
	padding-left: 50%;
	width: 100%;
	max-width: 100%;
	color: white;
}
.sub.login .sub__flex-content:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.sub.login .row-box__title {
	width: 100%;
	flex: 100%;
}
.sub.join .sub__flex-content {
	margin: 0;
	padding: 3rem 3rem 6rem 3rem;
	box-shadow: none;
}
.sub.join .row-box {
	flex-direction: column;
}
.sub.join .row-box__title {
	width: 100%;
	flex: 100%;
	margin-bottom: 2rem;
}
.row-box__title h2 {
	font-size: 3rem;
}
.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;
	border-top: 5px dotted #e0b65f;
	padding-top: 2rem;
}
.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: #ffb6b66b;
}
.sub__tab-cont {
	width: 100%;
}
@media (max-width: 1000px) {
	html {
		font-size: 55%;
	}
	.header__menu-opener {
		display: block;
	}
	.header__inner {
		left: 0;
		z-index: 90;
		width: 100%;
		padding: 0 1.6rem;
		background: linear-gradient(0deg, #10100f 35%, #b37f33 84.9%, rgb(101 85 52 / 0%) 100%);
		box-shadow: 5px 0 15px #b2792f33;
	}
	.header__notice {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}
	body.body--notice .header__notice {
		display: block;
	}
	body.body--notice .header__inner {
		margin-top: 2.8rem;
	}
	body.body--notice .header__menu-opener {
		margin-top: 2.8rem;
	}
	body.body--notice .header__gnb {
		padding-top: calc(70px + 2.8rem);
	}
	body.body--notice .main {
		margin-top: calc(70px + 2.8rem);
	}
	body.body--notice .sub {
		margin-top: calc(70px + 2.8rem);
	}
	body.body--notice .menu-wrap {
		margin-top: calc(70px + 2.8rem);
	}
	.header__notice ul {
		max-width: none;
		border-radius: 0;
	}
	.lang {
		margin-left: 28px;
	}
	.header__logo {
		display: block;
		display: inline-block;
		overflow: hidden;
		position: absolute;
		top: 0;
		left: 50%;
		width: 150px;
		height: 70px;
		margin-left: -75px;
		cursor: pointer;
		text-align: left;
		text-indent: -9999px;
		pointer-events: initial;
		color: transparent;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	.header__gnb {
		display: none;
	}
	header {
		right: 0;
		width: auto;
		height: auto;
		min-height: auto;
		z-index: 999;
	}
	header:before {
		display: none;
	}
	.menu-wrap__logo {
		display: none;
	}
	.main {
		margin-left: 0;
	}
	.main__gamelist-box {
		padding: 1.6rem;
	}
	.main__gamelist-tab {
		flex-direction: row;
		height: auto;
		padding: 0;
		border-bottom: 0;
		flex-wrap: wrap;
		justify-content: center;
	}
	.main__gamelist-tab li {
		bottom: 0;
		width: 48%;
		padding: 8px 1rem 8px 6.5rem;
		border-radius: 1rem 3rem;
	}
	.main__gamelist-tab li.all-game {
		padding: 8px 1rem 8px 5rem;
	}
	.main__gamelist-tab li:hover,
	.main__gamelist-tab li.active {
		padding: 8px 1rem 8px 6.5rem;
		border-bottom-color: #dbb349cc;
		background-color: #fff8e9;
	}
	.main__gamelist-tab li:hover b,
	.main__gamelist-tab li.active b {
		color: #965e40;
	}
	.main__gamelist-tab li:hover:before,
	.main__gamelist-tab li.active:before {
		margin: 0 0 -1rem -1rem;
		animation: none;
	}
	.main__gamelist-tab li.all-game:hover {
		padding: 8px 3rem 8px 5rem;
	}
	.main__gamelist-tab li.all-game:hover:before {
		margin: 0 0 -13px 0;
		animation: none;
	}
	.main__gamelist-tab li b {
		font-size: 1.4rem;
		font-weight: bold;
	}
	.main__bottom {
		flex-direction: column;
		padding: 4rem 1.6rem;
	}
	.main__bottom:before {
		background-size: cover;
	}
	.main__bottom__board {
		width: 100%;
	}
	.main__bottom__board--list h2 {
		margin-bottom: 1rem;
		font-size: 2rem;
	}
	.main__bottom__board--list:before {
		height: 40px;
	}
	footer {
		margin-left: 0;
	}
	.footer__ico img {
		height: 20px;
		margin: 0.8rem 0.8rem;
	}
	.footer__top-inner {
		flex-direction: column;
		flex-wrap: wrap;
	}
	.fnb {
		flex-direction: column;
		padding: 0 1.6rem;
		flex-wrap: wrap;
	}
	.fnb ul li.fnb__li--24hcenter {
		margin-right: 0;
		padding: 1rem;
		flex: 100%;
		font-size: 1.5rem;
	}
	.fnb__ul--help li {
		width: 48%;
	}
	.fnb ul {
		flex-wrap: nowrap;
	}
	.fnb .fnb__ul--help {
		width: 100%;
	}
	.fnb__li--telegram .ic {
		width: 20px;
		height: 20px;
		background-position: -116px 0;
		background-size: 200px 100px;
	}
	.fnb__li--kakaotalk .ic {
		width: 20px;
		height: 20px;
		background-position: -136px 0;
		background-size: 200px 100px;
	}
	.fnb__li--teamviewer .ic {
		width: 20px;
		height: 20px;
		background-position: -156px 0;
		background-size: 200px 100px;
	}
	.fnb__li--chrome .ic {
		width: 20px;
		height: 20px;
		background-position: -176px 0;
		background-size: 200px 100px;
	}
	.fnb .fnb__ul--link {
		justify-content: center;
		gap: 0.4rem;
	}
	.fnb .fnb__ul--link li:first-child:before {
		display: none;
	}
	.footer__ico {
		margin: 2rem auto;
	}
	.footer__licence {
		width: 90%;
	}
	.footer__licence dt {
		width: 30%;
	}
	.footer__licence dd {
		width: 70%;
	}
	.footer__copy {
		padding: 1rem 0;
	}
	.menu-wrap {
		display: none;
		height: 100%;
		margin-top: 70px;
		background-color: #00000033;
	}
	.menu-wrap.menu-wrap--open {
		display: block;
		animation: opacity-ani 0.2s both;
	}
	.main__visual__banner {
		height: 300px;
		gap: 1rem;
	}
	.main__visual__banner .img-box {
		height: 100px;
	}
	.main__visual__banner .txt-box h2 {
		margin-bottom: 0;
		height: auto;
		margin-bottom: 2rem;
	}
	.main__visual__banner .txt-box h2:before {
		font-size: 3rem;
		width: 90%;
		white-space: normal;
		display: inline-block;
		word-break: break-word;
		position: relative;
		line-height: 1.1;
	}
	.main__visual__banner .txt-box p:before {
		font-size: 1.3rem;
	}
	.deco-item--left {
		background-position: bottom right;
		background-size: auto 50%;
	}
	.deco-item--right {
		background-position: bottom right;
		background-size: auto 50%;
	}
	.menu-wrap__inner {
		overflow-y: auto;
		position: relative;
		z-index: 10;
		width: 80%;
		height: calc(100vh - 70px);
		padding: 2rem;
		animation: fadein--left 0.5s ease both;
		text-align: center;
		pointer-events: auto;
		background: linear-gradient(180deg, #10100f 35%, #d19339 84.9%, rgb(101 85 52 / 0%) 100%);
		box-shadow: 5px 0 15px #b2792f33;
		align-items: center;
		gap: 2rem;
		backdrop-filter: blur(3px);
		justify-content: space-evenly;
	}
	.menu-wrap__inner:before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
	}
	body.body--notice .menu-wrap__inner {
		height: calc(100vh - 70px - 2.8rem);
	}
	.menu-wrap .login {
		position: relative;
		right: 0;
		left: 0;
		width: 100%;
	}
	.menu-wrap .login--before {
		flex-direction: column;
		width: 100%;
		height: auto;
		margin: 0 0 3rem 0;
		padding: 3rem;
		border: 3px solid #efdfbe;
		border-radius: 1.6rem;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		gap: 0.8rem;
	}
	.menu-wrap .login--before .login-box {
		flex-direction: column;
		position: relative;
		width: 100%;
		gap: 0.8rem;
	}
	.menu-wrap .login--before .login-box:before {
		margin-bottom: 0.8rem;
		content: "LOGIN";
		letter-spacing: -1px;
		font-family: "Montserrat", sans-serif;
		color: #e0b65f;
		font-size: 2.4rem;
		font-weight: bold;
	}
	.menu-wrap .login .login-box .input-text-box {
		width: 100%;
	}
	.menu-wrap .login .login-box .input-text-box input {
		width: 100%;
	}
	.menu-wrap .login--before button {
		width: 100%;
		line-height: 5rem;
	}
	.menu-wrap .login--after {
		height: auto;
		margin: 0 0 2rem 0;
		padding: 2rem 2rem;
		border: 3px solid #efdfbe;
		border-radius: 1.6rem;
		background-color: #ffffff;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0rem;
	}
	.menu-wrap .login--after .info {
		background: none;
	}
	.menu-wrap .login--after .info:first-child {
		padding-left: 0;
		flex: 100%;
	}
	.menu-wrap .login--after .btn-box {
		margin-top: 2rem;
		flex: 100%;
		justify-content: center;
	}
	.menu-wrap .login--after button {
		width: 100%;
	}
	.menu-wrap .login .login__info__level {
		position: relative;
	}
	.menu-wrap__menu {
		display: flex;
		flex-direction: column;
		width: 100%;
		gap: 1rem;
	}
	.menu-wrap__menu li {
		padding: 1rem;
		border-radius: 2rem;
		cursor: pointer;
		transition: all 0.3s ease;
		text-align: center;
		color: #4a3826;
		font-size: 1.4rem;
		font-size: 1.6rem;
		font-weight: bold;
		background-color: #efdfbe;
	}
	.menu-wrap__menu li:hover {
		background-color: #f2d08b;
	}
	.sub {
		margin-left: 0;
	}
	.sub__title {
		height: 130px;
	}
	.sub__title h2 {
		padding: 4.5rem 1rem 0.4rem 1rem;
		font-size: 2.5rem;
		background-size: 100px auto;
	}
	.sub__title b {
		font-size: 1.6rem;
	}
	.sub__flex-content {
		margin: 0 auto;
		border-radius: 0;
		padding: 2rem 1rem 5rem 1rem;
	}
	.sub.login .sub__container {
		min-width: 90%;
	}
	.sub.login .sub__flex-content {
		padding-left: 0;
		padding: 26rem 1rem 8rem 1rem;
	}
	.sub.login .sub__flex-content:before {
		width: 100%;
		height: 24rem;
		background-position: center;
	}
	.sub.join .sub__container {
		margin: 3rem auto;
	}
}

.layer-popup__title .logo--sm{background-image:url(../../../img/flex/yellow/menu_logo_shark.png?v=11);}
header:before{background-image:url(../../../img/flex/yellow/header-deco.png);}
.header__gnb .depth1--full:before{background-image:url(../../../img/flex/yellow/depth1-deco.png);}
.header__gnb .depth1--full:after{background-image:url(../../../img/flex/yellow/depth1-bg.png);}
.menu-wrap__logo{background-image:url(../../../img/flex/yellow/menu_logo_shark.png?v=11);}
.main__visual__banner{background-image:url(../../../img/flex/yellow/banner-bg.jpg);}
.main__visual__banner .img-box{background-image:url(../../../img/flex/yellow/banner-logo_cod.png?v=1);}
.main__visual__banner .txt-box h2:before{content:'Welcome to ONLINE CASINO';}
.main__visual__banner .txt-box p:before{content:'다양하고 흥미진진한 승부를 온라인으로 즐기세요!';}
.deco-item--left{background-image:url(../../../img/flex/yellow/deco-left.png);}
.deco-item--right{background-image:url(../../../img/flex/yellow/deco-right.png);}
.main__bottom:before{background-image:url('../../../img/flex/yellow/main-bottom-deco.png');}
.sub__logo{background-image:url(../../../img/flex/yellow/menu_logo_shark.png?v=11);}
.sub__title h2{background-image:url(../../../img/flex/yellow/sub-title-bg.png);}
.sub.login .sub__flex-content:before{background-image:url(../../../img/flex/yellow/login-bg.jpg);}

@media (max-width: 1000px){
	.header__logo{background-image:url(../../../img/flex/yellow/menu_logo_shark.png?v=11);}
	.menu-wrap .login--before{background-image:url(../../../img/flex/yellow/depth1-deco.png);}
}
