@charset "UTF-8";
/* Scss Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;900&family=Zen+Maru+Gothic:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&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%; }

img, a img {
  border: none;
  vertical-align: text-bottom;
  -ms-interpolation-mode: bicubic; }

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

/*画像リンク関連*/
a:active, a:focus {
  outline: none; }

a img {
  border: none; }

img {
  padding: 0px;
  margin: 0px;
  border: none; }

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400; }

.back {
  width: 100vw;
  max-width: 100%;
  height: 102vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  background: #000 url("../../ja/img/back.jpg") center top no-repeat;
  background-size: cover; }
  @media screen and (max-width: 1024px) {
    .back {
      /*引数を省略*/
      height: 100%; } }

/*Header*/
header {
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
  opacity: 0; }

@keyframes fadeInAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn2 {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
  animation-delay: 1.5s;
  opacity: 0; }

@keyframes fadeInAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.pc_menu {
  width: 100vw;
  max-width: 100%;
  transition: .5s;
  overflow: hidden;
  border-top: 3px #ff00d0 solid;
  border-bottom: 3px #ff00d0 solid;
  background: rgba(0, 0, 0, 0.6); }
  @media screen and (max-width: 800px) {
    .pc_menu {
      display: none; } }

.t_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: .5% auto;
  width: 100%;
  position: relative; }
  .t_menu li {
    margin: .5vw 2vw; }
  .t_menu a {
    display: block;
    color: #bf985e;
    font-style: normal;
    position: relative;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-family: "Sawarabi Mincho", serif;
    font-weight: 400; }
  .t_menu img {
    height: calc(120 / 1920 * 100vw);
    display: block;
    margin: 0 auto;
    transition: .15s;
    transform: rotateZ(-5deg); }
    .t_menu img:hover {
      transform: rotateZ(-5deg) translateY(-10px); }
  @media screen and (max-width: 1280px) {
    .t_menu a {
      font-size: clamp(0.6rem, 1.5vw, 1.5rem); } }
  @media screen and (max-width: 1024px) {
    .t_menu a {
      font-size: clamp(0.5rem, 3vw, 0.85rem); } }

/*=====================================================================================================================*/
/*折り畳みSPメニュー*/
#nav-toggle {
  display: none;
  position: fixed;
  right: 2vw;
  left: auto;
  top: 2vw;
  height: calc(100vw / 1024 * 90);
  width: calc(90 / 1024 * 100vw);
  z-index: 1001;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  transition: .3s ease-in-out; }
  @media screen and (max-width: 800px) {
    #nav-toggle {
      display: block; } }
  @media screen and (max-width: 640px) {
    #nav-toggle {
      height: calc(100vw / 1024 * 90);
      width: calc(90 / 1024 * 100vw);
      border-radius: 5px; } }

#nav-toggle div {
  position: relative;
  height: calc(100vw / 1024 * 90);
  width: calc(90 / 1024 * 100vw);
  display: flex;
  text-align: center;
  filter: box-shadow(0 0 0.75rem #4b2700); }
  @media screen and (max-width: 640px) {
    #nav-toggle div {
      height: calc(100vw / 1024 * 90);
      width: calc(90 / 1024 * 100vw); } }

#nav-toggle span {
  display: block;
  position: absolute;
  margin: auto;
  width: calc(50 / 1024 * 100vw);
  height: calc(100vw / 1024 * 5);
  background: #ff11ae;
  border-radius: 5px;
  left: 0%;
  right: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out; }
  @media screen and (max-width: 640px) {
    #nav-toggle span {
      width: calc(60 / 1024 * 100vw);
      height: calc(100vw / 1024 * 8); } }

#nav-toggle span:nth-child(1) {
  top: 30%; }
  @media screen and (max-width: 640px) {
    #nav-toggle span:nth-child(1) {
      top: 20%; } }

#nav-toggle span:nth-child(2) {
  top: 47.5%; }
  @media screen and (max-width: 420px) {
    #nav-toggle span:nth-child(2) {
      top: 45.5%; } }

#nav-toggle span:nth-child(3) {
  top: auto;
  bottom: 30%; }
  @media screen and (max-width: 640px) {
    #nav-toggle span:nth-child(3) {
      bottom: 20%; } }

.menu {
  display: none;
  position: fixed;
  /* 開いてないときは画面外に配置 */
  margin: auto;
  top: 0px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  text-align: center;
  padding: 0px 0;
  transform: translateY(-100rem);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  z-index: 1000; }
  @media screen and (max-width: 800px) {
    .menu {
      display: block; }
      .menu img {
        display: block;
        height: calc(100vw / 1024 * 60);
        margin: 0 auto; } }
  @media screen and (max-width: 640px) {
    .menu {
      display: block; }
      .menu img {
        display: block;
        height: calc(100vw / 1024 * 80);
        margin: 1vw auto 0; } }

.menu ul {
  position: static;
  right: 0;
  top: 0; }

.menu ul li {
  float: none;
  position: static;
  font-size: 20px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
  color: #bf985e; }

.menu ul li:last-child {
  border-bottom: none; }

.menu ul li a {
  width: 100%;
  display: block;
  color: #bf985e;
  padding: 15px 0;
  font-family: source-han-serif-japanese, serif;
  letter-spacing: .1rem; }
  .menu ul li a span {
    font-size: 30px; }

/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span {
  background: #ff11ae; }

.open #nav-toggle span:nth-child(1) {
  top: 48%;
  -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: 48%;
  bottom: auto;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg); }

/* #global-nav スライドアニメーション */
.open .menu {
  /* #global-nav top + #mobile-head height */
  right: 0px;
  transform: translateY(0rem); }

.main {
  position: relative;
  height: calc(100vw / 1920 * 1230);
  background: url("../../ja/img/main_back.jpg?00") no-repeat bottom center;
  background-size: cover; }
  @media screen and (max-width: 1024px) {
    .main {
      height: calc(100vw / 1024 * 650);
      background-size: contain; } }
  @media screen and (max-width: 800px) {
    .main {
      height: auto;
      background: none; } }

.top_kmc {
  position: absolute;
  width: calc(80 / 1920 * 100vw);
  max-width: 300px;
  margin: auto;
  top: calc(100vw/ 1920 *10);
  left: calc(30 / 1920 * 100vw);
  z-index: 990; }
  @media screen and (max-width: 800px) {
    .top_kmc {
      top: calc(100vw/ 1024 * -40);
      left: calc(50 / 1024 * 100vw);
      width: calc(80 / 1024 * 100vw); } }
  @media screen and (max-width: 420px) {
    .top_kmc {
      top: calc(100vw/ 1024 * -50);
      width: calc(120 / 1024 * 100vw); } }

.t_logo {
  display: block;
  margin: 0 auto calc(100vw / 1920 * 50);
  width: calc(620 / 1920 * 100vw);
  position: absolute;
  top: calc(100vw / 1920 *100);
  left: calc(70 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .t_logo {
      /*引数を省略*/
      width: 80%;
      margin: 0 auto calc(100vw / 1024 * 30); } }
  @media screen and (max-width: 800px) {
    .t_logo {
      /*引数を省略*/
      width: 50%; } }

.pv_btn {
  display: block;
  width: calc(500 / 1920 * 100vw);
  margin: auto;
  position: absolute;
  bottom: calc(100vw / 1920 * 300);
  right: calc(300 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .pv_btn {
      /*引数を省略*/ } }
  @media screen and (max-width: 800px) {
    .pv_btn {
      /*引数を省略*/
      width: 80%;
      margin: 0 auto 5.5vw; } }

.catch {
  display: block;
  width: calc(1000 / 1920 * 100vw);
  margin: auto;
  position: absolute;
  bottom: calc(100vw / 1920 * 100);
  right: calc(80 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .catch {
      /*引数を省略*/ } }
  @media screen and (max-width: 800px) {
    .catch {
      /*引数を省略*/
      width: 80%;
      margin: 0 auto 5.5vw; } }

.top_dl {
  display: block;
  margin: auto;
  width: calc(450 / 1920 * 100vw);
  position: absolute;
  bottom: calc(100vw / 1920 * 100);
  left: calc(120 / 1920 * 100vw);
  transition: .3s; }
  .top_dl:hover {
    bottom: calc(100vw / 1920 * 105); }
  @media screen and (max-width: 1024px) {
    .top_dl {
      /*引数を省略*/ } }
  @media screen and (max-width: 800px) {
    .top_dl {
      /*引数を省略*/
      width: 80%; } }

.pf_logolist {
  text-align: center;
  z-index: 30;
  margin: 3vw auto 1vw;
  width: calc(1200 / 1920 * 100vw); }
  .pf_logolist div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: calc(100vw / 1920 * 80); }
  .pf_logolist img {
    height: calc(100vw / 1920 * 38);
    transition: .2s; }
  .pf_logolist a img {
    transition: .2s; }
  .pf_logolist a img:hover {
    opacity: 0.5; }
  @media screen and (max-width: 1024px) {
    .pf_logolist {
      width: 90%; }
      .pf_logolist div {
        flex-wrap: wrap;
        height: auto; }
      .pf_logolist img {
        height: calc(100vw / 1280 * 38); } }
  @media screen and (max-width: 800px) {
    .pf_logolist {
      margin: 5vw auto; }
      .pf_logolist img {
        height: calc(100vw / 1024 * 60); } }

.main_con {
  display: block; }
  @media screen and (max-width: 800px) {
    .main_con {
      display: none; } }

.main_con_sp {
  display: none; }
  @media screen and (max-width: 800px) {
    .main_con_sp {
      display: block; }
      .main_con_sp img {
        width: 100%;
        mask-image: linear-gradient(-90deg, black 80%, black 0%, transparent);
        -webkit-mask-image: -webkit-linear-gradient(-90deg, black 80%, black 0%, transparent); } }

.hd_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -5;
  padding: 10px 0 10px 0;
  overflow: hidden;
  opacity: 0;
  transition: .3s; }
  .hd_menu ul {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly; }
  .hd_menu img {
    height: calc(100vw / 1920 * 30); }
  @media screen and (max-width: 800px) {
    .hd_menu {
      display: none;
      height: 0px; } }

.hd_on {
  transition: .3s;
  opacity: 1;
  z-index: 100; }
  @media screen and (max-width: 800px) {
    .hd_on {
      display: none; } }

.hd_menu2 {
  width: 100%;
  background: black;
  z-index: 0;
  padding: 10px 0 10px 0;
  transition: .3s; }
  .hd_menu2 ul {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly; }
  .hd_menu2 img {
    height: calc(100vw / 1920 * 30); }
  @media screen and (max-width: 800px) {
    .hd_menu2 {
      display: none; } }

.sp_pv {
  display: none; }
  @media screen and (max-width: 800px) {
    .sp_pv {
      display: block; } }

.pv_btn_sp {
  width: 80%; }
  @media screen and (max-width: 800px) {
    .pv_btn_sp {
      display: block;
      margin: 30px auto; } }

.story {
  position: relative;
  overflow: hidden;
  padding-top: calc(120 / 1920 * 60vw); }
  @media screen and (max-width: 1024px) {
    .story {
      padding-top: calc(120 / 1024 * 60vw); } }

.story .obi {
  position: relative;
  top: calc(100vw / 1920 *28);
  display: block;
  z-index: 5;
  margin: calc(100vw / 1920 * 110) 0 0; }
  .story .obi img {
    width: calc(1528 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .story .obi {
      position: static;
      top: 0; }
      .story .obi img {
        width: 60%; } }
  @media screen and (max-width: 800px) {
    .story .obi img {
      width: 80%; } }

.sty_con1 {
  background: url("../../ja/img/st_1bk.jpg") no-repeat center;
  justify-content: flex-start; }

.sty_con2 {
  background: url("../../ja/img/st_2bk.jpg") no-repeat center;
  justify-content: flex-end; }

.sty_con3 {
  background: url("../img/st_3bk.jpg") no-repeat center;
  justify-content: center; }

.sty_con1, .sty_con2, .sty_con3 {
  display: flex;
  align-items: center;
  background-size: cover;
  height: calc(100vw / 1920 * 700);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, #5b27b7, #e747ff, #5b27b7) 1; }
  @media screen and (max-width: 800px) {
    .sty_con1, .sty_con2, .sty_con3 {
      display: block;
      height: auto;
      background-image: none;
      background-color: rgba(0, 0, 0, 0.6); } }

.sty_con_img_sp {
  display: none; }
  @media screen and (max-width: 800px) {
    .sty_con_img_sp {
      display: block;
      width: 100%;
      mask-image: linear-gradient(90deg, black 0%, black 80%, transparent);
      -webkit-mask-image: -webkit-linear-gradient(90deg, black 0%, black 80%, transparent); } }

.st_txt1, .st_txt2, .st_txt3 {
  display: block; }
  .st_txt1 img, .st_txt2 img, .st_txt3 img {
    width: 100%; }
  @media screen and (max-width: 800px) {
    .st_txt1 img, .st_txt2 img, .st_txt3 img {
      width: 100%; } }

.st_txt1 {
  width: calc(775 / 1920 * 100vw);
  margin-left: calc(130 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .st_txt1 {
      width: 90%;
      margin: calc(100vw / 1024 * 100) auto; } }

.st_txt2 {
  width: calc(782 / 1920 * 100vw);
  margin-right: calc(130 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .st_txt2 {
      width: 90%;
      margin: calc(100vw / 1024 * 100) auto; } }

.st_txt3 {
  width: calc(640 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .st_txt3 {
      width: 90%;
      margin: calc(100vw / 1024 * 100) auto; } }

.features {
  padding-top: calc(120 / 1920 * 50vw);
  padding-bottom: calc(120 / 1920 * 100vw);
  overflow: hidden; }
  @media screen and (max-width: 800px) {
    .features {
      padding-top: calc(120 / 1024 * 100vw);
      padding-bottom: calc(120 / 1024 * 100vw); } }

.features .obi {
  display: block;
  margin: calc(100vw / 1920 * 118) 0 0; }
  .features .obi img {
    width: calc(1368 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .features .obi {
      margin: 0 auto calc(100vw / 1024 * 120); }
      .features .obi img {
        width: 60%; } }
  @media screen and (max-width: 800px) {
    .features .obi {
      margin: 0 auto calc(100vw / 1024 * 120); }
      .features .obi img {
        width: 90%; } }

.features .st1 {
  display: block;
  margin: 0 auto calc(100vw / 1920 * 60); }
  @media screen and (max-width: 800px) {
    .features .st1 {
      margin: 0 auto calc(100vw / 1024 * 120); } }

.fst img {
  display: block;
  width: calc(1275 / 1920 * 100vw);
  margin: calc(100vw/ 1920 * 120) auto 0; }
@media screen and (max-width: 1024px) {
  .fst img {
    display: block;
    width: 80%;
    margin: calc(100vw/ 1024 * 120) auto 0; } }

.f_con ul {
  display: flex;
  justify-content: space-between;
  width: calc(1600 / 1920 * 100vw);
  margin: 5vw auto 3vw; }
  .f_con ul img {
    width: calc(755 / 1920 * 100vw); }
.f_con p {
  color: #FFF;
  width: calc(1600 / 1920 * 100vw);
  margin: 0 auto;
  text-align: center;
  font-size: calc(30 / 1920 * 100vw);
  line-height: 180%; }
@media screen and (max-width: 800px) {
  .f_con ul img {
    width: 90%;
    display: block;
    margin: 0 auto; }
  .f_con p {
    font-size: calc(30 / 1024 * 100vw); } }
@media screen and (max-width: 640px) {
  .f_con ul {
    display: block; }
    .f_con ul img {
      width: 90%;
      margin: 0 auto calc(100vw / 1024 * 60); }
  .f_con p {
    width: 80%;
    font-size: calc(40 / 1024 * 100vw);
    text-align: left; } }

.f_con2 {
  width: calc(1580 / 1920 * 100vw);
  margin: 5vw auto 3vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; }
  @media screen and (max-width: 1024px) {
    .f_con2 {
      width: 85%;
      align-content: center; } }
  @media screen and (max-width: 800px) {
    .f_con2 {
      width: 78%;
      display: block; } }

.f_txt {
  width: calc(680 / 1920 * 100vw);
  color: #FFF;
  font-size: calc(30 / 1920 * 100vw);
  line-height: 150%; }
  .f_txt img {
    display: block;
    width: 100%;
    margin: 0 auto; }
  @media screen and (max-width: 800px) {
    .f_txt {
      width: 100%;
      font-size: calc(30 / 1024 * 100vw); }
      .f_txt img {
        width: 100%;
        margin: 0 auto 3vw; } }
  @media screen and (max-width: 800px) {
    .f_txt {
      font-size: calc(40 / 1024 * 100vw); } }

.f_cap {
  width: calc(806 / 1920 * 100vw);
  display: block; }
  @media screen and (max-width: 800px) {
    .f_cap {
      width: 90%;
      margin: calc(100vw / 1024 * 60) auto; } }
  @media screen and (max-width: 640px) {
    .f_cap {
      width: 100%;
      margin: calc(100vw / 1024 * 60) auto; } }

.base_list {
  width: calc(1500 / 1920 * 100vw);
  margin: 10vw auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .base_list img {
    width: calc(410 / 1920 * 100vw);
    display: block;
    transform: rotate(45deg); }
  @media screen and (max-width: 800px) {
    .base_list {
      width: 80%;
      margin: calc(100vw / 1024 * 120) auto calc(100vw / 1024 * 0); }
      .base_list img {
        width: calc(100 / 2.4);
        display: block; } }

.battle {
  padding-top: calc(120 / 1920 * 50vw);
  width: 100vw;
  max-width: 100%;
  overflow: hidden; }
  @media screen and (max-width: 800px) {
    .battle {
      padding-top: calc(120 / 1024 * 100vw);
      padding-bottom: calc(120 / 1024 * 100vw); } }

.battle .obi {
  display: block;
  margin: calc(100vw / 1920 * 60) 0 0;
  position: relative;
  top: calc(100vw / 1920 * 56);
  z-index: 3; }
  .battle .obi img {
    width: calc(1465 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .battle .obi {
      margin: 0 auto calc(100vw / 1024 * 120); }
      .battle .obi img {
        width: 60%; } }
  @media screen and (max-width: 800px) {
    .battle .obi {
      margin: 0 auto calc(100vw / 1024 * 120); }
      .battle .obi img {
        width: 80%; } }

.bt_con1, .bt_con2, .bt_con3 {
  width: 110vw;
  transform: skewY(-5deg);
  position: relative;
  margin: calc(100vw / 1920 * 150) auto calc(100vw / 1920 * 200);
  padding: calc(100vw / 1920 * 60) 0; }
  .bt_con1::after, .bt_con2::after, .bt_con3::after {
    content: "";
    background: url(../../ja/img/line_1.png) repeat-x top center;
    background-size: cover;
    height: calc(100vw / 1920 * 118);
    position: absolute;
    top: calc(100vw / 1920 * -60);
    width: 110vw;
    left: 0;
    clear: both;
    overflow: hidden; }
  .bt_con1::before, .bt_con2::before, .bt_con3::before {
    content: "";
    position: absolute;
    background: url(../../ja/img/line_1.png) repeat-x top;
    background-size: cover;
    bottom: calc(100vw / 1920 * -60);
    height: calc(100vw / 1920 * 118);
    width: 110vw;
    left: 0;
    clear: both;
    overflow: hidden; }
  .bt_con1 div, .bt_con2 div, .bt_con3 div {
    width: 100%;
    height: 100%;
    position: relative; }
  @media screen and (max-width: 1024px) {
    .bt_con1, .bt_con2, .bt_con3 {
      width: 100vw;
      max-width: 100%;
      transform: skewY(0deg); }
      .bt_con1::after, .bt_con2::after, .bt_con3::after {
        top: calc(100vw / 1024 * -60);
        height: calc(100vw / 1024 * 118);
        width: 100%; }
      .bt_con1::before, .bt_con2::before, .bt_con3::before {
        bottom: calc(100vw / 1024 * -60);
        height: calc(100vw / 1024 * 118);
        width: 100%; } }

.bt_con1 {
  background: url("../../ja/img/bt_bk1.jpg") no-repeat;
  background-size: cover;
  height: calc(100vw / 1920 * 650); }
  .bt_con1 div {
    position: relative; }
    .bt_con1 div img:first-child {
      position: absolute;
      transform: skewY(5deg) rotateZ(-5deg);
      left: calc(150 / 1920 * 100vw);
      margin: auto;
      top: calc(100vw / 1920 * 20);
      width: calc(860 / 1920 * 100vw); }
    .bt_con1 div img:last-child {
      position: absolute;
      transform: skewY(5deg) rotateZ(-5deg);
      right: calc(320 / 1920 * 100vw);
      bottom: calc(100vw / 1920 * -50);
      margin: auto;
      z-index: 3;
      margin: auto;
      width: calc(830 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .bt_con1 {
      height: auto; }
      .bt_con1 div {
        width: 90%;
        margin: 0 auto;
        position: static;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-content: center; }
        .bt_con1 div img:first-child {
          position: static;
          transform: skewY(0deg) rotateZ(0deg);
          width: 45%;
          display: block; }
        .bt_con1 div img:last-child {
          position: static;
          transform: skewY(0deg) rotateZ(0deg);
          width: 45%;
          display: block; } }
  @media screen and (max-width: 800px) {
    .bt_con1 div {
      display: block; }
      .bt_con1 div img:first-child {
        width: 80%;
        margin-top: calc(100vw / 1024 * 80); }
      .bt_con1 div img:last-child {
        width: 80%; } }

.bt_con2 {
  background: url("../../ja/img/bt_bk2.jpg") no-repeat;
  background-size: cover;
  height: calc(100vw / 1920 * 650); }
  .bt_con2 div {
    position: relative; }
    .bt_con2 div img:first-child {
      position: absolute;
      transform: skewY(5deg) rotateZ(-5deg);
      right: calc(400 / 1920 * 100vw);
      margin: auto;
      top: calc(100vw / 1920 * 20);
      width: calc(860 / 1920 * 100vw); }
    .bt_con2 div img:last-child {
      position: absolute;
      transform: skewY(5deg) rotateZ(-5deg);
      left: calc(120 / 1920 * 100vw);
      bottom: calc(100vw / 1920 * 20);
      margin: auto;
      z-index: 3;
      margin: auto;
      width: calc(830 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .bt_con2 {
      height: auto; }
      .bt_con2 div {
        width: 90%;
        margin: 0 auto;
        position: static;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-content: center; }
        .bt_con2 div img:first-child {
          position: static;
          transform: skewY(0deg) rotateZ(0deg);
          width: 45%;
          display: block; }
        .bt_con2 div img:last-child {
          position: static;
          transform: skewY(0deg) rotateZ(0deg);
          width: 45%;
          display: block; } }
  @media screen and (max-width: 800px) {
    .bt_con2 div {
      display: block; }
      .bt_con2 div img:first-child {
        width: 80%;
        margin-top: calc(100vw / 1024 * 80); }
      .bt_con2 div img:last-child {
        width: 80%;
        margin-top: calc(100vw / 1024 * 80); } }

.bt_con3 {
  background: url("../../ja/img/bt_bk3.jpg") no-repeat;
  background-size: cover;
  height: calc(100vw / 1920 * 650); }
  .bt_con3 div {
    position: relative; }
    .bt_con3 div img:first-child {
      position: absolute;
      transform: skewY(5deg) rotateZ(-5deg);
      left: calc(150 / 1920 * 100vw);
      margin: auto;
      top: calc(100vw / 1920 * 50);
      width: calc(860 / 1920 * 100vw);
      z-index: 3; }
    .bt_con3 div img:last-child {
      position: absolute;
      transform: skewY(5deg) rotateZ(-5deg);
      right: calc(320 / 1920 * 100vw);
      bottom: calc(100vw / 1920 * 30);
      margin: auto;
      margin: auto;
      width: calc(830 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .bt_con3 {
      height: auto; }
      .bt_con3 div {
        width: 90%;
        margin: 0 auto;
        position: static;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-content: center; }
        .bt_con3 div img:first-child {
          position: static;
          transform: skewY(0deg) rotateZ(0deg);
          width: 45%;
          display: block; }
        .bt_con3 div img:last-child {
          position: static;
          transform: skewY(0deg) rotateZ(0deg);
          width: 45%;
          display: block; } }
  @media screen and (max-width: 800px) {
    .bt_con3 div {
      display: block; }
      .bt_con3 div img:first-child {
        width: 80%;
        margin-top: calc(100vw / 1024 * 80); }
      .bt_con3 div img:last-child {
        margin-top: calc(100vw / 1024 * 80);
        margin-bottom: calc(100vw / 1024 * 80);
        width: 80%; } }

.character {
  overflow: hidden;
  padding-top: calc(120 / 1920 * 50vw); }
  @media screen and (max-width: 800px) {
    .character {
      padding-top: calc(120 / 1024 * 100vw); } }

.character .obi {
  display: block;
  margin: calc(100vw / 1920 * 80) 0 0;
  position: relative;
  top: calc(100vw / 1920 * 42);
  z-index: 3; }
  .character .obi img {
    width: calc(1538 / 1920 * 100vw); }
  @media screen and (max-width: 1024px) {
    .character .obi {
      position: static;
      margin: 0 auto 0; }
      .character .obi img {
        width: 60%; } }
  @media screen and (max-width: 800px) {
    .character .obi {
      margin: 0 auto; }
      .character .obi img {
        width: 80%; } }

.chara_con1 {
  position: relative; }

.cha_link {
  width: 100%;
  height: auto;
  filter: saturate(10%) brightness(60%) grayscale(100%);
  transition: .5s; }
  .cha_link:hover {
    filter: saturate(100%) brightness(100%) grayscale(0%); }
  @media screen and (max-width: 1024px) {
    .cha_link {
      filter: saturate(100%) brightness(100%);
      opacity: 1; } }

.country_btnlist {
  display: flex;
  width: 900px;
  margin: 5% auto 3%;
  justify-content: space-between; }
  @media screen and (max-width: 1024px) {
    .country_btnlist {
      margin: 15% auto 3%;
      width: calc(900 / 1024 * 100vw); }
      .country_btnlist img {
        width: calc(250 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .country_btnlist {
      width: 95%; }
      .country_btnlist img {
        width: 100%; } }

.country_off {
  filter: saturate(0%) brightness(150%);
  opacity: .6;
  transition: .5s; }
  .country_off:hover {
    filter: saturate(100%) brightness(100%);
    opacity: 1; }

.chara_container {
  position: relative;
  margin-bottom: 4rem;
  width: 100vw;
  max-width: 100%;
  margin-bottom: calc(100vw / 1920 * 200); }
  @media screen and (max-width: 1024px) {
    .chara_container {
      display: none; } }

.chara_spcontainer {
  display: none; }
  @media screen and (max-width: 1024px) {
    .chara_spcontainer {
      display: block; } }

.chara_mbg, .chara_mbg2, .chara_mbg3 {
  position: absolute;
  margin: auto;
  width: 100%;
  top: calc(100vw / 1920 * 100);
  left: 0;
  right: 0;
  z-index: 0;
  opacity: .5; }

.chara_mbg {
  border-top: 5px solid #8100c2;
  border-bottom: 5px solid #8100c2; }

.chara_mbg2 {
  border-top: 5px solid #0049ff;
  border-bottom: 5px solid #0049ff; }

.chara_mbg3 {
  border-top: 5px solid #64ff48;
  border-bottom: 5px solid #64ff48; }

.chara_slider {
  display: block;
  position: relative;
  width: 100%;
  height: calc(100vw / 1920 * 800);
  z-index: 3;
  min-width: 100%;
  margin: 0 auto; }
  .chara_slider div {
    position: relative; }

.chara_con {
  position: relative;
  margin: 0 auto;
  width: calc(1400 / 1920 * 100vw);
  height: calc(100vw / 1920 * 780); }

.chara_listthumb {
  position: absolute;
  margin: 0 auto;
  width: 1000px;
  bottom: 2.5%;
  left: 0;
  right: 0;
  z-index: 5; }

.c_leftcon {
  height: calc(100vw / 1920 * 760);
  position: absolute;
  margin: auto;
  top: 0;
  z-index: 3; }
  @media screen and (max-width: 1024px) {
    .c_leftcon {
      position: relative;
      height: calc(100vw / 1024 * 760);
      display: block;
      margin: 10% auto 0;
      z-index: 3; } }
  @media screen and (max-width: 800px) {
    .c_leftcon {
      height: auto;
      width: 80%; } }

.c_rightcon {
  position: absolute;
  width: calc(520 / 1920 * 100vw);
  margin: auto;
  top: calc(100vw / 1920 * 50);
  right: -15%;
  z-index: 6; }
  .c_rightcon img {
    width: 100%; }
  .c_rightcon p {
    margin-top: 1.5rem;
    color: #FFF;
    font-size: calc(21 / 1920 * 100vw); }
  @media screen and (max-width: 1280px) {
    .c_rightcon p {
      font-size: calc(20 / 1280 * 100vw); } }
  @media screen and (max-width: 1024px) {
    .c_rightcon p {
      font-size: .1rem;
      line-height: 180%; } }

.c_name {
  height: calc(100vw / 1920 * 200); }
  @media screen and (max-width: 1024px) {
    .c_name {
      height: calc(100vw / 1024 * 200); } }
  @media screen and (max-width: 640px) {
    .c_name {
      height: auto;
      width: 90%;
      margin: 0 auto; } }

.c_imgr01 {
  left: calc(100 / 1920 * 100vw); }
  @media screen and (max-width: 800px) {
    .c_imgr01 {
      left: 0;
      right: 0; } }

.slide-arrow {
  border: none;
  background-color: #333;
  height: 0;
  margin: auto;
  position: absolute;
  top: calc(100vw / 1920 * 330);
  width: 0;
  z-index: 10; }
  @media screen and (max-width: 1024px) {
    .slide-arrow {
      top: 30%; } }

.prev-arrow_pc {
  background: url("../img/arrow_l.webp") no-repeat;
  background-size: cover;
  width: calc(50 / 1920 * 100vw);
  height: calc(100vw / 1920 * 50);
  left: calc(150 / 1920 * 100vw);
  transition: .3s;
  opacity: .5; }
  .prev-arrow_pc:hover {
    opacity: 1;
    transform: scale(0.95); }
  @media screen and (max-width: 1024px) {
    .prev-arrow_pc {
      width: calc(80 / 1024 * 100vw);
      height: calc(100vw / 1024 * 80);
      left: calc(50 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .prev-arrow_pc {
      width: calc(100 / 1024 * 100vw);
      height: calc(100vw / 1024 * 100);
      left: calc(20 / 1024 * 100vw); } }

.next-arrow_pc {
  background: url("../img/arrow_r.webp") no-repeat;
  background-size: cover;
  width: calc(50 / 1920 * 100vw);
  height: calc(100vw / 1920 * 50);
  right: calc(150 / 1920 * 100vw);
  transition: .3s;
  opacity: .5; }
  .next-arrow_pc:hover {
    opacity: 1;
    transform: scale(0.95); }
  @media screen and (max-width: 1024px) {
    .next-arrow_pc {
      width: calc(80 / 1024 * 100vw);
      height: calc(100vw / 1024 * 80);
      right: calc(50 / 1024 * 100vw); } }
  @media screen and (max-width: 640px) {
    .next-arrow_pc {
      width: calc(100 / 1024 * 100vw);
      height: calc(100vw / 1024 * 100);
      right: calc(20 / 1024 * 100vw); } }

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0; }

.chara_listthumb, .chara_listthumb_sp {
  transition: .3s; }

.icon {
  transition: .3s;
  filter: saturate(10%) brightness(60%) grayscale(100%);
  opacity: .7; }
  .icon img {
    display: block;
    width: calc(120 / 1920 * 100vw);
    max-width: 120px;
    margin: 0 auto; }
  .icon:hover {
    opacity: 1; }
  @media screen and (max-width: 1024px) {
    .icon {
      opacity: 1; }
      .icon img {
        width: 150px;
        max-width: 150px; } }
  @media screen and (max-width: 640px) {
    .icon {
      opacity: 1; }
      .icon img {
        width: 100px;
        max-width: 100px; } }

.chara_listthumb .slick-current, .chara_listthumb_sp .slick-current {
  filter: saturate(100%) brightness(100%) grayscale(0%);
  opacity: 1; }

.chara_sp_slider {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100%;
  margin: 5% auto 0; }

.chara_spback_oct {
  background: url("../../ja/img/chara_bk1.jpg") no-repeat center top;
  background-size: cover; }

.chara_spback_villain {
  background: url("../../ja/img/chara_bk2.jpg") no-repeat center top;
  background-size: cover; }

.chara_spback_hero {
  background: url("../ja/img/chara_bk3.jpg") no-repeat center top;
  background-size: cover; }

.c_spcon {
  position: relative; }

.sp_text {
  width: 80%;
  margin: 10% auto 5%; }
  .sp_text p {
    margin-top: 1.5rem;
    color: #FFF;
    font-size: 1.8rem;
    line-height: 200%; }
  @media screen and (max-width: 640px) {
    .sp_text p {
      font-size: 1rem; } }

.dlbtn {
  display: block;
  margin: auto;
  position: fixed;
  bottom: calc(100vw / 1920 * 30);
  right: calc(30 / 1920 *100vw);
  z-index: 110; }
  .dlbtn img {
    width: calc(200 / 1920 * 100vw);
    max-width: 350px;
    min-width: 150px;
    transition: .3s;
    opacity: .6; }
  .dlbtn img:hover {
    opacity: 1; }
  @media screen and (max-width: 1024px) {
    .dlbtn img {
      display: block;
      width: calc(200 / 1024 * 100vw);
      max-width: 350px;
      min-width: 150px;
      transition: .3s;
      opacity: .6; } }
  @media screen and (max-width: 800px) {
    .dlbtn {
      left: 0;
      right: 0; }
      .dlbtn img {
        width: 80%;
        max-width: 450px;
        display: block;
        margin: 0 auto;
        opacity: .8; } }

/*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.8);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
  overflow: hidden; }

.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%; } }

.modal_content_zombie {
  align-self: center;
  padding: 30px 30px 15px;
  box-sizing: border-box;
  line-height: 1.4em;
  transition: 0.5s;
  transform: scale(0);
  opacity: 0; }
  @media screen and (max-width: 640px) {
    .modal_content_zombie {
      width: 80%;
      margin: 0 auto; } }
  @media screen and (max-width: 420px) {
    .modal_content_zombie {
      padding: 10px 0;
      width: 80%; } }

.close_button {
  position: absolute;
  top: 14px;
  right: 16px;
  cursor: pointer;
  color: #FFFFFF;
  opacity: 1;
  z-index: 90; }

@media screen and (max-width: 768px) {
  .close_button {
    top: 1%;
    right: 4%;
    color: #FFFFFF; } }
@media screen and (max-width: 420px) {
  .close_button {
    top: -20%;
    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); }

.modal_wrap input:checked ~ .modal_overlay .modal_content_zombie {
  transform: scale(1);
  opacity: 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: #f4c27b;
  border: 4px #FFF solid;
  border-radius: 5px;
  text-align: center;
  margin: 5px 5px;
  font-size: 12px;
  background: #000;
  box-shadow: 6px 6px rgba(0, 0, 0, 0.8); }

.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; }

.link_list {
  display: flex;
  width: 240px;
  margin: 2rem auto;
  justify-content: space-between;
  align-items: center; }
  .link_list div {
    text-align: center;
    width: 50%; }

.kmc {
  height: calc(100vw / 1920 * 40); }
  @media screen and (max-width: 1024px) {
    .kmc {
      /*引数を省略*/
      height: calc(100vw / 1280 * 30); } }
  @media screen and (max-width: 800px) {
    .kmc {
      /*引数を省略*/
      height: calc(100vw / 1024 * 40); } }
  @media screen and (max-width: 420px) {
    .kmc {
      /*引数を省略*/
      height: calc(100vw / 1024 * 100); } }

.cpicon {
  height: calc(100vw / 1920 * 40); }
  @media screen and (max-width: 1024px) {
    .cpicon {
      /*引数を省略*/
      height: calc(100vw / 1280 * 30); } }
  @media screen and (max-width: 800px) {
    .cpicon {
      /*引数を省略*/
      height: calc(100vw / 1024 * 40); } }
  @media screen and (max-width: 420px) {
    .cpicon {
      /*引数を省略*/
      height: calc(100vw / 1024 * 120); } }

.sns_btn {
  width: 240px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-around;
  align-items: center; }
  .sns_btn li img {
    height: calc(100vw / 1920 *30); }
  @media screen and (max-width: 1280px) {
    .sns_btn li img {
      height: calc(100vw / 1920 *40); } }
  @media screen and (max-width: 800px) {
    .sns_btn li img {
      height: calc(100vw / 1024 *40); } }
  @media screen and (max-width: 640px) {
    .sns_btn li img {
      height: calc(100vw / 1024 *50); } }
  @media screen and (max-width: 420px) {
    .sns_btn li img {
      height: calc(100vw / 1024 *120); } }

footer {
  background: #000;
  width: 100%;
  position: static;
  margin: auto;
  overflow: hidden;
  color: #FFF;
  padding-bottom: calc(100vw / 1920 * 200); }
  @media screen and (max-width: 1024px) {
    footer {
      /*引数を省略*/
      position: static;
      width: 100vw;
      max-width: 100%;
      text-align-last: center; } }
  @media screen and (max-width: 800px) {
    footer {
      /*引数を省略*/
      position: static;
      padding-bottom: calc(100vw / 1024 * 250); } }

.trademark a {
  color: #e6001d; }

.dwn_bd {
  border-color: #FFF; }

.copy, .copy2 {
  text-align: center;
  color: #FFF;
  font-size: 12px;
  margin: 0 auto; }

.r-txt1, .r-txt {
  color: #FFF; }

.clogo-list {
  display: flex;
  justify-content: center;
  align-items: center; }
  .clogo-list img {
    height: calc(100vw / 1920 * 80); }
  @media screen and (max-width: 800px) {
    .clogo-list {
      flex-wrap: wrap;
      justify-content: center; }
      .clogo-list img {
        height: 60px; } }

hr {
  border: none;
  height: 2px;
  background: #363636; }

.tlist_sp .pflist_l, .tlist_sps .pflist_l, .tlist-last_sp .pflist_l, .tlist_spss .pflist_l, .tlist_long .pflist_l {
  background: #6644ff;
  color: black;
  font-weight: bold; }

@media screen and (max-width: 800px) {
  .tlist_long {
    text-align: left;
    justify-content: flex-start; } }

.pflist_l {
  text-align: left; }
  @media screen and (max-width: 800px) {
    .pflist_l {
      text-align: left;
      white-space: pre-line; } }
