<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* --------------------------------------------------
 Base
-------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');

body, ol, ul, dl, li, dt, dd, table, th, td, input, textarea, select, h1, h2, h3, h4, h5, h6 {
    color: #472c59;
    font-family: 'Noto Sans Thai', sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #472c59;
}

html::-webkit-scrollbar {
    background-color: #fff;
    width: 6px;
}

html::-webkit-scrollbar-thumb {
    background: #472c59;
    border-radius: 6px;
}

body {
    background: #000;
    min-width: 320px;
    line-height: 2;
    font-size: 100%;
    position: relative;
    overflow-x: hidden;
    animation: pageLoad 2s;
}

body::before {
    content: "";
    background: url(../img/common/bg.jpg) no-repeat center center;
    background-size: cover;
    width: 100vw;
    height: calc(100vh + 100px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
}

@media screen and (max-width: 767px) {
    body {
        font-size: 90%;
        line-height: 1.8;
    }
    body::before {
        background-image: url(../img/common/bg_sp.jpg);
    }
}

@keyframes pageLoad {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

h1, h2, h3, h4, h5, h6 {
    line-height: 2;
}

dt, dd {
    line-height: 2;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

input,
textarea {
    padding: 5px 8px;
}

select {
    font-family: 'Prompt', sans-serif!important;
    padding: 5px 8px;
}

ul {
    list-style: none;
}

ol {
    margin: 0px 0px 0px 21px;
}

ol&gt;li {
    list-style: decimal outside;
    margin: 0px 0px 3%;
}

a {
    color: #fff;
    text-decoration: underline;
    outline: 0;
}

a:hover, a:active {
    color: #fff;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    a[href^="tel"] {
        pointer-events: none;
    }
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

h1, h2 {
    font-size:1.2rem;
}

h3, h4 {
    font-size:1.1rem;
}

/* --------------------------------------------------
 drwNavBtn
-------------------------------------------------- */

#drw-nav-trigger {
    display: none;
}

.drw-nav-btn {
    position: fixed;
    top: 4px;
    right: 0;
    width: 32px;
    height: 57px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: center;
    cursor: pointer;
    z-index: 1050;
    transition: all 0.4s ease-in-out;
}

.drw-nav-btn-bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 21px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.8s ease;
    transform-origin: left top;
}

.drw-nav-btn-bar.top {
    top: 19px;
    left: 2px;
    animation: bar-tb-stretch 2.4s infinite ease;
}

.drw-nav-btn-bar.middle {
    top: 27px;
    left: 2px;
    opacity: 1;
    animation: bar-m-stretch 2.4s infinite ease;
}

.drw-nav-btn-bar.bottom {
    top: 35px;
    left: 2px;
    transform-origin: left bottom;
    animation: bar-tb-stretch 2.4s infinite ease;
}

@keyframes bar-m-stretch {
    0% {
        width: 21px;
        left: 2px;
    }
    18% {
        width: 17px;
        left: 3px;
    }
    36%, 100% {
        width: 21px;
        left: 2px;
    }
}

@keyframes bar-tb-stretch {
    0% {
        width: 21px;
        left: 2px;
    }
    18% {
        width: 25px;
        left: 0;
    }
    36%, 100% {
        width: 21px;
        left: 2px;
    }
}

.drw-nav-close {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    transition: all 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

#drw-nav-trigger:checked~.drw-nav-close {
    transition: all 0.4s ease-in-out;
    visibility: visible;
    opacity: 1;
    z-index: 993;
}

#drw-nav {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    width: 220px;
    height: 100%;
    transition: all 0.4s ease-in-out;
    display: flex;
    opacity: 1;
    overflow: hidden;
    transform-origin: left center;
    transform: translateX(220px);
    z-index: 993;
}

#drw-nav-trigger:checked~#drw-nav {
    transform: translateX(0);
    z-index: 999;
}

.drw-nav-inner {
    background: #111;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-sizing: border-box;
    width: 100%;
    min-width: 220px;
    height: 100%;
    padding-top: 75px;
    padding-bottom: 60px;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #000 rgba(255,255,255,0);
}

.drw-nav-inner::-webkit-scrollbar {
    background-color: #111;
    width: 6px;
}

.drw-nav-inner::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 6px;
}

#drw-nav .search-box {
    margin: 10px;
    position: relative;
}

#drw-nav .search-box .input-g {
    display: flex;
    align-items: center;
}

#drw-nav .search-box .input-g &gt; i {
    color: #fff;
    width: 24px;
    position: absolute;
    left: 7px;
}

#drw-nav .search-box .input-g &gt; input {
    background-color: rgb(19, 19, 30);
    color: #fff;
    width: 100%;
    border: 0.2vw solid rgb(38, 41, 58);
    border-radius: 10px;
    padding-left: 32px;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

#drw-nav .search-box .input-g &gt; input:focus {
    border-color: rgb(48, 51, 71);
}

#drw-nav .g-nav &gt; ul {
    position: relative;
}

#drw-nav .g-nav &gt; ul:last-child {
    margin-bottom: 20px;
}

#drw-nav .g-nav &gt; ul &gt; li &gt; a {
    background: linear-gradient(to bottom,#202020 0,#141414 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    padding: 2px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

#drw-nav .g-nav &gt; ul &gt; li &gt; a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 6px;
    height: 55%;
    background: #ffff00;
    border-radius: 0 20px 20px 0;
}

#drw-nav .g-nav &gt; ul &gt; li.active &gt; a ,
#drw-nav .g-nav &gt; ul &gt; li &gt; a.active {
    filter: brightness(1.4);
}

#drw-nav .g-nav &gt; ul &gt; li &gt; a:hover {
    filter: brightness(1.4);
}

#drw-nav .g-nav .icn {
    width: 38px;
    margin: 7px 10px;
    margin-right: 12px;
    box-sizing: border-box;
}

#drw-nav .line{
    width: 100%;
    max-width: 150px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
    #drw-nav {
        transform: translateX(220px);
    }
    #drw-nav-trigger:checked~#drw-nav {
        transform: translateX(0);
    }
}

/* --------------------------------------------------
 Wrapper
-------------------------------------------------- */

#wrapper {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

/* --------------------------------------------------
 Header
-------------------------------------------------- */

#header {
    width: 100%;
    min-width: 320px;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
    z-index: 1040;
}

#header .top-bar {
    background: linear-gradient(180deg,#f1d5fd,#e6acff);
    height: 65px;
    display: flex;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 2px 20px rgba(0,0,0,.12), 0 1px 2px hsla(0,7.3%,92%,.24);
}

#header .top-bar .left-blc,
#header .top-bar .middle-blc,
#header .top-bar .right-blc {
    padding: 7px 5px;
    position: relative;
}

#header .top-bar .left-blc {
    width: calc(100% - 170px);
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    order: 1;
}

#header .top-bar .right-blc {
    width: 200px;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

#header .top-bar .user-dropdown {
    text-decoration: none;
    display: flex;
    align-items: center;
}

#header .top-bar .dropdown-menu {
    background: #222;
    border-radius: 3px;
    padding: 0;
    box-shadow: 2px 2px 18px 0px rgba(0,0,0,0.47);
    overflow: hidden;
    top: 14px!important;
}

#header .top-bar .dropdown-menu .inner {
    background: #111;
    min-width: 230px;
}

#header .top-bar .dropdown-menu .ttl {
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #222;
    padding: 0 10px;
}

#header .top-bar .dropdown-menu .message {
    color: #fff;
    line-height: 1.4;
    border-bottom: 1px solid #222;
    padding: 7px 10px;
    display: flex;
}

#header .top-bar .dropdown-menu .message .icn {
    width: 24px;
    margin-right: 5px;
}

#header .top-bar .dropdown-menu .message .txt {
    flex: 1;
}

#header .top-bar .dropdown-menu .message .time {
    font-size: 85%;
    margin-left: 5px;
}

#header .top-bar .dropdown-menu .link {
    border-bottom: 1px solid #222;
}

#header .top-bar .dropdown-menu .link:last-child {
    border-bottom: none;
}

#header .top-bar .dropdown-item {
    color: #fff;
    font-size: 12px;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

#header .top-bar .dropdown-item:hover {
    background-color: #333;
}

#header .top-bar .dropdown-item.focus,
#header .top-bar .dropdown-item:focus {
    background-color: #333;
}

#header .top-bar .dropdown-item.active,
#header .top-bar .dropdown-item:active {
    background-color: #333;
}

#header .top-bar .dropdown-item &gt; i {
    margin-right: 10px;
}

#header .top-bar .user {
    width: 32px;
    margin-right: 5px;
}

#header .top-bar .coin {
    background-color: rgba(0, 0, 0, 0.9);
    max-width: 110px;
    line-height: 1;
    border-radius: 999px;
    padding: 4px 7px;
    margin-bottom: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .top-bar .coin:last-child {
    margin-bottom: 0;
}

#header .top-bar .coin .icn {
    width: 16px;
    margin-right: 5px;
}

#header .top-bar .coin .amount {
    font-size: 12px;
    text-align: right;
    width: calc(100% - 21px);
    white-space: nowrap;
}

#header .top-bar .logo {
    max-width: 130px;
    margin-right: auto;
}

#header .top-bar .jackpot {
    line-height: 1;
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    text-shadow: 1px 1px 0px #5c0010;
}

#header .top-bar .jackpot .amount {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

#header .top-bar .jackpot .unit {
    color: #fff;
    font-size: 10px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

#header .top-bar .btn-list {
    padding-right: 40px;
    display: flex;
    justify-content: flex-end;
}

#header .top-bar .btn-list li {
    margin-right: 5px;
}

#header .top-bar .btn-list li:last-child {
    margin-right: 0;
}

#header .top-bar .btn-list li a {
    text-decoration: none;
    display: block;
}

#header .top-bar .btn-list li .icn {
    min-height: 48px;
    display: flex;
    align-items: center;
}

#header .top-bar .btn-list li .icn img {
    flex: 0 0 auto;
}

#header .top-bar .btn-list li .txt {
    font-size: 10px;
    text-align: center;
    line-height: 0.9;
    margin-top: -4px;
    text-shadow: 2px 2px 2px #000, 2px 2px 2px #000, 2px 2px 2px #000;
}

#header .top-bar .btn-deposit {
    background: #fff;
    background-origin: border-box;
    background-clip: content-box,border-box;
    width: calc(50% - 10px);
    max-width: 180px;
    max-height: 50px;
    border: 2px solid #009cff;
    border-radius: 999px;
    padding: 0;
    margin: 0 5px;
    display: flex;
    align-items: center;
}

#header .top-bar .btn-deposit .elem {
    width: 100%;
    text-decoration: none;
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

#header .top-bar .btn-deposit .elem .icn {
    width: 24px;
    text-decoration: none;
    margin-right: 5px;
    display: block;
}

#header .top-bar .btn-deposit .elem .txt {
    color: #2c4c59;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    flex: 1;
}

#header .top-bar .btn-withdraw {
    background: radial-gradient(100% 100% at 50% 0,#6bc6ff 0,#3bb4ff 44%,#009cff 100%);
    background-origin: border-box;
    background-clip: content-box,border-box;
    width: calc(50% - 10px);
    max-width: 180px;
    max-height: 50px;
    border: 2px solid #009cff;
    border-radius: 999px;
    padding: 0;
    margin: 0 5px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#header .top-bar .btn-withdraw .elem {
    width: 100%;
    text-decoration: none;
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

#header .top-bar .btn-withdraw .elem .icn {
    width: 24px;
    text-decoration: none;
    margin-right: 5px;
    display: block;
}

#header .top-bar .btn-withdraw .elem .txt {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    flex: 1;
}

@-webkit-keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    80% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(30deg);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    80% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(30deg);
    }
}

@media screen and (max-width: 575px) {
    #header .top-bar .left-blc {
        width: calc(100% - 36vw);
    }
    #header .top-bar .right-blc {
        width: 36vw;
    }
    #header .top-bar .btn-deposit .elem .txt,
    #header .top-bar .btn-withdraw .elem .txt {
        font-size: 2.8vw;
        width: calc(100% - 8vw);
        flex: auto;
    }
}

@media screen and (max-width: 480px) {
    #header .top-bar .left-blc {
        width: calc(100% - 34vw);
    }
    #header .top-bar .right-blc {
        width: 34vw;
    }
    #header .top-bar .btn-list {
        padding-right: 28px;
    }
    #header .top-bar .btn-deposit,
    #header .top-bar .btn-withdraw {
        width: calc(50% - 4px);
        margin-left: 2px;
        margin-right: 2px;
    }
    #header .top-bar .btn-deposit .elem,
    #header .top-bar .btn-withdraw .elem {
        padding-left: 5px;
        padding-right: 5px;
    }
    #header .top-bar .btn-deposit .elem .icn,
    #header .top-bar .btn-withdraw .elem .icn {
        width: 6vw;
    }
    #header .top-bar .btn-deposit .elem .txt,
    #header .top-bar .btn-withdraw .elem .txt {
        font-size: 3.2vw;
        width: calc(100% - 6vw);
    }
}

@media screen and (max-width: 380px) {
    #header .top-bar .btn-list li .txt {
        font-size: 2.6vw;
    }
}

/* --------------------------------------------------
 btm-bar
-------------------------------------------------- */

#btm-bar {
    background: rgb(7 7 12);
    width: 100%;
    min-width: 320px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 65px;
    left: 0;
    z-index: 992;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

#btm-bar::after {
    background: linear-gradient(90deg, transparent, #fdd47bbb 50%, transparent);
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
}

#btm-bar .user-blc {
    background-image: linear-gradient(90deg,#ffb01d2d 27%,#ffda6165 68%,#fcba05a1 100%);
    width: calc(50% - 10px);
    max-width: 180px;
    height: 50px;
    border-radius: 20px 5px 20px 5px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    box-shadow: inset 0px 0px 10px 1px #ffebb3;
}

#btm-bar .user-blc .icn {
    width: 48px;
}

#btm-bar .user-blc .info {
    width: calc(100% - 48px);
    line-height: 1.2;
    padding: 5px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.6);
}

#btm-bar .user-blc .info .toper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#btm-bar .user-blc .info .toper .level {
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 11px;
    text-align: center;
    width: 40px;
    border-radius: 99px;
    padding: 2px 4px;
    margin-right: 4px;
    white-space: nowrap;
    box-shadow: inset 0px 0px 2px 0px #ffebb39f;
}

#btm-bar .user-blc .info .toper .txt {
    font-size: 11px;
    width: calc(100% - 40px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#btm-bar .user-blc .info .btm {
    margin-top: 2px;
}

#btm-bar .user-blc .info .btm .amount {
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 12px;
    text-align: center;
    border-radius: 99px;
    padding: 2px 4px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    box-shadow: inset 0px 0px 2px 0px #ffebb39f;
}

/* --------------------------------------------------
 Contents
-------------------------------------------------- */

#contents {
    min-height: calc(100vh - 100px);
    padding-top: 65px;
    position: relative;
    transition: all .4s;
}

/* --------------------------------------------------
 Footer
-------------------------------------------------- */

#footer {
    background: #fbe5ff;
    width: 100%;
    padding: 7px 0 75px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 98;
}

#footer .part-txt-link {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

#footer .word-blc {
    color: #666;
    font-size: 85%;
    width: 32%;
    margin-right: 4%;
    box-sizing: border-box;
}

#footer .f-nav {
    font-size: 85%;
    line-height: 1.4;
    width: 64%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

#footer .f-nav a {
    color: #725e77;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

#footer .f-nav a:hover {
    opacity: 0.6;
}

#footer .f-nav .subj {
    color: #472c59;
    font-weight: 600;
    margin-bottom: 6px;
}

#footer .f-nav .main-list {
    display: flex;
    flex-wrap: wrap;
}

#footer .f-nav .main-list.group-1 {
    width: 74%;
    margin-right: 2%;
}

#footer .f-nav .main-list.group-1 &gt; li {
    width: 32%;
    margin: 0 2% 4% 0;
}

#footer .f-nav .main-list.group-1 &gt; li:nth-of-type(3n+3) {
    margin-right: 0;
}

#footer .f-nav .main-list.group-2 {
    width: 24%;
}

#footer .f-nav .main-list.group-2 &gt; li {
    width: 100%;
    margin: 0 0 4% 0;
}

#footer .f-nav .sub-list &gt; li {
    margin-bottom: 6px;
}

#footer .providers {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

#footer .providers &gt; ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#footer .providers &gt; ul &gt; li {
    -webkit-filter: invert(80%);
    filter: invert(80%);
    margin: 0 10px 10px;
    cursor: pointer;
}

#footer .providers &gt; ul &gt; li:hover {
    filter: invert(0%) drop-shadow(2px 2px 1px #212121);
}

#footer .copyright {
    color: #705085;
    font-size: 90%;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    box-sizing: border-box;
}

#footer .copyright &gt; strong {
    font-weight: 500;
}

#footer .txt-version {
    color: #705085;
    font-size: 90%;
    text-align: right;
    box-sizing: border-box;
}

@media screen and (max-width: 875px) {
    #footer .word-blc {
        width: 100%;
        margin-right: 0;
        margin-bottom: 4%;
    }
    #footer .f-nav {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    #footer .f-nav .main-list.group-1 {
        width: 49%;
        margin-right: 2%;
    }    
    #footer .f-nav .main-list.group-1 &gt; li {
        width: 100%;
        margin-right: 0;
    }
    #footer .f-nav .main-list.group-2 {
        width: 49%;
    }
    #footer .copyright {
        width: 100%;
        text-align: center;
    }
    #footer .txt-version {
        width: 100%;
        text-align: center;
    }
}

/* --------------------------------------------------
 mobile-shortcut
-------------------------------------------------- */
.mobile-shortcut {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 998;
}

.mobile-shortcut .inner {
    display: flex;
    align-items: flex-end;
}

.mobile-shortcut .left-blc,
.mobile-shortcut .right-blc {
    display: flex;
    align-items: flex-end;
    flex: 1;
    z-index: 2;
    height: 70px;
    padding-bottom: 6px;
    background: linear-gradient(180deg, #9bc4fc, #9c00ff);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 3px solid #9bc4fc;
    transition: -webkit-filter .2s;
    transition: filter .2s;
    transition: filter .2s, -webkit-filter .2s;
}

.mobile-shortcut .left-blc {
    border-top-left-radius: 10px;
    border-top-right-radius: 22px;
    justify-content: flex-end;
}

.mobile-shortcut .right-blc {
    border-top-right-radius: 10px;
    border-top-left-radius: 22px;
}

.mobile-shortcut .item {
    width: 50%;
    max-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    position: relative;
}

.mobile-shortcut .item .txt01 {
    font-size: .75rem;
    line-height: 1.4;
    color: #fff;
    transition: color .2s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    margin: 0 auto;
    margin-top: 0.25rem;
}

.mobile-shortcut .item .img img {
    width: 34px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-bottom: 20px;
    position: relative;
}

.mobile-shortcut .center-blc {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
    width: 74px;
    height: 74px;
    margin: 0 8px 16px;
    padding: 2px;
    color: #000;
    border-radius: 50%;
    background: radial-gradient(ellipse farthest-corner at center bottom, #6a4f22 0%, #faf891 8%, #fffe97 25%, #fffe97 62.5%, #865d0e 100%), radial-gradient(ellipse farthest-corner at right bottom, #6a4f22 0%, #faf891 15%, #865d0e 30%, #fffe97 44%, #865d0e 40%, transparent 80%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: x-jello-horizontal 3s infinite both;
    box-shadow: 0 0 10px hsl(0deg 0% 100% / 40%);
}

.mobile-shortcut .c-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    transition: all .4s;
    background-size: 450px;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    background-position: 0 0;
    border-radius: 50%;
}

.mobile-shortcut .c-item .img img {
    width: 77px;
    max-width: 77px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 111111111;
    margin-top: -30px;
}

.mobile-shortcut .c-item .txt01 {
    position: absolute;
    bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    color: #472c59;
    text-shadow: 0 0 10px #000, 0 0 10px #00000000;
}

.mobile-shortcut .fake-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 50px;
    transition: -webkit-filter .2s;
    transition: filter .2s;
    transition: filter .2s, -webkit-filter .2s;
    overflow: hidden;
}

.mobile-shortcut .fake-bg svg {
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 108px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    vertical-align: middle;
}

.mobile-shortcut .fake-bg svg path {
    fill: url(#rectangleGradient);
}

@keyframes x-jello-horizontal {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    5% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1);
    }
    7.5% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1);
    }
    10% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1);
    }
    15% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    20% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    25%, 100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

/* --------------------------------------------------
 search-result
-------------------------------------------------- */

.search-result {
    background-color: rgba(0, 0, 0, 0.85);
    width: calc(100% - 20px);
    max-width: 600px;
    border-radius: 10px;
    display: none;
    position: fixed;
    right: 16px;
    z-index: 999;
    box-sizing: border-box;
}

.search-result .list-style01 {
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 10px;
    padding: 10px;
}

.search-result .list-style01 .item {
    width: 32%;
    margin: 0 2% 2% 0;
}

.search-result .list-style01 .item:nth-child(6n+6) {
    margin-right: 2%;
}

.search-result .list-style01 .item:nth-child(4n+4) {
    margin-right: 2%;
}

.search-result .list-style01 .item:nth-child(3n+3) {
    margin-right: 0;
}

.search-result .list-style01 .item .tag-list .tag {
    font-size: 7px;
}

@media screen and (max-width: 540px) {
    .search-result .list-style01 .item {
        width: 49%;
    }
    .search-result .list-style01 .item:nth-child(3n+3) {
        margin-right: 2%;
    }
    .search-result .list-style01 .item:nth-child(2n+2) {
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .search-result .list-style01 .item .tag-list .tag {
        font-size: 1.8vw;
    }
}

/* --------------------------------------------------
 Other
-------------------------------------------------- */

.mfp-bg {
    z-index: 1051;
}

.mfp-wrap {
    z-index: 1052;
}

button.mfp-close {
    display: none;
}

.white-popup-block {
    background: #fff;
    padding: 30px 45px;
    text-align: left;
    max-width: 675px;
    margin: 70px auto;
    position: relative;
}

@media screen and (max-width: 767px) {
    .white-popup-block {
        padding: 3% 4%;
    }
}

#page-top {
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 998;
    display: none;
}

#page-top a {
    background: #d89597;
    width: 50px;
    height: 50px;
    border-radius: 99px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#page-top a::after {
    font-family: "Font Awesome 5 Free";
    content: '\f106';
    color: #fff;
    font-weight: 900;
    font-size: 28px;
}

#page-top .txt {
    display: block;
}

@media screen and (max-width: 767px) {
    #page-top a {
        width: 40px;
        height: 40px;
    }
    #page-top a::after {
        font-size: 20px;
    }
}

.animation-hide {
    opacity: 0;
}

@keyframes slide-left {
    0% {
        transform: translateX(135px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}</pre></body></html>