@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 {
  outline: none;
  min-width: 100%;
  font-family: 'Shippori Mincho', serif;
  overflow: hidden;
  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 * 120 );
  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 * 20); }

#nav-toggle span:nth-child(2) {
  top: calc(100vw / 1024 * 40); }

#nav-toggle span:nth-child(3) {
  top: calc(100vw / 1024 *60); }

.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.8);
  position: fixed;
  z-index: 999;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  height: calc(100vw / 1920 * 0);
  opacity: 0;
  transition: .3s; }
  .pchd ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1%;
    height: calc(100vw / 1920 * 70); }
    .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; } }

.pchd.hd_on {
  opacity: 1;
  height: calc(100vw / 1920 * 70); }

.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); } }
  @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 {
  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; } }

/*固定背景==================================================================================================*/
/*=====================================================================================================================*/
.back {
  position: fixed;
  z-index: -1;
  background: url("../img/back.jpg") no-repeat top center;
  background-size: cover;
  height: 101vh;
  width: 100vw;
  max-width: 100vw; }

/*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 {
  position: relative;
  top: -80px; }
  @media screen and (max-width: 1024px) {
    #story {
      top: 0; } }

/*=====================================================================================================================*/
/*TOPメイン画像関連（パーツ増やしたり減らしたり）================================================================================*/
.main_top {
  width: 100vw;
  height: auto;
  background: url("../img/back_00.jpg") 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: calc(100vw / 1920 * 1080);
  overflow: hidden; }
  @media screen and (max-width: 1024px) {
    .main_con {
      height: calc(100vw / 1024 * 1300); } }
  @media screen and (max-width: 640px) {
    .main_con {
      height: calc(100vw / 1024 * 1500); } }

.t_herol {
  height: calc(100vw / 1920 * 1080);
  position: absolute;
  margin: auto;
  bottom: 0;
  left: 0;
  z-index: 1; }
  @media screen and (max-width: 1024px) {
    .t_herol {
      height: calc(100vw / 1024 * 1300);
      left: calc(-150 / 1024 * 100vw);
      bottom: 0; } }

.t_heror {
  height: calc(100vw / 1920 * 979);
  position: absolute;
  margin: auto;
  bottom: 0;
  right: calc(10 / 1920 * 100vw);
  z-index: 1; }
  @media screen and (max-width: 1024px) {
    .t_heror {
      height: calc(100vw / 1024 * 950);
      right: calc(-50 / 1024 * 100vw);
      bottom: 0; } }

.t_logo {
  height: calc(100vw / 1920 * 390);
  position: absolute;
  margin: auto;
  top: calc(100vw /1920 * 60);
  right: 0;
  left: 0;
  z-index: 1; }
  @media screen and (max-width: 1024px) {
    .t_logo {
      height: calc(100vw / 1024 * 300);
      top: calc(100vw /1024 * 20);
      left: 0;
      right: 0; } }
  @media screen and (max-width: 640px) {
    .t_logo {
      width: 80%;
      height: auto; } }

.pc_pv {
  width: calc(100vw / 1920 * 340);
  position: absolute;
  margin: auto;
  bottom: calc(100vw / 1920 * 460);
  right: 0;
  left: 0;
  z-index: 2;
  transition: .3s; }
  .pc_pv:hover {
    opacity: .95; }
  @media screen and (max-width: 1024px) {
    .pc_pv {
      width: calc(100vw / 1024 * 340);
      left: 0;
      right: 0;
      bottom: calc(100vw / 1024 * 120); }
      .pc_pv:hover {
        opacity: 1; } }
  @media screen and (max-width: 800px) {
    .pc_pv {
      width: calc(100vw / 1024 * 400);
      display: block;
      margin: 0 auto;
      left: 0;
      right: 0;
      bottom: calc(100vw / 1024 * 150); } }
  @media screen and (max-width: 420px) {
    .pc_pv {
      width: calc(100vw / 1024 * 380);
      bottom: calc(100vw / 1024 * 250); } }

.pcmenu {
  height: calc(100vw / 1920 * 200);
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100vw / 1920 * 120);
  width: calc(1400 / 1920 * 100vw);
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3; }
  @media screen and (max-width: 1024px) {
    .pcmenu {
      display: none; } }

.top_menu {
  background: url("../img/pc_menuback_c.png") repeat-x;
  background-size: contain;
  height: calc(100vw / 1920 * 120);
  display: flex;
  justify-content: space-around;
  width: calc(1000 / 1920 * 100vw);
  align-items: center;
  color: #FFF;
  text-shadow: 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black; }
  .top_menu a {
    color: #ffcf7b;
    font-size: calc(36 / 1920 * 100vw);
    transition: .45s; }
  .top_menu a:hover {
    color: #FFF; }
  @media screen and (max-width: 1024px) {
    .top_menu {
      display: none; } }

.menu_side {
  width: calc(78 / 1920 * 100vw); }

.top_dl {
  position: absolute;
  margin: 0 auto;
  width: calc(400 / 1920 * 100vw);
  min-width: 250px;
  bottom: calc(100vw / 1920 * 320);
  right: 0;
  left: 0;
  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); } }
  @media screen and (max-width: 800px) {
    .top_dl {
      bottom: calc(100vw / 1024 * 30); } }

/*=====================================================================================================================*/
/*story===========================================================================================================*/
.story_con {
  width: 100%;
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 1024px) {
    .story_con {
      height: auto;
      padding-bottom: calc(); } }
  @media screen and (max-width: 800px) {
    .story_con {
      padding-bottom: calc(100vw / 1024 * 100); } }

.t_0 {
  display: block;
  width: calc(635 / 1920 * 100vw);
  margin: calc(100vw / 1920 * 100) auto calc(100vw / 1920 * 60); }
  @media screen and (max-width: 1024px) {
    .t_0 {
      width: calc(450 / 1024 * 100vw);
      margin: calc(100vw / 1024 * 100) auto calc(100vw / 1024 * 60); } }
  @media screen and (max-width: 800px) {
    .t_0 {
      width: 60%;
      margin: calc(100vw / 1024 * 100) auto calc(100vw / 1024 * 40); } }
  @media screen and (max-width: 640px) {
    .t_0 {
      width: 75%; } }

.story_slider {
  position: relative;
  margin: 5rem auto calc(100vw / 1024 * 100); }
  @media screen and (max-width: 1024px) {
    .story_slider {
      margin: 0 auto calc(100vw / 1024 * 100); } }

.slider {
  width: 90vw;
  max-width: 100%;
  margin: 0 auto;
  top: 20px;
  text-align: center; }
  @media screen and (max-width: 1024px) {
    .slider {
      width: 100%; } }

.story_mcon {
  width: calc(1500 / 1920 * 100vw);
  margin: 0 auto; }
  @media screen and (max-width: 1024px) {
    .story_mcon {
      width: 90%; } }
  @media screen and (max-width: 640px) {
    .story_mcon {
      display: block;
      margin: 0 auto; } }

.st_st {
  display: block;
  margin: 0 auto calc(100vw / 1920 * 30);
  width: calc(620 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .st_st {
      width: calc(420 / 1024 * 100vw);
      margin: 0 auto calc(100vw / 1024 * 30); } }
  @media screen and (max-width: 800px) {
    .st_st {
      width: calc(620 / 1024 * 100vw);
      margin: 0 auto calc(100vw / 1024 * 30); } }
  @media screen and (max-width: 640px) {
    .st_st {
      width: 80%;
      margin: 0 auto calc(100vw / 1024 * 30); } }

.st_img {
  display: block;
  margin: 0 auto calc(100vw / 1920 * 30);
  width: calc(1000 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .st_img {
      width: 80%;
      margin: 0 auto calc(100vw / 1024 * 30); } }

.str_txt {
  color: #FFF;
  text-align: center;
  font-size: calc(24 / 1920 * 100vw);
  text-shadow: 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black; }
  @media screen and (max-width: 1024px) {
    .str_txt {
      font-size: calc(24 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .str_txt {
      width: 80%;
      margin: 0 auto;
      font-size: calc(33 / 1024 * 100vw); } }

.slick-arrow {
  position: absolute;
  top: 0;
  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 {
      transform: scale(1); } }
  @media screen and (max-width: 640px) {
    .slick-arrow {
      transform: scale(1.5); } }

.prev-arrow {
  left: 0em;
  z-index: 10;
  height: calc(100vw / 1920 * 110); }
  @media screen and (max-width: 1280px) {
    .prev-arrow {
      left: 0; } }
  @media screen and (max-width: 1024px) {
    .prev-arrow {
      left: 0em;
      height: calc(100vw / 1024 * 110);
      opacity: 0.8; } }
  @media screen and (max-width: 800px) {
    .prev-arrow {
      left: 1em;
      height: calc(100vw / 1024 * 100);
      opacity: 0.8; } }
  @media screen and (max-width: 640px) {
    .prev-arrow {
      height: calc(100vw / 1024 * 60);
      opacity: 0.8; } }

.next-arrow {
  right: 0em;
  height: calc(100vw / 1920 * 110); }
  @media screen and (max-width: 1280px) {
    .next-arrow {
      right: 0; } }
  @media screen and (max-width: 1024px) {
    .next-arrow {
      right: 0em;
      height: calc(100vw / 1024 * 110);
      opacity: 0.8; } }
  @media screen and (max-width: 800px) {
    .next-arrow {
      right: 1em;
      height: calc(100vw / 1024 * 100);
      opacity: 0.8; } }
  @media screen and (max-width: 640px) {
    .next-arrow {
      height: calc(100vw / 1024 * 60);
      opacity: 0.8; } }

.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 calc(30 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .slide-dots li {
      margin: 0 calc(30 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .slide-dots li {
      margin: 0 calc(60 / 1024 * 100vw); } }

.slide-dots li button {
  position: relative;
  text-indent: -9999px; }

.slide-dots li button::before {
  background-image: url("../img/dot-1.png?00");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  content: "";
  cursor: pointer;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 24px;
  width: 30px;
  height: 30px; }
  @media screen and (max-width: 1024px) {
    .slide-dots li button::before {
      background-size: cover;
      width: 15px;
      height: 15px;
      top: calc(100vw / 1024 * 15); } }
  @media screen and (max-width: 640px) {
    .slide-dots li button::before {
      background-size: cover;
      width: 10px;
      height: 10px; } }

.slide-dots li.slick-active button::before {
  background-image: url("../img/dot-0.png?00");
  background-position: center;
  width: 30px;
  height: 30px;
  top: 24px; }
  @media screen and (max-width: 1024px) {
    .slide-dots li.slick-active button::before {
      background-size: cover;
      width: 15px;
      height: 15px;
      top: calc(100vw / 1024 * 15); } }
  @media screen and (max-width: 640px) {
    .slide-dots li.slick-active button::before {
      background-size: cover;
      width: 10px;
      height: 10px;
      top: calc(100vw / 1024 * 15); } }

button {
  background: none;
  border: none;
  outline: none;
  padding: 0 0px; }

picture img {
  display: block;
  margin: 0 auto; }

.t_txt {
  text-align: center;
  color: #FFF;
  text-shadow: 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black;
  font-size: calc(30 / 1920 * 100vw);
  margin: 2.5vw auto 0; }
  @media screen and (max-width: 1024px) {
    .t_txt {
      width: 80%;
      font-size: calc(22 / 1024 * 100vw);
      text-shadow: 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black;
      margin: 2.5vw auto 1vw; } }
  @media screen and (max-width: 800px) {
    .t_txt {
      width: 80%;
      font-size: calc(30 / 1024 * 100vw);
      text-shadow: 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black; } }
  @media screen and (max-width: 420px) {
    .t_txt {
      width: 90%;
      font-size: calc(36 / 1024 * 100vw);
      text-shadow: 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black; } }

/*=====================================================================================================================*/
/*勇者===========================================================================================================*/
.heroes_con {
  background: url("../img/back_01.jpg") no-repeat center top;
  background-size: cover;
  overflow: hidden; }

.t_1 {
  top: calc(100vw / 1920 * -80);
  display: block;
  margin: calc(100vw / 1920 * 160) auto 0;
  width: calc(635 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .t_1 {
      width: 60%;
      margin: calc(100vw / 1024 * 160) auto 0; } }
  @media screen and (max-width: 640px) {
    .t_1 {
      width: 75%; } }

.heroes_img img {
  display: block;
  margin: 0 auto calc(100vw / 1920 * 120);
  width: calc(1560 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .heroes_img img {
      width: 100%;
      margin: 0 auto calc(100vw / 1024 * 120); } }
  @media screen and (max-width: 800px) {
    .heroes_img img {
      margin: calc(100vw / 1024 * 80) auto calc(100vw / 1024 * 220); } }

/*=====================================================================================================================*/
/*system===========================================================================================================*/
.system_con {
  overflow: hidden;
  position: relative; }

.sys_con1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
  width: calc(1400 / 1920 * 100vw);
  height: calc(100vw / 1920 * 670);
  margin: calc(100vw / 1920 * 120) auto calc(100vw / 1920 * 200); }
  @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 * 150) auto calc(100vw / 1024 * 150);
      position: static; } }

.sys_txt1 {
  width: calc(550 / 1920 * 100vw);
  position: absolute;
  margin: auto;
  bottom: calc(100vw / 1920 * 30);
  left: calc(40 / 1920 * 100vw);
  color: #FFF;
  z-index: 5;
  text-shadow: 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black;
  font-size: calc(28 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .sys_txt1 {
      left: 0;
      width: calc(400 / 1024 * 100vw);
      font-size: calc(18 / 1024 * 100vw);
      bottom: calc(100vw / 1920 * 50); } }
  @media screen and (max-width: 800px) {
    .sys_txt1 {
      position: static;
      margin: 0 auto;
      width: 95%;
      font-size: calc(24 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .sys_txt1 {
      font-size: calc(40 / 1024 * 100vw); } }

.sys_1 {
  position: absolute;
  margin: auto;
  right: calc(50 / 1920 * 100vw);
  top: calc(100vw / 1920  * 60);
  width: calc(550 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .sys_1 {
      position: static;
      display: block;
      margin: 3vw auto;
      width: calc(550 / 1024 * 100vw); } }

.sys_2 {
  position: absolute;
  margin: auto;
  left: 0;
  top: 0;
  z-index: 2;
  width: calc(750 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .sys_2 {
      width: calc(500 / 1024 * 100vw); } }

.sys_3 {
  position: absolute;
  margin: auto;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: calc(750 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .sys_3 {
      width: calc(500 / 1024 * 100vw); } }

.sys_con2 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(1400 / 1920 * 100vw);
  height: calc(100vw / 1920 * 670);
  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_4 {
  position: absolute;
  margin: auto;
  left: calc(50 / 1920 * 100vw);
  top: calc(100vw / 1920  * 60);
  width: calc(550 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .sys_4 {
      position: static;
      display: block;
      margin: 3vw auto;
      width: calc(550 / 1024 * 100vw); } }

.sys_5 {
  position: absolute;
  margin: auto;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: calc(750 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .sys_5 {
      width: calc(500 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .sys_5 {
      width: calc(550 / 1024 * 100vw);
      z-index: 2; } }

.sys_6 {
  position: absolute;
  margin: auto;
  right: 0;
  top: 0;
  width: calc(750 / 1920 * 100vw);
  z-index: 2; }
  @media screen and (max-width: 800px) {
    .sys_6 {
      width: calc(500 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .sys_6 {
      width: calc(550 / 1024 * 100vw);
      z-index: 1; } }

.sys_txt2 {
  width: calc(650 / 1920 * 100vw);
  position: absolute;
  margin: auto;
  bottom: calc(100vw / 1920 * 50);
  right: calc(-20 / 1920 * 100vw);
  color: #FFF;
  z-index: 5;
  text-shadow: 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black, 0px 0px 6px black;
  font-size: calc(28 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .sys_txt2 {
      width: calc(420 / 1024 * 100vw);
      font-size: calc(18 / 1024 * 100vw);
      bottom: calc(100vw / 1920 * 50); } }
  @media screen and (max-width: 800px) {
    .sys_txt2 {
      position: static;
      margin: 0 auto;
      width: 95%;
      font-size: calc(24 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .sys_txt2 {
      font-size: calc(40 / 1024 * 100vw); } }

@media screen and (max-width: 800px) {
  .sp_scon {
    position: relative;
    width: 95%;
    margin: 5vw auto;
    height: calc(100vw / 1024 * 500); } }

/*=====================================================================================================================*/
/*キャラクター設定===========================================================================================================*/
.character_con {
  background: url("../img/back_02.jpg") no-repeat center top;
  background-size: cover;
  overflow: hidden; }

.icon0, .icon1, .icon2, .icon3, .icon4, .icon5, .icon6, .icon7 {
  transform: rotate(45deg);
  display: block;
  margin: auto;
  position: absolute;
  transition: .3s; }
  .icon0:hover, .icon1:hover, .icon2:hover, .icon3:hover, .icon4:hover, .icon5:hover, .icon6:hover, .icon7:hover {
    transform: rotate(45deg) scale(0.95); }
  @media screen and (max-width: 800px) {
    .icon0, .icon1, .icon2, .icon3, .icon4, .icon5, .icon6, .icon7 {
      position: static;
      margin: 8vw 6vw; }
      .icon0:hover, .icon1:hover, .icon2:hover, .icon3:hover, .icon4:hover, .icon5:hover, .icon6:hover, .icon7:hover {
        transform: rotate(45deg) scale(1); } }

.icon0 {
  top: 0;
  left: 0;
  right: 0;
  width: calc(300 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .icon0 {
      width: calc(250 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .icon0 {
      width: calc(300 / 1024 * 100vw); } }

.icon1 {
  top: calc(100vw / 1920 * 150);
  left: calc(115 / 1920 * 100vw );
  width: calc(180 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .icon1 {
      width: calc(250 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .icon1 {
      width: calc(300 / 1024 * 100vw); } }

.icon2 {
  top: calc(100vw / 1920 *290);
  left: calc(260 / 1920 * 100vw );
  width: calc(180 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .icon2 {
      width: calc(250 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .icon2 {
      width: calc(300 / 1024 * 100vw); } }

.icon3 {
  top: calc(100vw / 1920 *290);
  right: calc(260 / 1920 * 100vw );
  width: calc(180 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .icon3 {
      width: calc(250 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .icon3 {
      width: calc(300 / 1024 * 100vw); } }

.icon4 {
  top: calc(100vw / 1920 * 150);
  right: calc(115 / 1920 * 100vw );
  width: calc(180 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .icon4 {
      width: calc(250 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .icon4 {
      width: calc(300 / 1024 * 100vw); } }

.icon5 {
  bottom: calc(100vw / 1920 * 435);
  left: 0;
  right: 0;
  width: calc(300 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .icon5 {
      width: calc(250 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .icon5 {
      width: calc(300 / 1024 * 100vw); } }

.icon6 {
  bottom: calc(100vw / 1920 * 200);
  left: calc(120 / 1920 * 100vw);
  width: calc(300 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .icon6 {
      width: calc(250 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .icon6 {
      width: calc(300 / 1024 * 100vw); } }

.icon7 {
  bottom: calc(100vw / 1920 * 200);
  right: calc(120 / 1920 * 100vw);
  width: calc(300 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .icon7 {
      width: calc(250 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .icon7 {
      width: calc(300 / 1024 * 100vw); } }

.main_c_pc {
  width: calc(1000 / 1920 * 100vw);
  height: calc(100vw / 1920 * 1200);
  margin: calc(100vw / 1920 * 150) auto calc(100vw / 1920 * 120);
  position: relative; }
  @media screen and (max-width: 800px) {
    .main_c_pc {
      display: none; } }

.main_c_sp {
  display: none; }
  @media screen and (max-width: 800px) {
    .main_c_sp {
      display: flex;
      width: 90%;
      margin: calc(100vw / 1024 * 120) auto calc(100vw / 1024 * 320);
      flex-wrap: wrap;
      justify-content: space-around; } }

.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%; } }

/*=====================================================================================================================*/
/*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: #341601;
  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; }

.copy a {
  color: #FFAA12;
  width: 80%; }

.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;
  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); }

.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: 13px; }
  @media screen and (max-width: 640px) {
    .double {
      width: 120px;
      height: 150px;
      font-size: 8px; } }

.dl_link2 a {
  display: block;
  width: 80%;
  margin: 0 auto 3px;
  padding: 2px 0;
  font-size: 12px;
  border-radius: 2px;
  background: #FFF;
  color: #f4c27b;
  font-weight: bold;
  overflow: hidden;
  border: 2px solid #f4c27b; }
.dl_link2 a:hover {
  border: 2px solid #FFF;
  background: #ffa822;
  color: #000; }
@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; }

.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; } }
