@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: #be995f;
  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%;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.75);
  position: fixed;
  z-index: 999;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  height: calc(100vw / 1920 * 70); }
  .pchd ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1%;
    height: 60px; }
    .pchd ul li {
      margin: 0 1.5em 0 0;
      transition: .3s;
      font-size: calc(24 /1920 * 100vw); }
      .pchd ul li a {
        color: #d1c7b2; }
    .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 *40); }
  @media screen and (max-width: 1024px) {
    .hd_img {
      top: calc(100vw / 1024 * 17);
      height: calc(100vw / 1024 * 40);
      left: calc(30 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .hd_img {
      top: 5%;
      min-height: 25px; } }

.hd_dlbtn {
  margin: auto;
  height: calc(100vw / 1920 * 35);
  cursor: pointer; }
  @media screen and (max-width: 1024px) {
    .hd_dlbtn {
      display: none; } }

.hd_dlbtn2 {
  position: absolute;
  margin: auto;
  left: auto;
  right: calc(320 / 1920 * 100vw);
  top: calc(100vw / 1920 * 25);
  height: calc(100vw / 1920 * 50); }
  @media screen and (max-width: 1024px) {
    .hd_dlbtn2 {
      display: none; } }

/*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; } }

@media screen and (max-width: 800px) {
  #story, #system, #classes, #monsters {
    padding: calc(100vw / 1024 * 20) 0; } }

/*=====================================================================================================================*/
/*TOPメイン画像関連（パーツ増やしたり減らしたり）================================================================================*/
.main_top {
  width: 100vw;
  height: auto;
  background-size: cover;
  position: relative; }
  @media screen and (max-width: 1024px) {
    .main_top {
      width: 100vw;
      margin: 0 auto;
      position: relative;
      overflow: hidden; } }

.main_con {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: calc(100vw / 1920 * 1120); }
  @media screen and (max-width: 1024px) {
    .main_con {
      height: auto;
      overflow: hidden; } }

.t_img1 {
  width: calc(1040 / 1920 * 100vw);
  position: absolute;
  margin: auto;
  top: calc(100vw / 1920 * 100);
  right: calc(250 / 1920 * 100vw);
  z-index: 1; }
  @media screen and (max-width: 1024px) {
    .t_img1 {
      position: static;
      display: block;
      width: 90%;
      margin: calc(100vw / 1024 * 150) auto calc(100vw / 1024 * 50); } }

.t_logo {
  width: calc(1472 / 1920 *100vw);
  position: absolute;
  margin: auto;
  bottom: calc(100vw /1920 * 100);
  right: 0;
  left: 0;
  z-index: 1; }
  @media screen and (max-width: 1024px) {
    .t_logo {
      position: static;
      width: 80%;
      display: block;
      margin: 0 auto; } }
  @media screen and (max-width: 640px) {
    .t_logo {
      width: 80%;
      height: auto;
      top: auto;
      bottom: 45%;
      right: 3%; } }

.pc_pv {
  height: calc(100vw / 1920 * 550);
  min-height: 150px;
  position: absolute;
  margin: auto;
  top: calc(100vw / 1920 * 150);
  left: calc(250 / 1920 * 100vw);
  z-index: 2;
  transition: .3s; }
  .pc_pv:hover {
    transform: scale(1.08); }
  @media screen and (max-width: 1024px) {
    .pc_pv {
      display: block;
      position: static;
      height: calc(100vw / 1024 * 550);
      margin: calc(100vw / 1024 * 50 ) auto; } }
  @media screen and (max-width: 640px) {
    .pc_pv {
      height: auto;
      min-height: auto;
      width: 50%;
      margin: calc(100vw / 1024 * 150 ) auto; } }

.top_dl {
  position: absolute;
  margin: 0 auto;
  width: calc(400 / 1920 * 100vw);
  min-width: 250px;
  bottom: calc(100vw / 1920 * 240);
  right: calc(310 / 1920 * 100vw);
  z-index: 2;
  transition: .3s; }
  .top_dl:hover {
    opacity: .7; }
  @media screen and (max-width: 1024px) {
    .top_dl {
      width: calc(400 / 1024 * 100vw);
      left: 0;
      right: 0;
      bottom: calc(100vw / 1024 * 10); } }

/*=====================================================================================================================*/
/*story===========================================================================================================*/
.story_con {
  width: 100%;
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 1024px) {
    .story_con {
      height: auto; } }
  @media screen and (max-width: 800px) {
    .story_con {
      margin-bottom: calc(100vw / 1024 * 150); } }

.t_0 {
  display: block;
  margin: calc(100vw / 1920 * 180) auto 0;
  width: calc(790 / 1920 * 100vw);
  position: relative;
  z-index: 3; }
  @media screen and (max-width: 800px) {
    .t_0 {
      width: 80%;
      margin: calc(100vw / 1024 * 160) auto 0; } }

.st_con {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: calc(1500 / 1920 * 100vw);
  margin: calc(100vw / 1920 * 50) auto; }
  .st_con img {
    width: calc(520 / 1920  * 100vw);
    display: block; }
  @media screen and (max-width: 1024px) {
    .st_con {
      display: block; }
      .st_con img {
        width: 70%;
        margin: calc(100vw / 1024 * 100) auto calc(100vw / 1024 * 50); } }

.st_txt {
  overflow: hidden;
  border: 5px solid #d1c7b2;
  padding: calc(100vw / 1920 * 50) calc(30 / 1920 * 100vw);
  border-radius: 15px;
  color: #d1c7b2;
  text-align: center;
  font-size: calc(28 / 1920 * 100vw);
  line-height: 180%;
  width: calc(800 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .st_txt {
      width: 95%;
      margin: 0 auto;
      font-size: calc(24 / 1024 * 100vw);
      border: 3px solid #d1c7b2;
      padding: calc(100vw / 1024 * 30) calc(20 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .st_txt {
      font-size: calc(42 / 1024 * 100vw);
      padding: calc(100vw / 1024 * 70) calc(40 / 1024 * 100vw); } }

.fadeup {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */ }

.fadeup.in_act {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0.3s;
  /* フェード開始を0.5秒遅らせる */ }

.fade {
  opacity: 0;
  /* 最初は非表示 */
  transition: opacity 1.8s;
  /* 透過率と縦方向の移動を0.8秒 */ }

.fade.in_act {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transition-delay: .2s;
  /* フェード開始を0.5秒遅らせる */ }

.fadein {
  opacity: 0;
  /* 最初は非表示 */
  transition: opacity .8s;
  /* 透過率と縦方向の移動を0.8秒 */ }

.fadein.in_act {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transition-delay: 0.5s;
  /* フェード開始を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.3s;
  /* フェード開始を0.5秒遅らせる */ }

/*=====================================================================================================================*/
/*cap_line===========================================================================================================*/
/*=====================================================================================================================*/
/*battle/system===========================================================================================================*/
.system_con {
  background-size: cover;
  overflow: hidden;
  position: relative; }
  @media screen and (max-width: 800px) {
    .system_con {
      margin-bottom: calc(100vw / 1024 * 150); } }

.t_1 {
  display: block;
  margin: calc(100vw / 1920 * 160) auto calc(100vw / 1920 * 100);
  width: calc(780 / 1920 * 100vw);
  max-width: 1080px; }
  @media screen and (max-width: 800px) {
    .t_1 {
      width: 80%;
      margin: calc(100vw / 1024 * 160) auto 0; } }

.sys_con1 {
  width: calc(1400 / 1920 * 100vw);
  margin: calc(100vw / 1920 * 80) auto calc(100vw / 1920 * 100); }
  @media screen and (max-width: 1024px) {
    .sys_con1 {
      width: 80%; } }
  @media screen and (max-width: 800px) {
    .sys_con1 {
      display: block;
      margin: calc(100vw / 1024 * 150) auto calc(100vw / 1024 * 150); } }

.sys_con2 {
  position: relative;
  width: calc(1400 / 1920 * 100vw);
  height: calc(100vw / 1920 * 780);
  margin: 0 auto calc(100vw / 1920 * 210); }
  .sys_con2 img:nth-child(1) {
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    width: calc(800 / 1920 * 100vw); }
  .sys_con2 img:nth-child(2) {
    position: absolute;
    margin: auto;
    right: calc(300 / 1920 * 100vw);
    bottom: 0;
    z-index: 2;
    width: calc(800 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .sys_con2 {
      width: 80%;
      height: calc(100vw / 1024 * 400); }
      .sys_con2 img:nth-child(1) {
        position: absolute;
        margin: auto;
        left: 0;
        top: 0;
        width: calc(400 / 1024 * 100vw); }
      .sys_con2 img:nth-child(2) {
        position: absolute;
        margin: auto;
        right: 0;
        top: 0;
        bottom: auto;
        width: calc(400 / 1024 * 100vw); } }
  @media screen and (max-width: 800px) {
    .sys_con2 {
      position: static;
      height: auto; }
      .sys_con2 img:nth-child(1) {
        position: static;
        display: block;
        margin: 0 auto calc(100vw / 1024 * 50);
        width: 95%; }
      .sys_con2 img:nth-child(2) {
        position: static;
        display: block;
        margin: 0 auto calc(100vw / 1024 * 50);
        bottom: auto;
        width: 95%; } }

.sys_con3 {
  position: relative;
  width: calc(1400 / 1920 * 100vw);
  height: calc(100vw / 1920 * 780);
  margin: 0 auto calc(100vw / 1920 * 210); }
  .sys_con3 img:nth-child(1) {
    position: absolute;
    margin: auto;
    right: 0;
    top: 0;
    width: calc(800 / 1920 * 100vw);
    z-index: 1; }
  .sys_con3 img:nth-child(2) {
    position: absolute;
    margin: auto;
    left: calc(130 / 1920 * 100vw);
    bottom: 0;
    width: calc(800 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .sys_con3 {
      width: 80%;
      height: calc(100vw / 1024 * 380); }
      .sys_con3 img:nth-child(1) {
        position: absolute;
        margin: auto;
        left: 0;
        right: auto;
        top: 0;
        width: calc(400 / 1024 * 100vw); }
      .sys_con3 img:nth-child(2) {
        position: absolute;
        margin: auto;
        right: 0;
        left: auto;
        top: 0;
        bottom: auto;
        width: calc(400 / 1024 * 100vw); } }
  @media screen and (max-width: 800px) {
    .sys_con3 {
      position: static;
      height: auto;
      margin: 0 auto calc(100vw / 1024 * 210); }
      .sys_con3 img:nth-child(1) {
        position: static;
        display: block;
        margin: 0 auto calc(100vw / 1024 * 50);
        width: 95%; }
      .sys_con3 img:nth-child(2) {
        position: static;
        display: block;
        margin: 0 auto calc(100vw / 1024 * 50);
        bottom: auto;
        width: 95%; } }

.text_con {
  overflow: hidden;
  border: 5px solid #d1c7b2;
  padding: calc(100vw / 1920 * 30) calc(200 / 1920 * 100vw);
  border-radius: 15px;
  color: #d1c7b2;
  text-align: center;
  font-size: calc(30 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .text_con {
      border: 3px solid #d1c7b2;
      padding: calc(100vw / 1024 * 30) calc(30 / 1024 * 100vw);
      font-size: calc(24 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .text_con {
      font-size: 15px; } }

.txt_con {
  color: #FFF;
  width: calc(520 / 1920 * 100vw);
  background-image: url("../img/con_line.png"), url("../img/con_line.png");
  background-repeat: no-repeat;
  background-position: bottom center, top center;
  background-size: contain;
  overflow: hidden;
  padding: 1.2vw 30px;
  font-size: calc(26 / 1920 * 100vw);
  text-align: center; }
  @media screen and (max-width: 1024px) {
    .txt_con {
      width: 80%;
      font-size: calc(20 / 1024 * 100vw);
      padding: 2.2vw 30px; } }
  @media screen and (max-width: 800px) {
    .txt_con {
      width: 80%;
      font-size: 24px;
      padding: 2.2vw 30px; } }
  @media screen and (max-width: 640px) {
    .txt_con {
      width: 80%;
      font-size: 15px;
      padding: 2.2vw 30px; } }

.sys_con2 .txt_con {
  position: absolute;
  right: calc(-30 / 1920 * 100vw);
  top: calc(100vw / 1920 * 40);
  line-height: 180%; }
  @media screen and (max-width: 1024px) {
    .sys_con2 .txt_con {
      margin: auto;
      top: auto;
      bottom: 0;
      left: 0;
      right: 0; } }
  @media screen and (max-width: 800px) {
    .sys_con2 .txt_con {
      position: static;
      line-height: 130%; } }

.sys_con3 .txt_con {
  position: absolute;
  left: calc(-30 / 1920 * 100vw);
  top: calc(100vw / 1920 * 80); }
  @media screen and (max-width: 1024px) {
    .sys_con3 .txt_con {
      margin: auto;
      top: auto;
      bottom: 0;
      left: 0;
      right: 0; } }
  @media screen and (max-width: 800px) {
    .sys_con3 .txt_con {
      position: static;
      line-height: 130%; } }

.line {
  width: 100%; }
  .line img {
    height: calc(100vw / 1920 * 37);
    display: block;
    margin: calc(100vw / 1920 * 160) auto; }
  @media screen and (max-width: 800px) {
    .line img {
      height: auto;
      width: 98%; } }

/*=====================================================================================================================*/
/*クラス===========================================================================================================*/
.main_c {
  display: flex;
  flex-wrap: wrap;
  width: calc(1200 / 1920 * 100vw);
  margin: 5% auto 2%;
  justify-content: center; }
  .main_c img {
    width: calc(300 / 1920 * 100vw);
    margin: 0 2.6vw 5vw; }
  @media screen and (max-width: 1024px) {
    .main_c {
      width: 90%; }
      .main_c img {
        width: calc(250 / 1024 * 100vw); } }

.mfp-arrow-left {
  left: 10%;
  top: 53%; }
  @media screen and (max-width: 1024px) {
    .mfp-arrow-left {
      left: -1%; } }
  @media screen and (max-width: 640px) {
    .mfp-arrow-left {
      left: -1.5%; } }

.mfp-arrow-right {
  right: 10%;
  top: 53%; }
  @media screen and (max-width: 1024px) {
    .mfp-arrow-right {
      right: -1%; } }
  @media screen and (max-width: 640px) {
    .mfp-arrow-right {
      right: -1.5%; } }

/*=====================================================================================================================*/
/*monster===========================================================================================================*/
@media screen and (max-width: 800px) {
  .monster_con {
    margin-bottom: calc(100vw / 1024 * 150); } }

.mon_img {
  display: block;
  margin: 0 auto calc(100vw / 1920 * 100);
  width: calc(1300 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .mon_img {
      width: 90%; } }

/*=====================================================================================================================*/
/*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: #534b3b;
  color: #FFF;
  font-family: 'Noto Sans JP', sans-serif;
  border-top: 1px solid #66584c;
  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%; } }

.download_btn_pc, .download_btn_sp, .game_info p {
  background: black; }

.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 * 120); }
@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: #000;
  color: white; }

/*各種項目名背景色変更*/
.r-txt1, .r-txt {
  color: #FFF; }

.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; } }

.clogo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .clogo-list img {
    height: calc(100vw / 1920 * 80); }
  @media screen and (max-width: 800px) {
    .clogo-list img {
      height: calc(100vw / 1024 * 120); } }
  @media screen and (max-width: 640px) {
    .clogo-list {
      width: 90%;
      margin: 0 auto;
      flex-wrap: wrap; }
      .clogo-list img {
        height: calc(100vw / 1024 * 150); } }

/*上に戻るボタンここまで=======================================================================================================*/
/*=====================================================================================================================*/
/*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;
  border: 4px #534b3b solid;
  border-radius: 5px;
  text-align: center;
  margin: 5px 5px;
  font-size: 12px;
  background: black;
  box-shadow: 6px 6px rgba(0, 0, 0, 0.5); }

.single {
  width: 150px;
  height: 90px; }
  .single img {
    height: 70px;
    margin-top: 12px; }
  @media screen and (max-width: 640px) {
    .single {
      width: 110px;
      height: 70px; }
      .single img {
        height: 50px;
        margin-top: 10px; } }

.one {
  width: 150px;
  height: 150px; }
  .one img {
    height: 70px;
    margin-top: 38px; }
  @media screen and (max-width: 640px) {
    .one {
      width: 110px;
      height: 70px; }
      .one img {
        height: 50px;
        margin-top: 10px; } }

.double {
  width: 150px;
  height: 150px; }
  .double img {
    height: 70px;
    margin-top: 5px; }
  @media screen and (max-width: 640px) {
    .double {
      width: 120px;
      height: 150px;
      font-size: 8px; } }

.dl_link2 a {
  display: block;
  width: 80%;
  margin: 0 auto 2px;
  padding: 2px 0;
  font-size: 12px;
  border-radius: 2px;
  background: #ffd16f;
  color: #000;
  font-weight: bold;
  overflow: hidden;
  border: 2px solid #ffd16f; }
.dl_link2 a:hover {
  border: 2px solid #ffd16f;
  background: #000;
  color: #ffd16f; }
@media screen and (max-width: 640px) {
  .dl_link2 a {
    font-size: 10px;
    padding: 1px 0; } }

.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; }

/*ガイドライン設定===========================================================================================================*/
.guideline {
  display: block;
  border: 3px solid #bca168;
  background: #000;
  width: calc(510 / 1920 * 100vw);
  text-align: center;
  font-weight: bold;
  margin: 10vw auto 5vw;
  padding-bottom: 1rem;
  transition: .3s; }
  .guideline a {
    display: block; }
  .guideline div {
    font-size: 3rem; }
  .guideline p {
    margin: 0 auto 1rem; }
  .guideline span {
    position: relative;
    font-size: 1.2rem; }
  .guideline span::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #bca168;
    border-right: 0;
    position: absolute;
    left: -1rem;
    top: 0;
    bottom: 0;
    margin: auto; }
  .guideline span::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #bca168;
    border-left: 0;
    position: absolute;
    right: -1rem;
    top: 0;
    bottom: 0;
    margin: auto; }
  @media screen and (max-width: 1024px) {
    .guideline {
      width: 400px; }
      .guideline div {
        font-size: 2rem; }
      .guideline p {
        margin: 0 auto 1rem; }
      .guideline span {
        position: relative;
        font-size: 1.2rem; } }
  @media screen and (max-width: 640px) {
    .guideline {
      width: 300px;
      margin: 18vw auto 15vw; } }
  @media screen and (max-width: 360px) {
    .guideline {
      width: 80%;
      margin: 18vw auto 15vw; }
      .guideline p {
        font-size: 4.5vw; } }

.guideline a {
  transition: .3s; }
  .guideline a div {
    color: #bca168; }
  .guideline a p {
    color: #bca168; }
  .guideline a span {
    color: #f93737; }

.guideline:hover {
  opacity: .5; }
