@charset "UTF-8";
/*
***************************************************
BASE
***************************************************
*/

:root {
    --etype-ff-body: 'paperlogy', sans-serif;
    --etype-ff-heading: 'Gmarket Sans', 'paperlogy', sans-serif;
    --etype-color-point: #e0a053;
}

/* scroll bar */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(178, 112, 44, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #000;
}

/* reset */

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    --webkit-box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

b,
strong,
.bold,
.fw-bold {
    font-weight: bold;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

dl,
ul,
ol,
menu,
li {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body,
button,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
span,
input,
textarea,
select,
caption,
tr,
th,
td {
    font-family: var(--etype-ff-body);
}

body,
html {
    --webkit-text-size-adjust: none;
    font-size: 10px;
    letter-spacing: normal;
}

body {
    color: #fafafa;
    background: #15161b;
    line-height: 1.2;
    word-break: keep-all;
    font-weight: normal;
}

fieldset,
img {
    border: 0 none;
}

img {
    vertical-align: top;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #fafafa;
    font-weight: 500;
}

a:active,
a:hover {
    text-decoration: none;
}

input,
textarea,
select,
button {
    vertical-align: top;
    cursor: pointer;
}

button {
    color: #fafafa;
    border: 0 none;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}

address,
caption,
cite,
code,
dfn,
em,
var {
    font-style: normal;
    font-weight: normal;
}

legend,
caption {
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    font-size: 0;
    line-height: 0;
}

textarea {
    resize: none;
}

input {
    outline: none;
}

input[type=text]::-ms-clear {
    display: none;
}

input[type='file'] {
    --webkit-appearance: button;
    background: transparent;
    border-radius: 0;
    border: 0;
    cursor: pointer;
}

/* basic */

.hidden {
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
}

#wrap {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/* header */

.header {
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 115px;
    background-image: url(/assets/images/content/bg_top.png), url(/assets/images/content/bg_header.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 40px, 100% 100%;
    transition: transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.header .header_container {
    position: relative;
    width: 100%;
    max-width: 1310px;
    margin: 0 auto;
}

/* gnb */

.head_top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 0 20px;
}

.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 75px;
}

/* logo */

.site_logo {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 9;
    transform: translate(-50%, 8px);
    width: 200px;
    height: auto;
}

.site_logo a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.site_logo a img {
    width: 100%;
    height: 100%;
}

/* header menu */

.nav_menu {
    display: flex;
    flex-direction: row;
    width: calc(50% - 127px)
}

.nav_menu .nav_item {
    width: calc(100% / 3);
    height: 75px
}

.nav_menu .nav_item a {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center
}

.nav_menu .nav_item.active a::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/images/content/nav_hover.png) center top no-repeat;
    background-size: cover;
}

.nav_menu .nav_item span {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: var(--etype-ff-heading);
    font-weight: 600;
    font-size: 1.8rem;
}

.nav_menu .nav_item.nav_01.active span:before {
    width: 28px;
    height: 25px;
    background-image: url(/assets/images/content/icon_card.png);
}

.nav_menu .nav_item.nav_02.active span:before {
    width: 28px;
    height: 24px;
    background-image: url(/assets/images/content/icon_hotelcasino.png);
}

    .nav_menu .nav_item.nav_03.active span:before {
        width: 24px;
        height: 20px;
        background-image: url(/assets/images/content/icon_hotelcasino.png);
    }

.nav_menu .nav_item span:before {
    content: '';
    display: block;
    position: absolute;
    top: -8px;
    background-size: cover;
    background-repeat: no-repeat;
    filter: drop-shadow(1px 2px 4px #572a09);
}

.nav_menu_sec {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: calc(50% - 127px);
}

.nav_menu_sec .nav_btn {
    display: inline-block;
    padding: 0 15px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
}

.before_login .btn {
    display: inline-block;
    font-size: 1.4rem
}

.before_login .btn+.btn {
    margin-left: 40px
}

.after_login .btn {
    display: inline-block;
    font-size: 1.4rem
}

.after_login .btn+.btn {
    margin-left: 40px
}

.head_top .user_name {
    font-size: 1.4rem;
    font-weight: 400;
}

.head_top .user_name strong {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--etype-ff-heading);
}

/* gnb_menu */

.site_gnb {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start
}

.gnb_menu {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.panel {
    width: 100%
}

@media screen and (max-width:1190px) {
    .site_logo {
        width: auto;
        height: 68px;
        left: 0;
        transform: translate(8px, 42px);
    }
    .gnb_menu .nav {
        justify-content: flex-end;
    }
    .gnb_menu .nav .nav_menu {
        width: auto;
        border-right: 2px solid;
        border-color: rgba(132, 76, 26, 0.45);
    }
    .gnb_menu .nav .nav_menu_sec {
        width: auto;
    }
    .nav_menu .nav_item {
        width: fit-content;
    }
    .nav_menu .nav_item a {
        padding: 0 2.75rem;
    }
    .nav_menu .nav_item span {
        font-size: 1.5rem;
    }
    .nav_menu_sec .nav_btn {
        font-size: 1.4rem;
    }
}

@media screen and (max-width:767px) {
    /* 모바일 767px까지 포함 */
    .gnb_menu .nav .nav_menu {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .gnb_menu .nav .nav_menu>li {
        flex: 1 1 0;
    }
    .gnb_menu .nav .nav_menu>li+li {
        border-left: 1px solid;
        border-color: rgba(100, 80, 60, 0.5);
    }
    .site_gnb {
        align-items: center;
        justify-content: center;
        padding-left: 0;
    }
    .site_logo {
        z-index: 2000;
        left: 50%;
        transform: translate(-50%, 8px);
        width: auto;
        height: 68px;
    }
    .header {
        width: 100%;
        height: 60px;
        background: rgba(0, 0, 0, 0.6);
        background-image: none;
    }
    .header .header_container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    /* panel */
    .panel {
        z-index: 1999;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        max-height: 0;
        background-color: #1a1a1a;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    .panel.open {
        top: 60px;
        max-height: 100vh;
    }
    /* 버튼 스타일 */
    .panel .btn_panel_toggle {
        z-index: 2;
        display: inline-block;
        position: fixed;
        top: 7px;
        right: 0;
        width: 48px;
        height: 48px;
        margin: 0;
        background-color: transparent;
        border: none;
    }
    .panel .btn_panel_toggle span,
    .panel .btn_panel_toggle span:before,
    .panel .btn_panel_toggle span:after {
        width: 18px;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
    }
    .panel .btn_panel_toggle span {
        display: inline-block;
        position: relative;
        margin: 22px 0 0 15px;
    }
    .panel .btn_panel_toggle span:before,
    .panel .btn_panel_toggle span:after {
        content: '';
        position: absolute;
        left: 0;
    }
    .panel .btn_panel_toggle span:before {
        top: -7px;
    }
    .panel .btn_panel_toggle span:after {
        top: 7px;
    }
    /* 버튼 활성화 상태 */
    .panel .btn_panel_toggle.active span {
        background-color: transparent;
    }
    .panel .btn_panel_toggle.active span:before,
    .panel .btn_panel_toggle.active span:after {
        top: 0;
    }
    .panel .btn_panel_toggle.active span:before {
        transform: rotate(-135deg);
    }
    .panel .btn_panel_toggle.active span:after {
        transform: rotate(135deg);
    }
    /* nav */
    .nav {
        flex-direction: column;
        height: auto
    }
    .nav_menu,
    .nav_menu_sec {
        width: 100%;
        flex-direction: column
    }
    /* gnb */
    .gnb_menu {
        height: 100%;
        flex-direction: column;
        padding: 8px 0 0
    }
    .head_top {
        flex-direction: column;
        justify-content: space-between;
        height: auto;
        padding-bottom: 10px
    }
    .head_top .user_name {
        font-size: 1.3rem;
        margin-bottom: 10px
    }
    .before_login .btn {
        font-size: 1.3rem
    }
    .nav_menu .nav_item {
        width: 100%;
        height: 52px;
        border-bottom: 1px solid rgba(26, 26, 26, 0.75);
        background-color: #2c241b;
        background: url(/assets/images/content/bg_header.png);
    }
    .nav_menu .nav_item span {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        font-size: 1.4rem;
    }
    .nav_menu .nav_item.active a:after {
        display: none
    }
    .nav_menu_sec {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        width: 100% !important;
    }
    .nav_menu_sec .nav_btn {
        height: 40px;
        width: 50%;
        margin-left: -1px;
        margin-top: -1px;
        padding: 0;
        font-size: 1.4rem;
        line-height: 40px;
        background: #66533c;
        border: 1px solid #423628
    }
    .nav_menu .nav_item span:before {
        width: 24px;
        height: 20px;
        position: relative;
        top: unset;
        background-size: auto 100%;
    }
    .nav .nav_menu .nav_item.nav_01 span:before {
        background-image: url(/assets/images/content/icon_card.png);
    }
    .nav .nav_menu .nav_item.nav_02 span:before {
        background-image: url(/assets/images/content/icon_hotelcasino.png);
    }
    .nav .nav_menu .nav_item.nav_03 span:before {
        background-image: url(/assets/images/content/icon_slotcame.png);
    }
    .nav .nav_menu .nav_item a span:before {
        width: 22px;
        height: 22px;
        background-position: center;
        background-size: auto 80%;
    }
}

/* main_section */

.section {
    position: relative;
    padding: 115px 0 0;
    width: 100%;
    background-image: url(/assets/images/content/bg_all.png);
    background-repeat: repeat-y;
    background-size: cover;
    background-position: center top;
}

.section_inner {
    max-width: 1310px;
    padding: 20px 0;
    margin: 0 auto
}

@media screen and (max-width:1310px) {
    .header .header_container {
        max-width: 100%
    }
    .section_inner {
        max-width: 100%
    }
}

@media screen and (max-width:1190px) {
    .section {
        padding: 115px 0 0
    }
    .section_inner {
        max-width: 100%;
        padding: 0 20px
    }
}

@media screen and (max-width:767px) {
    .section {
        padding: 60px 0 0
    }
    .section_inner {
        padding: 20px 0
    }
}

/* main slide */

.main_slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 470px;
    background-image: url(/assets/images/content/slide-txt-bg.png), url(/assets/images/content/slide-bg.jpg);
    background-repeat: no-repeat;
    background-size: 400px 400px, cover;
    background-position: center, center top;
}

.main_slider_bg {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 1px;
    background-image: url(/assets/images/content/bg_frame.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    width: 100%;
    height: 470px
}

.main_slider .swiper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1310px;
    margin: 0 auto;
}

.main_slider .swiper-slide {
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 470px
}

.main_slider .swiper-slide img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.main_slider .swiper-pagination {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    bottom: 100px
}

.main_slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #fff;
    border-radius: 4px;
}

.main_slider .swiper-pagination-bullet-active {
    background: #EFB800;
    width: 30px;
    height: 10px;
}

.main_slider .swiper_text {
    width: 320px;
    height: 400px;
    letter-spacing: -0.175rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main_slider .swiper_text span {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-family: var(--etype-ff-heading);
}

.main_slider .swiper_text span:last-child {
    letter-spacing: normal;
}

.main_slider .swiper_text .g_txt {
    color: transparent;
    background: linear-gradient(to bottom, #ffb13e 0%, #d2b14f 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-align: center;
    font-size: 3.75rem;
    font-weight: 600;
}

.main_slider .swiper_text .g_txt_02 {
    margin-bottom: 20px;
    font-family: var(--etype-ff-heading);
    font-weight: 600;
    font-size: 3.6rem;
    background: linear-gradient(to bottom, #fffb78 0%, #ffffe6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.ani_wrap {
    max-width: 1300px;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

.ani_chip_wrap {
    position: absolute;
    bottom: 100px;
    right: -215px;
    z-index: 3
}

.ani_chip_wrap .ico_chips {
    display: inline-block;
    width: 217px;
    height: 125px;
    animation: heartbeat 1.5s ease-in-out infinite both;
    transform-origin: center
}

.ani_chip_wrap .ico_chips img {
    width: 100%;
    height: 100%
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.ani_girl_wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1
}

.ani_game_wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1
}

.ani_girl_wrap .img_girl {
    display: inline-block;
    width: 400px;
    height: 500px
}

.ani_girl_wrap .img_girl img {
    width: 100%;
    height: 100%
}

.ani_game_wrap .img_game {
    display: inline-block;
    width: 540px;
    height: 368px
}

.ani_game_wrap .img_game img {
    width: 100%;
    height: 100%
}

.img_girl {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0
}

.img_game {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0
}

/* 애니메이션 키프레임 정의 */

@keyframes fadeInAndOut {
    0% {
        opacity: 0;
        transform: translateX(-50%);
    }
    6% {
        opacity: 1;
        transform: translateX(0);
    }
    95% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

@keyframes fadeInAndOutReverse {
    0% {
        opacity: 0;
        transform: translateX(50%);
    }
    6% {
        opacity: 1;
        transform: translateX(0);
    }
    95% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

.img_girl {
    animation: fadeInAndOut 15s ease infinite
}

.img_game {
    animation: fadeInAndOutReverse 15s ease infinite
}

/* 애니메이션을 위한 기본 스타일 */

.swiper_text {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out
}

.swiper-slide-active .swiper_text {
    opacity: 1;
    transform: scale(1)
}

.g_txt,
.g_txt_02,
.swiper_text>span {
    display: block;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out
}

/* 슬라이드 활성화 시 텍스트 애니메이션 적용 */

.swiper-slide-active .g_txt {
    animation: bannerText01 6s ease 1 forwards
}

.swiper-slide-active .g_txt_02 {
    animation: bannerText02 6s ease 1 forwards
}

.swiper-slide-active span:not(.g_txt):not(.g_txt_02) {
    animation: bannerText03 6s ease 1 forwards
}

@keyframes bannerText01 {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    10% {
        opacity: 1;
        transform: scale(1.1);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    95% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

@keyframes bannerText02 {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    3% {
        opacity: 0;
        transform: scale(0);
    }
    13% {
        opacity: 1;
        transform: scale(1.1);
    }
    23% {
        opacity: 1;
        transform: scale(1);
    }
    95% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

@keyframes bannerText03 {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    6% {
        opacity: 0;
        transform: scale(0);
    }
    16% {
        opacity: 1;
        transform: scale(1.1);
    }
    26% {
        opacity: 1;
        transform: scale(1);
    }
    95% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

@media screen and (max-width:1190px) {
    .ani_wrap {
        max-width: 100%
    }
    .main_slider {
        background-size: 300px 300px, cover
    }
    .main_slider .swiper_text {
        width: 300px;
        height: 300px
    }
    .main_slider .swiper_text span {
        font-size: 1.6rem
    }
    .main_slider .swiper_text .g_txt {
        font-size: 3rem
    }
    .main_slider .swiper_text .g_txt_02 {
        font-size: 2.6rem
    }
    .main_slider .swiper-pagination {
        bottom: 140px
    }
    .ani_girl_wrap .img_girl {
        width: 345px;
        height: 468px
    }
    .ani_game_wrap .img_game {
        width: 464px;
        height: 332px
    }
}

@media screen and (max-width:767px) {
    .main_slider {
        margin-left: 0;
        height: 360px;
        margin-top: -60px;
        background-size: 250px 250px, cover
    }
    .main_slider_bg {
        height: 360px
    }
    .main_slider .swiper-slide {
        height: 360px
    }
    .main_slider .swiper-slide {
        position: relative;
        width: 100% !important
    }
    .main_slider .swiper_text {
        width: 250px;
        height: 250px
    }
    .main_slider .swiper_text span {
        font-size: 1.3rem
    }
    .main_slider .swiper_text .g_txt {
        font-size: 2.4rem
    }
    .main_slider .swiper_text .g_txt_02 {
        font-size: 2rem;
        margin-bottom: 10px
    }
    .main_slider .swiper-pagination {
        bottom: 100px
    }
    .main_slider .swiper-pagination-bullet {
        width: 5px;
        height: 5px
    }
    .main_slider .swiper-pagination-bullet-active {
        width: 14px;
        height: 5px
    }
    .ani_girl_wrap .img_girl {
        width: 163px;
        height: 275px;
        left: -54px
    }
    .ani_game_wrap .img_game {
        width: 273px;
        height: 216px;
        bottom: -27px;
        right: -54px
    }
}

/* tab */

.menu_tab {
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s, margin-top 0.3s;
}

.menu_tab ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 61px;
}

.menu_tab ul::before {
    content: '';
    /* position:absolute;left:0;top:0; */
    display: inline-block;
    width: 61px;
    height: 90px;
    background: url(/assets/images/content/tab_left_bg.png) no-repeat;
    background-size: cover;
}

.menu_tab ul::after {
    content: '';
    /* position:absolute;right:0;top:0; */
    display: inline-block;
    width: 61px;
    height: 90px;
    background: url(/assets/images/content/tab_right_bg.png) no-repeat;
    background-size: cover;
}

.menu_tab li {
    position: relative;
    background-color: transparent;
    width: 352px;
    height: 90px;
    cursor: pointer;
}

.menu_tab li:nth-child(1),
.menu_tab li:nth-child(2) {
    padding-right: 64px;
    width: 414px;
}

.menu_tab li:last-child {
    padding-right: 0;
}

.menu_tab li:not(:last-child):after {
    content: '';
    display: inline-block;
    position: absolute;
    right: -1px;
    top: 0;
    width: 65px;
    height: 90px;
    background: url(/assets/images/content/tap_center_bg.png) no-repeat;
    background-size: cover;
}

.menu_tab li button {
    display: block;
    position: relative;
    width: 100%;
    height: 90px;
    padding: 0;
    line-height: 1;
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    font-family: var(--etype-ff-heading);
    color: #FFFFFF;
    background: transparent;
    background-image: url(/assets/images/content/tab_button.png);
    background-repeat: no-repeat;
    background-size: cover;
    transition: .3s;
}

.menu_tab li.active button {
    color: #fff;
    background-image: url(/assets/images/content/tab_button_over.png);
}

.menu_tab li:nth-child(1) button::before {
    background-image: url(/assets/images/content/icon_card.png);
}

.menu_tab li:nth-child(2) button::before {
    background-image: url(/assets/images/content/icon_hotelcasino.png);
}

.menu_tab li:nth-child(3) button::before {
    background-image: url(/assets/images/content/icon_slotcame.png);
}

.menu_tab li button::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: 0 14px 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
}

.menu_tab.fixed {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    max-width: 1310px;
}

.cont_tab {
    padding: 30px 0;
    transition: margin-top 0.3s;
}

.cont_tab_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:1310px) {
    .menu_tab {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0;
    }
    .menu_tab li {
        width: calc(100% / 3 - 60px);
    }
    .menu_tab li:nth-child(1),
    .menu_tab li:nth-child(2) {
        width: calc(100% / 3 + 30px);
        flex: 1 1 0;
    }
}

@media screen and (max-width:1190px) {
    .menu_tab li button {
        font-size: 2rem;
    }
    .menu_tab li:nth-child(1) button::before {
        width: 25px;
        height: 22px;
    }
    .menu_tab li:nth-child(2) button::before {
        width: 25px;
        height: 22px;
    }
    .menu_tab li:nth-child(3) button::before {
        width: 25px;
        height: 22px;
    }
}

@media screen and (max-width:767px) {
    .menu_tab li {
        height: 60px;
    }
    .menu_tab ul {
        padding: 0 10px;
    }
    .menu_tab li,
    .menu_tab li:nth-child(1),
    .menu_tab li:nth-child(2) {
        width: calc(100% / 3);
        flex: 1 1 0;
    }
    .menu_tab li:nth-child(1),
    .menu_tab li:nth-child(2) {
        padding-right: 0;
    }
    .menu_tab ul::before,
    .menu_tab li:not(:last-child):after,
    .menu_tab ul::after {
        display: none;
    }
    .menu_tab li button {
        height: 60px;
        font-size: 1.4rem;
    }
    .cont_tab {
        padding: 10px 0;
    }
}

@media screen and (max-width:576px) {
    .menu_tab li button {
        font-size: 1.375rem;
    }
    .menu_tab li button:before {
        margin: 0 8px 0 0;
    }
    .menu_tab li:nth-child(1) button::before {
        width: 20px;
        height: 16px;
        margin: 0 5px 0 0;
    }
    .menu_tab li:nth-child(2) button::before {
        width: 20px;
        height: 16px;
        margin: 0 5px 0 0;
    }
    .menu_tab li:nth-child(3) button::before {
        width: 20px;
        height: 16px;
        margin: 0 5px 0 0;
    }
}

.cont_bottom {
    background-color: #15161b;
    width: 100%;
    padding: 70px 0 65px
}

.cont_bottom_inner {
    max-width: 1310px;
    width: 100%;
    margin: 0 auto
}

/* board */

.board_wrap {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    width: 100%;
    padding: 0px 20px;
}

.board_title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 24px;
    text-align: center;
    margin-bottom: 22px;
}

    .board_title img {
        height: 100%;
    }

    .board_title::before, .board_title::after {
        content: "";
        display: inline-block;
        width: 105px;
        height: 7px;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("/assets/images/content/notice_line.png");
    }

    .board_title::before {
        left: 0px;
    }

    .board_title::after {
        right: 0px;
        transform: rotate(-180deg);
    }

.board_wrap .inner_wrap {
    width: 100%;
    height: 290px;
    border: 1px solid rgb(10, 14, 19);
    background: linear-gradient(135deg, rgb(75, 134, 152) 0%, rgb(43, 74, 101) 22%, rgb(22, 36, 52) 52%, rgb(10, 15, 19) 100%);
}

    .board_wrap .inner_wrap .list {
        width: 100%;
    }

        .board_wrap .inner_wrap .list a {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

.inner_wrap .list.notice span {
    display: inline-block;
    width: 20%;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 300;
}

    .inner_wrap .list.notice span:nth-child(1) {
        width: 80%;
        overflow: hidden;
        font-size: 1.4rem;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-align: left;
    }

.nt_wrap {
    width: 500px;
    padding: 0;
}

    .nt_wrap .inner_wrap {
        overflow: auto;
        padding: 16px 8px;
    }

.nt_wrap .inner_wrap .list li {
    padding: 8px 15px 8px 10px;
}

.nt_wrap .inner_wrap .list li a:before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 2px;
    border-radius: 100%;
    background-color: #fff;
    vertical-align: top;
    margin: 1px 8px 0 0;
}

.dw_wrap {
    width: calc(100% - 500px);
    height: 290px;
    padding: 0;
}

.dw_wrap .inner_wrap {
    display: flex;
    flex-direction: row;
    gap: 6px;
    width: 100%;
    padding: 6px;
}

.dw_wrap .inner_wrap .list {
    width: 50%;
}

.inner_wrap .list .sticker {
    display: inline-block;
    width: 38px;
    height: 20px;
    line-height: 18px;
    border-radius: 4px;
}

.inner_wrap .list.withdraw .sticker {
    background: #D9B800;
    border: 1px solid #D9B800;
}

.inner_wrap .list.deposit .sticker {
    background: #284D7A;
    border: 1px solid #0D233E;
}

.dw_wrap .inner_wrap .list li {
    padding: 10px 10px 9px;
}

.dw_wrap .inner_wrap .list li:nth-child(odd) {
    background-color: rgba(146, 252, 255, 0.125);
}

.dw_wrap .inner_wrap .list span {
    display: inline-block;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 300;
}

.dw_wrap .inner_wrap .list span:nth-child(1) {
    width: 12%;
    font-size: 1.2rem;
}

.dw_wrap .inner_wrap .list span:nth-child(2) {
    width: calc(28% - 10px);
    text-align: left;
    padding-left: 10px;
}

.dw_wrap .inner_wrap .list span:nth-child(3) {
    width: calc(30% - 10px);
    padding-left: 10px;
}

.dw_wrap .inner_wrap .list span:nth-child(4) {
    width: calc(30% - 10px);
    padding-left: 10px;
}

.btn_cs {
    position: relative;
    width: 100%;
    margin: 65px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px
}

.btn_cs::before,
.btn_cs::after {
    content: '';
    position: absolute;
    left: 0;
    display: inline-block;
    width: 56px;
    height: 56px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/assets/images/content/icon_sns_left.png)
}

.btn_cs::after {
    right: 0;
    left: inherit
}

.btn_cs a {
    display: inline-block;
    width: 360px;
    height: 90px
}

.btn_cs a img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: scale-down;
}

.cs_divide {
    display: inline-block;
    width: 56px;
    height: 56px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/assets/images/content/icon_sns_center.png)
}

@media screen and (max-width:1190px) {
    .cont_bottom_inner {
        max-width: 100%
    }
    .board_wrap {
        padding: 0 30px
    }
    .nt_wrap {
        padding: 0;
        width: 40%
    }
    .dw_wrap {
        margin-left: 2%;
        width: 58%
    }
    .dw_wrap .inner_wrap .list span {
        font-size: 1.2rem
    }
    .board_title {
        height: 15px
    }
    .cs_divide {
        display: none
    }
    .btn_cs {
        padding: 0 30px
    }
    .btn_cs::before,
    .btn_cs::after {
        display: none
    }
    .btn_cs a {
        width: 32%;
        height: fit-content;
    }
}

@media screen and (max-width:767px) {
    .board_wrap {
        flex-direction: column;
        padding: 0 10px;
    }
    .board_wrap .inner_wrap {
        height: auto;
        padding: 0;
    }
    .cont_bottom {
        padding: 50px 0;
    }
    .dw_wrap,
    .nt_wrap {
        width: 100%;
    }
    .nt_wrap {
        padding: 0;
    }
    .dw_wrap {
        margin-top: 40px;
        margin-left: 0;
    }
    .board_title::before,
    .board_title:after {
        width: 80px;
        height: 5px;
    }
    .dw_wrap {
        height: auto;
    }
    .dw_wrap .inner_wrap {
        flex-direction: column;
    }
    .dw_wrap .inner_wrap .list {
        width: 100%;
    }
    .btn_cs {
        padding: 0 10px;
        margin-top: 25px;
        flex-direction: column;
        align-items: center;
    }
    .btn_cs a {
        width: 100%;
        height: auto;
        text-align: center;
    }
}

/* footer */

.footer {
    width: 100%;
    background: #040506
}

.footer_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1310px;
    margin: 0 auto;
    padding: 50px 0;
}

.copyright {
    height: 60px;
    line-height: 60px;
    background: #0b0d11;
}

.copyright .info {
    display: block;
    max-width: 1310px;
    height: 100%;
    margin: 0 auto;
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
}

.copyright .info em {
    display: inline-block;
    color: #757575;
    margin-left: 10px
}

.copyright .info em::before {
    content: '';
    display: inline-block;
    margin-right: 10px;
    margin-top: -1px;
    width: 1px;
    height: 12px;
    background-color: #757575;
    vertical-align: middle
}

@media screen and (max-width:1310px) {
    .footer_inner {
        max-width: 100%
    }
    .footer_inner>div {
        padding: 0 20px
    }
    .footer_inner img {
        width: 100%
    }
}

@media screen and (max-width:1190px) {
    .footer_inner {
        max-width: 100%;
        padding: 30px
    }
    .footer_inner>div {
        padding: 0 20px
    }
    .footer_inner img {
        width: 100%
    }
}

@media screen and (max-width:767px) {
    .footer_inner {
        max-width: 100%;
        flex-direction: column;
        padding: 30px
    }
    .footer_inner>div {
        width: 100%;
        text-align: center
    }
    .footer_inner>div+div {
        margin-top: 20px
    }
    .footer_inner img {
        width: 100%
    }
    .footer_inner div:nth-child(2) img {
        width: 30%
    }
    .copyright {
        height: 40px;
        line-height: 40px
    }
    .copyright .info {
        font-size: 1.2rem
    }
}

/* popup */

.bg_mask {
    z-index: 8000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.popup_box {
    display: none;
    position: absolute;
    width: 350px;
    border: 5px solid rgba(178, 112, 44, 0.75);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    background: url(/assets/images/content/bg_all.png) no-repeat;
    background-size: cover;
    background-position: top right;
}

.popup_box.view {
    z-index: 9998;
    display: block;
}

.popup_multi {
    display: none;
    overflow: hidden;
    position: absolute;
    background: radial-gradient(100% 100% at 50% 0, #2667c0 0, #031f46 100%), linear-gradient(90deg, #bf9b30, #ffecb1 50.93%, #bf9b30);
    width: 280px;
    border-radius: 13px;
    border: 0;
}

.popup_multi.view {
    z-index: 9998;
    display: block;
}

.layer_content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
    height: 100%;
}

.layer_head {
    text-align: center;
    padding: 20px 0;
    margin: unset;
}

.layer_head p {
    display: block;
    font-family: var(--etype-ff-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0;
}

.layer_foot {
    padding: 20px 0;
}

.layer_foot .text_link {
    text-align: center;
    font-size: 1.3rem;
}

.layer_foot .text_link button {
    display: inline-block;
    font-size: 1.4rem;
    margin-left: 10px;
}

.layer_foot .text_link span {
    color: #757575;
}

.layer_foot .text_link>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.layer_foot .text_link>div+div {
    margin-top: 8px;
}

.popup_box .close {
    z-index: 9999;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: unset;
    width: 40px;
    height: 40px;
    color: #c9934c;
    opacity: 1;
    font-size: 2.15rem;
    background: none;
    border-radius: 0;
    transition: all 0.35s ease-in-out;
}

.popup_box .close:hover {
    background: none;
    border: 0;
    color: #FFF;
    transform: scale(1.2);
    transform-origin: center;
}

.popup_box .close i {
    line-height: 0;
}

/* popup : LOGIN */

.joinLayer .layer_content,
.loginLayer .layer_content {
    padding: 30px;
}

/* popup :all_popup */

.popup_box.all_popup {
    max-width: 750px;
    height: 100%;
    width: 100%;
    margin: 0 auto;
}

/* game_list */

.game_list {
    width: 100%;
    padding: 10px 0 0;
}

.game_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.game_list ul li {
    overflow: hidden;
    position: relative;
    width: 314px;
    height: 340px;
    cursor: pointer;
}

    .game_list ul li:after {
        pointer-events: none;
        content: '';
        position: absolute;
        z-index: 11;
        display: block;
        left: 0;
        top: 0;
        /* background:url(/assets/images/content/list_thumb_bg.png) center top no-repeat; */
        background: url(/assets/images/content/list_thumb_bg_title.png) center top no-repeat;
        background-size: 100% 100%;
        width: 100%;
        height: 100%;
    }

.game_list ul li a {
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
    padding: 1.125vw;
}

.game_list ul li a>div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 35px 20px;
}

.game_list ul li img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game_list li .game_img {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    min-height: calc(100% - 28px);
    /* max-height: 256px; min-height: 152px; */
}

.game_list li .game_img video {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 100%;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
}

.game_list li .games_name {
    position: absolute;
    z-index: 12;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: auto;
    padding: 16px 0 30px;
    background: transparent;
    text-align: center;
    font-size: 1.725rem;
    line-height: 1;
    font-family: var(--etype-ff-heading);
    letter-spacing: 0.025rem;
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.75);
}

.game_list li:hover .games_name {
    background: linear-gradient(0deg, rgba(15, 24, 24, 0.9) 50%, rgba(15, 24, 24, 0) 100%);
}

    .game_list li .hover_bg {
        pointer-events: none;
        position: absolute;
        z-index: 9;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity .3s
    }

.game_list li:hover .hover_bg {
    
    opacity: 1;
}

.game_list li .hover_bg .btn {
    position: relative;
    background: linear-gradient(180deg, #fff66d, #ffa51a);
    overflow: hidden;
    font-weight: 600;
    font-size: 1.65rem;
    color: #622d11;
    padding: 16px;
    min-width: initial;
    text-align: center;
    opacity: 1;
    transition: all .3s;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center
}

.game_list li .hover_bg .btn em {
    font-weight: 600;
    font-size: 1.4rem;
    display: inline-block;
    margin-left: 10px;
    font-family: var(--etype-ff-heading);
}

.game_list li .hover_bg .btn:hover {
    text-decoration: none;
    color: #fafafa;
    text-shadow: -2px 2px 4px #00000080;
    background: linear-gradient(180deg, #fff66d, #ffa51a);
    transition: all .3s
}

.game_list li .hover_bg .btn:hover i.play img {
    filter: drop-shadow(-4px 0 4px #00000080)
}

.game_list li .hover_bg .btn i.play {
    width: 36px;
    height: auto
}

.game_list li .hover_bg .btn i.play img {
    position: relative;
    top: initial;
    left: initial
}

@media screen and (max-width:1310px) {
    .game_list {
        padding: 10px 0;
    }
    .game_list ul li {
        width: 280px;
        height: 250px;
    }
    .game_list li .games_name {
        padding: 14px 0 20px;
    }
}

@media screen and (max-width:1190px) {
    .game_list {
        padding: 10px 0 0;
    }
    .game_list ul li {
        width: calc(100% / 3 - 12px);
        height: 268px;
    }
    .game_list li .games_name {
        padding: 18px 0 20px;
    }
}

@media screen and (max-width:916px) {
    .game_list ul li {
        height: 225px
    }
    .game_list li .games_name {
        font-size: 1.425rem;
        padding: 14px 0 13px;
        height: fit-content;
    }
}

@media screen and (max-width:767px) {
    .game_list {
        padding: 10px 10px 0;
    }
    .game_list ul {
        gap: 12px;
    }
    .game_list ul li {
        height: 200px;
    }
}

@media screen and (max-width:576px) {
    .game_list ul li {
        height: 168px
    }
    .game_list li .games_name {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:430px) {
    .game_list ul li {
        width: calc(100% / 2 - 6px);
        height: 180px;
    }
}

/*
@media screen and (max-width:390px)	{
	.game_list ul li	{ height: 128px;}
}
@media screen and (max-width:375px)	{
	.game_list ul li	{ height: 120px;}
}
*/

/* common button */

.button_area {
    width: 100%;
    margin-top: 40px
}

.button_area .btn {
    display: block;
    width: 100%;
    height: 40px;
    border-radius: 4px;
    background: #969696;
    color: #fff;
    font-size: 1.4rem;
    line-height: 40px;
    text-align: center;
    font-weight: 500;
    font-family: var(--etype-ff-heading);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2)
}

.button_area .btn:hover {
    filter: brightness(1.2)
}

.button_area .btn.active {
    background: #D09340
}

.button_area .btn+.btn {
    margin-top: 10px
}

.button_area.button_2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.button_area.button_2 .btn {
    width: 50%
}

.button_area.button_2 .btn+.btn {
    margin-top: 0
}

/* common form */

.input input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-size: 1.6rem
}

.input input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-size: 1.6rem
}

.input input::placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-size: 1.6rem
}

.inpClear {
    z-index: 10;
    position: absolute;
    right: 15px;
    top: 13px;
    width: 20px;
    height: 20px;
    text-align: center;
    vertical-align: top
}

.inpClear i {
    font-size: 1.4rem;
    font-weight: 600;
    color: #EE3E73
}

.form+.form {
    margin-top: 15px
}

.form_text+.form_text {
    margin-top: 15px
}

.form {
    position: relative
}

.form .form_title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 4px;
    font-weight: 400
}

.form .form_title h3 {
    font-weight: 400
}

.asc {
    color: #EE3E73;
    display: block;
    text-align: left;
    margin: 5px 0 0 2px;
    font-size: 1.2rem;
    font-weight: 400
}

.desc {
    display: block;
    color: #000;
    font-size: 1.6rem;
    margin: 9px 0 0 0;
    text-align: right
}

.form_noti {
    color: #000;
    font-size: 1.6rem;
    line-height: 23px;
    text-align: right;
    margin-bottom: 50px
}

.form .form_text {
    position: relative
}

.form .input {
    overflow: hidden;
    position: relative;
    display: block;
    padding: 0;
    width: 100%;
    height: 38px;
    font-size: 1.4rem;
    background-color: #fff;
    border-radius: 4px
}

.form .input input {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0 35px 0 50px;
    font-size: 1.4rem;
    background-color: transparent;
    color: #153858;
    text-align: left
}

.form .input .iconImg {
    width: 15px;
    height: 15px;
    position: absolute;
    left: 15px;
    top: 15px
}

.form .input .icon_font {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    height: 40px;
    width: 40px;
    background-color: #263252;
}

.form .input i {
    line-height: 0;
    display: inline-block;
    color: #fff;
}

input:-internal-autofill-selected {
    background-color: inherit;
}

.form.select {
    text-align: left;
    width: 100%;
}

.form.select .select_box {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 28px;
    background-color: #fff;
    border-top: 1px solid #1F2937;
    border-bottom: 1px solid #1F2937;
}

.form.select .select_box label {
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 1.4rem;
    color: #1F2937;
    line-height: 26px;
}

.form.select .select_box:after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 11px;
    margin-left: 8px;
    width: 0;
    height: 0;
    vertical-align: top;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #1F2937 transparent transparent transparent;
}

.form.select .select_box .select {
    width: 100%;
    height: 28px;
    line-height: 28px;
    color: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
    font-size: 1.4rem;
}

.form.select .select_box label.on {
    color: #1F2937 !important;
}

@media screen and (max-width:767px) {
    .button_area .btn {
        height: 35px;
        line-height: 35px;
        font-size: 1.3rem
    }
}

.popup_box.w450 {
    width: 450px
}

.popup_box.w648 {
    width: 648px
}

.popup_box.w700 {
    width: 700px
}

.menu_tab_type_02 {
    position: relative;
    width: 100%;
    z-index: 1000
}

.menu_tab_type_02 ul {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid #64533e;
}

.menu_tab_type_02 li {
    background-color: transparent;
    width: calc(100% / 2);
    height: auto;
    cursor: pointer;
    position: relative
}

.menu_tab_type_02 li button {
    background: rgba(66, 54, 40, 0.3);
    display: block;
    position: relative;
    width: 100%;
    height: 45px;
    padding: 0;
    line-height: 45px;
    font-size: 1.4rem;
    color: #c3ad94;
    text-align: center;
    transition: .3s
}

.menu_tab_type_02 li.active button {
    color: #fff;
    background: #66533c
}

.menu_tab_type_02.tab_05 li {
    width: calc(100% / 5);
}

.common_dl_form {
    width: 100%;
    padding: 0 20px
}

.common_dl_form dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.common_dl_form dt {
    width: 15%;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 6px 0
}

.common_dl_form dd {
    width: 85%;
    font-size: 1.3rem;
    padding: 6px 0
}

.common_dl_form dd span {
    display: block;
    color: #ffc16c
}

.common_dl_form dd span.msg {
    color: #757575;
    margin-top: 5px
}

.common_dl_form .btn {
    display: inline-block;
    background: #284D7A;
    border: 1px solid #0D233E;
    text-align: center;
    height: 30px;
    line-height: 28px;
    padding: 0 10px;
    border-radius: 4px
}

.layer_body {
    width: 100%;
    padding: 0 16px 16px;
    overflow: auto;
}

.common_list {
    position: relative;
    width: 100%;
    height: 100%;
}

.list_inner {
    min-height: 20vh;
    max-height: 400px;
}

.common_list ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.common_list li {
    padding: 6px;
    font-size: 1.3rem;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.4); */
}

.common_list li:not(.w-full) {
    width: 33.3%;
}

.common_list li a {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-word
}

.common_list .thead {
    margin-bottom: 10px
}

.common_list .thead li {
    text-align: center;
    background: rgba(200, 180, 140, 0.1);
    color: #fff
}

.common_list .tlist li:first-child,
.common_list .thead li:first-child {
    max-width: 100px;
}

.common_list .tlist li:not(.answer) {
    text-align: center;
}

.common_list.notice li:nth-child(1) {
    width: 10%
}

.common_list.notice li:nth-child(2) {
    width: 70%
}

.common_list.notice li:nth-child(3) {
    width: 20%
}

.common_list .tlist li:nth-child(2) {
    text-align: left
}

.common_list.coupon li:nth-child(1) {
    width: 70%
}

.common_list.coupon li:nth-child(2) {
    width: 30%;
    text-align: center
}

.common_list.list_5 li:nth-child(1) {
    width: 10%
}

.common_list.list_5 li:nth-child(2) {
    width: 30%;
    text-align: center
}

.common_list.list_5 li:nth-child(3) {
    width: 20%
}

.common_list.list_5 li:nth-child(4) {
    width: 20%
}

.common_list.list_5 li:nth-child(5) {
    width: 20%
}

.common_list.list_3 li:nth-child(1) {
    width: 20%;
    text-align: center
}

.common_list.list_3 li:nth-child(2) {
    width: 42%;
    text-align: center
}

.common_list.list_3 li:nth-child(3) {
    width: 42%;
    text-align: center
}

.common_list .tlist.contNone li {
    width: 100%;
    padding: 15px 0 25px;
    text-align: center;
    font-size: 1.4rem
}

ul.tlist.answer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    border: 3px double rgba(200, 145, 75, 0.25);
    background: rgba(200, 145, 75, 0.1);
}

ul.tlist.answer li {
    border: unset;
}
ul.tlist.qna_answer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    border: 3px double rgba(200, 145, 75, 0.25);
    background: rgba(200, 145, 75, 0.1);
}

    ul.tlist.qna_answer li {
        border: unset;
    }

.btn_money {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0 0
}

.btn_money input {
    padding: 0 15px;
    height: 32px;
    display: inline-block;
    line-height: 32px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    border: 1px solid #f3d067;
    border-radius: 4px;
    background: linear-gradient(to bottom, #705ab5 5%, #4e3b8b 100%);
    border: 1px solid #29148b
}

.btn_money input:hover {
    filter: brightness(1.2)
}

.btn_money input.active {
    filter: brightness(1.2)
}

.btn_money .inp_reset {
    display: inline-block;
    padding: 0 15px;
    height: 32px;
    line-height: 32px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to bottom, #f24537 5%, #c62d1f 100%);
    border: 1px solid #d02718;
    border-radius: 4px
}
.btn_money .inp_total {
    display: inline-block;
    padding: 0 15px;
    height: 32px;
    line-height: 32px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to bottom, #3a37f2 5%, #3a37f2 100%);
    border: 1px solid #2a18d0;
    border-radius: 4px
}

.input_area {
    height: 32px;
    line-height: 32px;
    border-radius: 4px
}

.input_area input {
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 0 15px
}

.layer_input {
    height: 32px;
    line-height: 32px;
    border-radius: 4px
}

.layer_input input {
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 0 15px
}

.border_bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    margin-bottom: 4px;
    padding-bottom: 10px !important
}

@media screen and (max-width:767px) {
    .popup_box {
        width: 95%
    }
    .popup_box.w450 {
        width: 95%
    }
    .popup_box.w648 {
        width: 95%
    }
    .popup_box.w700 {
        width: 95%
    }
    .layer_head p {
        font-size: 1.6rem
    }
    .menu_tab_type_02 li button {
        height: 40px;
        line-height: 40px
    }
    .btn_money input {
        padding: 0 8px;
        margin-bottom: 5px;
        font-size: 1.2rem
    }
    .common_dl_form dt {
        width: 30%
    }
    .common_dl_form dd {
        width: 70%
    }
    .menu_tab_type_02 li button {
        font-size: 1.2rem
    }
    .common_list.notice li:nth-child(2) {
        width: 60%
    }
    .common_list.notice li:nth-child(3) {
        width: 30%
    }
    .common_list.list_5 li:nth-child(1) {
        width: 20%
    }
    .common_list.list_5 li:nth-child(2) {
        width: 20%;
        text-align: center
    }
    .common_list.list_5 li:nth-child(3) {
        width: 20%
    }
    .common_list.list_5 li:nth-child(4) {
        width: 20%
    }
    .common_list.list_5 li:nth-child(5) {
        width: 20%
    }
    .common_list .tlist.contNone li {
        width: 100%;
        font-size: 1.3rem
    }
}

/* add 20250101 Slot detail */

::-webkit-scrollbar {
    width: 6px;
    height: 0;
    border: 0;
}

.SlotDetail {
    width: 1200px;
    height: 80%;
    min-height: unset;
}

.game-view {
    float: left;
    width: calc(100% / 4 - 12px);
    padding: 6px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
}

.game-view img {
    width: 100%;
    max-height: 157px;
    border-radius: 10px;
}

.modal-dialog {
    height: 100%;
}

.modal-content {
    height: 100%;
    overflow: scroll;
    padding: 0;
    margin: 0;
}

.pop-header {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-size: 2.4rem;
    background: #4b2700;
}

.slotnav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    height: 100%;
    padding: 16px;
    /* background: rgba(255, 255, 255, 0.2); */
}

.nm_sgame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 !important;
    padding: 8px 0 2px;
    font-size: 1.6rem;
    font-weight: 600;
    word-break: keep-all;
    color: #482706;
}

@media screen and (max-width: 1260px) {
    .popup_box {
        width: 94%;
    }
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 986px) {
    .nm_sgame {
        font-size: 1.4rem;
    }
    .game-view {
        width: calc(100% / 3 - 12px);
    }
}

@media screen and (max-width: 730px) {}

@media screen and (max-width: 500px) {
    .nm_sgame {
        font-size: 13px;
    }
    .game-view {
        width: calc(100% / 2 - 8px);
    }
}

/* add 20250108 */

.cashpoint {
    float: right;
    margin-left: 13px;
    display: flex;
    gap: 10px;
}

.cashpoint strong {
    font-family: var(--etype-ff-body) !important;
}

@media screen and (max-width: 1190px) {
    .cashpoint {
        float: unset;
        margin-left: 0;
        display: flex;
        gap: 0px;
    }
}

@media screen and (max-width: 767px) {
    .cashpoint {
        float: right;
        display: flex;
        gap: 0px;
    }
    .head_top {
        padding-top: 15px !important;
    }
}

/* add 20250108 */

.SlotDetail .layer_body {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.SlotDetail .list_inner {
    overflow-y: unset;
    min-height: 60vh;
    max-height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.SlotDetail .common_list li:not(.w-full) {
    width: 23%;
}

@media screen and (max-width: 1114px) {
    .SlotDetail .common_list li:not(.w-full) {
        width: 22%;
    }
}

@media screen and (max-width: 767px) {
    .SlotDetail .common_list li:not(.w-full) {
        width: 21%;
    }
}

@media screen and (max-width: 591px) {
    .SlotDetail .common_list li:not(.w-full) {
        width: 27%;
    }
}