@charset "UTF-8";
/* ==================================================
	タイトル
================================================== */
h2 {
  position: absolute;
  left: 50%;
  top: 0;
  height: 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transform: translate(-50%, 0);
  box-sizing: border-box; }
  h2 > span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0; }
    h2 > span::before, h2 > span::after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-position: center top;
      background-repeat: no-repeat;
      background-size: auto 100%; }
    h2 > span.en::before {
      animation: sttlGlitch 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s infinite; }
    h2 > span.en > span {
      animation: sttlGlitch 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) -0.1s infinite; }
    h2 > span > span {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-position: center top;
      background-repeat: no-repeat;
      background-size: auto 100%;
      text-indent: 110%;
      white-space: nowrap;
      overflow: hidden; }

@keyframes sttlGlitch {
  0% {
    transform: translate(0); }
  2% {
    transform: translate(-1px, 1px); }
  4% {
    transform: translate(-1px, -1px); }
  6% {
    transform: translate(1px, 1px); }
  8% {
    transform: translate(1px, -1px); }
  10% {
    transform: translate(-1px, 1px); }
  12% {
    transform: translate(-1px, -1px); }
  14% {
    transform: translate(1px, 1px); }
  16% {
    transform: translate(1px, -1px); }
  18% {
    transform: translate(-1px, 1px); }
  20% {
    transform: translate(-1px, -1px); }
  22% {
    transform: translate(1px, 1px); }
  24% {
    transform: translate(1px, -1px); }
  26% {
    transform: translate(-1px, 1px); }
  28% {
    transform: translate(-1px, -1px); }
  30% {
    transform: translate(1px, 1px); }
  32% {
    transform: translate(1px, -1px); }
  34% {
    transform: translate(0); }
  100% {
    transform: translate(0); } }
/* ==================================================
	動画再生ボタン
================================================== */
.bt-mv-play a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  outline: none; }
  .bt-mv-play a:hover span:first-child {
    opacity: 0; }
  .bt-mv-play a:hover span:last-child {
    opacity: 1; }
  .bt-mv-play a > span {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
    transform: translate(-50%, -50%); }
    .bt-mv-play a > span::before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-position: center top;
      background-repeat: no-repeat;
      background-size: 100%;
      animation: btPlayCircleRotate 15s linear 0s infinite; }
    .bt-mv-play a > span::after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-position: center top;
      background-repeat: no-repeat;
      background-size: 100%;
      animation: btPlayCircleRotate 20s linear 0s reverse infinite; }
    .bt-mv-play a > span span {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-position: center top;
      background-repeat: no-repeat;
      background-size: 100%;
      animation: btPlayCircleRotate 5s linear 0s infinite; }
    .bt-mv-play a > span:first-child {
      background-image: url(https://static.nexon.co.jp/counterside/index/top/bt_mv_play.png);
      opacity: 1;
      transition: opacity .2s linear 0s; }
      .bt-mv-play a > span:first-child::before {
        background-image: url(https://static.nexon.co.jp/counterside/index/top/bt_mv_play_circle01.png); }
      .bt-mv-play a > span:first-child::after {
        background-image: url(https://static.nexon.co.jp/counterside/index/top/bt_mv_play_circle02.png); }
      .bt-mv-play a > span:first-child span {
        background-image: url(https://static.nexon.co.jp/counterside/index/top/bt_mv_play_circle03.png); }
    .bt-mv-play a > span:last-child {
      background-image: url(https://static.nexon.co.jp/counterside/index/top/bt_mv_play_hv.png);
      opacity: 0;
      transition: opacity .2s linear 0s; }
      .bt-mv-play a > span:last-child::before {
        background-image: url(https://static.nexon.co.jp/counterside/index/top/bt_mv_play_circle01_hv.png); }
      .bt-mv-play a > span:last-child::after {
        background-image: url(https://static.nexon.co.jp/counterside/index/top/bt_mv_play_circle02_hv.png); }
      .bt-mv-play a > span:last-child span {
        background-image: url(https://static.nexon.co.jp/counterside/index/top/bt_mv_play_circle03_hv.png); }

@keyframes btPlayCircleRotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* *****************************************************************************
	ページトップボタン
***************************************************************************** */
.btn-page-top {
  position: fixed;
  left: 50%;
  bottom: 3.33vw;
  padding-top: 9.2vw;
  width: 10.1vw;
  height: 0;
  opacity: 0;
  transform: translate(36vw, 0);
  transition: opacity .2s linear 0s; }
  .btn-page-top.active {
    opacity: 1; }
  .btn-page-top a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://static.nexon.co.jp/counterside/common/btn_page_top.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto; }
    .btn-page-top a::before, .btn-page-top a::after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-image: url(https://static.nexon.co.jp/counterside/common/btn_page_top.png);
      background-repeat: no-repeat;
      background-size: 100% auto; }
    .btn-page-top a::before {
      background-position: center top;
      opacity: 1;
      transition: opacity .2s linear 0s; }
    .btn-page-top a::after {
      background-position: center bottom;
      opacity: 0;
      transition: opacity .2s linear 0s; }
    .btn-page-top a:hover::before {
      opacity: 0; }
    .btn-page-top a:hover::after {
      opacity: 1; }
    .btn-page-top a span {
      display: none; }

/* ==================================================
	メニュー
================================================== */
nav {
  position: fixed;
  left: 0;
  top: 0;
  padding-top: 16.8%;
  width: 100%;
  height: 0;
  background-color: #201e1e;
  z-index: 10000; }
  nav .logo {
    position: absolute;
    left: 4%;
    top: 0;
    margin-top: 4%;
    padding-top: 8.8%;
    width: 77.3333333333%;
    height: 0; }
    nav .logo img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }
  nav .nav-close .bt-nav-open {
    position: absolute;
    right: 4%;
    top: 0;
    margin-top: 4%;
    padding-top: 9.3333333333%;
    width: 9.3333333333%;
    height: 0; }
    nav .nav-close .bt-nav-open a {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-image: url(https://static.nexon.co.jp/counterside/common/sp/bt_menu.png);
      background-position: center top;
      background-repeat: no-repeat;
      background-size: contain; }
  nav .nav-open {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background-color: #000000; }
    nav .nav-open > ul {
      position: absolute;
      left: 0;
      top: 0;
      margin-top: 22.6666666667%;
      padding-top: 154.4%;
      width: 100%;
      height: 0; }
      nav .nav-open > ul li {
        position: absolute;
        left: 50%;
        top: 0;
        padding-top: 9.7333333333%;
        height: 0;
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: auto 2.66vw;
        transform: translate(-50%, 0); }
        nav .nav-open > ul li a {
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 4.53vw; }
          nav .nav-open > ul li a span {
            display: block;
            position: absolute;
            left: 0;
            width: 100%;
            height: 50%;
            background-position: center top;
            background-repeat: no-repeat;
            background-size: 100%;
            text-indent: 110%;
            white-space: nowrap;
            overflow: hidden;
            transform: skewX(0deg);
            transition: transform .1s linear 0s; }
            nav .nav-open > ul li a span:first-child {
              top: 0; }
            nav .nav-open > ul li a span:last-child {
              top: 50%; }
          nav .nav-open > ul li a::after {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            top: 2vw;
            width: 0%;
            height: 0.53vw;
            background-color: #c80000;
            transition: width .1s linear 0s; }
          nav .nav-open > ul li a:hover span {
            transform: skewX(20deg); }
          nav .nav-open > ul li a:hover::after {
            width: 100%; }
        nav .nav-open > ul li.top {
          width: 14.1333333333%;
          background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_top_jp.png); }
          nav .nav-open > ul li.top a span:first-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_top_t_w.png); }
          nav .nav-open > ul li.top a span:last-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_top_b_w.png); }
        nav .nav-open > ul li.aboutgame {
          margin-top: 15.7333333333%;
          width: 41.0666666667%;
          background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_aboutgame_jp.png); }
          nav .nav-open > ul li.aboutgame a span:first-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_aboutgame_t_w.png); }
          nav .nav-open > ul li.aboutgame a span:last-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_aboutgame_b_w.png); }
        nav .nav-open > ul li.news {
          margin-top: 31.2%;
          width: 18.4%;
          background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_news_jp.png); }
          nav .nav-open > ul li.news a span:first-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_news_t_w.png); }
          nav .nav-open > ul li.news a span:last-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_news_b_w.png); }
        nav .nav-open > ul li.gameguide {
          margin-top: 46.9333333333%;
          width: 37.7333333333%;
          background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_gameguide_jp.png); }
          nav .nav-open > ul li.gameguide a span:first-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_gameguide_t_w.png); }
          nav .nav-open > ul li.gameguide a span:last-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_gameguide_b_w.png); }
        nav .nav-open > ul li.character {
          margin-top: 62.8%;
          width: 36.6666666667%;
          background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_character_jp.png); }
          nav .nav-open > ul li.character a span:first-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_character_t_w.png); }
          nav .nav-open > ul li.character a span:last-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_character_b_w.png); }
        nav .nav-open > ul li.gallery {
          margin-top: 78.5333333333%;
          width: 32.4%;
          background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_gallery_jp.png); }
          nav .nav-open > ul li.gallery a span:first-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_gallery_t_w.png); }
          nav .nav-open > ul li.gallery a span:last-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_gallery_b_w.png); }
        nav .nav-open > ul li.support {
          margin-top: 94.2666666667%;
          width: 37.7333333333%;
          background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_support_jp.png); }
          nav .nav-open > ul li.support a span:first-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_support_t_w.png); }
          nav .nav-open > ul li.support a span:last-child {
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/menu_support_b_w.png); }
    nav .nav-open .bt-sns {
      position: absolute;
      left: 0;
      top: 0;
      margin-top: 142.4%;
      padding-top: 27.3333333333%;
      width: 100%;
      height: 0;
      background-image: url(https://static.nexon.co.jp/counterside/common/sp/text_followus.png);
      background-position: center top;
      background-repeat: no-repeat;
      background-size: 50.6666666667% auto; }
      nav .nav-open .bt-sns > div {
        position: absolute;
        top: 0;
        margin-top: 14%;
        padding-top: 13.3333333333%;
        width: 13.3333333333%;
        height: 0; }
        nav .nav-open .bt-sns > div img {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%; }
        nav .nav-open .bt-sns > div.tw {
          left: 24%; }
        nav .nav-open .bt-sns > div.yt {
          left: 44%; }
        nav .nav-open .bt-sns > div.line {
          left: 62.6666666667%; }
    nav .nav-open .bt-nav-close {
      position: absolute;
      right: 4%;
      top: 0;
      margin-top: 4%;
      padding-top: 9.3333333333%;
      width: 9.3333333333%;
      height: 0; }
      nav .nav-open .bt-nav-close a {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url(https://static.nexon.co.jp/counterside/common/bt_close.png);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100% 200%; }

html {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto; }

#all-wrapper {
  position: relative;
  width: 100%;
  background-image: url(https://static.nexon.co.jp/counterside/index/common/1216_iktd/sp/bg01.jpg), url(https://static.nexon.co.jp/counterside/index/common/1216_iktd/sp/bg02.jpg), url(https://static.nexon.co.jp/counterside/index/common/1216_iktd/sp/bg03.jpg), url(https://static.nexon.co.jp/counterside/index/common/1216_iktd/sp/bg04.jpg);
  background-position: center 177.0666666667vw, center 310.4vw, center 443.7333333333vw, center 577.0666666667vw;
  background-repeat: no-repeat;
  background-size: contain; }
  #all-wrapper section .btn-more {
    position: absolute;
    left: 50%;
    top: 0;
    padding-top: 10.1333333333%;
    width: 60%;
    height: 0;
    transform: translate(-50%, 0); }
    #all-wrapper section .btn-more a {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: hidden; }
      #all-wrapper section .btn-more a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(https://static.nexon.co.jp/counterside/webview/common/btn_more.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: 100% 200%; }
      #all-wrapper section .btn-more a span {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        text-indent: 110%;
        white-space: nowrap;
        overflow: hidden;
        transform: translate(0, -100%);
        transition: transform .2s ease 0s; }
        #all-wrapper section .btn-more a span::after {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-image: url(https://static.nexon.co.jp/counterside/webview/common/btn_more.png);
          background-position: center bottom;
          background-repeat: no-repeat;
          background-size: 100% 200%;
          transform: translate(0, 100%);
          transition: transform .2s ease 0s; }
      #all-wrapper section .btn-more a:hover span {
        transform: translate(0, 0); }
        #all-wrapper section .btn-more a:hover span::after {
          transform: translate(0, 0); }

/* *****************************************************************************
	loading
***************************************************************************** */
#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #201e1e;
  z-index: 100000; }
  #loading .loading-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 21.0666666667vw;
    width: 21.0666666667vw;
    height: 21.0666666667vw;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%); }
    #loading .loading-circle > div {
      position: relative;
      width: 21.0666666667vw;
      height: 21.0666666667vw;
      border-radius: 50%;
      background: #ffffff;
      background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
      background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
      background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
      background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
      background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
      animation: loadingAnimation 2s linear 0s infinite;
      transform: translateZ(0); }
      #loading .loading-circle > div::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50%;
        height: 50%;
        background: #ffffff;
        border-radius: 0 0 0 100%; }
    #loading .loading-circle::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      margin: auto;
      width: 15.7333333333vw;
      height: 15.7333333333vw;
      background-color: #201e1e;
      border-radius: 50%;
      transform: translate(-50%, -50%); }
@keyframes loadingAnimation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* ==================================================
	動画部分
================================================== */
#top-wrapper {
  position: relative;
  padding-top: 177.0666666667%;
  width: 100%;
  height: 0;
  background-color: #000000; }
  #top-wrapper .bg-mv {
    position: absolute;
    left: 0;
    top: 0;
    padding-top: 177.0666666667%;
    width: 100%;
    height: 0;
    overflow: hidden; }
    #top-wrapper .bg-mv video {
      position: absolute;
      left: 50%;
      top: 0;
      width: auto;
      min-height: 100%;
      transform: translate(-50%, 0); }
  #top-wrapper .container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
    #top-wrapper .container .main {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      background-image: url(https://static.nexon.co.jp/counterside/index/top/bg_mv_bd.gif);
      background-position: center top;
      background-repeat: repeat; }
      #top-wrapper .container .main h1 {
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 16%;
        padding-top: 13.3333333333%;
        width: 100%;
        height: 0;
        background-image: url(https://static.nexon.co.jp/counterside/index/top/sp/logo.png);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: contain;
        text-indent: 110%;
        white-space: nowrap;
        overflow: hidden; }
        #top-wrapper .container .main h1 > span {
          position: absolute;
          left: 56.5333333333%;
          top: 0;
          margin-top: 2%;
          padding-top: 6.1333333333%;
          width: 6.8%;
          height: 0;
          transform-style: preserve-3d;
          animation: logoReverse 8s ease 0s infinite; }
          #top-wrapper .container .main h1 > span span {
            display: none; }
          #top-wrapper .container .main h1 > span::before {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-image: url(https://static.nexon.co.jp/counterside/index/top/logo_reverse.png);
            background-position: center top;
            background-repeat: no-repeat;
            background-size: contain;
            transform: translateZ(1px); }
@keyframes logoReverse {
  0% {
    transform: rotateY(0deg); }
  40% {
    transform: rotateY(360deg); }
  100% {
    transform: rotateY(360deg); } }
      #top-wrapper .container .main .text-message {
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 25.6%;
        padding-top: 21.3333333333%;
        width: 100%;
        height: 0;
        background-image: url(https://static.nexon.co.jp/counterside/index/top/sp/text_message_base.png);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: contain;
        overflow: hidden; }
        #top-wrapper .container .main .text-message::before, #top-wrapper .container .main .text-message::after {
          content: '';
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-position: center top;
          background-repeat: no-repeat;
          background-size: contain; }
        #top-wrapper .container .main .text-message::before {
          background-image: url(https://static.nexon.co.jp/counterside/index/top/sp/text_message02.png);
          animation: textGlitch 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s infinite; }
        #top-wrapper .container .main .text-message::after {
          background-image: url(https://static.nexon.co.jp/counterside/index/top/sp/text_message01.png); }
        #top-wrapper .container .main .text-message span {
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-image: url(https://static.nexon.co.jp/counterside/index/top/sp/text_message03.png);
          background-position: center top;
          background-repeat: no-repeat;
          background-size: contain;
          text-indent: 110%;
          white-space: nowrap;
          overflow: hidden;
          animation: textGlitch 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) -0.1s infinite; }
@keyframes textGlitch {
  0% {
    transform: translate(0); }
  2% {
    transform: translate(-2px, 2px); }
  4% {
    transform: translate(-2px, -2px); }
  6% {
    transform: translate(2px, 2px); }
  8% {
    transform: translate(2px, -2px); }
  10% {
    transform: translate(-2px, 2px); }
  12% {
    transform: translate(-2px, -2px); }
  14% {
    transform: translate(2px, 2px); }
  16% {
    transform: translate(2px, -2px); }
  18% {
    transform: translate(-2px, 2px); }
  20% {
    transform: translate(-2px, -2px); }
  22% {
    transform: translate(2px, 2px); }
  24% {
    transform: translate(2px, -2px); }
  26% {
    transform: translate(-2px, 2px); }
  28% {
    transform: translate(-2px, -2px); }
  30% {
    transform: translate(2px, 2px); }
  32% {
    transform: translate(2px, -2px); }
  34% {
    transform: translate(0); }
  100% {
    transform: translate(0); } }
      #top-wrapper .container .main .bt-mv-play {
        position: absolute;
        left: 50%;
        top: 0;
        margin-top: 54.6666666667%;
        padding-top: 26.1333333333%;
        width: 26.1333333333%;
        height: 0;
        transform: translate(-50%, 0); }
      #top-wrapper .container .main .btn-about-game {
        position: absolute;
        left: 9.3333333333%;
        top: 0;
        margin-top: 112%;
        padding-top: 14.9333333333%;
        width: 81.3333333333%;
        height: 0;
        box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.3); }
        #top-wrapper .container .main .btn-about-game a {
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-image: url(https://static.nexon.co.jp/counterside/index/top/1014_g8sc/sp/btn_about_game.png);
          background-repeat: no-repeat;
          background-position: center top;
          background-size: 100% auto;
          text-indent: 110%;
          white-space: nowrap;
          overflow: hidden; }
          #top-wrapper .container .main .btn-about-game a::before, #top-wrapper .container .main .btn-about-game a::after {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-image: url(https://static.nexon.co.jp/counterside/index/top/1014_g8sc/sp/btn_about_game.png);
            background-repeat: no-repeat;
            background-size: 100% auto; }
          #top-wrapper .container .main .btn-about-game a::before {
            background-position: center top;
            opacity: 1;
            transition: opacity .2s linear 0s; }
          #top-wrapper .container .main .btn-about-game a::after {
            background-position: center bottom;
            opacity: 0;
            transition: opacity .2s linear 0s; }
          #top-wrapper .container .main .btn-about-game a:hover::before {
            opacity: 0; }
          #top-wrapper .container .main .btn-about-game a:hover::after {
            opacity: 1; }
      #top-wrapper .container .main .store-badge {
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 92.8%;
        width: 100%; }
        #top-wrapper .container .main .store-badge ul {
          position: relative;
          width: 100%;
          overflow: hidden; }
          #top-wrapper .container .main .store-badge ul li {
            float: left;
            position: relative;
            margin-left: 9.3333333333%;
            margin-right: 4%;
            padding-top: 14.1333333333%;
            width: 38.6666666667%;
            height: 0; }
            #top-wrapper .container .main .store-badge ul li:last-child {
              margin-left: 0;
              margin-right: 0; }
            #top-wrapper .container .main .store-badge ul li img {
              position: absolute;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%; }
      #top-wrapper .container .main .main-banner {
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 132.2666666667%;
        width: 100%;
        height: 39.6vw; }
        #top-wrapper .container .main .main-banner div.slick-slide {
          position: relative;
          height: 32.6vw; }
          #top-wrapper .container .main .main-banner div.slick-slide > div {
            position: relative;
            margin: 0 4vw;
            width: 92vw;
            height: 32.6vw; }
            #top-wrapper .container .main .main-banner div.slick-slide > div a img {
              width: 100%;
              height: 100%; }
        #top-wrapper .container .main .main-banner .slick-dots {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 100%;
          text-align: center; }
          #top-wrapper .container .main .main-banner .slick-dots li {
            display: inline-block;
            margin: 0 0.93vw;
            width: 3vw;
            height: 3vw;
            background-image: url(https://static.nexon.co.jp/counterside/index/top/1216_iktd/main_banner_dot.png);
            background-repeat: no-repeat;
            background-position: center top;
            background-size: 100% auto; }
            #top-wrapper .container .main .main-banner .slick-dots li button {
              text-indent: 110%;
              white-space: nowrap;
              overflow: hidden; }
            #top-wrapper .container .main .main-banner .slick-dots li.slick-active {
              background-position: center bottom; }

/* ==================================================
	お知らせ
================================================== */
#news-wrapper {
  position: relative;
  padding-top: 209.7333333333%;
  width: 100%;
  height: 0; }
  #news-wrapper h2 {
    margin-top: 13.6%;
    padding-top: 14.1333333333%;
    width: 33.2%; }
    #news-wrapper h2 > span.en {
      padding-top: 28.9156626506%; }
      #news-wrapper h2 > span.en::before {
        background-image: url(https://static.nexon.co.jp/counterside/index/news/sp/ttl_en02.png); }
      #news-wrapper h2 > span.en::after {
        background-image: url(https://static.nexon.co.jp/counterside/index/news/sp/ttl_en01.png); }
      #news-wrapper h2 > span.en > span {
        background-image: url(https://static.nexon.co.jp/counterside/index/news/sp/ttl_en03.png); }
    #news-wrapper h2 > span.jp {
      margin-top: 33.734939759%;
      padding-top: 8.8353413655%; }
      #news-wrapper h2 > span.jp::before {
        background-image: url(https://static.nexon.co.jp/counterside/index/news/sp/ttl_jp02.png); }
      #news-wrapper h2 > span.jp::after {
        background-image: url(https://static.nexon.co.jp/counterside/index/news/sp/ttl_jp01.png); }
      #news-wrapper h2 > span.jp > span {
        background-image: url(https://static.nexon.co.jp/counterside/index/news/sp/ttl_jp03.png); }
  #news-wrapper .list {
    position: absolute;
    left: 4%;
    top: 0;
    margin-top: 36.8%;
    width: 92%; }
    #news-wrapper .list li {
      position: relative;
      margin-bottom: 8vw; }
      #news-wrapper .list li a {
        position: relative;
        width: 100%;
        height: 100%;
        font-size: 0; }
    #news-wrapper .list p {
      position: relative;
      display: inline-block;
      margin: 0;
      padding-top: 20.2898550725%;
      width: 38.5507246377%;
      height: 0;
      overflow: hidden;
      vertical-align: top; }
      #news-wrapper .list p img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%; }
    #news-wrapper .list dl {
      display: inline-block;
      position: relative;
      margin: 0 0 0 4.347826087%;
      width: 57.1014492754%; }
      #news-wrapper .list dl.news dt::before {
        background-color: #f60000;
        background-image: url(https://static.nexon.co.jp/counterside/webview/common/icn_news.svg); }
      #news-wrapper .list dl.maintenance dt::before {
        background-color: #4b4b4b;
        background-image: url(https://static.nexon.co.jp/counterside/webview/common/icn_maintenance.svg); }
      #news-wrapper .list dl.update dt::before {
        background-color: #ed6400;
        background-image: url(https://static.nexon.co.jp/counterside/webview/common/icn_update.svg); }
      #news-wrapper .list dl.event dt::before {
        background-color: #05aa62;
        background-image: url(https://static.nexon.co.jp/counterside/webview/common/icn_event.svg); }
      #news-wrapper .list dl.developerletter dt::before {
        background-color: #05a6c0;
        background-image: url(https://static.nexon.co.jp/counterside/webview/common/icn_developer_letter.svg); }
      #news-wrapper .list dl.trouble dt::before {
        background-color: #132087;
        background-image: url(https://static.nexon.co.jp/counterside/webview/common/icn_trouble.svg); }
      #news-wrapper .list dl.new dt::after {
        display: block; }
    #news-wrapper .list dt {
      display: flex;
      align-items: center;
      padding-bottom: 3.768115942%;
      line-height: 1;
      font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Hiragino Sans", sans-serif;
      font-weight: normal;
      font-size: 2.8vw;
      letter-spacing: 0;
      color: #8c8c8c;
      overflow: visible; }
      #news-wrapper .list dt::before {
        content: '';
        display: block;
        position: relative;
        margin-right: 5.076142132%;
        padding-top: 8.6294416244%;
        width: 35.5329949239%;
        height: 0;
        background-repeat: no-repeat;
        background-position: center 0;
        background-size: contain;
        border-radius: 3px; }
      #news-wrapper .list dt::after {
        content: '';
        display: none;
        position: relative;
        margin: -1.0152284264% 0 0 2.0304568528%;
        padding-top: 5.5837563452%;
        width: 5.076142132%;
        height: 0;
        background-image: url(https://static.nexon.co.jp/counterside/webview/common/icn_new.png);
        background-repeat: no-repeat;
        background-position: center 0;
        background-size: contain; }
    #news-wrapper .list dd {
      font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Hiragino Sans", sans-serif;
      font-size: 2.9333333333vw;
      color: #363b40; }
  #news-wrapper .btn-more {
    margin-top: 197.0666666667%; }

/* ==================================================
	ムービー
================================================== */
#movie-wrapper {
  position: relative;
  padding-top: 120.4%;
  width: 100%;
  height: 0; }
  #movie-wrapper h2 {
    margin-top: 13.6%;
    padding-top: 14.6666666667%;
    width: 37.8666666667%; }
    #movie-wrapper h2 > span.en {
      padding-top: 24.6478873239%; }
      #movie-wrapper h2 > span.en::before {
        background-image: url(https://static.nexon.co.jp/counterside/index/movie/sp/ttl_en02.png); }
      #movie-wrapper h2 > span.en::after {
        background-image: url(https://static.nexon.co.jp/counterside/index/movie/sp/ttl_en01.png); }
      #movie-wrapper h2 > span.en > span {
        background-image: url(https://static.nexon.co.jp/counterside/index/movie/sp/ttl_en03.png); }
    #movie-wrapper h2 > span.jp {
      margin-top: 31.338028169%;
      padding-top: 7.3943661972%; }
      #movie-wrapper h2 > span.jp::before {
        background-image: url(https://static.nexon.co.jp/counterside/index/movie/sp/ttl_jp02.png); }
      #movie-wrapper h2 > span.jp::after {
        background-image: url(https://static.nexon.co.jp/counterside/index/movie/sp/ttl_jp01.png); }
      #movie-wrapper h2 > span.jp > span {
        background-image: url(https://static.nexon.co.jp/counterside/index/movie/sp/ttl_jp03.png); }
  #movie-wrapper ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: absolute;
    left: 4%;
    top: 0;
    margin-top: 37.3333333333%;
    width: 92%; }
    #movie-wrapper ul li {
      position: relative;
      margin-bottom: 2.8985507246%;
      padding-top: 41.1594202899%;
      width: 47.8260869565%;
      height: 0; }
      #movie-wrapper ul li .movie-thumb {
        position: absolute;
        left: 0;
        top: 0;
        padding-top: 57.8787878788%;
        width: 100%;
        height: 0; }
        #movie-wrapper ul li .movie-thumb .img {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%; }
          #movie-wrapper ul li .movie-thumb .img::after {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-image: url(https://static.nexon.co.jp/counterside/index/movie/bd_thumb.png);
            background-position: center top;
            background-repeat: no-repeat;
            background-size: 100%; }
          #movie-wrapper ul li .movie-thumb .img img {
            position: absolute;
            left: 0.66vw;
            top: 0.66vw;
            width: 96.9696969697%;
            height: auto; }
        #movie-wrapper ul li .movie-thumb .bt-mv-play {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%; }
          #movie-wrapper ul li .movie-thumb .bt-mv-play a > span {
            padding-top: 31.5151515152%;
            width: 31.5151515152%;
            height: 0; }
      #movie-wrapper ul li .movie-title {
        display: table;
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 63.6363636364%;
        width: 100%;
        height: 9.86vw;
        background-image: url(https://static.nexon.co.jp/counterside/index/movie/sp/bg_movie_title.png);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100% auto; }
        #movie-wrapper ul li .movie-title p {
          display: table-cell;
          width: 100%;
          height: 100%;
          text-align: center;
          vertical-align: middle;
          line-height: 1.3;
          font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Hiragino Sans", sans-serif;
          font-size: 2.6666666667vw;
          color: #ffffff; }

/* ==================================================
	ギャラリー
================================================== */
#gallery-wrapper {
  position: relative;
  padding-top: 190.6666666667%;
  width: 100%;
  height: 0; }
  #gallery-wrapper h2 {
    margin-top: 13.6%;
    padding-top: 14.9333333333%;
    width: 55.2%; }
    #gallery-wrapper h2 > span.en {
      padding-top: 16.9082125604%; }
      #gallery-wrapper h2 > span.en::before {
        background-image: url(https://static.nexon.co.jp/counterside/index/gallery/sp/ttl_en02.png); }
      #gallery-wrapper h2 > span.en::after {
        background-image: url(https://static.nexon.co.jp/counterside/index/gallery/sp/ttl_en01.png); }
      #gallery-wrapper h2 > span.en > span {
        background-image: url(https://static.nexon.co.jp/counterside/index/gallery/sp/ttl_en03.png); }
    #gallery-wrapper h2 > span.jp {
      margin-top: 21.7391304348%;
      padding-top: 5.3140096618%; }
      #gallery-wrapper h2 > span.jp::before {
        background-image: url(https://static.nexon.co.jp/counterside/index/gallery/sp/ttl_jp02.png); }
      #gallery-wrapper h2 > span.jp::after {
        background-image: url(https://static.nexon.co.jp/counterside/index/gallery/sp/ttl_jp01.png); }
      #gallery-wrapper h2 > span.jp > span {
        background-image: url(https://static.nexon.co.jp/counterside/index/gallery/sp/ttl_jp03.png); }
  #gallery-wrapper ul {
    position: absolute;
    left: 50%;
    top: 0;
    margin-top: 37.4666666667%;
    width: 92%;
    transform: translate(-50%, 0); }
    #gallery-wrapper ul li {
      position: absolute;
      top: 0;
      height: 0;
      overflow: hidden; }
      #gallery-wrapper ul li a {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: hidden; }
        #gallery-wrapper ul li a::after {
          content: '';
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-position: center top;
          background-repeat: no-repeat;
          background-size: cover;
          transform: scale(1);
          transition: transform .3s linear 0s; }
        #gallery-wrapper ul li a:hover::after {
          transform: scale(1.02); }
      #gallery-wrapper ul li.gallery01 {
        left: 0;
        padding-top: 42.6086956522%;
        width: 100%; }
        #gallery-wrapper ul li.gallery01 a::after {
          background-image: url(https://static.nexon.co.jp/counterside/index/gallery/0622_k2ne/sp/thumb01.jpg); }
      #gallery-wrapper ul li.gallery02 {
        left: 0;
        margin-top: 42.6086956522%;
        padding-top: 68.6956521739%;
        width: 50%; }
        #gallery-wrapper ul li.gallery02 a::after {
          background-image: url(https://static.nexon.co.jp/counterside/index/gallery/0622_k2ne/sp/thumb02.jpg); }
      #gallery-wrapper ul li.gallery03 {
        left: 50%;
        margin-top: 42.6086956522%;
        padding-top: 25.3623188406%;
        width: 50%; }
        #gallery-wrapper ul li.gallery03 a::after {
          background-image: url(https://static.nexon.co.jp/counterside/index/gallery/0622_k2ne/sp/thumb03.jpg); }
      #gallery-wrapper ul li.gallery04 {
        left: 50%;
        margin-top: 67.9710144928%;
        padding-top: 26.6666666667%;
        width: 50%; }
        #gallery-wrapper ul li.gallery04 a::after {
          background-image: url(https://static.nexon.co.jp/counterside/index/gallery/0622_k2ne/sp/thumb04.jpg); }
      #gallery-wrapper ul li.gallery05 {
        left: 0;
        margin-top: 111.3043478261%;
        padding-top: 23.768115942%;
        width: 50%; }
        #gallery-wrapper ul li.gallery05 a::after {
          background-image: url(https://static.nexon.co.jp/counterside/index/gallery/0622_k2ne/sp/thumb05.jpg); }
      #gallery-wrapper ul li.gallery06 {
        left: 50%;
        margin-top: 94.6376811594%;
        padding-top: 40.4347826087%;
        width: 50%; }
        #gallery-wrapper ul li.gallery06 a::after {
          background-image: url(https://static.nexon.co.jp/counterside/index/gallery/0622_k2ne/sp/thumb06.jpg); }
  #gallery-wrapper .btn-more {
    margin-top: 169.8666666667%; }

/* ==================================================
	メニュー
================================================== */
nav {
  padding-top: 0; }
  nav .logo {
    display: none; }

/* ==================================================
	フッター
================================================== */
footer {
  position: relative;
  width: 100%; }
  footer .information {
    position: relative;
    padding-top: 48.9333333333%;
    width: 100%;
    height: 0;
    background-color: #1b1b1e; }
    footer .information .bt-sns {
      position: absolute;
      left: 0;
      top: 0;
      margin-top: 6.6666666667%;
      padding-top: 20.4%;
      width: 100%;
      height: 0;
      background-image: url(https://static.nexon.co.jp/counterside/common/sp/text_followus.png);
      background-position: center top;
      background-repeat: no-repeat;
      background-size: 29.3333333333% auto; }
      footer .information .bt-sns > div {
        position: absolute;
        top: 0;
        margin-top: 11.6%;
        padding-top: 8.8%;
        width: 8.8%;
        height: 0; }
        footer .information .bt-sns > div img {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%; }
        footer .information .bt-sns > div.tw {
          left: 31.3333333333%; }
        footer .information .bt-sns > div.yt {
          left: 45.4666666667%; }
        footer .information .bt-sns > div.line {
          left: 59.6%; }
    footer .information .app-info {
      position: absolute;
      left: 50%;
      top: 0;
      margin-top: 32%;
      padding-top: 10%;
      width: 38.9333333333%;
      height: 0;
      transform: translate(-50%, 0); }
      footer .information .app-info dl {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%; }
        footer .information .app-info dl dt, footer .information .app-info dl dd {
          float: left;
          margin-bottom: 2.7397260274%;
          padding-top: 6.1643835616%;
          height: 0;
          background-repeat: no-repeat;
          background-size: auto 100%;
          text-indent: 110%;
          white-space: nowrap;
          overflow: hidden; }
        footer .information .app-info dl dt.name {
          width: 41.095890411%;
          background-image: url(https://static.nexon.co.jp/counterside/common/sp/term_app_name.png);
          background-position: right top; }
          footer .information .app-info dl dt.name + dd {
            width: 58.904109589%;
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/discription_app_name.png);
            background-position: left top; }
        footer .information .app-info dl dt.category {
          width: 41.095890411%;
          background-image: url(https://static.nexon.co.jp/counterside/common/sp/term_app_category.png);
          background-position: right top; }
          footer .information .app-info dl dt.category + dd {
            width: 58.904109589%;
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/discription_app_category.png);
            background-position: left top; }
        footer .information .app-info dl dt.os {
          width: 28.0821917808%;
          background-image: url(https://static.nexon.co.jp/counterside/common/sp/term_app_os.png);
          background-position: right top; }
          footer .information .app-info dl dt.os + dd {
            width: 71.9178082192%;
            background-image: url(https://static.nexon.co.jp/counterside/common/sp/discription_app_os.png);
            background-position: left top; }
  footer .copyright {
    position: relative;
    padding-top: 37.2%;
    width: 100%;
    height: 0;
    background-color: #ffffff;
    box-sizing: border-box; }
    footer .copyright ul {
      position: absolute;
      left: 0;
      top: 0;
      margin-top: 3.7333333333%;
      width: 100%;
      text-align: center;
      font-size: 0; }
      footer .copyright ul li {
        display: inline-block;
        position: relative;
        padding: 0 0.9333333333%;
        line-height: 1.5;
        font-family: 'メイリオ', Meiryo,YuGothic, 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
        font-size: 2.4vw; }
        footer .copyright ul li::after {
          content: '';
          position: absolute;
          right: 0;
          top: 50%;
          width: 1px;
          height: 60%;
          background-color: #aaaaaa;
          transform: translate(0, -50%); }
        footer .copyright ul li:nth-child(4)::after, footer .copyright ul li:last-child::after {
          display: none; }
        footer .copyright ul li a {
          text-decoration: underline;
          color: #000000; }
          footer .copyright ul li a:hover {
            text-decoration: none; }
    footer .copyright p {
      position: absolute;
      top: 0;
      margin-top: 14.6666666667%;
      width: 100%;
      line-height: 1.8;
      font-family: 'メイリオ', Meiryo,YuGothic, 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
      font-size: 2.1333333333vw;
      text-align: center; }
    footer .copyright .logo {
      position: absolute;
      left: 50%;
      top: 0;
      margin-top: 26.4%;
      padding-top: 5.4666666667%;
      width: 16%;
      height: 0;
      background-image: url(https://static.nexon.co.jp/counterside/common/logo_footer_nexon.png), url(https://static.nexon.co.jp/counterside/common/logo_footer_studiobsid.png);
      background-position: left center, right center;
      background-repeat: no-repeat;
      background-size: auto 100%;
      text-indent: 110%;
      white-space: nowrap;
      overflow: hidden;
      transform: translate(-50%, 0); }

/*ColorBox///////////////////////////////////////////////////////////////*/
/*
ColorBox Core Style:
The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 300000;
  overflow: visible;
  outline: none; }

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%; }

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left; }

#cboxContent {
  position: relative; }

#cboxLoadedContent {
  overflow: auto; }

#cboxTitle {
  display: none; }

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer; }

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block; }

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0; }

/* 
User Style:
Change the following styles to modify the appearance of ColorBox.  They are
ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background-color: rgba(0, 0, 0, 0.8); }

.cboxIframe {
  background: #fff; }

#cboxError {
  padding: 50px;
  border: 1px solid #ccc; }

#cboxTitle {
  display: none; }

#cboxCurrent {
  display: none; }

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff; }

#cboxLoadingOverlay {
  background-color: rgba(0, 0, 0, 0.8); }

#cboxLoadingGraphic {
  background: url(https://static.nexon.co.jp/counterside/common/loading.gif) no-repeat center center; }

#cboxClose {
  display: block;
  position: absolute;
  top: 4vw;
  left: auto;
  right: 4vw;
  width: 9.33vw;
  height: 9.33vw;
  background-image: url(https://static.nexon.co.jp/counterside/common/bt_close.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 200%;
  border: none;
  text-indent: -9999px;
  outline: none;
  overflow: hidden; }

/*ColorBox///////////////////////////////////////////////////////////////*/
.inline-modal {
  display: none; }

#cboxLoadedContent img {
  width: 100% !important;
  height: auto !important; }

.modal-movie #cboxClose {
  top: -14.6666666667vw;
  right: 0; }

.modal-gallery #cboxClose {
  top: -14.6666666667vw;
  left: auto;
  right: 0; }
