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

ul {
  list-style: none outside !important;
  margin: 0;
  padding: 0;
}

input:focus {
  outline: none;
}

h1 {
  display: none;
}

body {
  position: relative;
  min-width: 1280px;
  color: var(--color_text);
  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;
  background-color: #1a1929;
}

.top_page:after {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  background-image: url(../img/frame.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  z-index: 2;
  pointer-events: none;
  background-size: cover;
  overflow: hidden;
  -webkit-animation: frame_fade 0.5s 1 forwards;
          animation: frame_fade 0.5s 1 forwards;
}

@-webkit-keyframes frame_fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes frame_fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
section {
  transition: 0.3s;
}

header {
  width: 100%;
  position: absolute;
  z-index: 100;
  width: 280px;
  height: 757px;
  background: url(../img/menu.png) no-repeat 0px 0px;
  background-size: contain;
  left: calc(25% - 184px);
  top: -120px;
  cursor: pointer;
  transition: 0.5s;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.75));
  transform: scale(0.8);
}

#header {
  width: 280px;
  height: 517px;
  /* 下矢印 */
  /* SPメニュー開閉ボタン*/
}
#header #menu_wrap {
  width: 280px;
  padding: 135px 0 0 0;
}
#header .menu {
  width: auto;
  position: relative;
  list-style: outside none;
  width: 230px;
  margin: 0 auto 0 auto;
  padding: 0;
}
#header .menu > li {
  width: 230px;
  height: 65px;
  line-height: 65px;
  margin: 0 0 0 0;
  text-indent: -2000%;
  font-size: 0.12rem;
  position: relative;
}
#header .menu > li a {
  position: relative;
  display: block;
  height: 100%;
  z-index: 2;
}
#header .menu > li.menu_title {
  display: none;
}
#header .menu .menu_top {
  display: none;
}
#header .menu .menu_news {
  background: url(../img/menu_text.png) 0 0 no-repeat;
}
#header .menu .menu_news:hover {
  background-position: -230px 0px;
}
#header .menu .menu_info {
  background: url(../img/menu_text.png) 0 -65px no-repeat;
}
#header .menu .menu_info:hover {
  background-position: -230px -65px;
}
#header .menu .menu_guide {
  background: url(../img/menu_text.png) 0 -130px no-repeat;
}
#header .menu .menu_guide:hover {
  background-position: -230px -130px;
}
#header .menu .menu_buy {
  background: url(../img/menu_text.png) 0 -195px no-repeat;
}
#header .menu .menu_buy:hover {
  background-position: -230px -195px;
}
#header .menu .menu_etc {
  background: url(../img/menu_text.png) 0 -260px no-repeat;
}
#header .menu .menu_etc:hover {
  background-position: -230px -260px;
}
#header .menu .menu_news:hover::after,
#header .menu .menu_info:hover::after,
#header .menu .menu_guide:hover::after,
#header .menu .menu_buy:hover::after,
#header .menu .menu_etc:hover::after {
  transition: 0.3s;
  opacity: 0;
}
#header .menu .menu_news:hover::after,
#header .menu .menu_info:hover::after,
#header .menu .menu_guide:hover::after,
#header .menu .menu_buy:hover::after,
#header .menu .menu_etc:hover::after {
  transition: 0.5s;
  opacity: 1;
}
#header .menu > li .menu > li a:hover {
  color: #999;
}
#header ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
#header ul.menu__second-level li {
  text-indent: 0;
  text-align: center;
  line-height: 65px;
  height: 65px;
}
#header ul.menu__second-level li a {
  color: #fff;
  padding: 0 20px;
  font-size: 18px;
}
#header ul.menu__second-level li a:hover {
  color: #000;
  background: #fff;
  padding: 0 20px;
}
#header .init-bottom:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 0 15px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}
#header .menu > li.menu__single {
  position: relative;
}
#header li.menu__single ul.menu__second-level {
  position: absolute;
  top: 0px;
  left: 0rem;
  width: 230px;
  background: #eeebe6;
  border: 10px solid #ff5841;
  border-radius: 10px;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}
#header li.menu__single ul.menu__second-level a {
  color: #000;
}
#header li.menu__single ul.menu__second-level a:hover {
  color: #ff5841;
  background: transparent;
}
#header li.menu__single:hover ul.menu__second-level {
  transition: all 0.2s ease;
  top: 0px;
  left: 230px;
  visibility: visible;
  opacity: 1;
}
#header .menu_open {
  display: none;
}

.global_pagination {
  position: fixed;
  right: 1%;
  top: 50%;
  color: #fff;
  font-size: 18px;
  width: 18px;
  transform: translate(0, -42px);
  filter: drop-shadow(1px 1px 1px rgb(0, 0, 0));
}

.global-pagination-bullet {
  cursor: pointer;
}

.gp-bullet-active {
  color: yellow;
}

.menu_hide {
  transform: translate(0px, -390px) scale(0.8);
}

.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.2);
}

.hide2 {
  opacity: 0;
}

.hide3 {
  opacity: 0;
}

.scale90 {
  transform: scale(0.8);
}

.on {
  transition: 1s;
  transform: translate(0px, 0px) !important;
}

.catch {
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
  transition: 0.3s;
}

.logo {
  pointer-events: none;
  position: fixed;
  transition: 0.3s;
  right: 2%;
  top: 50px;
  z-index: 10;
  max-width: 215px;
  width: clamp(143.3333333333px, 11.1979166667vw, 215px);
  aspect-ratio: 215/169;
}
.logo img {
  width: 100%;
}

.top_btn {
  transition: 1s;
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: 100;
  -webkit-animation: hidden1 1s 1 ease-out;
          animation: hidden1 1s 1 ease-out;
}
.top_btn #pv {
  bottom: 0px;
  left: 50%;
  transform: translate(-160%, -45px);
  transition: 0.5s;
}
.top_btn #pv:hover {
  transform: translate(-160%, -45px) scale(1.02);
}
@-webkit-keyframes hidden1 {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes hidden1 {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.top_btn #gamestart_link {
  max-width: 415px;
  width: 21.6145833333%;
  aspect-ratio: 415/335;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -40px);
  transition: 0.5s;
  -webkit-animation: btn_anime 3s 0s infinite alternate ease-out;
          animation: btn_anime 3s 0s infinite alternate ease-out;
}
.top_btn #gamestart_link:hover {
  transform: translate(-50%, -40px) scale(1.1);
}
.top_btn #gamestart_link img {
  width: 100%;
}
.top_btn .giftcode,
.top_btn .login_bonus,
.top_btn #pv {
  max-width: 386px;
  position: absolute;
  width: 20.1041666667%;
  aspect-ratio: 386/117;
}
.top_btn .giftcode img,
.top_btn .login_bonus img,
.top_btn #pv img {
  position: absolute;
  width: 100%;
}
.top_btn .giftcode {
  bottom: 0px;
  left: 50%;
  transition: 0.5s;
  transform: translate(60%, -175px);
}
.top_btn .giftcode:hover {
  transform: translate(60%, -175px) scale(1.02);
}
.top_btn .login_bonus {
  bottom: 0px;
  left: 50%;
  transition: 0.5s;
  transform: translate(60%, -45px);
}
.top_btn .login_bonus:hover {
  transform: translate(60%, -45px) scale(1.02);
}

footer {
  background: #1a1929 url(../img/foot_bg.jpg) repeat-x top left;
  height: 120px;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 101;
  transition: 0.3s;
  color: #fff;
}
footer .company_info {
  padding: 10px;
  position: relative;
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  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: flex;
  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 {
  transform: translate(0px, 120px);
}

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

/* スライド */
.vertical-slider__slide {
  max-height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  color: #fff;
  transition: 0.3s;
}
.vertical-slider__slide > section {
  position: relative;
  z-index: 10;
}

.vertical-slider__slide:nth-child(1) {
  background: url(../img/bg1.jpg) no-repeat center center;
}

.vertical-slider__slide:nth-child(2) {
  background: url(../img/bg2.jpg) no-repeat center center;
}

.vertical-slider__slide:nth-child(3) {
  background: url(../img/bg3.jpg) no-repeat center center;
}

.vertical-slider__slide:nth-child(4) {
  background: url(../img/bg4.jpg) no-repeat center center;
}

.vertical-slider__slide:nth-child(5) {
  background-image: url(../img/footer.png), url(../img/bg5.jpg);
  background-position: center -250px, center center;
  background-repeat: no-repeat;
  background-size: auto, cover;
}

#top {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-image: url(../img/sub_menu_bg.png), url(../img/header.png);
  background-repeat: no-repeat;
  background-position: center bottom, center center;
  background-size: auto, contain;
  position: relative;
}

.sp_header {
  display: none;
}

@-webkit-keyframes btn_anime {
  0% {
    bottom: 0px;
  }
  100% {
    bottom: 20px;
  }
}

@keyframes btn_anime {
  0% {
    bottom: 0px;
  }
  100% {
    bottom: 20px;
  }
}
#world {
  width: 100%;
  height: 100vh;
}
#world .world_img {
  display: flex;
  align-items: center;
  max-width: 1312px;
  width: min(68.3333333333vw, 1312px);
  aspect-ratio: 1312/1064;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
}
#world .world_img img {
  width: 80%;
  margin: 0 10%;
}
#world .w_more {
  display: block;
  width: min(3.59375vw, 69px);
  height: min(11.0416666667vw, 212px);
  position: absolute;
  left: 50%;
  top: calc(50% - 74px);
  z-index: 4;
  background-image: url(../img/more.png);
  background-size: contain;
  text-indent: -9999px;
  margin-left: -20.8333333333vw;
  transition: 0.5s;
}
#world .w_more:hover {
  transform: scale(1.2);
}

#chara {
  width: 100%;
  height: 100vh;
}
#chara .chara_img {
  display: flex;
  align-items: center;
  max-width: 1162px;
  width: min(60.5208333333vw, 1162px);
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
#chara .chara_img img {
  width: 80%;
  margin: 0 10%;
}
#chara .c_more {
  display: block;
  width: 3.59375vw;
  height: 11.0416666667vw;
  position: absolute;
  left: 50%;
  bottom: 100px;
  z-index: 4;
  background-image: url(../img/more.png);
  background-size: contain;
  text-indent: -9999px;
  margin-left: -20.8333333333vw;
  transition: 0.5s;
}
#chara .c_more:hover {
  transform: scale(1.2);
}

#spec {
  font-family: OpenSans;
  width: 100%;
  background-size: cover;
  text-align: center;
}
#spec .spec_inner {
  width: min(41.6666666667vw, 800px);
  margin: 50px auto 100px auto;
  display: flex;
  justify-content: space-evenly;
}
#spec .spec_inner img {
  display: block;
}
#spec .spec_inner .spec_table {
  width: 100%;
  font-size: clamp(12px, 0.9vw, 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;
  background-color: rgba(255, 255, 255, 0.25);
}
#spec .spec_inner .spec_table td {
  vertical-align: middle;
  padding-left: 1em;
  background-color: rgba(255, 255, 255, 0.25);
}
#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;
}

#news_area {
  width: 100%;
  height: 100vh;
  position: relative;
  font-family: OpenSans;
  display: flex;
  align-items: center;
}
#news_area #banner {
  background: transparent;
  max-width: 740px;
  width: 68.26%;
  aspect-ratio: 740/265;
  margin: 0px auto 1.55vw auto;
}
#news_area #banner img {
  display: block;
  width: 100%;
}
#news_area #banner .banner-pagination {
  height: 0.8vw !important;
  line-height: 0.8vw;
  vertical-align: top;
  text-align: center;
}
#news_area #banner .banner-pagination .swiper-pagination-clickable,
#news_area #banner .banner-pagination .swiper-pagination-bullet {
  line-height: 0.8vw;
  vertical-align: top;
  width: 0.8vw !important;
  height: 0.8vw !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 {
  background: url(../img/news_bg.png) no-repeat;
  background-size: cover;
  width: clamp(722px, 56.45%, 894px);
  aspect-ratio: 1084/802;
  margin: 0 auto 0 auto;
  overflow: hidden;
  padding-top: 6%;
}
#news_area #news {
  overflow: hidden;
  max-width: 745px;
  width: 68.26%;
  margin: 0 auto;
  top: calc(100px + 100vh);
}
#news_area #news .notice_tabs_list ul {
  display: flex;
  justify-content: space-evenly;
  padding: 10px 0;
}
#news_area #news .notice_tabs_list ul .active {
  transform: scale(1.2);
  filter: drop-shadow(2px 0 3px rgba(0, 0, 0, 0.5));
}
#news_area #news .notice_tabs_list ul li {
  width: 16.21%;
  max-width: 120px;
  aspect-ratio: 120/28;
  text-align: center;
  text-indent: -9999px;
  cursor: pointer;
  font-size: 1px;
}
#news_area #news .notice_tabs_list ul li:nth-child(1) {
  background: url(../img/label_notice.png) no-repeat 0 0;
  background-size: contain;
}
#news_area #news .notice_tabs_list ul li:nth-child(2) {
  background: url(../img/label_news.png) no-repeat 0 0;
  background-size: contain;
}
#news_area #news .notice_tabs_list ul li:nth-child(3) {
  background: url(../img/label_event.png) no-repeat 0 0;
  background-size: contain;
}
#news_area #news .notice_tabs_list ul li:nth-child(4) {
  background: url(../img/label_update.png) no-repeat 0 0;
  background-size: contain;
}
#news_area #news .notice_tabs_list ul li:nth-child(5) {
  background: url(../img/label_mainte.png) no-repeat 0 0;
  background-size: contain;
}
#news_area #news .tabs {
  position: relative;
  overflow: hidden;
  width: 100%;
}
#news_area #news .tabs > ul > li {
  display: none;
  margin-bottom: 50px;
}
#news_area #news .tabs > ul > li ul {
  margin-bottom: 5px;
  height: clamp(163px, 9.5vw, 220px);
  overflow: hidden;
}
#news_area #news .tabs > ul > li ul li {
  display: flex;
  font-size: clamp(12px, 0.9vw, 16px);
  vertical-align: middle;
  flex-direction: row;
  padding: 0.25vw 0.5vw;
  border-bottom: 1px solid #000;
  align-items: center;
}
#news_area #news .tabs > ul > li ul li .ic_type21 {
  background: #23ff00 url(../img/label_event.png) no-repeat;
  background-size: contain;
  min-width: 75px;
  height: 18px;
  margin-right: 10px;
}
#news_area #news .tabs > ul > li ul li .ic_type20 {
  background: #ff0000 url(../img/label_news.png) no-repeat;
  background-size: contain;
  min-width: 75px;
  height: 18px;
  margin-right: 10px;
}
#news_area #news .tabs > ul > li ul li .ic_type22 {
  background: #1100ff url(../img/label_update.png) no-repeat;
  background-size: contain;
  min-width: 75px;
  height: 18px;
  margin-right: 10px;
}
#news_area #news .tabs > ul > li ul li .ic_type23 {
  background: #919191 url(../img/label_mainte.png) no-repeat;
  background-size: contain;
  min-width: 75px;
  height: 18px;
  margin-right: 10px;
}
#news_area #news .tabs > ul > li ul li .ic_type26 {
  background: #919191 url(../img/label_tips.jpg) no-repeat;
  background-size: contain;
  min-width: 75px;
  height: 18px;
  margin-right: 10px;
}
#news_area #news .tabs > ul > li ul li .t1 {
  display: flex;
  flex: auto;
  overflow: hidden;
  align-items: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#news_area #news .tabs > ul > li ul li .t3 {
  color: #000;
  font-size: clamp(12px, 0.9vw, 16px);
  white-space: nowrap;
}
#news_area #news .tabs > ul > li ul li a {
  text-decoration: none;
  color: #000;
  vertical-align: middle;
}
#news_area #news .tabs > ul > li ul li a:hover {
  color: #f31e0e;
}
#news_area #news .morebtn {
  height: 30px;
}
#news_area #news .morebtn a {
  float: right;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  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;
}