@charset "UTF-8";



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%;
    vertical-align: baseline
}

.home_content {
    padding: 40px 20px;
    width:100%;    
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
    position: relative;
}
.home_casino {
    background-image: url(/images/main/bg-1.png);
}
.home_slot {
    background-image: url(/images/main/bg-2.png);
}

.home_content .casinoZone {
    border-bottom: 1px solid #304059;
    padding-bottom: 17px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}


.home_content .casinoZone .title {
    color: #828282;
    font-size: 24px;
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-bottom: 50px
}

.home_content .casinoZone .title img {
    width: 30px;
    margin-right: 10px;
}

.home_content .casinoZone .title .txt {
    display: flex;
    font-family: arial;
    font-size: 24px;
    color: var(--font03);
    flex-direction: column;
    gap:1.0rem;
}

.home_content .casinoZone .title .txt h4 {
    font-size:1.0rem;
    color:#d70006;
}
.home_content .casinoZone .title .txt h2 {
    font-size: 2.5rem;
    color:#fff;
    font-weight: 500;
}
.home_content .casinoZone .title h3 {
    color: var(--main);
    margin-left: 4px
}

.home_content .casinoZone .content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: start;
    gap: 20px;
}

.home_content .home_arrow {
    position: absolute;
    top:100px;
    left:0;
    opacity: .5;
}
.home_content .home_arrow img {
    animation: upDownArrow 1.5s infinite alternate;
}

@keyframes upDownArrow {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}



