@charset "UTF-8";
/* 簡易リセットCSS */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input:focus {
  outline: none;
}

body {
  position: relative;
  min-width: 1500px;
  color: var(--color_text);
  font-size: 15px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-color: var(--color_bg);
  -webkit-text-size-adjust: 100%;
  overflow-y: hidden;
}

header {
  width: 100%;
  position: fixed;
  z-index: 100;
  height: 100px;
}

header nav {
  width: 100%;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/g_nav/nvbg.jpg);
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 2px solid #cea458;
}

header nav .global_pagination {
  position: relative;
  margin: 0 auto;
  width: 1218px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header nav .global_pagination .gp-bullet-active {
  background-position-y: -70px !important;
}

header nav .global_pagination span {
  width: 174px;
  height: 70px;
  margin: 0 0px 0 0px !important;
  opacity: 1;
  font-size: 0;
}

header nav .global_pagination span:nth-child(1) {
  background: url(../img/g_nav/nv.png) no-repeat 0 top;
}

header nav .global_pagination span:nth-child(2) {
  background: url(../img/g_nav/nv.png) no-repeat -153px top;
}

header nav .global_pagination span:nth-child(3) {
  background: url(../img/g_nav/nv.png) no-repeat -305px top;
}

header nav .global_pagination span:nth-child(4) {
  background: url(../img/g_nav/nv.png) no-repeat -457px top;
}

header nav .global_pagination span:nth-child(5) {
  background: url(../img/g_nav/nv.png) no-repeat -609px top;
}

header nav .global_pagination span:nth-child(6) {
  background: url(../img/g_nav/nv.png) no-repeat -761px top;
}

header nav .global_pagination span:nth-child(7) {
  background: url(../img/g_nav/nv.png) no-repeat -913px top;
}

header nav .global_pagination span:nth-child(8) {
  background: url(../img/g_nav/nv.png) no-repeat -1066px top;
}

header nav .nav_after {
  content: '';
  position: absolute;
  width: 174px;
  height: 70px;
  background: url(../img/g_nav/bar.png) center center;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header nav.hide {
  -webkit-transform: translate(0px, -70px);
          transform: translate(0px, -70px);
}

header nav.on {
  -webkit-transform: translate(0px, 0px) !important;
          transform: translate(0px, 0px) !important;
}

#foot_link {
  position: fixed;
  bottom: 0;
  z-index: 100;
  background: url(../img/foot_bg.jpg) repeat-x top left;
  height: 70px;
  width: 100%;
  padding: 15px 0 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#foot_link #fl_wrapper {
  margin: 0 auto;
  width: 1242px;
  overflow: hidden;
}

#foot_link #fl_wrapper > img:first-child {
  display: inline-block;
  margin-right: 10px;
}

#foot_link #fl_wrapper > img,
#foot_link #fl_wrapper input,
#foot_link #fl_wrapper ul {
  float: left;
}

#foot_link #fl_wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#foot_link #fl_wrapper ul li {
  height: 40px;
  margin: 0 0 0 10px;
}

#foot_link #fl_wrapper ul li img {
  height: 100%;
}

#foot_link #fl_wrapper #foot_regist_mail {
  background-color: #f0f0f0;
  color: black;
  height: 40px;
  width: 300px;
  padding: 3px;
  font-size: 24px;
  border: #606267 solid 2px;
  border-radius: 9px 0px 0px 9px;
}

#foot_link #fl_wrapper #foot_regist_mail:focus {
  background-color: #fff;
}

#foot_link #fl_wrapper input[type='submit'] {
  font-family: 'Noto Serif Japanese', serif, sans-serif;
  width: 72px;
  height: 40px;
  color: #fff;
  font-size: 0.9rem;
  background: #ae8c53;
  border-radius: 0px 9px 9px 0px;
  text-align: center;
  border-color: #d1be9e #865d2f #865d2f #865d2f;
  border-width: 2px 2px 2px 0px;
  border-style: solid;
  text-shadow: 1px 1px 1px #000000;
  -webkit-filter: drop-shadow();
          filter: drop-shadow();
}

.foot_hide {
  -webkit-transform: translate(0px, 70px);
          transform: translate(0px, 70px);
}

footer {
  font-family: 'Noto Serif Japanese', serif, sans-serif;
  background: #1a1929 url(../img/foot_bg.jpg) repeat-x top left;
  height: 120px;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 101;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}

footer .back_to_top {
  position: absolute;
  right: 100px;
  bottom: 35px;
  border: 1px solid #fff;
  padding: 10px 15px;
  border-radius: 100px;
}

footer .back_to_top:hover {
  color: #1a1929;
  background-color: #ffffff;
}

footer .company_info {
  padding: 10px;
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .company_info img {
  width: 186px;
  height: 69px;
}

footer .company_info div {
  margin: 0px 0px 0px 40px;
}

footer .company_info ul {
  margin-bottom: 0px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer .company_info ul li {
  margin: 0 5px;
  padding-left: 5px;
  border-left: 1px solid #fff;
}

footer .company_info ul li:first-child {
  border: none;
  padding-left: 0px;
  margin: 0 5px 0 0;
}

footer p {
  width: 100%;
  text-align: center;
  margin: 10px 0 0 0;
}

.footer_hide {
  -webkit-transform: translate(0px, 120px);
          transform: translate(0px, 120px);
}

#loading {
  width: 100vw;
  height: 100vh;
  background-color: #2d2c41;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.spinner {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.self-building-square-spinner,
.self-building-square-spinner * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.self-building-square-spinner {
  height: 40px;
  width: 40px;
  top: calc(-10px * 2 / 3);
}

.self-building-square-spinner .square {
  height: 10px;
  width: 10px;
  top: calc(-10px * 2 / 3);
  margin-right: calc(10px / 3);
  margin-top: calc(10px / 3);
  background: #ff1d5e;
  float: left;
  position: relative;
  opacity: 0;
  -webkit-animation: self-building-square-spinner 6s infinite;
          animation: self-building-square-spinner 6s infinite;
}

.self-building-square-spinner .square:nth-child(1) {
  -webkit-animation-delay: calc(300ms * 6);
          animation-delay: calc(300ms * 6);
}

.self-building-square-spinner .square:nth-child(2) {
  -webkit-animation-delay: calc(300ms * 7);
          animation-delay: calc(300ms * 7);
}

.self-building-square-spinner .square:nth-child(3) {
  -webkit-animation-delay: calc(300ms * 8);
          animation-delay: calc(300ms * 8);
}

.self-building-square-spinner .square:nth-child(4) {
  -webkit-animation-delay: calc(300ms * 3);
          animation-delay: calc(300ms * 3);
}

.self-building-square-spinner .square:nth-child(5) {
  -webkit-animation-delay: calc(300ms * 4);
          animation-delay: calc(300ms * 4);
}

.self-building-square-spinner .square:nth-child(6) {
  -webkit-animation-delay: calc(300ms * 5);
          animation-delay: calc(300ms * 5);
}

.self-building-square-spinner .square:nth-child(7) {
  -webkit-animation-delay: calc(300ms * 0);
          animation-delay: calc(300ms * 0);
}

.self-building-square-spinner .square:nth-child(8) {
  -webkit-animation-delay: calc(300ms * 1);
          animation-delay: calc(300ms * 1);
}

.self-building-square-spinner .square:nth-child(9) {
  -webkit-animation-delay: calc(300ms * 2);
          animation-delay: calc(300ms * 2);
}

.self-building-square-spinner .clear {
  clear: both;
}

@-webkit-keyframes self-building-square-spinner {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
    top: 0;
  }
  50.9% {
    opacity: 1;
    top: 0;
  }
  55.9% {
    opacity: 0;
    top: inherit;
  }
}

@keyframes self-building-square-spinner {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
    top: 0;
  }
  50.9% {
    opacity: 1;
    top: 0;
  }
  55.9% {
    opacity: 0;
    top: inherit;
  }
}

/* Google Fonts読み込み */
/* スライダー全体 */
.vertical-slider {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #2d2c41;
}

/* スライド */
.vertical-slider__slide {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 10rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  color: #fff;
}

/* SP時の文字サイズ調整 */
@media (max-width: 599px) {
  .vertical-slider__slide {
    font-size: 16vw;
  }
}

/* ナビゲーション */
.swiper-pagination-bullet {
  width: 200px;
  height: 200px;
  text-align: center;
  line-height: 200px;
  font-size: 0.12rem;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

#top {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: url(../img/top/bg1.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

#top #top_reg_area {
  position: absolute;
  bottom: 10%;
  left: 50%;
  margin-left: -612px;
}

#top #top_reg_area #pv {
  position: absolute;
  top: 125px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  margin: 0px 0 0 0;
  width: 125px;
  height: 130px;
}

#top #top_reg_area #pv:after {
  content: '';
  position: relative;
  top: -100%;
  display: block;
  background: url(../img/top/pv.png) no-repeat;
  width: 125px;
  height: 130px;
  -webkit-animation: identifier 2s infinite;
          animation: identifier 2s infinite;
}

@-webkit-keyframes identifier {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0.5;
  }
  75% {
    -webkit-transform: scale(1.5, 1.5);
            transform: scale(1.5, 1.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.5, 1.5);
            transform: scale(1.5, 1.5);
    opacity: 0;
  }
}

@keyframes identifier {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0.5;
  }
  75% {
    -webkit-transform: scale(1.5, 1.5);
            transform: scale(1.5, 1.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.5, 1.5);
            transform: scale(1.5, 1.5);
    opacity: 0;
  }
}

#top #top_reg_area #reg_copy {
  display: block;
  margin: 33% auto 0 auto;
}

#top #top_reg_area #regist_btn {
  width: 1224px;
  margin: 0 auto;
}

#top #top_reg_area #regist_btn > img,
#top #top_reg_area #regist_btn input,
#top #top_reg_area #regist_btn ul {
  float: left;
}

#top #top_reg_area #regist_btn #regist_mail {
  background-color: #f0f0f0;
  color: black;
  height: 68px;
  width: 400px;
  padding: 10px;
  font-size: 24px;
  border: #606267 solid 2px;
  border-radius: 11px 0px 0px 11px;
}

#top #top_reg_area #regist_btn #regist_mail:focus {
  background-color: #fff;
}

#top #top_reg_area #regist_btn #regist_mail {
  margin-left: 25px;
}

#top #top_reg_area #regist_btn #mail_send {
  font-family: 'Noto Serif Japanese', serif, sans-serif;
  width: 123px;
  height: 68px;
  font-size: 1.5rem;
  background: #ae8c53;
  border-radius: 0px 11px 11px 0px;
  text-align: center;
  border-color: #d1be9e #865d2f #865d2f #865d2f;
  border-width: 2px 2px 2px 0px;
  border-style: solid;
  text-shadow: 1px 1px 1px #000000;
  -webkit-filter: drop-shadow();
          filter: drop-shadow();
}

#top #top_reg_area #regist_btn #pf_link {
  margin: 10px 0 0 22px;
  width: 1050px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 74px;
  line-height: 74px;
}

#top #top_reg_area #regist_btn #pf_link li {
  height: 74px;
}

#top #top_reg_area #regist_btn #pf_link a {
  display: block;
  height: 74px;
}

#charactar {
  width: 100%;
  height: 100vh;
  background: url(../img/chara/bg_chara.jpg) no-repeat center center;
  background-size: cover;
}

#charactar .charactar-slider {
  margin-top: calc(((var(--vh, 1vh) * 100) - 684px) / 2 - 35px);
  height: 684px;
}

#charactar .charactar-slider .swiper-slide {
  width: 100%;
}

#charactar .charactar-slider .swiper-slide img {
  display: none;
}

#charactar .charactar-slider .swiper-slide .audio_btn {
  display: none;
  position: absolute;
  cursor: pointer;
  width: 64px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(400px, -192px);
          transform: translate(400px, -192px);
  background-image: url(../img/chara/voice_s.png);
}

#charactar .charactar-slider .swiper-slide .audio_btn img {
  display: block;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#charactar .charactar-slider .swiper-slide .audio_btn img:hover {
  opacity: 0;
}

#charactar .charactar-slider .charactar_1 {
  background: url(../img//chara/c1p.png) no-repeat center center;
}

#charactar .charactar-slider .charactar_2 {
  background: url(../img//chara/c2p.png) no-repeat center center;
}

#charactar .charactar-slider .charactar_3 {
  background: url(../img//chara/c3p.png) no-repeat center center;
}

#charactar .charactar-slider .charactar_4 {
  background: url(../img//chara/c4p.png) no-repeat center center;
}

#charactar .charactar-slider .charactar_5 {
  background: url(../img//chara/c5p.png) no-repeat center center;
}

#charactar .charactar-slider .charactar_6 {
  background: url(../img//chara/c6p.png) no-repeat center center;
}

#charactar .charactar-slider .charactar_7 {
  background: url(../img//chara/c7p.png) no-repeat center center;
}

#charactar .charactar-slider .charactar_8 {
  background: url(../img//chara/c8p.png) no-repeat center center;
}

#charactar .charactar-slider .prev1,
#charactar .charactar-slider .next1 {
  width: 94px !important;
  height: 154px !important;
  top: 50% !important;
  margin-top: -77px;
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5)) !important;
          filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5)) !important;
  position: absolute;
  z-index: 10;
}

#charactar .charactar-slider .prev1:after,
#charactar .charactar-slider .next1:after {
  content: '';
}

#charactar .charactar-slider .prev1 {
  background: url(../img/arrow_l.png) no-repeat !important;
  background-size: cover !important;
  left: 0% !important;
  margin-left: 50px;
}

#charactar .charactar-slider .next1 {
  background: url(../img/arrow_r.png) no-repeat !important;
  background-size: cover !important;
  right: 0%;
  margin-right: 50px;
}

#charactar .swiper-pagination-bullet {
  width: 200px;
  height: 200px;
  text-align: center;
  line-height: 200px;
  font-size: 0.12rem;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

#charactar .chara_pagination {
  width: 100%;
  height: 128px;
  bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#charactar .chara_pagination .swiper-pagination-bullet-active {
  background-position: 0 0px !important;
}

#charactar .chara_pagination span {
  width: 128px;
  height: 128px;
  margin: 0 10px 0 10px !important;
  opacity: 1;
  font-size: 0;
  background-size: cover !important;
}

#charactar .chara_pagination span:nth-child(1) {
  background: url(../img/chara/c1g.png) no-repeat center -128px;
}

#charactar .chara_pagination span:nth-child(2) {
  background: url(../img/chara/c2g.png) no-repeat center -128px;
}

#charactar .chara_pagination span:nth-child(3) {
  background: url(../img/chara/c3g.png) no-repeat center -128px;
}

#charactar .chara_pagination span:nth-child(4) {
  background: url(../img/chara/c4g.png) no-repeat center -128px;
}

#charactar .chara_pagination span:nth-child(5) {
  background: url(../img/chara/c5g.png) no-repeat center -128px;
}

#charactar .chara_pagination span:nth-child(6) {
  background: url(../img/chara/c6g.png) no-repeat center -128px;
}

#charactar .chara_pagination span:nth-child(7) {
  background: url(../img/chara/c7g.png) no-repeat center -128px;
}

#charactar .chara_pagination span:nth-child(8) {
  background: url(../img/chara/c8g.png) no-repeat center -128px;
}

#feature {
  width: 100%;
  height: 100vh;
  background: url(../img/fs/bg5.jpg) no-repeat center center;
  background-size: cover;
}

#feature .feature-slider {
  margin-top: calc((var(--vh, 1vh) * 100) / 2 - 275px);
  height: 550px;
}

#feature .feature-slider .swiper-slide {
  width: 100%;
}

#feature .feature-slider .swiper-slide img {
  display: block;
  height: 100%;
  margin: 0 auto;
}

#feature .feature-slider .fs-button-prev,
#feature .feature-slider .fs-button-next {
  width: 94px !important;
  height: 154px !important;
  top: 50% !important;
  margin-top: -77px;
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5)) !important;
          filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5)) !important;
  position: absolute;
  z-index: 10;
  cursor: pointer;
}

#feature .feature-slider .fs-button-prev:after,
#feature .feature-slider .fs-button-next:after {
  content: "";
}

#feature .feature-slider .fs-button-prev {
  background: url(../img/arrow_l.png) no-repeat !important;
  background-size: cover !important;
  left: 50% !important;
  margin-left: -600px;
}

#feature .feature-slider .fs-button-next {
  background: url(../img/arrow_r.png) no-repeat !important;
  background-size: cover !important;
  right: 50%;
  margin-right: -600px;
}

#spec {
  font-family: ‘Noto Sans Japanese’, serif;
  width: 100%;
  height: 100vh;
  background: url(../img/spec/bg7.jpg) no-repeat center center;
  background-size: cover;
}

#spec .spec_inner {
  width: 1024px;
  margin: 150px auto 100px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

#spec .spec_inner img {
  display: block;
}

#spec .spec_inner .spec_table {
  font-size: 16px;
  border-collapse: separate;
  border-spacing: 0 10px 0 10px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

#spec .spec_inner .spec_table th {
  border: 0px solid #fff;
  padding: 3px;
  width: 140px;
  text-align: center;
  margin-right: 3px;
  vertical-align: middle;
}

#spec .spec_inner .spec_table td {
  vertical-align: middle;
  padding-left: 1em;
}

#spec .spec_inner .spec_table td span {
  font-size: 70%;
}

#spec .caution {
  width: 980px;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #8b785e;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.4);
}

#spec .caution p {
  font-size: 18px;
  margin-bottom: 10px;
}

#spec .caution ul li {
  line-height: 20px;
  font-size: 14px;
}

#reward {
  width: 100%;
  height: 100vh;
  background: url(../img/reward/bg_reward.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

#reward .reward_img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#rt_event .follow {
  position: absolute;
  top: 5vh;
  right: 3%;
  margin-left: 170px;
}

#rt_event {
  width: 100%;
  height: 100vh;
  background: url(../img/rt_event/rt_bg.jpg) no-repeat center center;
  background-size: cover;
}

#rt_event .rt_event_img {
  display: block;
  width: 100%;
}

#rt_event .reward_copy {
  margin: -75px 0 0 0;
  display: block;
  width: 100%;
}


#news_area {
  width: 100%;
  height: 100vh;
  background: url(../img/news/news_bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

#news_area #banner {
  background: transparent;
  width: 592px;
  height: 212px;
  margin: 120px auto 30px auto;
}

#news_area #banner img {
  display: block;
  width: 100%;
}


#news_area #banner .banner-pagination {
  height: 12px !important;
  line-height: 12px;
  vertical-align: top;
  text-align: center;
}

#news_area #banner .banner-pagination .swiper-pagination-clickable,
#news_area #banner .banner-pagination .swiper-pagination-bullet {
  line-height: 12px;
  vertical-align: top;
  width: 12px !important;
  height: 12px !important;
  margin: 5px;
  opacity: 1 !important;
  background-color: #000;
}

#news_area #banner .banner-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}


#news_area #news_wrapper {
  width: 1124px;
  margin: 0 auto;
}

#news_area #news {
  overflow: hidden;
  background: url(../img/news/frame_n.png) no-repeat;
  background-size: cover;
  width: 720px;
  height: 387px;
  float: left;
}

#news_area #news .notice_tabs_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 27px 20px 0 20px;
}

#news_area #news .notice_tabs_list ul li {
  width: 106px;
  height: 31px;
  text-align: center;
  text-indent: -9999px;
  font-size: 14px;
}

#news_area #news .notice_tabs_list ul li:nth-child(1) {
  background: url(../img/news/new.png) no-repeat 0 0;
  background-size: cover;
}

#news_area #news .notice_tabs_list ul li:nth-child(1):hover, #news_area #news .notice_tabs_list ul li:nth-child(1).active {
  background-position: 0 -35px;
}

#news_area #news .notice_tabs_list ul li:nth-child(2) {
  background: url(../img/news/info.png) no-repeat 0 0;
  background-size: cover;
}

#news_area #news .notice_tabs_list ul li:nth-child(2):hover, #news_area #news .notice_tabs_list ul li:nth-child(2).active {
  background-position: 0 -35px;
}

#news_area #news .notice_tabs_list ul li:nth-child(3) {
  background: url(../img/news/event.png) no-repeat 0 0;
  background-size: cover;
}

#news_area #news .notice_tabs_list ul li:nth-child(3):hover, #news_area #news .notice_tabs_list ul li:nth-child(3).active {
  background-position: 0 -35px;
}

#news_area #news .notice_tabs_list ul li:nth-child(4) {
  background: url(../img/news/tips.png) no-repeat 0 0;
  background-size: cover;
}

#news_area #news .notice_tabs_list ul li:nth-child(4):hover, #news_area #news .notice_tabs_list ul li:nth-child(4).active {
  background-position: 0 -35px;
}

#news_area #news .notice_tabs_list ul li:nth-child(5) {
  background: url(../img/news/update.png) no-repeat 0 0;
  background-size: cover;
}

#news_area #news .notice_tabs_list ul li:nth-child(5):hover, #news_area #news .notice_tabs_list ul li:nth-child(5).active {
  background-position: 0 -35px;
}

#news_area #news .notice_tabs_list ul li:nth-child(6) {
  background: url(../img/news/maintenance.png) no-repeat 0 0;
  background-size: cover;
}

#news_area #news .notice_tabs_list ul li:nth-child(6):hover, #news_area #news .notice_tabs_list ul li:nth-child(6).active {
  background-position: 0 100%;
}

#news_area #news .tabs {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 5px 40px 10px 40px;
}

#news_area #news .tabs ul li ul {
  margin-bottom: 5px;
  height: 265px;
  overflow: hidden;
}

#news_area #news .tabs ul li ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 18px;
  font-size: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 5px 10px;
  border-bottom: 1px solid #fff;
}

#news_area #news .tabs ul li ul li .ic_type21 {
  background: #23ff00 url(../img/label_event.png) no-repeat;
  min-width: 50px;
  height: 15px;
  margin-right: 10px;
}

#news_area #news .tabs ul li ul li .ic_type20 {
  background: #ff0000 url(../img/label_news.png) no-repeat;
  min-width: 50px;
  height: 15px;
  margin-right: 10px;
}

#news_area #news .tabs ul li ul li .ic_type22 {
  background: #1100ff url(../img/label_update.png) no-repeat;
  min-width: 50px;
  height: 15px;
  margin-right: 10px;
}

#news_area #news .tabs ul li ul li .ic_type23 {
  background: #919191 url(../img/label_mainte.png) no-repeat;
  min-width: 50px;
  height: 15px;
  margin-right: 10px;
}

#news_area #news .tabs ul li ul li .ic_type26 {
  background: #919191 url(../img/label_tips.jpg) no-repeat;
  min-width: 50px;
  height: 15px;
  margin-right: 10px;
}

#news_area #news .tabs ul li ul li .t1 {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#news_area #news .tabs ul li ul li .t3 {
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
}

#news_area #news .tabs ul li ul li a {
  text-decoration: none;
  color: #fff;
}

#news_area #news .morebtn {
  text-align: right;
  height: 30px;
}

#news_area #news .morebtn a {
  display: inline-block;
  width: 130px;
  height: 30px;
  background: url(../img/news/btn_all.png);
  background-position: 0 0px;
}

#news_area #news .morebtn a:hover {
  background-position: 0 -30px;
}

#news_area .twitter {
  background: url(../img/news/frame_t.png) no-repeat;
  background-size: cover;
  width: 351px;
  height: 387px;
  padding: 30px;
  float: right;
}

#campaign {
  width: 100%;
  height: 100vh;
  background: url(../img/reward/bg_reward.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

#campaign .campaign_title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 120px;
  z-index: 10;
}

#campaign .cards {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  opacity: 0;
  -webkit-filter: drop-shadow(0px 20px 10px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 20px 10px rgba(0, 0, 0, 0.6));
}

#campaign .card_1 {
  margin: -302px 0 0 -600px;
}

#campaign .card_2 {
  margin: -302px 0 0 -300px;
}

#campaign .card_3 {
  margin: -302px 0 0 0;
}

#campaign .card_4 {
  margin: -302px 0 0 300px;
}

#campaign .card_anime1 {
  opacity: 1;
  top: 50%;
  left: 50%;
  margin: -302px 0 0 -600px;
  -webkit-animation: wobbling_x 0.8s ease-in-out infinite alternate,
 wobbling_y 1.1s ease-in-out infinite alternate;
          animation: wobbling_x 0.8s ease-in-out infinite alternate,
 wobbling_y 1.1s ease-in-out infinite alternate;
}

#campaign .card_anime2 {
  opacity: 1;
  top: 50%;
  left: 50%;
  margin: -302px 0 0 -300px;
  -webkit-animation: wobbling_x 1.1s ease-in-out infinite alternate,
 wobbling_y 1.8s ease-in-out infinite alternate;
          animation: wobbling_x 1.1s ease-in-out infinite alternate,
 wobbling_y 1.8s ease-in-out infinite alternate;
}

#campaign .card_anime3 {
  opacity: 1;
  top: 50%;
  left: 50%;
  margin: -302px 0 0 0;
  -webkit-animation: wobbling_x 0.6s ease-in-out infinite alternate,
 wobbling_y 1.3s ease-in-out infinite alternate;
          animation: wobbling_x 0.6s ease-in-out infinite alternate,
 wobbling_y 1.3s ease-in-out infinite alternate;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

#campaign .card_anime4 {
  opacity: 1;
  top: 50%;
  left: 50%;
  margin: -302px 0 0 300px;
  -webkit-animation: wobbling_x 1.2s ease-in-out infinite alternate,
 wobbling_y 0.7s ease-in-out infinite alternate;
          animation: wobbling_x 1.2s ease-in-out infinite alternate,
 wobbling_y 0.7s ease-in-out infinite alternate;
}

@-webkit-keyframes wobbling_x {
  0% {
    margin-top: -302px;
  }
  100% {
    margin-top: -306px;
  }
}

@keyframes wobbling_x {
  0% {
    margin-top: -302px;
  }
  100% {
    margin-top: -306px;
  }
}

@-webkit-keyframes wobbling_y {
  0% {
    -webkit-transform: translate(0px, 0);
            transform: translate(0px, 0);
  }
  100% {
    -webkit-transform: translate(4px, 0);
            transform: translate(4px, 0);
  }
}

@keyframes wobbling_y {
  0% {
    -webkit-transform: translate(0px, 0);
            transform: translate(0px, 0);
  }
  100% {
    -webkit-transform: translate(4px, 0);
            transform: translate(4px, 0);
  }
}
