@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=New+Tegomin&family=Noto+Sans+JP:wght@300;500;700&family=Shippori+Mincho:wght@500;600&display=swap");
/*変数(ブレイクポイント)設定(必要に応じて数値を変更)*/
/*------------------------------------------------------------------------------*/
/* 全体設定 */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, table, th, td {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  list-style-type: none;
  -webkit-text-size-adjust: 100%;
  border: none; }

img, a img {
  border: none;
  vertical-align: text-bottom;
  -ms-interpolation-mode: bicubic;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  image-rendering: auto;
  backface-visibility: hidden; }

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  border: none; }

/*画像リンク関連*/
a:active, a:focus {
  outline: none;
  border: none; }

a img {
  border: none;
  outline: none; }

img {
  padding: 0px;
  margin: 0px;
  border: none;
  outline: none; }

/*=====================================================================================================================*/
/*ボディー全体設定*/
html {
  overflow: auto; }

html, body {
  width: 100%;
  scroll-behavior: smooth; }

body {
  background: #000;
  background-size: cover;
  outline: none;
  min-width: 100%;
  font-family: 'Shippori Mincho', serif;
  overflow: hidden; }
  @media screen and (max-width: 1024px) {
    body {
      background: #000; } }

area {
  border: none;
  outline: none; }

a.modal {
  outline: none;
  border: none; }

a {
  text-decoration: none;
  outline: none;
  border: none; }

input[type="text"]:focus {
  outline: 0;
  border-color: orange; }

@media screen and (max-width: 1024px) {
  .pc {
    display: none; } }

.sp {
  display: none; }
  @media screen and (max-width: 1024px) {
    .sp {
      display: block; } }

/*フォント設定*/
.red {
  color: #FF0000; }

.redB {
  color: #FF0000;
  font-weight: bold; }

.blue {
  color: #0000FF; }

.blueB {
  color: #0000FF;
  font-weight: bold; }

.yellow {
  color: #FFB730; }

.yellowB {
  color: #FFB730;
  font-weight: bold; }

/*=====================================================================================================================*/
/*ヘッダー(一番上の奴)設定*/
header {
  width: 100vw;
  position: relative;
  top: 0;
  z-index: 990;
  display: none; }
  @media screen and (max-width: 1024px) {
    header {
      display: block; } }

/*=====================================================================================================================*/
/*折り畳みSPメニュー*/
/*=====================================================================================================================*/
/*折り畳みSPメニュー*/
#nav-toggle {
  display: none;
  position: fixed;
  right: 12px;
  top: 5px;
  width: calc(80 / 1024 * 100vw);
  height: calc(100vw / 1024 * 80 );
  cursor: pointer;
  z-index: 100; }
  @media screen and (max-width: 1024px) {
    #nav-toggle {
      display: block; } }

#nav-toggle div {
  position: relative; }

#nav-toggle span {
  display: block;
  position: absolute;
  height: calc(100vw / 1024 * 10);
  width: 100%;
  border-radius: 0px;
  background: #35b3f7;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out; }

#nav-toggle span:nth-child(1) {
  top: calc(100vw / 1024 * 0); }

#nav-toggle span:nth-child(2) {
  top: calc(100vw / 1024 * 20); }

#nav-toggle span:nth-child(3) {
  top: calc(100vw / 1024 * 40); }

.menu {
  position: fixed;
  /* 開いてないときは画面外に配置 */
  top: -1200px;
  left: 0;
  right: auto;
  background: rgba(0, 0, 0, 0.95);
  width: 100%;
  text-align: center;
  padding: 0px 0;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  transition: .5s ease-in-out; }
  @media screen and (max-width: 1024px) {
    .menu img {
      display: block;
      max-width: 60%;
      margin: 0 auto; } }

.menu ul {
  position: static;
  right: 0;
  top: 0; }

.menu ul li {
  float: none;
  position: static;
  font-size: 25px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.74); }
  @media screen and (max-width: 640px) {
    .menu ul li {
      font-size: 18px; } }

.menu ul li:last-child {
  border-bottom: none; }

.menu ul li a {
  width: 100%;
  display: block;
  color: #fff;
  padding: 2vh 0; }

/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span {
  background: #FFF; }

.open #nav-toggle span:nth-child(1) {
  top: calc(100vw / 1024 * 35);
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg); }

.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%; }

.open #nav-toggle span:nth-child(3) {
  top: calc(100vw / 1024 * 35);
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg); }

/* #global-nav スライドアニメーション */
.open .menu {
  /* #global-nav top + #mobile-head height */
  -moz-transform: translateY(1200px);
  -webkit-transform: translateY(1200px);
  transform: translateY(1200px); }

.pchd {
  width: 100vw;
  max-width: 100%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 16%, rgba(0, 0, 0, 0.62) 55%, rgba(0, 0, 0, 0) 98%);
  padding: 8px 10px;
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  height: calc(100vw / 1920 * 185); }
  .pchd ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10vw;
    margin-bottom: 1%;
    height: 80px; }
    .pchd ul li {
      margin: 0 1.5em 0 0;
      transition: .3s;
      font-size: calc(18 /1920 * 100vw); }
      .pchd ul li a {
        color: #FFF; }
    .pchd ul li:hover {
      opacity: .5; }
  @media screen and (max-width: 1024px) {
    .pchd {
      width: 100%;
      position: absolute;
      overflow: hidden;
      padding: 0;
      top: 0;
      background: rgba(0, 0, 0, 0);
      height: calc(100vw / 1024 * 65);
      z-index: 800; }
      .pchd ul {
        display: none; } }
  @media screen and (max-width: 640px) {
    .pchd {
      min-height: 60px; } }

.hd_img {
  position: relative;
  z-index: 10;
  top: calc(100vw / 1920 * 14);
  height: calc(100vw / 1920 *50); }
  @media screen and (max-width: 1024px) {
    .hd_img {
      top: calc(100vw / 1024 * 17);
      height: calc(100vw / 1024 * 40); } }
  @media screen and (max-width: 640px) {
    .hd_img {
      top: 5%;
      min-height: 25px; } }

.hd_dlbtn {
  margin: auto;
  height: calc(100vw / 1920 * 50); }
  @media screen and (max-width: 1024px) {
    .hd_dlbtn {
      display: none; } }

.hd_dlbtn2 {
  margin-right: calc(50 / 1920 * 100vw);
  height: calc(100vw / 1920 * 50); }
  @media screen and (max-width: 1024px) {
    .hd_dlbtn2 {
      display: none; } }

.left_pcbtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(100vw / 1920 * 66);
  margin-right: 3vw; }

.lg_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  margin-left: 3vw;
  height: 100%; }
  .lg_btn div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: calc(80 / 1920 * 100vw);
    max-width: 80px;
    border-radius: calc(5 / 1920*100vw);
    background: #746533;
    color: #FFF; }
  .lg_btn a {
    height: 40px; }
    .lg_btn a div {
      width: calc(80 / 1920 * 100vw);
      max-width: 80px;
      border-radius: calc(5 / 1920*100vw);
      background: #FFF;
      color: #360203; }
  @media screen and (max-width: 1280px) {
    .lg_btn {
      color: #FFF; }
      .lg_btn div {
        width: 40px; }
      .lg_btn a div {
        width: 40px; } }
  @media screen and (max-width: 1024px) {
    .lg_btn {
      display: none; } }

.lg_btnsp {
  border-top: #fff 1px dotted;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #FFF;
  margin: 0 auto;
  text-align: center;
  padding: 3vw 0; }
  .lg_btnsp a {
    color: #FFC64B; }

/*SP折り畳みメニュー終了==================================================================================================*/
/*=====================================================================================================================*/
/*PCメヌー--------------------------------------------------------------------------------------------------------------*/
.menu_dl img {
  height: calc(100vw / 1920 * 80);
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 5%;
  transition: .2s; }
.menu_dl img:hover {
  opacity: .8;
  transform: scale(0.98); }

.t_sale {
  position: fixed;
  z-index: 100;
  margin: auto;
  bottom: 0;
  width: 0;
  display: none; }
  .t_sale img {
    width: 0; }
  @media screen and (max-width: 1024px) {
    .t_sale {
      width: 70%;
      margin: auto;
      bottom: calc(100vw / 1024 * 20);
      left: 0;
      right: 0; }
      .t_sale img {
        display: block;
        width: 100%;
        margin: 0 auto; } }
  @media screen and (max-width: 800px) {
    .t_sale {
      width: 90%;
      margin: auto;
      bottom: calc(100vw / 1024 * 10);
      left: 0;
      right: 0; }
      .t_sale img {
        width: 100%; } }
  @media screen and (max-width: 640px) {
    .t_sale {
      width: 90%;
      margin: auto;
      bottom: calc(100vw / 1024 * 20);
      left: 0;
      right: 0; }
      .t_sale picture img {
        display: block;
        width: 100%;
        margin: 0 auto; } }

.t_sale2 {
  position: fixed;
  z-index: 100;
  margin: auto;
  bottom: 0;
  width: 0;
  display: none; }
  .t_sale2 img {
    width: 0; }
  @media screen and (max-width: 1024px) {
    .t_sale2 {
      width: 70%;
      margin: auto;
      bottom: calc(100vw / 1024 * 100);
      left: 0;
      right: 0; }
      .t_sale2 img {
        display: block;
        width: 100%;
        margin: 0 auto; } }
  @media screen and (max-width: 800px) {
    .t_sale2 {
      width: 90%;
      margin: auto;
      bottom: calc(100vw / 1024 * 110);
      left: 0;
      right: 0; }
      .t_sale2 img {
        width: 100%; } }
  @media screen and (max-width: 640px) {
    .t_sale2 {
      width: 90%;
      margin: auto;
      bottom: calc(100vw / 1024 * 130);
      left: 0;
      right: 0; }
      .t_sale2 picture img {
        display: block;
        width: 100%;
        margin: 0 auto; } }

#story, #system, #characters, #keywords {
  position: relative;
  top: -80px; }
  @media screen and (max-width: 1024px) {
    #story, #system, #characters, #keywords {
      top: 0; } }

/*=====================================================================================================================*/
/*TOPメイン画像関連（パーツ増やしたり減らしたり）================================================================================*/
.main_top {
  width: 100vw;
  height: auto;
  background: url("../img/main_back.webp") no-repeat top center;
  background-size: cover;
  position: relative; }
  @media screen and (max-width: 1024px) {
    .main_top {
      width: 100vw;
      margin: 0 auto;
      position: relative; } }

.main_con {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 100vh; }

.t_hero1 {
  height: calc(100vw / 1920 * 1180);
  position: absolute;
  margin: auto;
  top: 2%;
  left: 0;
  right: 0;
  z-index: 1; }
  @media screen and (max-width: 1024px) {
    .t_hero1 {
      height: calc(100vw / 1024 * 1300);
      right: auto;
      left: -31%; } }

.t_logo {
  height: calc(100vw / 1920 * 420);
  position: absolute;
  margin: auto;
  top: calc(100vw /1920 * 350);
  right: 0;
  left: 0;
  z-index: 1; }
  @media screen and (max-width: 1024px) {
    .t_logo {
      height: calc(100vw / 1024 * 269);
      top: auto;
      bottom: 45%;
      right: 3%; } }
  @media screen and (max-width: 640px) {
    .t_logo {
      width: 80%;
      height: auto;
      top: auto;
      bottom: 55%;
      right: 3%; } }

.release {
  position: absolute;
  margin: auto;
  bottom: calc(100vw / 1024 * 80);
  width: calc(180 / 1920 * 100vw);
  max-width: 250px;
  min-width: 180px;
  right: 0;
  left: 0;
  z-index: 2; }
  @media screen and (max-width: 1024px) {
    .release {
      width: calc(180 / 1024 * 100vw);
      top: auto;
      bottom: 35%;
      right: -0%; } }
  @media screen and (max-width: 640px) {
    .release {
      width: calc(180 / 1024 * 100vw);
      top: auto;
      bottom: 40%;
      right: -0%; } }
  @media screen and (max-width: 420px) {
    .release {
      bottom: 50%; } }

.pc_pv {
  height: calc(100vw / 1920 * 450);
  min-height: 150px;
  position: absolute;
  margin: auto;
  bottom: calc(100vw / 1920 * -45);
  right: calc(150 / 1920 * 100vw);
  z-index: 2;
  transition: .3s; }
  .pc_pv:hover {
    transform: scale(1.08); }
  @media screen and (max-width: 1024px) {
    .pc_pv {
      height: calc(100vw / 1024 * 500);
      left: 0;
      right: 0;
      bottom: calc(100vw / 1024 * 60); } }
  @media screen and (max-width: 640px) {
    .pc_pv {
      height: calc(100vw / 1024 * 377);
      left: 0;
      right: 0;
      bottom: calc(100vw / 1024 * 300); } }
  @media screen and (max-width: 420px) {
    .pc_pv {
      height: calc(100vw / 1024 * 600);
      bottom: calc(100vw / 1024 * 350); } }

.scroll_con {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0%;
  width: calc(146 / 1920 * 100vw);
  height: calc(100vw / 1920 * 100);
  max-width: 146px;
  z-index: 20; }
  @media screen and (max-width: 1024px) {
    .scroll_con {
      width: calc(146 / 1024 * 100vw);
      height: calc(100vw / 1024 * 100);
      min-width: 146px;
      min-height: 100px; } }
  @media screen and (max-width: 640px) {
    .scroll_con {
      width: calc(146 / 1024 * 100vw);
      height: calc(100vw / 1024 * 100);
      min-width: 146px;
      min-height: 100px;
      bottom: 3%; } }
  @media screen and (max-width: 420px) {
    .scroll_con {
      bottom: 5%; } }

.scroll_txt {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  width: calc(146 / 1920 * 100vw);
  max-width: 146px; }
  @media screen and (max-width: 1024px) {
    .scroll_txt {
      width: calc(146 / 1024 * 100vw);
      min-width: 146px; } }
  @media screen and (max-width: 800px) {
    .scroll_txt {
      top: 0; } }
  @media screen and (max-width: 420px) {
    .scroll_txt {
      max-width: 100%;
      min-width: 75px; } }

.sc_arrow {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: calc(58 / 1920 * 100vw);
  animation-name: arrow_movie;
  /*キーフレーム指定*/
  animation-duration: 1s;
  /*アニメーション時間設定（秒）*/
  animation-timing-function: linear;
  /*アニメーションのなんかうにょーんってするやつ*/
  animation-delay: 0s;
  /*アニメーション開始するまでのタメ時間*/
  animation-fill-mode: forwards;
  /*アニメーション後の処理（最後のコマで固定）*/
  animation-iteration-count: infinite; }
  @media screen and (max-width: 1024px) {
    .sc_arrow {
      width: calc(58 / 1024 * 100vw);
      min-width: 58px; } }
  @media screen and (max-width: 420px) {
    .sc_arrow {
      bottom: 5%;
      min-width: 40px;
      animation-name: arrow_movie2;
      /*キーフレーム指定*/ } }

/*テキストぐるぐる回る奴*/
@keyframes arrow_movie {
  0% {
    bottom: 10%;
    opacity: 0; }
  70% {
    opacity: 1;
    bottom: 2.5%; }
  100% {
    bottom: 0%;
    opacity: .0; } }
/*テキストぐるぐる回る奴*/
@keyframes arrow_movie2 {
  0% {
    bottom: 40%;
    opacity: 0; }
  70% {
    opacity: 1;
    bottom: 17%; }
  100% {
    bottom: 15%;
    opacity: .0; } }
/*=====================================================================================================================*/
/*story===========================================================================================================*/
.story_con {
  width: 100%;
  height: calc(100vw/ 1920 * 1300);
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 1024px) {
    .story_con {
      height: auto; } }

.t_0 {
  display: block;
  margin: 0 auto;
  width: calc(1080 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .t_0 {
      width: 80%; } }

.chara_img {
  overflow: hidden;
  position: absolute;
  margin: auto;
  top: calc(100vw / 1920 * 200);
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vw / 1920 * 1200);
  -webkit-mask-image: -webkit-gradient(0deg, rgba(255, 255, 255, 0) 15%, black 31%);
  -webkit-mask-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0) 15%, black 31%);
  mask-image: -webkit-gradient(0deg, rgba(255, 255, 255, 0) 15%, black 31%);
  mask-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 15%, black 31%);
  line-height: 0; }
  @media screen and (max-width: 1024px) {
    .chara_img {
      position: relative;
      margin: 0 auto;
      height: calc(100vw / 1024 * 700); } }

.st_txt img {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 10;
  top: calc(100vw / 1920 * 210);
  width: calc(1184 / 1920 * 100vw);
  max-width: 1184px; }
  @media screen and (max-width: 1024px) {
    .st_txt img {
      position: static;
      width: 90%;
      display: block;
      margin: 0 auto; } }

.st_c1, .st_c2, .st_c3, .st_c4, .st_c5 {
  position: absolute; }

.st_c1, .st_c4 {
  z-index: 6; }

.st_c2, .st_c3 {
  z-index: 5; }

.st_c1 {
  width: calc(509 / 1920 * 100vw );
  right: calc(100vw / 1920 * -120); }

.st_c2 {
  width: calc(563 / 1920 * 100vw );
  right: calc(100vw / 1920 * 50);
  top: calc(100vw / 1920 * 80); }

.st_c3 {
  width: calc(917 / 1920 * 100vw );
  left: calc(100vw / 1920 * 50);
  top: calc(100vw / 1920 * 120); }

.st_c4 {
  left: calc(100vw / 1920 * -200);
  width: calc(947 / 1920 * 100vw ); }

.st_c5 {
  width: calc(933 / 1920 * 100vw );
  right: calc(100vw / 1920 *250);
  top: calc(100vw / 1920 * 20);
  z-index: 4; }

.st_cof {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */ }

.st_cof.st_act {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: .5s;
  /* フェード開始を0.5秒遅らせる */ }

.st_cof1 {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */ }

.st_cof1.st_act1 {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: .8s;
  /* フェード開始を0.5秒遅らせる */ }

.st_cof2 {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */ }

.st_cof2.st_act2 {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 1.2s;
  /* フェード開始を0.5秒遅らせる */ }

.left_in {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateX(30px);
  /*  */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */ }

.right_in {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateX(-30px);
  /*  */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */ }

.left_in.st_act, .right_in.st_act {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /*  */
  transition-delay: 0.5s;
  /* フェード開始を0.5秒遅らせる */ }

/*=====================================================================================================================*/
/*cap_line===========================================================================================================*/
.cap_line {
  display: flex; }
  .cap_line img {
    width: 20%; }
  @media screen and (max-width: 640px) {
    .cap_line img {
      width: 33.3%; } }

@media screen and (max-width: 640px) {
  .cap_pc {
    display: none; } }

/*=====================================================================================================================*/
/*battle/system===========================================================================================================*/
.system_con {
  background: url("../img/back_btsys.webp") no-repeat top center;
  background-size: cover;
  overflow: hidden;
  position: relative; }

.t_1 {
  top: calc(100vw / 1920 * -80);
  display: block;
  margin: calc(100vw / 1920 * 60) auto 0;
  width: calc(1080 / 1920 * 100vw);
  max-width: 1080px; }
  @media screen and (max-width: 1024px) {
    .t_1 {
      width: 80%; } }

.sys_con1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vw / 1920 * 455);
  margin: calc(100vw / 1920 * 50) auto calc(100vw / 1920 * 150); }
  @media screen and (max-width: 1024px) {
    .sys_con1 {
      width: 80%; } }
  @media screen and (max-width: 800px) {
    .sys_con1 {
      display: block;
      width: 80%;
      height: auto;
      margin: calc(100vw / 1024 * 50) auto calc(100vw / 1024 * 150); } }

.sys_con2 {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
  height: calc(100vw / 1920 * 455);
  margin: 0 auto calc(100vw / 1920 * 210); }
  @media screen and (max-width: 1024px) {
    .sys_con2 {
      width: 80%; } }
  @media screen and (max-width: 800px) {
    .sys_con2 {
      display: block;
      width: 80%;
      height: auto;
      margin: 0 auto calc(100vw / 1024 * 210); } }

.sys_1 {
  width: calc(792 / 1920 * 100vw);
  max-width: 792px; }
  @media screen and (max-width: 1024px) {
    .sys_1 {
      width: 50%; } }
  @media screen and (max-width: 800px) {
    .sys_1 {
      width: 100%;
      margin-bottom: 6vw; } }

.sys_2 img {
  width: calc(585 / 1920 * 100vw);
  max-width: 585px;
  margin-left: calc(50 / 1920 * 100vw); }
@media screen and (max-width: 1024px) {
  .sys_2 img {
    width: 50%; } }
@media screen and (max-width: 800px) {
  .sys_2 img {
    width: 100%; } }

.sys_3 img {
  width: calc(561 / 1920 * 100vw);
  max-width: 561px;
  margin-right: calc(50 / 1920 * 100vw); }
@media screen and (max-width: 1024px) {
  .sys_3 img {
    width: 50%; } }
@media screen and (max-width: 800px) {
  .sys_3 img {
    width: 100%; } }

/*=====================================================================================================================*/
/*キャラクター設定===========================================================================================================*/
.character_con {
  background: url("../img/back_chara.webp") no-repeat center top;
  background-size: cover;
  overflow: hidden; }

.main_c, .sub_c {
  display: flex;
  justify-content: center; }
  .main_c img, .sub_c img {
    width: calc(194 / 1920 * 100vw);
    max-width: 190px;
    margin: 0 1vw; }
  @media screen and (max-width: 800px) {
    .main_c, .sub_c {
      flex-wrap: wrap; }
      .main_c img, .sub_c img {
        width: calc(194 / 1024 * 100vw);
        min-width: 80px;
        margin: 1vw 1vw; } }

.main_c {
  max-width: 1150px;
  margin: 0 auto 2%; }
  @media screen and (max-width: 1024px) {
    .main_c {
      width: 90%; } }

.sub_c {
  max-width: 1600px;
  margin: 0 auto calc(100vw / 1920 * 210); }
  @media screen and (max-width: 1024px) {
    .sub_c {
      width: 90%;
      margin: 0 auto calc(100vw / 1024 * 210); } }

.c_pc {
  display: block; }
  @media screen and (max-width: 800px) {
    .c_pc {
      display: none; } }

.c_sp {
  display: none; }
  @media screen and (max-width: 800px) {
    .c_sp {
      display: block; } }

.mfp-arrow-left {
  left: 10%; }
  @media screen and (max-width: 640px) {
    .mfp-arrow-left {
      left: -1.5%; } }

.mfp-arrow-right {
  right: 10%; }
  @media screen and (max-width: 640px) {
    .mfp-arrow-right {
      right: -1.5%; } }

/*=====================================================================================================================*/
/*エネミー設定===========================================================================================================*/
.enemy_con {
  background: url("../img/back_enemy.webp") no-repeat center top;
  background-size: cover;
  overflow: hidden; }

.enemy_con .t_1 {
  margin-top: calc(100vw / 1920 * 50); }

.ene_txt img {
  display: block;
  margin: calc(100vw / 1920 * 70) auto calc(100vw / 1920 * 370);
  width: calc(1186 / 1920 * 100vw);
  max-width: 1186px; }
  @media screen and (max-width: 1024px) {
    .ene_txt img img {
      width: 80%; } }

/*=====================================================================================================================*/
/*spec系統設定===========================================================================================================*/
/*=====================================================================================================================*/
/*SNS系統設定===========================================================================================================*/
.sns_btn {
  display: -webkit-flex;
  display: flex;
  max-width: 300px;
  margin: 20px auto;
  text-align: center; }
  .sns_btn li {
    flex-grow: 2;
    -webkit-flex-grow: 1;
    /* Safari */ }
    .sns_btn li img {
      width: 40px; }

/*footerカスタム=======================================================================================================*/
footer {
  background: #000;
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  overflow: hidden; }
  @media screen and (max-width: 1024px) {
    footer {
      padding-bottom: calc(100vw / 1024 * 350); } }

.terminal {
  max-width: 800px; }

.cp_logo {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 440px;
  max-width: 90%;
  margin: 1rem auto; }
  @media screen and (max-width: 640px) {
    .cp_logo {
      width: 70%; } }

.kmclogo img {
  display: block;
  margin: 5px auto; }
@media screen and (max-width: 1024px) {
  .kmclogo img {
    display: block;
    width: calc(120 / 1024 * 100vw);
    height: auto; } }
@media screen and (max-width: 640px) {
  .kmclogo img {
    display: block;
    width: calc(250 / 1024 * 100vw);
    height: auto; } }

.c_logo img {
  display: block;
  height: calc(100vw / 1920 * 60); }
@media screen and (max-width: 1024px) {
  .c_logo img {
    display: block;
    width: calc(150 / 1024 * 100vw);
    height: auto; } }
@media screen and (max-width: 640px) {
  .c_logo img {
    display: block;
    width: calc(350 / 1024 * 100vw); } }

.pf-img img {
  opacity: 1; }

.pflist_long {
  margin-top: 5px;
  padding-left: 3px;
  overflow: hidden; }
  @media screen and (max-width: 640px) {
    .pflist_long {
      padding: 3px 5px 0px 0px;
      line-height: -10%;
      width: 69%;
      text-align: left; } }

hr {
  background: #66584c; }

.tlist-last span {
  font-size: 10px; }

.tlist_sp .pflist_l, .tlist_sps .pflist_l, .tlist-last_sp .pflist_l, .tlist_spss .pflist_l {
  background: #66584c;
  color: white; }

/*各種項目名背景色変更*/
.logo_cc img, .kmc img {
  max-width: 100%; }

.logo_cc {
  width: 250px;
  margin-left: 20px; }
  @media screen and (max-width: 640px) {
    .logo_cc {
      max-width: 90%;
      margin-left: 0px;
      margin-right: 0px;
      margin-bottom: 20px; } }

.kmc {
  width: 150px;
  margin-left: 60px;
  margin-right: 40px; }
  @media screen and (max-width: 640px) {
    .kmc {
      margin-top: 30px;
      margin-left: 0px;
      margin-right: 0px;
      margin-bottom: 20px; } }

/*上に戻るボタンここまで=======================================================================================================*/
/*=====================================================================================================================*/
/*DLモーダルウィンドウ========================================================================================================*/
.open_dl {
  display: none; }
  @media screen and (max-width: 1024px) {
    .open_dl {
      display: block;
      margin: 25px auto;
      text-align: center; }
      .open_dl img {
        max-width: 90%; } }
  @media screen and (max-width: 800px) {
    .open_dl {
      margin: 10px auto 25px; } }

.modal_wrap input {
  display: none; }

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0); }

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%; }

.modal_content {
  align-self: center;
  width: 760px;
  padding: 30px 30px 15px;
  box-sizing: border-box;
  line-height: 1.4em;
  transform: scale(0.3);
  transition: 0.5s; }
  @media screen and (max-width: 640px) {
    .modal_content {
      width: 80%;
      margin: 0 auto; } }
  @media screen and (max-width: 420px) {
    .modal_content {
      padding: 10px 0;
      width: 80%; } }

.modal_content_two {
  align-self: center;
  width: calc(500 / 1920 * 100vw);
  padding: 30px 30px 15px;
  box-sizing: border-box;
  line-height: 1.4em;
  transform: scale(0.3);
  transition: 0.5s; }
  @media screen and (max-width: 640px) {
    .modal_content_two {
      width: 80%;
      margin: 0 auto; } }
  @media screen and (max-width: 420px) {
    .modal_content_two {
      padding: 10px 0;
      width: 80%; } }

.close_button {
  position: absolute;
  top: 14px;
  right: 16px;
  cursor: pointer;
  color: #FFFFFF;
  opacity: 1; }

@media screen and (max-width: 768px) {
  .close_button {
    top: 1%;
    right: 4%;
    color: #FFFFFF; } }
@media screen and (max-width: 420px) {
  .close_button {
    top: -10px;
    right: -10px;
    color: #FFFFFF; } }
.close_button img {
  width: 24px;
  height: 24px; }

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s; }

.modal_wrap input:checked ~ .modal_overlay .modal_content {
  transform: scale(1); }

.modal_wrap input:checked ~ .modal_overlay .modal_content_two {
  transform: scale(1); }

.open_button {
  text-align: center;
  max-width: 96%;
  margin: 0 auto;
  font-family: 'Noto Sans JP'; }

.dl_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
.dl_list li {
  color: #FFF;
  width: 150px;
  height: 90px;
  border: 2px #ffd16f solid;
  border-radius: 5px;
  text-align: center;
  margin: 5px 5px;
  font-size: 12px;
  background: #2d2121;
  background: -moz-linear-gradient(top, #2d2121 0%, black 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #2d2121), color-stop(100%, black));
  background: -webkit-linear-gradient(top, #2d2121 0%, black 100%);
  background: -o-linear-gradient(top, #2d2121 0%, black 100%);
  background: -ms-linear-gradient(top, #2d2121 0%, black 100%);
  background: linear-gradient(to bottom, #2d2121 0%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#282828', endColorstr='#000', GradientType=0 );
  box-shadow: 6px 6px rgba(0, 0, 0, 0.5); }
  .dl_list li img {
    height: 70px;
    margin-top: 12px; }
@media screen and (max-width: 640px) {
  .dl_list li {
    width: 110px;
    height: 70px; }
    .dl_list li img {
      height: 50px;
      margin: 8px auto 0px; } }

.dl_link a {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 5px 0;
  font-size: 12px;
  border-radius: 2px;
  background: #FFF;
  color: #092570;
  font-weight: bold;
  overflow: hidden; }
.dl_link a:hover {
  border: 2px solid #FFF;
  background: none;
  color: #FFF; }

.soon {
  position: relative; }
  .soon img {
    height: 40px; }
  .soon p {
    position: absolute;
    text-align: center;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -5px;
    color: #FFF;
    font-size: 10px;
    font-weight: bold; }
  @media screen and (max-width: 640px) {
    .soon p {
      line-height: .8;
      bottom: 0; } }
