@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --body: rgb(26, 21, 14);
}

body {
  background-color: var(--body);
  font-family: 'Source Sans Pro';
}

a {
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
}

i {
  -webkit-transition: .5s;
  transition: .5s;
}

img {
  -webkit-transition: .5s;
  transition: .5s;
}

button {
  border: none;
  outline: none;
  -webkit-transition: .5s;
  transition: .5s;
}

div {
  -webkit-transition: .5s;
  transition: .5s;
}

span {
  -webkit-transition: .5s;
  transition: .5s;
}

p {
  color: white;
  -webkit-transition: .5s;
  transition: .5s;
}

h1 {
  color: white;
}

h1 {
  font-size: 45px;
  line-height: 55px;
  width: 80%;
  margin: 0 auto;
  background: -webkit-linear-gradient(210deg, #e7be80, rgba(139, 117, 75, 0.795));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-filter: drop-shadow(0px 0px 10px #070503);
          filter: drop-shadow(0px 0px 10px #070503);
}

h1 span {
  background: -webkit-linear-gradient(210deg, #ffefda, rgba(189, 172, 140, 0.795));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

li {
  list-style: none;
}

.fp-watermark {
  display: none !important;
}

.container {
  width: 1250px;
  margin: 0 auto;
  padding: 130px 0px 130px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.social {
  position: fixed;
  right: 30px;
  top: 45%;
  text-align: center;
  z-index: 1;
}

.social a:not(:last-child) {
  margin-bottom: 25px;
}

.social a {
  display: block;
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
}

.social a:hover {
  color: white;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  width: 100%;
  top: 0;
  position: fixed;
  z-index: 2;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-transition: 1s;
  transition: 1s;
  padding: 0px 20px 0px 20px;
}

nav .nav-icon {
  width: 17%;
}

nav .nav-icon img {
  width: 100px;
}

nav .nav-end {
  width: 17%;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

nav .nav-end .user {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #b9b4ab;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav .nav-end .user:hover {
  background-color: #887141;
  color: white;
}

nav #menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0px 20px 0px 20px;
}

nav #menu li:not(:last-child) {
  margin-right: 70px;
}

nav #menu li {
  height: 100%;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav #menu li::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #68593d;
  -webkit-transition: .5s;
  transition: .5s;
}

nav #menu li a {
  color: rgba(255, 255, 255, 0.37);
  font-size: 15px;
}

nav #menu li a:hover {
  color: white;
}

nav #menu li.active::before {
  width: 100%;
}

nav #menu li.active a {
  color: #fffffe;
  text-shadow: 0px 0px 10px #68593d;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes up {
  0% {
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes up {
  0% {
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframes left {
  0% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes left {
  0% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes scroll {
  0% {
    top: 0;
  }
  50% {
    top: 60px;
  }
  100% {
    top: 0;
  }
}

@keyframes scroll {
  0% {
    top: 0;
  }
  50% {
    top: 60px;
  }
  100% {
    top: 0;
  }
}

.fp-viewing-top .h1-t {
  -webkit-animation: up 2s;
          animation: up 2s;
}

.fp-viewing-top .buttons {
  -webkit-animation: up 2.5s;
          animation: up 2.5s;
}

.fp-viewing-top .logo {
  -webkit-animation: up 1.5s;
          animation: up 1.5s;
}

.fp-viewing-content .h1-c {
  -webkit-animation: up 2s;
          animation: up 2s;
}

.fp-viewing-content .content-swiper {
  -webkit-animation: up 2.5s;
          animation: up 2.5s;
}

.fp-viewing-content .character {
  -webkit-animation: left 2s;
          animation: left 2s;
}

.fp-viewing-rank .h1-r {
  -webkit-animation: up 2s;
          animation: up 2s;
}

.fp-viewing-rank .ranks {
  -webkit-animation: up 2.5s;
          animation: up 2.5s;
}

.fp-viewing-faq .h1-f {
  -webkit-animation: up 2s;
          animation: up 2s;
}

.fp-viewing-faq .faq-list {
  -webkit-animation: up 2.5s;
          animation: up 2.5s;
}

.fp-viewing nav {
  background-color: rgba(0, 0, 0, 0.8);
  border: none;
}

.fp-viewing-faq .faq-more a {
  -webkit-animation: up 2.5s;
          animation: up 2.5s;
}

.fp-viewing-join .h1-j {
  -webkit-animation: up 2s;
          animation: up 2s;
}

.fp-viewing-join .buttons {
  -webkit-animation: up 2.5s;
          animation: up 2.5s;
}

.fp-viewing-join .character {
  -webkit-animation: up 4s;
          animation: up 4s;
}

.bg {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  z-index: -1;
  top: 0;
  overflow: hidden;
}

.texture {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 1;
  top: 0;
  overflow: hidden;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.texture img {
  opacity: 0.3;
  -webkit-filter: contrast(120%);
          filter: contrast(120%);
}

@-webkit-keyframes opacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.tabs {
  text-align: center;
}

.tabs .tab-nav ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tabs .tab-nav li span {
  cursor: pointer;
}

.tabs .tab {
  display: none;
  -webkit-animation: opacity 1s;
          animation: opacity 1s;
}

.tabs .tab.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content {
  background: url(../images/bg/game_content_bg.jpg) top/cover no-repeat;
  position: relative;
}

.content .container {
  overflow-x: hidden;
  width: 100%;
}

.content .container h1 {
  margin-bottom: 40px;
}

.content .character {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 80px;
  right: 350px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  overflow: hidden;
}

.content .content-swiper {
  width: 850px;
  margin: 0 auto;
  height: 450px !important;
  scrollbar-width: none;
}

.content .content-swiper .swiper-wrapper {
  height: 450px !important;
}

.content .content-swiper .swiper-slide-active {
  opacity: 1 !important;
  -webkit-filter: grayscale(0%) !important;
          filter: grayscale(0%) !important;
}

.content .content-swiper .swiper-slide {
  -webkit-box-shadow: 0px 70px 60px rgba(0, 0, 0, 0.671);
          box-shadow: 0px 70px 60px rgba(0, 0, 0, 0.671);
  background-color: black;
  overflow: hidden;
  border: 1px solid #463c2a;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.content .content-swiper .swiper-slide .content-text {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0), black);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content .content-swiper .swiper-slide .content-text div {
  position: absolute;
  bottom: 50px;
  width: 100%;
  text-align: center;
}

.content .content-swiper .swiper-slide .content-text div h1 {
  margin-bottom: 10px;
}

.content .content-swiper .swiper-slide .video {
  width: 100%;
}

.join {
  background: url(../images/bg/download_bg.jpg) top/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.join .shadow {
  width: 100%;
  height: 40%;
  background-color: rgba(0, 0, 0, 0.603);
  position: absolute;
  z-index: -1;
  -webkit-filter: blur(70px);
          filter: blur(70px);
}

.join .character {
  position: absolute;
  bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-right: 50px;
  z-index: 0;
}

.rank {
  background: url(../images/bg/rank_bg.jpg) top/cover no-repeat;
}

.rank h1 {
  margin-bottom: 40px;
}

.rank .tabs {
  width: 100%;
}

.rank .tab-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}

.rank .tab-nav li:not(:last-child) {
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.rank .tab-nav li {
  color: rgba(255, 255, 255, 0.548);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rank .tab-nav li span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rank .tab-nav li span::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #887141;
  bottom: -10px;
  -webkit-transition: .5s;
  transition: .5s;
}

.rank .tab-nav li.active {
  color: white;
}

.rank .tab-nav li.active span::before {
  width: 100%;
}

.rank .tab {
  width: 100%;
  color: white;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 430px;
}

.rank .tab .top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  height: 100%;
  border: 1px solid rgba(82, 77, 73, 0.4);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 15, 12, 0.415)), to(rgba(20, 18, 15, 0.815)));
  background: linear-gradient(rgba(17, 15, 12, 0.415), rgba(20, 18, 15, 0.815));
  border-radius: 8px;
}

.rank .tab .top-list ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.rank .tab .top-list ul li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.rank .tab .top-list ul li {
  padding: 0px 30px 0px 30px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 13px;
}

.rank .tab .top-list ul li .number {
  color: gray;
}

.rank .tab .top-list ul li .name {
  width: 70%;
  text-align: left;
  color: gray;
}

.rank .tab .top-list ul li .level {
    display: flex;
    flex-direction: column;
}

.rank .tab .top-list ul li .level span.title {
  color: #68593d;
  letter-spacing: 0px;
}

.rank .tab .top-list ul li .level span span {
  color: rgba(255, 255, 255, 0.685);
}

.rank .tab .top {
  width: 19%;
  height: 100%;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.274)), to(rgba(17, 14, 10, 0.808)));
  background: linear-gradient(rgba(0, 0, 0, 0.274), rgba(17, 14, 10, 0.808));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.rank .tab .top p {
  color: white;
  font-size: 22px;
  margin-bottom: 10px;
}

.rank .tab .top span {
  color: #68593d;
}

.rank .tab .top span span {
  color: white;
}

.rank .tab .top img {
  width: 70px;
  margin-bottom: 40px;
}

.rank .tab .top1 {
  border: 1px solid #815a25;
}

.rank .tab .top2 {
  border: 1px solid #494949;
}

.rank .tab .top3 {
  border: 1px solid #72382e;
}

.rank .tab .top-list {
  width: 39%;
}

.buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 40px;
}

.buttons a {
  margin: 0px 15px 0px 15px;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
  overflow: visible;
}

.buttons .mobile {
  width: 280px;
  height: 65px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: black;
  border: 1px solid rgba(66, 66, 66, 0.767);
  color: white;
}

.buttons .mobile:hover {
  border: 1px solid #a8895e;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.buttons .mobile img {
  width: 150px;
}

.buttons .pc {
  width: 280px;
  height: 65px;
  background: linear-gradient(20deg, rgba(95, 69, 35, 0.87), rgba(153, 115, 69, 0.87));
  text-shadow: 0px 5px 7px rgba(3, 3, 3, 0.3);
  color: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0px 30px 0px 30px;
  text-transform: uppercase;
  border: 1px solid #584a36;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  text-shadow: 0px 0px 30px #faca8b;
}

.buttons .pc:hover {
  border: 1px solid #a8895e;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.buttons .pc span {
  position: relative;
  z-index: 2;
}

.buttons .pc::after {
  content: '';
  top: 0;
  height: 100%;
  background: url(https://wallpaperaccess.com/full/1187355.jpg) top/cover no-repeat;
  width: 100%;
  left: 0;
  position: absolute;
  opacity: 0.4;
  z-index: 1;
}

.buttons .pc::before {
  content: '';
  top: 0;
  height: 40%;
  background-color: #c5ac7e;
  width: 80%;
  left: 25px;
  position: absolute;
  opacity: 0.4;
  z-index: 1;
  -webkit-filter: blur(15px);
          filter: blur(15px);
}

.buttons .pc img {
  width: 30px;
  opacity: 0.9;
  -webkit-filter: contrast(150%);
          filter: contrast(150%);
}

.footer {
  background-color: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.footer .container {
  padding: 80px 0px 80px 0px;
}

.footer .footer-link {
  margin-bottom: 15px;
}

.footer .footer-link a {
  margin: 0px 15px 0px 15px;
  color: white;
}

.footer .footer-link a:hover {
  color: #b68f5b;
}

.footer p {
  color: rgba(255, 255, 255, 0.281);
  font-size: 12px;
}

.top {
  position: relative;
}

.top .scroll {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.top .scroll p {
  position: absolute;
  top: -30px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.226);
}

.top .scroll div {
  width: 2px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
}

.top .scroll div::before {
  content: '';
  width: 2px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: gray;
  -webkit-animation: scroll 1.8s infinite linear;
          animation: scroll 1.8s infinite linear;
}

.top .video {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.top .video video {
  opacity: 0.4;
}

.top .video .video-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.048)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0.048), black);
  z-index: 1;
}

.top .video .video-texture {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0.2;
  z-index: 2;
}

.top .logo {
  margin-bottom: 30px;
}

.top .logo img {
  width: 720px;
}

.top p {
  width: 80%;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.315);
}

.loading {
  position: fixed;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 18, 13, 0.95)), to(#1f1c14));
  background: linear-gradient(rgba(20, 18, 13, 0.95), #1f1c14);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 1001;
  -webkit-transition: .5s;
  transition: .5s;
}

.loading.scale {
  -webkit-transform: scale(3);
          transform: scale(3);
}

.loading .logo-load {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loading .logo-load img {
  -webkit-animation: scale 1.5s infinite linear;
          animation: scale 1.5s infinite linear;
  width: 300px;
}

.loading .circle {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.1;
}

.loading .circle img {
  -webkit-animation: rotate 7s infinite linear;
          animation: rotate 7s infinite linear;
  width: 500px;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .loading .circle img {
    width: 350px;
  }
  .container {
    width: 90%;
  }
  .social {
    display: none;
  }
  .join .character {
    display: none;
  }
  .rank .tab {
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .rank .tab .top {
    width: 100%;
    padding: 50px 0px 50px 0px;
    margin-bottom: 15px;
  }
  .rank .tab .top-list {
    width: 100%;
  }
  .rank .tab .top-list ul li {
    padding: 25px;
  }
  .content .content-swiper {
    width: 90%;
  }
  .content .content-swiper .swiper-slide div {
    padding: 0px 20px 0px 20px;
  }
  .content .content-swiper p {
    font-size: 12px;
  }
  h1 {
    font-size: 30px;
    line-height: 35px;
  }
  nav {
    background-color: rgba(0, 0, 0, 0.822);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    padding: 0px 8px 0px 8px;
  }
  nav #menu {
    display: none;
  }
  .top .logo img {
    width: 250px;
  }
  .buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .buttons .pc {
    display: none;
  }
  .buttons a:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .buttons a {
    margin: 0;
  }
  .fp-viewing-top .h1-t {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-top .buttons {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-top .logo {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-content .h1-c {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-content .content-swiper {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-content .character {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-rank .h1-r {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-rank .ranks {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-faq .h1-f {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-faq .faq-list {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-faq nav {
    background-color: rgba(0, 0, 0, 0.8);
    border: none;
  }
  .fp-viewing-faq .faq-more a {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-join .h1-j {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-join .buttons {
    -webkit-animation: none;
            animation: none;
  }
  .fp-viewing-join .character {
    -webkit-animation: none;
            animation: none;
  }
}

@media (min-width: 1921px) {
  .top .video video {
    width: 100%;
  }
  .top .video .video-texture img {
    width: 100%;
    height: 100%;
  }
}
/*# sourceMappingURL=main.css.map */