@charset "UTF-8";

/* --------------------------------------------------
 keyvisual
-------------------------------------------------- */

#keyvisual {
    background-color: #1f160d;
}

/* --------------------------------------------------
 intro
-------------------------------------------------- */

#intro {
    padding: 10px 0 30px;
}

#intro .inner {
    background: #1f160dc9;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: rgb(255 255 255 / 18%) 0px 0px 4px 2px inset;
    padding: 10px;
    position: relative;
    transition: all 0.4s;
}

#intro .logo {
    max-width: 360px;
    text-align: center;
    margin: 30px auto;
    position: relative;
    z-index: 1;
}

#intro .txt-blc {
    border-radius: 20px;
    padding: 30px 4%;
    position: relative;
    z-index: 1;
}

#intro .txt-blc h1 {
    color: #fcde8b;
    font-size: 180%;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}

#intro .txt-blc h2 {
    color: #fff;
    font-size: 140%;
    font-weight: 700;
    line-height: 1.4;
    margin: 20px 0;
}

#intro .txt-blc h3 {
    color: #fff;
    font-size: 120%;
    font-weight: 700;
    line-height: 1.4;
    margin: 20px 0;
}

#intro .txt-blc .img {
    max-width: 60%;
    text-align: center;
    margin: 15px auto;
}

#intro .txt-blc .img.full-w {
    max-width: none;
}

#intro .media-blc {
    padding: 15px 10px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

#intro .media-blc .img {
    width: 36%;
    text-align: center;
}

#intro .media-blc .vdo {
    background: linear-gradient(144deg, #000, #000), linear-gradient( 90deg, #c29039, #E6D687, #E6D687, #c29039);
    background-origin: border-box;
    background-clip: content-box,border-box;
    border-radius: 20px;
    padding: 3px;
    flex: 1;
    box-shadow: 0 0 15px #160000;
}

#intro .media-blc .vdo * {
    border-radius: 20px;
    display: block;
}

#intro .game {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#intro .game .item {
    width: 22.75%;
    margin: 0 3% 2% 0;
    position: relative;
}

#intro .game .item:nth-child(4n+4) {
    margin-right: 0;
}

#intro .game a {
    text-decoration: none;
    position: relative;
    display: block;
    overflow: hidden;
}

#intro .game a::before {
    z-index: 2;
    position: absolute;
    top: 0;
    left: -100%;
    content: '';
    width: 50%;
    height: 100%;
    transform: skewX(-25deg);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    transition: all 0s;
    box-sizing: border-box;
}

#intro .game .item:hover a::before {
    top: 0;
    left: 100%;
    transition: all 1.2s;
}

#intro .game h3 {
    margin-top: 10px;
}

#intro .game h3 a {
    color: #fcde7b;
}

@media screen and (max-width: 767px) {
    #intro > .comm-blc {
        padding-left: 2%;
        padding-right: 2%;
    }
    #intro .logo {
        max-width: 240px;
    }
    #intro .txt-blc {
        padding-left: 2%;
        padding-right: 2%;
    }
    #intro .txt-blc h1 {
        font-size: 140%;
    }
    #intro .txt-blc h2 {
        font-size: 120%;
    }
    #intro .txt-blc h3 {
        font-size: 110%;
    }
    #intro .media-blc .img {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
    #intro .media-blc .vdo {
        width: 100%;
        flex: auto;
    }
}

@media screen and (max-width: 573px) {
    #intro .game .item {
        width: 48.5%;
    }
    #intro .game .item:nth-child(4n+4) {
        margin-right: 3%;
    }
    #intro .game .item:nth-child(2n+2) {
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    #intro .logo {
        max-width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --------------------------------------------------
 promotion
-------------------------------------------------- */

#promotion {
    padding: 50px 0;
    position: relative;
}

#promotion::before {
    content: "";
    background-color: #0000007c;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#promotion::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg, transparent, #ecbd7b 30%, #ecbd7b 70%, transparent);
}

#promotion .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#promotion .list .item {
    width: 32%;
    margin: 0 2% 2% 0;
    box-sizing: border-box;
    transition: all .4s;
}

#promotion .list .item:hover {
    transform: scale(1.05);
}

#promotion .list .item:nth-child(3n+3) {
    margin-right: 0;
}

#promotion .list .item:last-child {
    margin-right: 0;
}

#promotion .list .item img {
    background-image: linear-gradient(180deg,#251f14,#0f0e0a),linear-gradient(180deg,#a78059 -30%,#f2d7a9 22%,#715236 72%,#f1bb73 112%);
    background-origin: border-box;
    background-clip: content-box,border-box;
    border-radius: 10px;
    padding: 2px;
}

@media screen and (max-width: 767px) {
    #promotion .list .item {
        width: 49%;
    }    
    #promotion .list .item:nth-child(3n+3) {
        margin-right: 2%;
    }
    #promotion .list .item:nth-child(2n+2) {
        margin-right: 0;
    }
    #promotion .list .item:last-child {
        margin-right: 0;
    }
}

/* --------------------------------------------------
 strength
-------------------------------------------------- */

#strength {
    background: url(../img/common/bg06.jpg) no-repeat center center;
    background-size: cover;
    padding: 30px 0;
    position: relative;
}

#strength::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg, transparent, #ecbd7b 30%, #ecbd7b 70%, transparent);
}

#strength::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg, transparent, #ecbd7b 30%, #ecbd7b 70%, transparent);
}

#strength .inner {
    padding: 0 2%;
    position: relative;
    box-sizing: border-box;
}

#strength .txt-img-blc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#strength .txt-blc {
    flex: 1;
    order: 1;
}

#strength .txt-blc .subj {
    color: #fcde8b;
    font-size: 140%;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

#strength .txt-blc .txt {
    line-height: 1.2;
}

#strength .txt-blc .txt > p::before {
    color: rgb(34, 34, 34);
    content: "✔︎";
    width: 18px;
    height: 18px;;
    margin-right: 3px;
    background: rgb(255, 234, 148);
    padding: 0px 3px;
    border-radius: 11px;
    display: inline-block;
}

#strength .img-blc {
    width: 48%;
    margin-right: 4%;
    position: relative;
    z-index: 1;
}

#strength .txt-btm {
    text-align: center;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    #strength .txt-blc {
        width: 100%;
        flex: auto;
    }
    #strength .txt-blc .subj {
        font-size: 120%;
    }
    #strength .img-blc {
        margin: 0 auto;
    }
}

/* --------------------------------------------------
 faq
-------------------------------------------------- */

#faq {
    padding: 30px 0;
    position: relative;
}

#faq::before {
    content: "";
    background-color: #000000a4;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#faq::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg, transparent, #ecbd7b 30%, #ecbd7b 70%, transparent);
}

#faq .inner {
    position: relative;
    box-sizing: border-box;
}

#faq .list {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

#faq .list .item {
    background: linear-gradient(45deg, transparent 0%, #ecbd7b 50%, transparent 100%);
    background-origin: border-box;
    border-radius: 10px;
    padding: 2px;
    margin-bottom: 20px;
    box-shadow: rgb(255 255 255 / 18%) 0px 0px 4px 2px inset;
}

#faq .list .item .item-ttl {
    background-color: #361a00;
    color: #fff;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    line-height: 1.2;
    padding: 15px 15px 15px 30px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

#faq .list .item .item-ttl::before {
    content: "\f0da";
    color: #fcde8b;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 14px;
    left: 15px;
}

#faq .list .item .item-content {
    background: rgba(56, 33, 3, 0.8);
    color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    line-height: 1.6;
    padding: 15px;
}

/* --------------------------------------------------
 article-post
-------------------------------------------------- */

#review {
    background: url(../img/common/bg03.jpg) no-repeat center center;
    background-size: cover;
    padding: 30px 0;
    position: relative;
}

#review::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg, transparent, #ecbd7b 30%, #ecbd7b 70%, transparent);
}

/* --------------------------------------------------
 article-post
-------------------------------------------------- */

#article-post {
    background: url(../img/common/bg04.jpg) no-repeat center center;
    background-size: cover;
    padding: 30px 0;
    position: relative;
}

#article-post::before {
    content: "";
    background-color: #000000a8;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#article-post::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg, transparent, #ecbd7b 30%, #ecbd7b 70%, transparent);
}

#article-post .inner {
    box-sizing: border-box;
}

/* --------------------------------------------------
 manual-post
-------------------------------------------------- */

#manual-post {
    background: url(../img/common/bg02.jpg) no-repeat center center;
    background-size: cover;
    padding: 30px 0;
    position: relative;
}

#manual-post::before {
    content: "";
    background-color: #000000a8;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#manual-post::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg, transparent, #ecbd7b 30%, #ecbd7b 70%, transparent);
}

#manual-post .inner {
    box-sizing: border-box;
}

#manual-post .list-style01 .item {
    width: 23.5%;
    margin: 0 2% 2% 0;
}

#manual-post .list-style01 .item:nth-child(4n+4) {
    margin-right: 0;
}

#manual-post .list-style01 .item .img {
    padding-top: 51%;
}

@media screen and (max-width: 767px) {
    #manual-post .list-style01 .item {
        width: 49%;
    }
    #manual-post .list-style01 .item:nth-child(4n+4) {
        margin-right: 2%;
    }
    #manual-post .list-style01 .item:nth-child(2n+2) {
        margin-right: 0;
    }
}

/* --------------------------------------------------
 news-post
-------------------------------------------------- */

#news-post {
    background: url(../img/common/bg05.jpg) no-repeat center center;
    background-size: cover;
    padding: 30px 0;
    position: relative;
}

#news-post::before {
    content: "";
    background-color: #000000a8;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#news-post::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg, transparent, #ecbd7b 30%, #ecbd7b 70%, transparent);
}

#news-post .inner {
    box-sizing: border-box;
}

/* --------------------------------------------------
 about
-------------------------------------------------- */

#about {
    padding: 30px 0;
    position: relative;
}

#about::before {
    content: "";
    background-color: #1f160de3;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#about .inner {
    padding: 0 2%;
    position: relative;
    box-sizing: border-box;
}

#about .txt-img-blc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#about .txt-blc {
    background: linear-gradient(180deg, #382103 0%, #361a00 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    flex: 1;
    box-shadow: rgb(255 255 255 / 18%) 0px 0px 8px 2px inset;
}

#about .txt-blc .subj {
    color: #fcde8b;
    font-size: 170%;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

#about .txt-blc .txt {
    color: #fff;
    line-height: 1.4;
}

#about .txt-blc .img {
    text-align: center;
    margin: 20px 0;
}

#about .img-blc {
    width: 38%;
    padding-left: 2%;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    #about .txt-blc {
        width: 100%;
        text-align: center;
        padding-top: 8%;
        flex: auto;
        order: 1;
    }
    #about .txt-blc .subj {
        font-size: 130%;
    }
    #about .img-blc {
        margin: 0 auto -8%;
    }
}

/* --------------------------------------------------
 casino
-------------------------------------------------- */

#casino .item {
    margin-bottom: 5px;
    background: #333;
}

#casino .main {
    text-align: center;
    padding: 10px;
    cursor: pointer;
}

#casino .main img {
    border: #ccc solid 2px;
    margin-bottom: 5px;
}

#casino .detail .sub {
    padding: 10px;
    display: none;
}

#casino .detail .sub {
    text-align: center;
}