@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&display=swap');

body,
ol,
ul,
dl,
li,
dt,
dd,
table,
th,
td,
input,
textarea,
select,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    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-color: #b0b4bb;
}

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

html::-webkit-scrollbar-thumb {
    background: #b0b4bb;
    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?2) scroll no-repeat center center;
    background-size: cover;
    width: 100vw;
    height: calc(100vh + 100px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
}

/* body::after {
    content: "";
    background: linear-gradient(180deg, #00000065 0%, #00000065 100%);
    width: 100vw;
    height: calc(100vh + 100px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
} */

@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: 'Noto Sans Thai', sans-serif !important;
    padding: 5px 8px;
}

ul {
    list-style: none;
}

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

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

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

a:hover,
a:active {
    color: #FFF399;
    text-decoration: 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: 24px;
    left: 10px;
    width: 25px;
    height: 24px;
    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 {
    width: 70%;
    display: block;
    position: absolute;
    height: 3px;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.drw-nav-btn-bar.top {
    top: 0;
    -webkit-animation: x-hamburger-wave .4s ease-out infinite alternate;
    animation: x-hamburger-wave .4s ease-out infinite alternate;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.top {
    width: 100%;
    -webkit-animation: none;
    animation: none;
    background: #d9ad70;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    left: 5px;
}

.drw-nav-btn-bar.middle {
    top: 9px;
    -webkit-animation: x-hamburger-wave .4s ease-out .3s infinite alternate;
    animation: x-hamburger-wave .4s ease-out .3s infinite alternate;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.middle {
    -webkit-animation: none;
    animation: none;
    background: #d9ad70;
    width: 0;
    opacity: 0;
}

.drw-nav-btn-bar.bottom {
    top: 18px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-animation: x-hamburger-wave .4s ease-out .6s infinite alternate;
    animation: x-hamburger-wave .4s ease-out .6s infinite alternate;
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.bottom {
    width: 100%;
    -webkit-animation: none;
    animation: none;
    background: #d9ad70;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 18px;
    left: 5px;
}

@-webkit-keyframes x-hamburger-wave {
    0% {
        width: 70%
    }

    to {
        width: 100%
    }
}

@keyframes x-hamburger-wave {
    0% {
        width: 70%
    }

    to {
        width: 100%
    }
}

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

#drw-nav-trigger:checked~.drw-nav-close {
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease-in-out;
    visibility: visible;
    opacity: 1;
    z-index: 999;
}

#drw-nav {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 400px;
    height: 60%;
    margin: auto;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    visibility: hidden;
    overflow: hidden;
    z-index: 999;
}

#drw-nav-trigger:checked~#drw-nav {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.drw-nav-inner {
    box-sizing: border-box;
    width: 400px;
    padding-top: 20px;
    padding-bottom: 60px;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-color: #b0b4bb;
}

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

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

#drw-nav .logo {
    max-width: 220px;
    text-align: center;
    margin: 0 auto 0;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}

#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>i {
    color: #fff;
    width: 24px;
    position: absolute;
    left: 7px;
}

#drw-nav .search-box .input-g>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>input:focus {
    border-color: rgb(48, 51, 71);
}

#drw-nav .g-nav {
    padding: 0 20px;
    margin-top: 20px;
}

#drw-nav .g-nav>ul {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

#drw-nav .g-nav>ul>li {
    width: 33.33333%;
}

#drw-nav .g-nav>ul>li>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    transition: all .2s;
}

#drw-nav .g-nav .icn {
    width: 100%;
}

#drw-nav .g-nav .txt {
    display: inline-block;
    margin-top: .5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

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

@media screen and (max-width: 1000px) {
    .drw-nav-btn {
        display: block;
    }

    .drw-nav-close {
        display: block;
    }

    #drw-nav {
        display: flex;
    }
}

/* --------------------------------------------------
 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: 998;
}

#header .top-bar {
    background: linear-gradient(180deg, #0070FF 0%, #0F005D 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: 75px;
    display: flex;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 0 10px #00000093;
}

#header .top-bar::before {
    background: url(../img/common/linecut.gif);
    background-size: 100%;
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    content: "";
    z-index: 0;
}

#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% - 200px);
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    order: 1;
}

#header .top-bar .right-blc {
    width: 260px;
    padding-left: 45px;
    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>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: 140px;
    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: linear-gradient(90deg, #00296f 0%, #001f5f 100%), linear-gradient(180deg, #ecb831 20%, #fcfcb0 50%, #955d16 80%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    max-width: 180px;
    max-height: 50px;
    border-radius: 4px;
    padding: 2px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 5px 0 rgba(255, 202.8913043478261, 0, .92);
}

#header .top-bar .btn-deposit:hover {
    filter: brightness(1.1);
}

#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: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    flex: 1;
}

#header .top-bar .btn-withdraw {
    background: linear-gradient(180deg, #edd9a5 20%, #ffe9b0 50%, #9f8a4a 80%), linear-gradient(180deg, #edd9a5 20%, #ffe9b0 50%, #9f8a4a 80%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    max-width: 180px;
    max-height: 50px;
    border-radius: 4px;
    padding: 2px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 5px 0 rgba(255, 202.8913043478261, 0, .92);
}

#header .top-bar .btn-withdraw::after {
    content: "";
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(128, 186, 232, 0) 100%);
    width: 300%;
    height: 300%;
    position: absolute;
    top: 0;
    transform: translateX(100%) rotate(30deg);
    z-index: 1;
    -webkit-animation: shine 3s infinite ease-in;
    animation: shine 3s infinite ease-in;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

#header .top-bar .btn-withdraw:hover {
    filter: brightness(1.1);
}

#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: #000;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    flex: 1;
}

#header .top-bar .menu-icon {
    margin-right: 10px;
    align-self: flex-end;
}

#header .top-bar .menu-icon ul {
    display: flex;
}

#header .top-bar .menu-icon li {
    margin-right: 10px;
}

#header .top-bar .menu-icon li a {
    width: fit-content;
    padding: 0 15px;
    max-width: 95px;
    height: 75px;
    padding: 0 2px 2px;
    background-origin: border-box;
    background-clip: content-box, border-box;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    margin-bottom: -7px;
    font-size: 12px;
    transition: all .3s;
    color: white;
}

#header .top-bar .menu-icon li a:hover {
    background-image: radial-gradient(100% 100% at 50% 0, #29292900 0, #021236 44%, #0808087a 100%), linear-gradient(180deg, #333333, #04419c6b);
    box-shadow: 0 0 5px #ffffff, 0 0 15px #3a48c300, 0 0 20px #002a68;
}

#header .top-bar .menu-icon li a.active {
    background-image: radial-gradient(100% 100% at 50% 0, #331d01 0, #181818 44%, #0808087a 100%), linear-gradient(180deg, #333333, #152f79);
    box-shadow: 0 0 5px #ffffff, 0 0 15px #3a77c3, 0 0 20px #0063de;
}

#header .top-bar .menu-icon li .icn img {
    width: 45px;
    display: block;
    margin: 0 13px;
    transition: all .3s;
    padding: 0 !important;
    -webkit-filter: drop-shadow(0px 0px 5px rgb(0 0 0));
    filter: drop-shadow(0px 0px 5px rgb(18 18 18));
}

#header .top-bar .menu-icon li .txt01 {
    line-height: 1.1;
    margin-top: 7px;
}

@-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);
    }
}

@-webkit-keyframes shadow-drop-center {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    to {
        transform: scale(1);
    }
}

@keyframes shadow-drop-center {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    to {
        transform: scale(1);
    }
}

@media screen and (max-width: 1000px) {
    #header .top-bar .right-blc {
        padding-left: 45px;
    }

    #header .top-bar .menu-icon {
        display: none;
    }
}

@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% - 40vw);
    }

    #header .top-bar .right-blc {
        width: 40vw;
    }

    #header .top-bar .btn-list {
        padding-right: 28px;
    }

    #header .top-bar .btn-deposit,
    #header .top-bar .btn-withdraw {
        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: 75px;
    position: relative;
    transition: all .4s;
}

#contents>.stars {
    width: 1px;
    height: 1px;
    position: fixed;
    top: 0;
    z-index: 1;
    background: transparent;
    box-shadow: 1795px 1116px #fff, 230px 703px #fff, 1668px 1773px #fff, 814px 218px #fff, 179px 1862px #fff, 576px 1407px #fff, 354px 277px #fff, 748px 134px #fff, 922px 1801px #fff, 611px 442px #fff, 539px 35px #fff, 108px 1538px #fff, 1080px 1156px #fff, 697px 1125px #fff, 322px 648px #fff, 666px 562px #fff, 1192px 1112px #fff, 799px 108px #fff, 1999px 24px #fff, 516px 1906px #fff, 1510px 38px #fff, 163px 1658px #fff, 1377px 624px #fff, 1232px 280px #fff, 333px 77px #fff, 1127px 362px #fff, 448px 1078px #fff, 532px 459px #fff, 1215px 1009px #fff, 1880px 772px #fff, 478px 566px #fff, 1564px 1578px #fff, 467px 1590px #fff, 1970px 132px #fff, 285px 1224px #fff, 255px 1631px #fff, 234px 384px #fff, 1741px 1251px #fff, 1241px 1484px #fff, 456px 1965px #fff, 1105px 366px #fff, 1756px 1446px #fff, 1874px 1947px #fff, 1496px 1919px #fff, 609px 724px #fff, 703px 354px #fff, 1399px 1112px #fff, 1173px 330px #fff, 1123px 1805px #fff, 1597px 417px #fff, 453px 183px #fff, 714px 1213px #fff, 1585px 553px #fff, 541px 572px #fff, 297px 1159px #fff, 1203px 1130px #fff, 1133px 1972px #fff, 487px 1891px #fff, 1990px 1621px #fff, 703px 492px #fff, 1257px 142px #fff, 434px 738px #fff, 503px 1598px #fff, 325px 664px #fff, 1268px 206px #fff, 1458px 976px #fff, 1317px 96px #fff, 1314px 1459px #fff, 1630px 1687px #fff, 1633px 1049px #fff, 1548px 657px #fff, 359px 1850px #fff, 823px 487px #fff, 303px 1258px #fff, 21px 1794px #fff, 1136px 1919px #fff, 95px 922px #fff, 414px 24px #fff, 1639px 1901px #fff, 50px 596px #fff, 816px 695px #fff, 933px 631px #fff, 988px 1805px #fff, 1491px 845px #fff, 881px 1224px #fff, 1862px 1786px #fff, 1348px 1854px #fff, 852px 1965px #fff, 990px 1539px #fff, 930px 833px #fff, 84px 1606px #fff, 937px 8px #fff, 1316px 708px #fff, 216px 25px #fff, 1261px 1817px #fff, 1088px 436px #fff, 1166px 23px #fff, 995px 762px #fff, 551px 81px #fff, 66px 1022px #fff, 865px 1797px #fff, 1584px 188px #fff, 353px 1207px #fff, 1186px 357px #fff, 365px 1134px #fff, 1190px 42px #fff, 1716px 325px #fff, 1155px 606px #fff, 1204px 1719px #fff, 1918px 665px #fff, 1567px 710px #fff, 373px 668px #fff, 471px 264px #fff, 1234px 1176px #fff, 1776px 526px #fff, 1430px 719px #fff, 849px 1032px #fff, 751px 446px #fff, 1025px 212px #fff, 1971px 1484px #fff, 1078px 163px #fff, 326px 582px #fff, 1396px 783px #fff, 1882px 1964px #fff, 335px 1407px #fff, 1305px 1081px #fff, 1943px 1955px #fff, 627px 321px #fff, 1425px 1128px #fff, 1863px 1891px #fff, 1141px 1280px #fff, 1860px 282px #fff, 587px 704px #fff, 1258px 741px #fff, 1442px 1298px #fff, 1761px 1596px #fff, 1577px 1728px #fff, 35px 1285px #fff, 1082px 1015px #fff, 187px 1800px #fff, 1216px 918px #fff, 1311px 180px #fff, 196px 1872px #fff, 1203px 1848px #fff, 94px 454px #fff, 1863px 1220px #fff, 1176px 713px #fff, 1363px 539px #fff, 413px 1374px #fff, 1189px 1640px #fff, 1032px 129px #fff, 1920px 369px #fff, 289px 286px #fff, 1708px 157px #fff, 558px 1099px #fff, 698px 926px #fff, 1350px 1602px #fff, 745px 11px #fff, 142px 919px #fff, 1618px 371px #fff, 456px 486px #fff, 202px 1588px #fff, 524px 749px #fff, 216px 1839px #fff, 1244px 1227px #fff, 1554px 483px #fff, 1504px 125px #fff, 1637px 995px #fff, 1027px 1036px #fff, 323px 1977px #fff, 709px 315px #fff, 574px 1426px #fff, 288px 1845px #fff, 316px 257px #fff, 253px 1940px #fff, 1302px 1969px #fff, 1638px 1006px #fff, 785px 1962px #fff, 404px 190px #fff, 1359px 601px #fff, 1701px 1949px #fff, 719px 1417px #fff, 566px 291px #fff, 1003px 920px #fff, 133px 1017px #fff, 702px 1238px #fff, 131px 695px #fff, 1993px 1673px #fff, 1315px 705px #fff, 458px 1014px #fff, 1763px 968px #fff, 1286px 630px #fff, 1341px 700px #fff, 137px 1639px #fff, 1329px 1113px #fff, 1531px 907px #fff, 1398px 1838px #fff, 15px 1296px #fff, 1015px 1127px #fff, 630px 1220px #fff, 1150px 1877px #fff, 1324px 331px #fff, 736px 774px #fff, 689px 1295px #fff, 1935px 334px #fff, 291px 1027px #fff, 1999px 1195px #fff, 1447px 216px #fff, 1845px 1131px #fff, 192px 1304px #fff, 1802px 751px #fff, 1728px 1597px #fff, 1152px 339px #fff, 405px 1464px #fff, 1563px 1927px #fff, 86px 1543px #fff, 88px 1283px #fff, 883px 509px #fff, 385px 219px #fff, 128px 264px #fff, 1891px 1561px #fff, 1717px 13px #fff, 1113px 1394px #fff, 196px 1249px #fff, 520px 277px #fff, 823px 551px #fff, 1px 1252px #fff, 86px 1252px #fff, 1935px 1129px #fff, 214px 1482px #fff, 644px 1709px #fff, 1289px 815px #fff, 426px 931px #fff, 1097px 469px #fff, 1195px 991px #fff, 656px 1790px #fff, 303px 1145px #fff, 1489px 812px #fff, 961px 1629px #fff, 1354px 1528px #fff, 1013px 339px #fff, 1368px 79px #fff, 1550px 653px #fff, 155px 1163px #fff, 791px 823px #fff, 1912px 1303px #fff, 1837px 1801px #fff, 151px 1061px #fff, 969px 1733px #fff, 800px 276px #fff, 1174px 1113px #fff, 115px 95px #fff, 483px 1620px #fff, 1550px 1876px #fff, 1213px 1843px #fff, 220px 901px #fff, 1173px 575px #fff, 1089px 1508px #fff, 201px 914px #fff, 842px 164px #fff, 21px 1184px #fff, 456px 1851px #fff, 774px 24px #fff, 185px 1091px #fff, 1103px 1443px #fff, 29px 271px #fff, 1343px 218px #fff, 1721px 881px #fff, 1228px 368px #fff, 735px 271px #fff, 1580px 889px #fff, 974px 986px #fff, 1591px 758px #fff, 1108px 879px #fff, 1074px 1057px #fff, 1197px 1625px #fff, 190px 283px #fff, 623px 333px #fff, 162px 1650px #fff, 1660px 1055px #fff, 1302px 796px #fff, 1103px 433px #fff, 1199px 1835px #fff, 799px 1608px #fff, 733px 694px #fff, 296px 291px #fff, 442px 621px #fff, 999px 1164px #fff, 1873px 1719px #fff, 814px 1780px #fff, 407px 1626px #fff, 654px 434px #fff, 1435px 1185px #fff, 234px 1603px #fff, 1389px 1200px #fff, 383px 1132px #fff, 1562px 1797px #fff, 1611px 94px #fff, 469px 402px #fff, 1572px 1871px #fff, 1625px 1857px #fff, 803px 1824px #fff, 858px 1907px #fff, 87px 279px #fff, 377px 876px #fff, 1404px 237px #fff, 556px 775px #fff, 1479px 434px #fff, 1031px 1601px #fff, 826px 1270px #fff, 1271px 1980px #fff, 19px 1381px #fff, 1998px 960px #fff, 883px 1485px #fff, 1820px 434px #fff, 1076px 965px #fff, 1406px 754px #fff, 1397px 791px #fff, 1534px 695px #fff, 549px 1926px #fff, 26px 1784px #fff, 1868px 260px #fff, 692px 1643px #fff, 1379px 1255px #fff, 1765px 1110px #fff, 432px 1008px #fff, 76px 1843px #fff, 58px 1368px #fff, 256px 985px #fff, 449px 720px #fff, 711px 1213px #fff, 59px 1679px #fff, 1765px 537px #fff, 1094px 839px #fff, 182px 64px #fff, 1166px 911px #fff, 621px 847px #fff, 1799px 1245px #fff, 1975px 1544px #fff, 699px 1695px #fff, 1903px 1249px #fff, 1323px 1389px #fff, 1682px 1323px #fff, 535px 981px #fff, 84px 783px #fff, 395px 61px #fff, 1136px 507px #fff, 69px 490px #fff, 124px 1202px #fff, 1294px 380px #fff, 1916px 1503px #fff, 1385px 934px #fff, 1674px 303px #fff, 1972px 316px #fff, 901px 1641px #fff, 1747px 1215px #fff, 101px 1647px #fff, 499px 1374px #fff, 767px 1083px #fff, 537px 369px #fff, 1678px 1640px #fff, 1934px 1480px #fff, 1856px 610px #fff, 545px 632px #fff, 1380px 1044px #fff, 1063px 292px #fff, 1709px 360px #fff, 1255px 1592px #fff, 329px 1501px #fff, 207px 404px #fff, 1215px 1177px #fff, 1674px 121px #fff, 1069px 1784px #fff, 1989px 561px #fff, 373px 950px #fff, 551px 1007px #fff, 1723px 1106px #fff, 1552px 574px #fff, 1380px 440px #fff, 956px 1264px #fff, 250px 1787px #fff, 1925px 1411px #fff, 122px 1366px #fff, 1423px 474px #fff, 1353px 1025px #fff, 1073px 1991px #fff, 370px 903px #fff, 978px 845px #fff, 1346px 1225px #fff, 603px 457px #fff, 31px 262px #fff, 1390px 1275px #fff, 1021px 1302px #fff, 162px 156px #fff, 567px 1546px #fff, 30px 328px #fff, 381px 526px #fff, 691px 1340px #fff, 1881px 24px #fff, 412px 476px #fff, 600px 1481px #fff, 596px 811px #fff, 162px 417px #fff, 1088px 1826px #fff, 399px 1124px #fff, 1692px 1235px #fff, 289px 1089px #fff, 372px 1301px #fff, 835px 1817px #fff, 1674px 203px #fff, 1609px 200px #fff, 132px 1642px #fff, 597px 1919px #fff, 1260px 1278px #fff, 554px 1463px #fff, 502px 185px #fff, 1670px 1093px #fff, 102px 1989px #fff, 140px 1087px #fff, 65px 1180px #fff, 173px 457px #fff, 1662px 1217px #fff, 1715px 1803px #fff, 936px 140px #fff, 544px 715px #fff, 982px 858px #fff, 977px 1430px #fff, 12px 1178px #fff, 1793px 1828px #fff, 392px 1724px #fff, 85px 1682px #fff, 654px 620px #fff, 732px 852px #fff, 617px 1190px #fff, 538px 1666px #fff, 1375px 1965px #fff, 1180px 719px #fff, 1238px 1417px #fff, 288px 52px #fff, 1180px 584px #fff, 1040px 482px #fff, 1034px 168px #fff, 1466px 564px #fff, 23px 1897px #fff, 1528px 404px #fff, 841px 985px #fff, 220px 1427px #fff, 1152px 1913px #fff, 1339px 822px #fff, 1797px 1810px #fff, 1189px 1084px #fff, 1934px 1218px #fff, 1570px 43px #fff, 1092px 1082px #fff, 1210px 694px #fff, 451px 891px #fff, 1475px 1305px #fff, 44px 1564px #fff, 214px 1027px #fff, 1152px 467px #fff, 1034px 804px #fff, 955px 922px #fff, 983px 647px #fff, 515px 1765px #fff, 1557px 142px #fff, 476px 1169px #fff, 1810px 689px #fff, 645px 1817px #fff, 382px 749px #fff, 1487px 1071px #fff, 1212px 1820px #fff, 1122px 273px #fff, 891px 993px #fff, 1828px 1033px #fff, 860px 727px #fff, 1089px 975px #fff, 623px 236px #fff, 168px 1932px #fff, 303px 1762px #fff, 589px 651px #fff, 1136px 1571px #fff, 1321px 207px #fff, 1098px 1102px #fff, 1483px 1621px #fff, 870px 1363px #fff, 1682px 1990px #fff, 4px 874px #fff, 1524px 623px #fff, 1601px 682px #fff, 373px 1788px #fff, 1755px 1403px #fff, 94px 1943px #fff, 1528px 1727px #fff, 478px 1600px #fff, 720px 1700px #fff, 1818px 113px #fff, 1894px 235px #fff, 1095px 373px #fff, 1207px 1480px #fff, 855px 194px #fff, 1961px 271px #fff, 1713px 1181px #fff, 307px 497px #fff, 1527px 1701px #fff, 1085px 1649px #fff, 739px 930px #fff, 1066px 1455px #fff, 1624px 649px #fff, 406px 1428px #fff, 1584px 1166px #fff, 1788px 1281px #fff, 1906px 1083px #fff, 572px 254px #fff, 1715px 605px #fff, 1690px 69px #fff, 1671px 728px #fff, 182px 1223px #fff, 1266px 6px #fff, 1558px 1445px #fff, 131px 1090px #fff, 339px 1411px #fff, 1px 1839px #fff, 175px 416px #fff, 278px 1271px #fff, 563px 364px #fff, 758px 850px #fff, 388px 1387px #fff, 612px 767px #fff, 1605px 277px #fff, 684px 1843px #fff, 1311px 1849px #fff, 1603px 45px #fff, 107px 324px #fff, 126px 1744px #fff, 325px 925px #fff, 1374px 368px #fff, 22px 337px #fff, 1379px 1454px #fff, 404px 63px #fff, 1778px 1429px #fff, 1805px 553px #fff, 1723px 1471px #fff, 1818px 636px #fff, 1664px 875px #fff, 647px 1239px #fff, 1453px 1976px #fff, 25px 1233px #fff, 1379px 890px #fff, 948px 651px #fff, 328px 1073px #fff, 1724px 24px #fff, 511px 206px #fff, 1524px 13px #fff, 1829px 49px #fff, 1233px 458px #fff, 1602px 1074px #fff, 414px 949px #fff, 535px 1521px #fff, 499px 819px #fff, 809px 108px #fff, 608px 1483px #fff, 1439px 204px #fff, 1324px 312px #fff, 634px 1310px #fff, 219px 944px #fff, 1808px 1266px #fff, 1812px 994px #fff, 389px 1502px #fff, 315px 355px #fff, 1083px 1303px #fff, 540px 574px #fff, 982px 1155px #fff, 529px 1002px #fff, 1447px 925px #fff, 1697px 979px #fff, 1086px 271px #fff, 416px 747px #fff, 970px 1265px #fff, 103px 958px #fff, 324px 1415px #fff, 546px 1501px #fff, 1850px 23px #fff, 908px 796px #fff, 712px 1843px #fff, 1019px 710px #fff, 1666px 963px #fff, 669px 1273px #fff, 1494px 333px #fff, 275px 886px #fff, 1888px 149px #fff, 1822px 835px #fff, 1960px 336px #fff, 842px 1844px #fff, 603px 1279px #fff, 931px 225px #fff, 1285px 491px #fff, 1445px 1402px #fff, 550px 516px #fff, 1685px 1670px #fff, 1010px 1063px #fff, 535px 1673px #fff, 644px 272px #fff, 667px 85px #fff, 322px 500px #fff, 553px 453px #fff, 1364px 381px #fff, 896px 1709px #fff, 1413px 790px #fff, 206px 1927px #fff, 258px 732px #fff, 1483px 1184px #fff, 1237px 1334px #fff, 1534px 484px #fff, 757px 519px #fff, 134px 124px #fff, 1541px 995px #fff, 43px 743px #fff, 658px 858px #fff, 1096px 1303px #fff, 1867px 1938px #fff, 1883px 1024px #fff, 1517px 1097px #fff, 1061px 1120px #fff, 1546px 436px #fff, 1172px 1641px #fff, 1037px 1148px #fff, 965px 1072px #fff, 1586px 858px #fff, 400px 1334px #fff, 682px 1185px #fff, 699px 152px #fff, 712px 1666px #fff, 1864px 1269px #fff, 275px 77px #fff, 616px 792px #fff, 1646px 373px #fff, 74px 1669px #fff, 1207px 1059px #fff, 905px 1624px #fff, 528px 1408px #fff, 111px 652px #fff, 1284px 1859px #fff, 1567px 362px #fff, 1170px 200px #fff, 1142px 1600px #fff, 744px 1221px #fff, 1398px 72px #fff, 421px 1385px #fff, 1058px 1974px #fff, 1432px 351px #fff, 947px 777px #fff, 1751px 1573px #fff, 900px 1136px #fff, 1701px 1019px #fff, 204px 1273px #fff, 671px 56px #fff, 1998px 1593px #fff, 1664px 1430px #fff, 1342px 463px #fff, 1454px 1281px #fff, 305px 1071px #fff, 588px 1882px #fff, 652px 1402px #fff, 1666px 1779px #fff, 818px 413px #fff, 822px 1196px #fff, 1273px 1548px #fff, 314px 1796px #fff, 1468px 209px #fff, 1949px 1052px #fff, 1004px 1243px #fff, 1621px 1120px #fff, 1336px 1930px #fff, 1086px 1415px #fff, 965px 429px #fff, 1878px 1995px #fff, 379px 1258px #fff, 1942px 1704px #fff, 733px 343px #fff, 804px 1474px #fff, 1859px 1478px #fff, 1217px 1534px #fff, 1179px 1865px #fff, 505px 550px #fff, 556px 629px #fff, 1020px 850px #fff, 921px 1893px #fff, 790px 1050px #fff, 1050px 90px #fff, 1254px 1440px #fff, 565px 1616px #fff, 1561px 1645px #fff, 292px 996px #fff, 143px 1167px #fff, 574px 1896px #fff, 878px 330px #fff, 1716px 642px #fff, 1516px 689px #fff, 109px 1429px #fff, 433px 449px #fff;
    animation: animStar 50s linear infinite;
}

#contents>.stars::after {
    content: " ";
    position: absolute;
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 1795px 1116px #fff, 230px 703px #fff, 1668px 1773px #fff, 814px 218px #fff, 179px 1862px #fff, 576px 1407px #fff, 354px 277px #fff, 748px 134px #fff, 922px 1801px #fff, 611px 442px #fff, 539px 35px #fff, 108px 1538px #fff, 1080px 1156px #fff, 697px 1125px #fff, 322px 648px #fff, 666px 562px #fff, 1192px 1112px #fff, 799px 108px #fff, 1999px 24px #fff, 516px 1906px #fff, 1510px 38px #fff, 163px 1658px #fff, 1377px 624px #fff, 1232px 280px #fff, 333px 77px #fff, 1127px 362px #fff, 448px 1078px #fff, 532px 459px #fff, 1215px 1009px #fff, 1880px 772px #fff, 478px 566px #fff, 1564px 1578px #fff, 467px 1590px #fff, 1970px 132px #fff, 285px 1224px #fff, 255px 1631px #fff, 234px 384px #fff, 1741px 1251px #fff, 1241px 1484px #fff, 456px 1965px #fff, 1105px 366px #fff, 1756px 1446px #fff, 1874px 1947px #fff, 1496px 1919px #fff, 609px 724px #fff, 703px 354px #fff, 1399px 1112px #fff, 1173px 330px #fff, 1123px 1805px #fff, 1597px 417px #fff, 453px 183px #fff, 714px 1213px #fff, 1585px 553px #fff, 541px 572px #fff, 297px 1159px #fff, 1203px 1130px #fff, 1133px 1972px #fff, 487px 1891px #fff, 1990px 1621px #fff, 703px 492px #fff, 1257px 142px #fff, 434px 738px #fff, 503px 1598px #fff, 325px 664px #fff, 1268px 206px #fff, 1458px 976px #fff, 1317px 96px #fff, 1314px 1459px #fff, 1630px 1687px #fff, 1633px 1049px #fff, 1548px 657px #fff, 359px 1850px #fff, 823px 487px #fff, 303px 1258px #fff, 21px 1794px #fff, 1136px 1919px #fff, 95px 922px #fff, 414px 24px #fff, 1639px 1901px #fff, 50px 596px #fff, 816px 695px #fff, 933px 631px #fff, 988px 1805px #fff, 1491px 845px #fff, 881px 1224px #fff, 1862px 1786px #fff, 1348px 1854px #fff, 852px 1965px #fff, 990px 1539px #fff, 930px 833px #fff, 84px 1606px #fff, 937px 8px #fff, 1316px 708px #fff, 216px 25px #fff, 1261px 1817px #fff, 1088px 436px #fff, 1166px 23px #fff, 995px 762px #fff, 551px 81px #fff, 66px 1022px #fff, 865px 1797px #fff, 1584px 188px #fff, 353px 1207px #fff, 1186px 357px #fff, 365px 1134px #fff, 1190px 42px #fff, 1716px 325px #fff, 1155px 606px #fff, 1204px 1719px #fff, 1918px 665px #fff, 1567px 710px #fff, 373px 668px #fff, 471px 264px #fff, 1234px 1176px #fff, 1776px 526px #fff, 1430px 719px #fff, 849px 1032px #fff, 751px 446px #fff, 1025px 212px #fff, 1971px 1484px #fff, 1078px 163px #fff, 326px 582px #fff, 1396px 783px #fff, 1882px 1964px #fff, 335px 1407px #fff, 1305px 1081px #fff, 1943px 1955px #fff, 627px 321px #fff, 1425px 1128px #fff, 1863px 1891px #fff, 1141px 1280px #fff, 1860px 282px #fff, 587px 704px #fff, 1258px 741px #fff, 1442px 1298px #fff, 1761px 1596px #fff, 1577px 1728px #fff, 35px 1285px #fff, 1082px 1015px #fff, 187px 1800px #fff, 1216px 918px #fff, 1311px 180px #fff, 196px 1872px #fff, 1203px 1848px #fff, 94px 454px #fff, 1863px 1220px #fff, 1176px 713px #fff, 1363px 539px #fff, 413px 1374px #fff, 1189px 1640px #fff, 1032px 129px #fff, 1920px 369px #fff, 289px 286px #fff, 1708px 157px #fff, 558px 1099px #fff, 698px 926px #fff, 1350px 1602px #fff, 745px 11px #fff, 142px 919px #fff, 1618px 371px #fff, 456px 486px #fff, 202px 1588px #fff, 524px 749px #fff, 216px 1839px #fff, 1244px 1227px #fff, 1554px 483px #fff, 1504px 125px #fff, 1637px 995px #fff, 1027px 1036px #fff, 323px 1977px #fff, 709px 315px #fff, 574px 1426px #fff, 288px 1845px #fff, 316px 257px #fff, 253px 1940px #fff, 1302px 1969px #fff, 1638px 1006px #fff, 785px 1962px #fff, 404px 190px #fff, 1359px 601px #fff, 1701px 1949px #fff, 719px 1417px #fff, 566px 291px #fff, 1003px 920px #fff, 133px 1017px #fff, 702px 1238px #fff, 131px 695px #fff, 1993px 1673px #fff, 1315px 705px #fff, 458px 1014px #fff, 1763px 968px #fff, 1286px 630px #fff, 1341px 700px #fff, 137px 1639px #fff, 1329px 1113px #fff, 1531px 907px #fff, 1398px 1838px #fff, 15px 1296px #fff, 1015px 1127px #fff, 630px 1220px #fff, 1150px 1877px #fff, 1324px 331px #fff, 736px 774px #fff, 689px 1295px #fff, 1935px 334px #fff, 291px 1027px #fff, 1999px 1195px #fff, 1447px 216px #fff, 1845px 1131px #fff, 192px 1304px #fff, 1802px 751px #fff, 1728px 1597px #fff, 1152px 339px #fff, 405px 1464px #fff, 1563px 1927px #fff, 86px 1543px #fff, 88px 1283px #fff, 883px 509px #fff, 385px 219px #fff, 128px 264px #fff, 1891px 1561px #fff, 1717px 13px #fff, 1113px 1394px #fff, 196px 1249px #fff, 520px 277px #fff, 823px 551px #fff, 1px 1252px #fff, 86px 1252px #fff, 1935px 1129px #fff, 214px 1482px #fff, 644px 1709px #fff, 1289px 815px #fff, 426px 931px #fff, 1097px 469px #fff, 1195px 991px #fff, 656px 1790px #fff, 303px 1145px #fff, 1489px 812px #fff, 961px 1629px #fff, 1354px 1528px #fff, 1013px 339px #fff, 1368px 79px #fff, 1550px 653px #fff, 155px 1163px #fff, 791px 823px #fff, 1912px 1303px #fff, 1837px 1801px #fff, 151px 1061px #fff, 969px 1733px #fff, 800px 276px #fff, 1174px 1113px #fff, 115px 95px #fff, 483px 1620px #fff, 1550px 1876px #fff, 1213px 1843px #fff, 220px 901px #fff, 1173px 575px #fff, 1089px 1508px #fff, 201px 914px #fff, 842px 164px #fff, 21px 1184px #fff, 456px 1851px #fff, 774px 24px #fff, 185px 1091px #fff, 1103px 1443px #fff, 29px 271px #fff, 1343px 218px #fff, 1721px 881px #fff, 1228px 368px #fff, 735px 271px #fff, 1580px 889px #fff, 974px 986px #fff, 1591px 758px #fff, 1108px 879px #fff, 1074px 1057px #fff, 1197px 1625px #fff, 190px 283px #fff, 623px 333px #fff, 162px 1650px #fff, 1660px 1055px #fff, 1302px 796px #fff, 1103px 433px #fff, 1199px 1835px #fff, 799px 1608px #fff, 733px 694px #fff, 296px 291px #fff, 442px 621px #fff, 999px 1164px #fff, 1873px 1719px #fff, 814px 1780px #fff, 407px 1626px #fff, 654px 434px #fff, 1435px 1185px #fff, 234px 1603px #fff, 1389px 1200px #fff, 383px 1132px #fff, 1562px 1797px #fff, 1611px 94px #fff, 469px 402px #fff, 1572px 1871px #fff, 1625px 1857px #fff, 803px 1824px #fff, 858px 1907px #fff, 87px 279px #fff, 377px 876px #fff, 1404px 237px #fff, 556px 775px #fff, 1479px 434px #fff, 1031px 1601px #fff, 826px 1270px #fff, 1271px 1980px #fff, 19px 1381px #fff, 1998px 960px #fff, 883px 1485px #fff, 1820px 434px #fff, 1076px 965px #fff, 1406px 754px #fff, 1397px 791px #fff, 1534px 695px #fff, 549px 1926px #fff, 26px 1784px #fff, 1868px 260px #fff, 692px 1643px #fff, 1379px 1255px #fff, 1765px 1110px #fff, 432px 1008px #fff, 76px 1843px #fff, 58px 1368px #fff, 256px 985px #fff, 449px 720px #fff, 711px 1213px #fff, 59px 1679px #fff, 1765px 537px #fff, 1094px 839px #fff, 182px 64px #fff, 1166px 911px #fff, 621px 847px #fff, 1799px 1245px #fff, 1975px 1544px #fff, 699px 1695px #fff, 1903px 1249px #fff, 1323px 1389px #fff, 1682px 1323px #fff, 535px 981px #fff, 84px 783px #fff, 395px 61px #fff, 1136px 507px #fff, 69px 490px #fff, 124px 1202px #fff, 1294px 380px #fff, 1916px 1503px #fff, 1385px 934px #fff, 1674px 303px #fff, 1972px 316px #fff, 901px 1641px #fff, 1747px 1215px #fff, 101px 1647px #fff, 499px 1374px #fff, 767px 1083px #fff, 537px 369px #fff, 1678px 1640px #fff, 1934px 1480px #fff, 1856px 610px #fff, 545px 632px #fff, 1380px 1044px #fff, 1063px 292px #fff, 1709px 360px #fff, 1255px 1592px #fff, 329px 1501px #fff, 207px 404px #fff, 1215px 1177px #fff, 1674px 121px #fff, 1069px 1784px #fff, 1989px 561px #fff, 373px 950px #fff, 551px 1007px #fff, 1723px 1106px #fff, 1552px 574px #fff, 1380px 440px #fff, 956px 1264px #fff, 250px 1787px #fff, 1925px 1411px #fff, 122px 1366px #fff, 1423px 474px #fff, 1353px 1025px #fff, 1073px 1991px #fff, 370px 903px #fff, 978px 845px #fff, 1346px 1225px #fff, 603px 457px #fff, 31px 262px #fff, 1390px 1275px #fff, 1021px 1302px #fff, 162px 156px #fff, 567px 1546px #fff, 30px 328px #fff, 381px 526px #fff, 691px 1340px #fff, 1881px 24px #fff, 412px 476px #fff, 600px 1481px #fff, 596px 811px #fff, 162px 417px #fff, 1088px 1826px #fff, 399px 1124px #fff, 1692px 1235px #fff, 289px 1089px #fff, 372px 1301px #fff, 835px 1817px #fff, 1674px 203px #fff, 1609px 200px #fff, 132px 1642px #fff, 597px 1919px #fff, 1260px 1278px #fff, 554px 1463px #fff, 502px 185px #fff, 1670px 1093px #fff, 102px 1989px #fff, 140px 1087px #fff, 65px 1180px #fff, 173px 457px #fff, 1662px 1217px #fff, 1715px 1803px #fff, 936px 140px #fff, 544px 715px #fff, 982px 858px #fff, 977px 1430px #fff, 12px 1178px #fff, 1793px 1828px #fff, 392px 1724px #fff, 85px 1682px #fff, 654px 620px #fff, 732px 852px #fff, 617px 1190px #fff, 538px 1666px #fff, 1375px 1965px #fff, 1180px 719px #fff, 1238px 1417px #fff, 288px 52px #fff, 1180px 584px #fff, 1040px 482px #fff, 1034px 168px #fff, 1466px 564px #fff, 23px 1897px #fff, 1528px 404px #fff, 841px 985px #fff, 220px 1427px #fff, 1152px 1913px #fff, 1339px 822px #fff, 1797px 1810px #fff, 1189px 1084px #fff, 1934px 1218px #fff, 1570px 43px #fff, 1092px 1082px #fff, 1210px 694px #fff, 451px 891px #fff, 1475px 1305px #fff, 44px 1564px #fff, 214px 1027px #fff, 1152px 467px #fff, 1034px 804px #fff, 955px 922px #fff, 983px 647px #fff, 515px 1765px #fff, 1557px 142px #fff, 476px 1169px #fff, 1810px 689px #fff, 645px 1817px #fff, 382px 749px #fff, 1487px 1071px #fff, 1212px 1820px #fff, 1122px 273px #fff, 891px 993px #fff, 1828px 1033px #fff, 860px 727px #fff, 1089px 975px #fff, 623px 236px #fff, 168px 1932px #fff, 303px 1762px #fff, 589px 651px #fff, 1136px 1571px #fff, 1321px 207px #fff, 1098px 1102px #fff, 1483px 1621px #fff, 870px 1363px #fff, 1682px 1990px #fff, 4px 874px #fff, 1524px 623px #fff, 1601px 682px #fff, 373px 1788px #fff, 1755px 1403px #fff, 94px 1943px #fff, 1528px 1727px #fff, 478px 1600px #fff, 720px 1700px #fff, 1818px 113px #fff, 1894px 235px #fff, 1095px 373px #fff, 1207px 1480px #fff, 855px 194px #fff, 1961px 271px #fff, 1713px 1181px #fff, 307px 497px #fff, 1527px 1701px #fff, 1085px 1649px #fff, 739px 930px #fff, 1066px 1455px #fff, 1624px 649px #fff, 406px 1428px #fff, 1584px 1166px #fff, 1788px 1281px #fff, 1906px 1083px #fff, 572px 254px #fff, 1715px 605px #fff, 1690px 69px #fff, 1671px 728px #fff, 182px 1223px #fff, 1266px 6px #fff, 1558px 1445px #fff, 131px 1090px #fff, 339px 1411px #fff, 1px 1839px #fff, 175px 416px #fff, 278px 1271px #fff, 563px 364px #fff, 758px 850px #fff, 388px 1387px #fff, 612px 767px #fff, 1605px 277px #fff, 684px 1843px #fff, 1311px 1849px #fff, 1603px 45px #fff, 107px 324px #fff, 126px 1744px #fff, 325px 925px #fff, 1374px 368px #fff, 22px 337px #fff, 1379px 1454px #fff, 404px 63px #fff, 1778px 1429px #fff, 1805px 553px #fff, 1723px 1471px #fff, 1818px 636px #fff, 1664px 875px #fff, 647px 1239px #fff, 1453px 1976px #fff, 25px 1233px #fff, 1379px 890px #fff, 948px 651px #fff, 328px 1073px #fff, 1724px 24px #fff, 511px 206px #fff, 1524px 13px #fff, 1829px 49px #fff, 1233px 458px #fff, 1602px 1074px #fff, 414px 949px #fff, 535px 1521px #fff, 499px 819px #fff, 809px 108px #fff, 608px 1483px #fff, 1439px 204px #fff, 1324px 312px #fff, 634px 1310px #fff, 219px 944px #fff, 1808px 1266px #fff, 1812px 994px #fff, 389px 1502px #fff, 315px 355px #fff, 1083px 1303px #fff, 540px 574px #fff, 982px 1155px #fff, 529px 1002px #fff, 1447px 925px #fff, 1697px 979px #fff, 1086px 271px #fff, 416px 747px #fff, 970px 1265px #fff, 103px 958px #fff, 324px 1415px #fff, 546px 1501px #fff, 1850px 23px #fff, 908px 796px #fff, 712px 1843px #fff, 1019px 710px #fff, 1666px 963px #fff, 669px 1273px #fff, 1494px 333px #fff, 275px 886px #fff, 1888px 149px #fff, 1822px 835px #fff, 1960px 336px #fff, 842px 1844px #fff, 603px 1279px #fff, 931px 225px #fff, 1285px 491px #fff, 1445px 1402px #fff, 550px 516px #fff, 1685px 1670px #fff, 1010px 1063px #fff, 535px 1673px #fff, 644px 272px #fff, 667px 85px #fff, 322px 500px #fff, 553px 453px #fff, 1364px 381px #fff, 896px 1709px #fff, 1413px 790px #fff, 206px 1927px #fff, 258px 732px #fff, 1483px 1184px #fff, 1237px 1334px #fff, 1534px 484px #fff, 757px 519px #fff, 134px 124px #fff, 1541px 995px #fff, 43px 743px #fff, 658px 858px #fff, 1096px 1303px #fff, 1867px 1938px #fff, 1883px 1024px #fff, 1517px 1097px #fff, 1061px 1120px #fff, 1546px 436px #fff, 1172px 1641px #fff, 1037px 1148px #fff, 965px 1072px #fff, 1586px 858px #fff, 400px 1334px #fff, 682px 1185px #fff, 699px 152px #fff, 712px 1666px #fff, 1864px 1269px #fff, 275px 77px #fff, 616px 792px #fff, 1646px 373px #fff, 74px 1669px #fff, 1207px 1059px #fff, 905px 1624px #fff, 528px 1408px #fff, 111px 652px #fff, 1284px 1859px #fff, 1567px 362px #fff, 1170px 200px #fff, 1142px 1600px #fff, 744px 1221px #fff, 1398px 72px #fff, 421px 1385px #fff, 1058px 1974px #fff, 1432px 351px #fff, 947px 777px #fff, 1751px 1573px #fff, 900px 1136px #fff, 1701px 1019px #fff, 204px 1273px #fff, 671px 56px #fff, 1998px 1593px #fff, 1664px 1430px #fff, 1342px 463px #fff, 1454px 1281px #fff, 305px 1071px #fff, 588px 1882px #fff, 652px 1402px #fff, 1666px 1779px #fff, 818px 413px #fff, 822px 1196px #fff, 1273px 1548px #fff, 314px 1796px #fff, 1468px 209px #fff, 1949px 1052px #fff, 1004px 1243px #fff, 1621px 1120px #fff, 1336px 1930px #fff, 1086px 1415px #fff, 965px 429px #fff, 1878px 1995px #fff, 379px 1258px #fff, 1942px 1704px #fff, 733px 343px #fff, 804px 1474px #fff, 1859px 1478px #fff, 1217px 1534px #fff, 1179px 1865px #fff, 505px 550px #fff, 556px 629px #fff, 1020px 850px #fff, 921px 1893px #fff, 790px 1050px #fff, 1050px 90px #fff, 1254px 1440px #fff, 565px 1616px #fff, 1561px 1645px #fff, 292px 996px #fff, 143px 1167px #fff, 574px 1896px #fff, 878px 330px #fff, 1716px 642px #fff, 1516px 689px #fff, 109px 1429px #fff, 433px 449px #fff;
}

@keyframes animStar {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-2000px);
    }
}

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

#footer {
    background: linear-gradient(90deg, #090909e6 0%, #1a1502eb 100%);
    width: calc(100% - 200px);
    padding: 7px 0 75px;
    box-sizing: border-box;
    margin-left: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 98;
}

#footer::after {
    background: url(../img/common/linecut.gif);
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 100%;
    content: "";
}

#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: #fff;
    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: rgb(206, 206, 206);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

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

#footer .f-nav .subj {
    color: #ffd772;
    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>li {
    width: 32%;
    margin: 0 2% 4% 0;
}

#footer .f-nav .main-list.group-1>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>li {
    width: 100%;
    margin: 0 0 4% 0;
}

#footer .f-nav .sub-list>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>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#footer .providers>ul>li {
    margin: 0 10px 10px;
    cursor: pointer;
}

#footer .providers>ul>li:hover {
    filter: brightness(5) drop-shadow(1px 1px 5px #e7d39d);
}

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

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

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

@media screen and (max-width: 1000px) {
    #footer {
        width: 100%;
        margin-left: 0;
    }
}

@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>li {
        width: 100%;
        margin-right: 0;
    }

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

    #footer .providers>ul>li {
        width: calc(33.33% - 20px);
    }

    #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, #000, #222);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 2px solid #93875b;
    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;
    text-shadow: 1px 1px 4px #000;
}

.mobile-shortcut .item .img img {
    width: 34px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-bottom: 20px;
    position: relative;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.781));
}

.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: linear-gradient(90deg, #00296f 0%, #001f5f 100%), linear-gradient(180deg, #ecb831 20%, #fcfcb0 50%, #955d16 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: 60px;
    max-width: 60px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 111111111;
    margin-top: -28px;
}

.mobile-shortcut .c-item .txt01 {
    position: absolute;
    bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    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,
.mobile-shortcut .fake-bg img {
    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;
    }
}