@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Klee+One&family=Noto+Sans+JP:wght@500&family=Noto+Serif&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);
  max-width: 100%; }

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%; }

body {
  background: #1a2b4c;
  outline: none;
  min-width: 100%;
  height: auto;
  overflow: hidden; }

body::before {
  content: "";
  background: url("../img/back.jpg") bottom left no-repeat;
  background-size: cover;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  max-width: 100%;
  height: 110vh;
  min-height: -webkit-fill-available; }

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 {
  position: fixed;
  top: 0;
  height: auto;
  display: none;
  width: 100%;
  z-index: 999; }
  @media screen and (max-width: 1024px) {
    header {
      display: block; } }

.hd {
  width: 100vw;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  position: fixed;
  z-index: 9999;
  display: flex; }
  .hd ul {
    display: flex;
    justify-content: center;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0; }
    .hd ul li {
      margin: 0 1em;
      transition: .3s; }
    .hd ul li:hover {
      opacity: .5; }
  @media screen and (max-width: 1024px) {
    .hd {
      position: static; }
      .hd ul {
        display: none; }
      .hd img {
        height: 45px; } }

/*=====================================================================================================================*/
/*折り畳みSPメニュー*/
#navToggle {
  display: none; }
  @media screen and (max-width: 1024px) {
    #navToggle {
      /*引数を省略*/
      display: block;
      position: fixed;
      right: 3%;
      top: 13px;
      width: 30px;
      height: 20px;
      cursor: pointer; }
      #navToggle div {
        position: relative; }
      #navToggle img:hover {
        opacity: 0.5; } }

/*=====================================================================================================================*/
/*折り畳みSPメニュー*/
.radius {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden; }

#nav-toggle {
  display: none;
  position: fixed;
  right: 12px;
  top: 14px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 101; }
  @media screen and (max-width: 1024px) {
    #nav-toggle {
      display: block; } }

#nav-toggle div {
  position: relative; }

#nav-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 70%;
  border-radius: 2px;
  background: #233058;
  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: 11px; }

#nav-toggle span:nth-child(2) {
  top: 19px; }

#nav-toggle span:nth-child(3) {
  top: 27px; }

.menu {
  position: absolute;
  /* 開いてないときは画面外に配置 */
  top: -1200px;
  left: 0;
  right: auto;
  background: rgba(255, 255, 255, 0.8);
  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); }
  .menu ul li img {
    display: block;
    max-width: 60%;
    margin: 0 auto; }

.menu ul li:last-child {
  border-bottom: none; }

.menu ul li a {
  width: 100%;
  display: block;
  color: #fff;
  padding: 5px 0; }

/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
  top: 18px;
  -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: 18px;
  -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); }

/*SP折り畳みメニュー終了==================================================================================================*/
/*=====================================================================================================================*/
/*各種リンク跳び位置*/
#story, #system, #characters, #product {
  position: relative;
  top: -160px; }
  @media screen and (max-width: 1024px) {
    #story, #system, #characters, #product {
      position: static; } }

/*=====================================================================================================================*/
/*各項目固定背景用================================================================================*/
.main_con {
  height: 100%; }

/*横幅固定用*/
.mcon {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3; }
  @media screen and (max-width: 1024px) {
    .mcon {
      max-width: 98%;
      margin: 0 auto; } }

.sp_btn {
  margin: 0 auto 0; }
  .sp_btn img {
    width: 90%;
    max-width: 90%; }

/*固定背景*/
.g_back {
  /*background: url("../img/back.jpg") bottom left no-repeat;*/
  background-size: cover;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100%;
  height: 105vh;
  z-index: -1; }

.mfp-bg {
  background-color: rgba(163, 177, 245, 0.85); }

/*=====================================================================================================================*/
/*TOPメイン画像関連（パーツ増やしたり減らしたり）================================================================================*/
.wrapper {
  position: relative;
  width: 100%;
  transition: .3s; }
  @media screen and (max-width: 1024px) {
    .wrapper {
      display: none; } }

.wrapper:before {
  content: "";
  display: block;
  padding-top: 45%; }
  @media screen and (max-width: 1280px) {
    .wrapper:before {
      padding-top: 60%; } }

.main_img {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 8%;
  left: 0;
  bottom: 0;
  right: 0; }

.cplogo {
  position: absolute;
  top: 00px;
  right: 0;
  display: flex;
  flex-wrap: nowrap;
  z-index: 20; }
  .cplogo li {
    margin-top: 10px;
    text-align: right; }
  .cplogo img {
    max-width: 80%; }

.t_sale {
  position: absolute;
  text-align: center;
  z-index: 30;
  margin: 0 auto;
  top: 75%;
  left: -0%;
  /*opacity:0;*/
  display: flex;
  overflow: hidden;
  width: calc(1 / 4 * 100%);
  /*justify-content: space-around;
  animation-name: sale;/*キーフレーム指定*/
  animation-duration: 1s;
  /*アニメーション時間設定（秒）*/
  animation-timing-function: ease;
  /*アニメーションのなんかうにょーんってするやつ*/
  animation-delay: 0.5s;
  /*アニメーション開始するまでのタメ時間*/
  animation-fill-mode: forwards;
  /*アニメーション後の処理（最後のコマで固定）*/ }
  .t_sale img {
    transition: .2s; }
  .t_sale img:hover {
    opacity: 0.5; }
  @media screen and (max-width: 1280px) {
    .t_sale {
      top: 75%; } }

.release {
  width: calc(139 / 320 * 100%);
  position: absolute;
  margin: 0 auto;
  bottom: 0%;
  left: 0;
  right: 0;
  z-index: 5; }

.catch {
  width: calc(29 / 320 * 100%);
  position: absolute;
  margin: 0 auto;
  top: 3%;
  right: 3%;
  z-index: 5; }

.g-title {
  position: absolute;
  bottom: 0%;
  z-index: 30;
  margin: 0 auto;
  right: -0px;
  left: 0;
  /*opacity:0;*/
  width: calc(389 / 640 * 100%);
  /*animation-name: titlelogo;/*キーフレーム指定*/
  /*animation-duration: 1.5s;/*アニメーション時間設定（秒）*/
  /*animation-timing-function:ease;/*アニメーションのなんかうにょーんってするやつ*/
  /*animation-delay:0s;/*アニメーション開始するまでのタメ時間*/
  /*animation-fill-mode:forwards;/*アニメーション後の処理（最後のコマで固定）*/ }
  @media screen and (max-width: 1280px) {
    .g-title {
      bottom: 0; } }

.t_pv img {
  display: block;
  margin: 0 auto;
  transform: scale(1);
  transition: .3s; }
  .t_pv img:hover {
    transform: scale(0.95); }

.c_00 {
  position: absolute;
  margin: auto;
  top: -20%; }

/*アニメーション設定===================*/
@keyframes sale {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes titlelogo {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes t_pv {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*PCメヌー--------------------------------------------------------------------------------------------------------------*/
.p_menu_back {
  width: 1260px;
  max-width: 100%;
  margin: 0 auto;
  position: relative; }
  @media screen and (max-width: 1920px) {
    .p_menu_back {
      display: none; } }
  @media screen and (max-width: 1024px) {
    .p_menu_back {
      display: none; } }

.pcmenu {
  background: url("../img/menu_back.png") center top no-repeat;
  width: 1086px;
  height: 159px;
  overflow: hidden;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 0em;
  z-index: 999; }
  .pcmenu ul {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 47px auto 0; }
    .pcmenu ul li {
      margin: 0 15px; }
    .pcmenu ul img {
      transition: .3s; }
    .pcmenu ul img:hover {
      opacity: 0.5; }
  @media screen and (max-width: 1024px) {
    .pcmenu {
      display: none; } }
  @media screen and (max-width: 1920px) {
    .pcmenu {
      bottom: 0; } }
  @media screen and (max-width: 1280px) {
    .pcmenu {
      bottom: 0; } }

.p_menu_back {
  display: flex;
  justify-content: space-around; }

.pcmenu.hd_fixed {
  position: fixed;
  top: 0px;
  z-index: 9999;
  width: 100%; }
  @media screen and (max-width: 1024px) {
    .pcmenu.hd_fixed {
      display: none; } }

/*SP部分=========================================================================================================*/
.spmain {
  display: none; }
  .spmain img {
    max-width: 100%; }
  @media screen and (max-width: 1024px) {
    .spmain {
      position: relative;
      z-index: 3;
      display: block;
      overflow: hidden;
      text-align: center; } }

.pv {
  text-align: center;
  margin: 80px auto 1em; }
  .pv img {
    max-width: 100%; }
  @media screen and (max-width: 1024px) {
    .pv {
      margin: 40px auto;
      width: 90%; } }

.t_obi {
  text-align: center; }
  .t_obi img {
    margin: 50px auto 0px; }

.s_obi {
  text-align: center; }
  .s_obi img {
    margin: 80px auto 60px; }
  @media screen and (max-width: 1024px) {
    .s_obi img {
      max-width: 90%; } }

.s_obi2 {
  text-align: center; }
  .s_obi2 img {
    margin: 40px auto 10px; }
  @media screen and (max-width: 1024px) {
    .s_obi2 img {
      max-width: 90%; } }

/*=====================================================================================================================*/
/*ストーリー部分========================================================================================================*/
.story {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }

.story_con1 {
  text-align: center;
  max-width: 1100px;
  margin: 30px auto 30px;
  color: #FFF;
  font-size: 1.5rem;
  line-height: 190%;
  text-shadow: 0px 0px 8px #000000,0px 0px 8px #000000,0px 0px 8px #000000,0px 0px 8px #000000,0px 0px 8px #000000,0px 0px 8px #000000;
  overflow: hidden;
  font-family: 'Noto Serif', serif; }
  @media screen and (max-width: 1024px) {
    .story_con1 {
      width: 96%;
      margin: 0 auto;
      font-size: 1em; } }

.txt01, .txt07, .txt09, .txt10, .txt11, .txt13, .txt14 {
  margin: 0 auto 3rem; }

.fadeIn {
  opacity: 0;
  transition: 2s; }

.fadeIn.is-show {
  opacity: 1; }

.story_txt {
  font-size: 1.5rem;
  color: #FFF;
  font-family: 'Noto Serif', serif;
  text-shadow: 0px 0px 8px #000000,0px 0px 8px #000000,0px 0px 8px #000000,0px 0px 8px #000000,0px 0px 8px #000000,0px 0px 8px #000000;
  width: 450px;
  max-width: 100%; }
  @media screen and (max-width: 1024px) {
    .story_txt {
      font-size: 1em;
      max-width: 90%;
      margin: 0 auto; } }

.story_spcon {
  display: none; }
  @media screen and (max-width: 1024px) {
    .story_spcon {
      display: block;
      width: 90%;
      height: 35vh;
      margin: 0 auto;
      position: relative;
      overflow: hidden; } }
  @media screen and (max-width: 640px) {
    .story_spcon {
      height: 25vh; } }

.story_spimg1 {
  position: absolute;
  margin: 0 auto;
  top: 0;
  left: 0;
  z-index: 2;
  width: 60%;
  max-width: 100%; }

.story_spimg2 {
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 60%;
  max-width: 100%; }

.story_con2 {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  align-items: center; }
  @media screen and (max-width: 1024px) {
    .story_con2 {
      flex-wrap: wrap; } }

.story_con3 {
  display: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (max-width: 1024px) {
    .story_con3 {
      flex-wrap: wrap; } }

/*=====================================================================================================================*/
/*システム部分================================================================================*/
.system_slider {
  position: relative;
  margin: 0 auto 10%; }
  @media screen and (max-width: 1024px) {
    .system_slider {
      margin: 0 auto 35%; } }

.slider {
  width: 980px;
  margin: 0 auto;
  top: 20px;
  text-align: center; }
  @media screen and (max-width: 1024px) {
    .slider {
      width: 90%; } }

.slide-item picture img {
  margin: 0 auto; }

.center-mgn {
  margin: 0 5px; }
  @media screen and (max-width: 1024px) {
    .center-mgn {
      margin: auto; } }

.slick-arrow {
  position: absolute;
  top: -200px;
  bottom: 0;
  margin: auto;
  transition: .3s;
  transform: scale(0.8);
  opacity: 0.5; }
  .slick-arrow:hover {
    opacity: 1; }
  .slick-arrow:active {
    transform: scale(1); }
  @media screen and (max-width: 800px) {
    .slick-arrow {
      top: -40px; } }

.prev-arrow {
  left: -5em;
  z-index: 10; }
  @media screen and (max-width: 1280px) {
    .prev-arrow {
      left: 0; } }
  @media screen and (max-width: 1024px) {
    .prev-arrow {
      left: -1em;
      height: 30px;
      opacity: 0.5; } }

.next-arrow {
  right: -5em; }
  @media screen and (max-width: 1280px) {
    .next-arrow {
      right: 0; } }
  @media screen and (max-width: 1024px) {
    .next-arrow {
      right: -1em;
      height: 30px;
      opacity: 0.5; } }

.slide-dots {
  margin: 0 auto;
  padding: 0;
  text-align: center; }
  @media screen and (max-width: 1024px) {
    .slide-dots {
      width: 80%; } }

.slide-dots li {
  display: inline-block;
  margin: 0 1.8em; }

.slide-dots li button {
  position: relative;
  text-indent: -9999px; }

.slide-dots li button::before {
  background-image: url("../img/system_pointer_off.png");
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  cursor: pointer;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 24px;
  width: 55px;
  height: 55px; }
  @media screen and (max-width: 1024px) {
    .slide-dots li button::before {
      background-size: cover;
      width: 15px;
      height: 15px; } }

.slide-dots li.slick-active button::before {
  background-image: url("../img/system_pointer_on.png");
  background-position: center;
  width: 55px;
  height: 55px;
  top: 10px; }
  @media screen and (max-width: 1024px) {
    .slide-dots li.slick-active button::before {
      top: 15px;
      background-size: cover;
      width: 25px;
      height: 25px; } }

button {
  background: none;
  border: none;
  outline: none;
  padding: 0 0px; }

picture img {
  display: block;
  margin: 0 auto; }

/*=====================================================================================================================*/
/*キャラクター部分================================================================================*/
.chara_con {
  margin: 3% auto 5%; }
  .chara_con ul {
    display: flex;
    justify-content: center; }
    .chara_con ul li {
      margin: -15px 10px 0 10px; }
      .chara_con ul li img {
        transition: .5s; }
      .chara_con ul li img:hover {
        transform: rotateY(360deg); }
  @media screen and (max-width: 640px) {
    .chara_con {
      margin: 5% auto 0%; } }

.kg2 {
  margin-bottom: 6em;
  overflow: hidden; }
  @media screen and (max-width: 640px) {
    .kg2 {
      margin-bottom: 4em;
      padding-top: .5em; } }

.sp_chara {
  margin: 0 auto 60px; }
  .sp_chara ul {
    display: flex;
    justify-content: center; }
    .sp_chara ul li {
      margin: -05px 5px;
      width: 120px; }
      .sp_chara ul li img {
        transition: .5s;
        max-width: 100%; }
      .sp_chara ul li img:hover {
        transform: rotateY(360deg); }
  @media screen and (max-width: 640px) {
    .sp_chara {
      margin: 0 auto 30px; }
      .sp_chara ul {
        display: flex;
        justify-content: center; }
        .sp_chara ul li {
          margin: -05px 5px;
          width: 65px; } }

.gallery-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  background-color: #fff;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  text-align: center;
  line-height: 30px;
  left: 50%;
  cursor: pointer;
  z-index: 2000; }
  @media screen and (max-width: 1024px) {
    .gallery-arrow {
      top: 55%; } }

.gallery-arrow-left {
  background: url("../img/../img/system_left.png") no-repeat center;
  background-size: cover;
  width: 30px;
  height: 30px;
  left: 25%;
  right: auto; }
  @media screen and (max-width: 1024px) {
    .gallery-arrow-left {
      left: 0%; } }

.gallery-arrow-right {
  background: url("../img/../img/system_right.png") no-repeat center;
  background-size: cover;
  width: 30px;
  height: 30px;
  right: 25%;
  left: auto; }
  @media screen and (max-width: 1024px) {
    .gallery-arrow-right {
      right: 0%; } }

.mfp-figure:after {
  background: rgba(255, 255, 255, 0); }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0);
  background: #none; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0);
  background: #none; }

/*=====================================================================================================================*/
/*=====================================================================================================================*/
/*システム部分================================================================================*/
.sys_mcon {
  position: relative;
  z-index: 3;
  width: 1300px;
  max-width: 90%;
  margin: 40px auto 80px; }
  @media screen and (max-width: 1280px) {
    .sys_mcon img {
      margin: 0px auto 20px;
      width: 350px; } }
  @media screen and (max-width: 1024px) {
    .sys_mcon {
      margin: 40px auto 0px; }
      .sys_mcon img {
        width: 400px; } }

/*SNS系統設定===========================================================================================================*/
.sns_btn {
  display: -webkit-flex;
  display: flex;
  max-width: 300px;
  margin: 20px auto;
  text-align: center; }
  .sns_btn img {
    width: 60px; }
  .sns_btn li {
    flex-grow: 2;
    -webkit-flex-grow: 1;
    /* Safari */ }

/*footerカスタム=======================================================================================================*/
footer {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8));
  color: #193456;
  overflow: hidden;
  position: relative;
  z-index: 5;
  font-family: 'Noto Sans JP', sans-serif; }
  @media screen and (max-width: 640px) {
    footer {
      background: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)); } }

.mcau {
  margin: 0 auto;
  width: 850px;
  max-width: 90%; }

.terminal {
  max-width: 800px; }

.kmclogo img {
  display: block;
  margin: 5px auto; }

.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: #FFF; }

.tlist_sp .pflist_l, .tlist_sps .pflist_l, .tlist-last_sp .pflist_l, .tlist_spss .pflist_l {
  background: #193456;
  color: #fff; }

/*各種項目名背景色変更*/
.clogo-d {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  overflow: hidden; }
  @media screen and (max-width: 640px) {
    .clogo-d {
      width: 380px;
      max-width: 100%;
      flex-wrap: wrap; } }

.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; } }

.mcau {
  margin: 0 auto;
  width: 800px;
  max-width: 90%; }

.logo_cp {
  width: 30%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center; }
  @media screen and (max-width: 640px) {
    .logo_cp {
      width: 80%; } }

.logo2 {
  width: 260px;
  max-width: 100%; }
  @media screen and (max-width: 640px) {
    .logo2 {
      width: 180px; } }

.game_info p, .download_btn_pc, .download_btn_sp {
  background: #193456;
  color: #FFF;
  font-weight: bold; }

/*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: 450px;
  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: 2px #d5cb87 solid;
  border-radius: 5px;
  text-align: center;
  margin: 5px 5px;
  font-size: 12px;
  background: #052455;
  background: -moz-linear-gradient(top, #052455 0%, black 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #052455), color-stop(100%, black));
  background: -webkit-linear-gradient(top, #052455 0%, black 100%);
  background: -o-linear-gradient(top, #052455 0%, black 100%);
  background: -ms-linear-gradient(top, #052455 0%, black 100%);
  background: linear-gradient(to bottom, #052455 0%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d1114', endColorstr='#000', GradientType=0 );
  box-shadow: 6px 6px rgba(66, 54, 0, 0.5); }

.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: 13px; }
  @media screen and (max-width: 640px) {
    .double {
      width: 120px;
      height: 150px;
      font-size: 8px; } }

.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; }

.dl_link2 a {
  display: block;
  width: 80%;
  margin: 0 auto 3px;
  padding: 2px 0;
  font-size: 12px;
  border-radius: 2px;
  background: #193456;
  color: #FFF;
  font-weight: bold;
  overflow: hidden;
  border: 2px #d5cb87 solid; }
.dl_link2 a:hover {
  background: #FFF;
  color: #193456; }
@media screen and (max-width: 640px) {
  .dl_link2 a {
    font-size: 10px;
    padding: 1px 0; } }

.soon {
  position: relative; }
  .soon img {
    height: 40px; }
  .soon p {
    position: absolute;
    text-align: center;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -5px;
    color: #000;
    font-size: 10px;
    font-weight: bold; }
