@charset "UTF-8";
/*======================================================

    サイト全体に反映させるスタイル
    およびヘッダー、フッター、トップと下層の共通セクションのスタイル

======================================================*/

@font-face {
  font-family: "TOROMAN";
  src: url("../fonts/annyantroman.woff2") format("woff2"),
    /* バックアップ */ url("../fonts/annyantroman.woff") format("woff"),
    /* 古いブラウザ用 */ url("../fonts/annyantroman.ttf") format("truetype");
}

* {
  box-sizing: border-box;
  text-shadow: none;
}

html {
  font-size: 21px;
  line-height: 1;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  width: calc(100vw - calc(100vw - 100%));
  height: 100%;
  color: #000000;
  background: #fadb1f;
  font-family: "ruika", sans-serif;
  position: relative;
}

main {
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {

  html {
    font-size: 3.6vw;
  }

}


/*======================================================

    レイアウト

======================================================*/

.container {
  width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 1366px) {

  .container {
    /* width: 80.52vw; */
    max-width: 1100px;
    width: 100%;
    padding: 0 60px;
  }

}

@media screen and (max-width: 768px) {

  .container {
    /* width: 89.58vw; */
    width: 100%;
    padding: 0 6vw;
  }

}


/*======================================================

    表示・非表示

======================================================*/

/*  PCのみ表示  */
.pc_only {
  display: block;
}
/*  SPのみ表示  */
.tb_only,
.sp_only {
  display: none;
}
/* SP改行消し */
.br-pc {
  display: none;
}

@media screen and (max-width: 960px) {

  /*  PCのみ表示  */
  .tb_only {
    display: block;
  }
  /*  PC TBのみ表示  */
  .pctb_only {
    display: block;
  }
  /*  TBのみ表示  */
  .pc_only,
  .sp_only {
    display: none;
  }

}

@media screen and (max-width: 768px) {

  /*  PCのみ表示  */
  .sp_only {
    display: block;
  }
  /*  SPのみ表示  */
  .pc_only,
  .pctb_only {
    display: none;
  }
  /* PC改行消し */
	.br-sp {
		display: none;
	}

}


/*======================================================

    見出し

======================================================*/

.title {
  text-align: center;
}


/*======================================================

    ボタンパーツ

======================================================*/

/*  ボタン設定  */
.default__btn {
  font-family: "TOROMAN";
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s ease;
}

/*  ブラック  */
.default__btn.black {
  color: #fff;
  width: 433px;
  height: 90px;
  background-image: url(../img/btn_black.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.default__btn.black::after {
  content: "";
  width: 30px;
  height: 33px;
  background-image: url(../img/icon_macho_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 90px;
}

/*  ホワイト  */
.default__btn.white {
  color: #000;
  width: 433px;
  height: 90px;
  background-image: url(../img/btn_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.default__btn.white::after {
  content: "";
  width: 30px;
  height: 33px;
  background-image: url(../img/icon_macho_black.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 90px;
}

@media screen and (max-width: 1366px) {

  /*  ボタン設定  */
  .default__btn {
    font-size: 30px;
  }

  /*  ブラック  */
  .default__btn.black {
    width: 383px;
    height: 80px;
  }
  .default__btn.black::after {
    width: 24px;
    height: 27px;
    right: 48px;
  }

  /*  ホワイト  */
  .default__btn.white {
    width: 383px;
    height: 80px;
  }
  .default__btn.white::after {
    width: 24px;
    height: 27px;
    right: 48px;
  }

}

@media screen and (max-width: 960px) {

  /*  ボタン設定  */
  .default__btn {
    font-size: 28px;
  }

  /*  ブラック  */
  .default__btn.black {
    width: 333px;
    height: 70px;
  }
  .default__btn.black::after {
    width: 24px;
    height: 27px;
    right: 48px;
  }

  /*  ホワイト  */
  .default__btn.white {
    width: 333px;
    height: 70px;
  }
  .default__btn.white::after {
    width: 24px;
    height: 27px;
    right: 48px;
  }

}

@media screen and (max-width: 768px) {

  /*  ボタン設定  */
  .default__btn {
    font-size: 4vw;
    padding-top: 1vw;
  }

  /*  ブラック  */
  .default__btn.black {
    width: 56vw;
    height: 12vw;
    margin-top: 6vw;
  }
  .default__btn.black::after {
    width: 4vw;
    height: 5vw;
    right: 8vw;
    margin-top: -1vw;
  }

  /*  ホワイト  */
  .default__btn.white {
    width: 56vw;
    height: 12vw;
    margin-top: 6vw;
  }
  .default__btn.white::after {
    width: 4vw;
    height: 5vw;
    right: 8vw;
    margin-top: -1vw;
  }

}


/*======================================================

    リストパーツ

======================================================*/

.list {
  max-width: 800px;
  margin: 0 auto;
}

.list__item {
  font-size: 21px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.list__item:last-child {
  margin-bottom: 0;
}

.list__item a {
  display: flex;
  align-items: baseline;
  flex-grow: 1;
}

/* .bg-border {
  background-image: url("../img/bg_border.png");
  background-size: cover;
  background-repeat: no-repeat;
} */

@media screen and (max-width: 1366px) {

}

@media screen and (max-width: 768px) {

  .list {
    width: 100%;
  }
  .list__item {
    font-size: 3.12vw;
    margin-bottom: 2.6vw;
  }

}


/*======================================================

    ナビゲーション

======================================================*/

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  font-family: "TOROMAN";
  font-size: 32px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav li {
  /* transition: 0.5s ease; */
}

nav li:hover {
  opacity: 0.5;
}

.logo {
  width: 184px;
}

.sns {
  width: 56px;
}

@media screen and (max-width: 1366px) {

  nav {
    /* font-size: 2.04vw; */
    font-size: 28px;
  }

  nav ul {
    /* gap: 4.97vw; */
  }

  .logo {
    width: 124px;
  }

  .sns {
    width: 40px;
  }

}

@media screen and (max-width: 960px) {

  nav ul {
    gap: 28px;
  }

  .logo {
    width: 120px;
  }

  .sns {
    width: 48px;
    margin: 40px auto 0;
    padding-bottom: 32px;
  }

}

@media screen and (max-width: 768px) {

  nav {
    font-size: 5.2vw;
  }

  nav ul {
    gap: 5.97vw;
  }

  .logo {
    width: 24.52vw;
  }

  .sns {
    width: 7.29vw;
    margin: 7.42vw auto 0;
    padding-bottom: 7.03vw;
  }

}


/*======================================================

    リリーススケジュール

======================================================*/

.banner {
  position: fixed;
  z-index: 9999;
  top: 193px;
  left: 50%;
  transform: translateX(calc(-50% + 41.4vw));
}

.banner img {
  width: 206px;
}

.hover {
  transition: 0.5s ease;
}

.hover:hover {
  opacity: 0.5;
}

.swiper-pagination {
  position: absolute;
  bottom: -69px !important;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 4;
}

.swiper-pagination-bullet {
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 10px !important;
  z-index: 2;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #000 !important;
  z-index: 2;
}

.fixed__btn-container {
  background: #fff;
  position: fixed;
  bottom: 0;
  /* left: 0; */
  z-index: 99999;
  display: flex;
  gap: 2px;
  /* width: 100%; */
  /* width: 382px; */
  width: 280px;
  right: 0;
}

.fixed__btn {
  background: #000;
  color: #fff;
  width: 100%;
  font-family: "TOROMAN";
  font-size: 4.81vw;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 3.25vw 0;
  transition: 0.5s ease;
}

.fixed__btn img {
  width: 3.9vw;
}

@media screen and (max-width: 1366px) {

  .banner img {
    width: 160px;
  }

}

@media screen and (max-width: 960px) {

  .banner {
    display: none !important;
  }

  .fixed__btn-container {
    border-top: 2px solid #fff;
    width: 100%;
  }

  .fixed__btn {
    font-size: 32px;
    padding: 20px 0;
  }
  .fixed__btn img {
    width: 28px;
  }

}

@media screen and (max-width: 768px) {

  .fixed__btn {
    font-size: 4.81vw;
    padding: 3.25vw 0;
    gap: 3vw;
  }
  .fixed__btn img {
    width: 4vw;
  }

  .swiper-pagination {
    bottom: -17.05vw !important;
  }

  .swiper-pagination-bullet {
    background: #fff;
    width: 2.6vw;
    height: 2.6vw;
    margin: 0 1.3vw !important;
  }

}


/*======================================================

    ヘッダー

======================================================*/

.release_schedule_btn {
  display: none;
}

.game_DL_btn {
  /* display: flex;
  width: 382px;
  font-size: 40px;
  padding: 24px 0; */
  display: flex;
  width: 280px;
  font-size: 40px;
  padding: 20px 0;
}
.game_DL_btn img {
  /* width: 32px; */
  width: 150px;
}

.pc_navi {
  display: block;
}
.sp_navi {
  display: none;
}

.header {
  color: #fff;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  width: 100%;
}

.header .nav__container {
  background: #000;
  padding: 16px 64px 22px 50px;
  border-radius: 0 0 32px 32px;
}

.header__item {
  transition: 0.5s ease;
}

.header .nav__container .flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__nav.active {
  display: block;
  opacity: 1;
  max-height: 617px;
  transform: translateY(0);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.header_toggle_btn {
  display: flex;
  align-items: center;
  font-family: "TOROMAN";
  font-size: 5.2vw;
  gap: 20px;
  cursor: pointer;
}

.header_toggle_btn img {
  width: 4.68vw;
}

@media screen and (max-width: 1366px) {

  .header .nav__container {
    padding: 16px 64px 16px 50px;
  }
  /* .header .nav__container {
    padding: 25px 30px;
  } */

}

@media screen and (max-width: 960px) {

  .release_schedule_btn {
    display: flex;
  }

  .game_DL_btn {
    display: flex;
    width: inherit;
    font-size: 32px;
    padding: 24px 0;
  }
  .game_DL_btn img {
    /* width: 32px; */
    width: 120px;
  }

  .pc_navi {
    display: none;
  }
  .sp_navi {
    display: block;
  }

  .header_toggle_btn {
    font-size: 28px;
  }
  .header_toggle_btn img {
    width: 24px;
  }

  .header .nav__container {
    border-radius: 0 0 32px 32px;
    padding: 10px 40px;
    display: block;
  }

  .header nav ul {
    flex-direction: column;
    padding-top: 40px;
  }

  .header__nav {
    display: none;
    opacity: 0;
    transform: translateY(-100vw);
    max-height: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  }

}

@media screen and (max-width: 768px) {

  .header_toggle_btn {
    font-size: 5vw;
    gap: 3vw;
  }
  .header_toggle_btn img {
    width: 5vw;
  }

  .game_DL_btn {
    font-size: 4.81vw;
    padding: 3.25vw 0;
    gap: 3vw;
  }
  .game_DL_btn img {
    /* width: 4vw; */
    width: 24vw;
  }

  .header .nav__container {
    border-radius: 0 0 4.16vw 4.16vw;
    padding: 3.25vw 5.2vw 3.25vw 3.9vw;
    display: block;
  }

  .header nav ul {
    flex-direction: column;
    padding-top: 7.29vw;
  }

  .header__nav {
    display: none;
    opacity: 0;
    transform: translateY(-100vw);
    max-height: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  }

}


/*======================================================

    フッター

======================================================*/

.footer {
  background: #000;
  color: #fff;
  padding: 40px 0;
}

.footer__item {
  transition: 0.5s ease;
}

.footer__info {
  margin-top: 45px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__company {
  display: flex;
  align-items: center;
}

.footer__icon-new-tab {
  width: 14px;
  display: block;
  margin-left: 8px;
}

@media screen and (max-width: 1366px) {

  .footer {
    padding: 50px 0;
  }

  .footer__item .logo {
    width: 184px;
  }

}

@media screen and (max-width: 960px) {

  .footer {
    padding: 42px 0 120px;
  }

  .footer__nav {
    display: none;
  }

  .footer .nav__container {
    justify-content: center;
  }

  .footer__item.sns {
    display: none;
  }

  .footer__info {
    margin-top: 19px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 44px;
  }

}

@media screen and (max-width: 768px) {

  .footer {
    padding: 10vw 0 20vw;
  }

  .footer__company {
    font-size: 3.2vw;
  }

  .footer__item .logo {
    width: 40vw;
  }

  .footer small {
    font-size: 3.2vw;
  }

  .footer__info {
    margin-top: 4vw;
    gap: 6vw;
  }

}


/*======================================================

    ポップアップバナー モーダル

======================================================*/

.modal_toggle {
  cursor: pointer;
}

.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(250, 219, 31, 0.85);
  transition: visibility linear 0.3s, opacity linear 0.3s;
}
.modal.active {
  visibility: visible;
  opacity: 1;
}

.modal_content {
  width: 100%;
  height: auto;
  overflow: visible;
  position: relative;
  margin-top: -116px;
}

.modal_top {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translateY(calc(-50% - 260px)) translateX(calc(-50% + 478px));
  z-index: 99999;
}
.modal_close {
  cursor: pointer;
  display: block;
  border: none;
  width: 50px;
  height: 50px;
  transition: ease 0.3s;
}

.modal_close:hover,
.modal_close:active {
  opacity: 0.7;
}

.modal_close span {
  position: absolute;
  width: 50px;
  height: 6px;
  background: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal_container {
  overflow-y: auto;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: visible;
}

.schedule__details-list {
  padding: 40px;
}

.schedule__detail-title,
.schedule__detail-content {
  padding: 18px 0;
  margin: 0;
}

.release_content {
  display: flex;
  max-width: 1100px;
  padding: 0 150px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 6%;
}

/*  日付  */
.schedule__detail-title {
  background: #000;
  color: #fff;
  width: 18%;
  padding: 20px 0 20px 12px;
  margin: 0;
  text-align: center;
  border-radius: 50px 0 0 50px;
  border: 4px solid #000;
}
.schedule__detail-day {
  font-size: 18px;
  margin-left: 3px;
}

/*  内容  */
.schedule__detail-content {
  width: 82%;
  flex: 1;
  padding: 20px 40px;
  margin: 0;
  border-radius: 0 50px 50px 0;
  background-color: #fff;
  border: 4px solid #000;
  flex: 1;
  padding-left: 20px;
}

.season-bg {
  border-radius: 0 0 10px 10px;
  background-size: cover;
}

.December {
  background-image: url(../img/schedule_12_bg.png);
}
.January {
  background-image: url(../img/schedule_01_bg.png);
}
.February {
  background-image: url(../img/schedule_02_bg.png);
}
.March {
  background-image: url(../img/schedule_03_bg.png);
}
.April {
  background-image: url(../img/schedule_04_bg.png);
}

/*  ボタン  */
.release_content .slider__btn {
  font-family: "TOROMAN";
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  width: auto;
}
.release_content .slider__btn span {
  position: absolute;
  font-size: 32px;
}
.release_content .slider__btn img {
  width: 30px;
  position: relative;
}

.release_content .slider__icon {
  margin-top: 45px;
  width: 73px;
  height: 73px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.release_content .slider__icon::before {
  content: "";
  width: 73px;
  height: 73px;
  background: #000;
  color: #000;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

@media (max-width: 1366px) {
  
  .modal_top {
    transform: translateY(calc(-50% - 260px)) translateX(calc(-50% + 34.99vw));
  }

  /*  ボタン  */
  .release_content .slider__btn span {
    font-size: 28px;
    width: 64px;
  }
  .release_content .slider__btn img {
    width: 30px;
  }

  .release_content .slider__icon {
    margin-top: 40px;
    width: 60px;
    height: 60px;
  }
  .release_content .slider__icon::before {
    width: 60px;
    height: 60px;
  }

}

@media (max-width: 960px) {

  .modal_content {
    margin-top: -95px;
  }

}

@media (max-width: 768px) {

  .release_content {
    max-width: inherit;
    padding: 0 14vw;
    gap: 4%;
  }

  .modal_top {
    right: 6%;
    margin-top: -35%;
    transform: inherit;
  }
  .modal_close {
    width: 6.51vw;
    height: 6.51vw;
  }
  .modal_close span {
    width: 6.51vw;
    height: 0.78vw;
  }

  .schedule__details-list {
    padding: 5vw 4vw 4vw;
  }
  .release_content .list__item {
    margin-bottom: 3vw;
  }
  .release_content .list__item:last-child {
    margin-bottom: 0;
  }

  .schedule__detail-content {
    padding: 2.31vw 3vw;
    font-size: 3.2vw;
  }

  .modal_content {
    margin-top: -15vw;
  }

  /*  日付  */
  .schedule__detail-title {
    padding: 2.31vw 0 2.31vw 1vw;
    font-size: 3.2vw;
    border: 0.6vw solid #000;
  }
  .schedule__detail-day {
    font-size: 2.6vw;
  }

  /*  タイトル  */
  .schedule__detail-content {
    padding: 2.31vw 3vw;
    font-size: 3.2vw;
    border: 0.6vw solid #000;
  }
  
  .season-bg {
    border-radius: 0 0 15px 15px;
  }

  /*  ボタン  */
  .release_content .slider__btn {
    width: auto;
    display: inherit;
  }
  .release_content .slider__btn span {
    font-size: 3.6vw;
    width: 9vw;
  }
  .release_content .slider__btn img {
    width: 3.5vw;
  }
  
  .release_content .slider__icon {
    margin-top: 5vw;
    width: 8vw;
    height: 8vw;
  }
  .release_content .slider__icon::before {
    width: 8vw;
    height: 8vw;
  }

}

/* スケジュールスライダーボタンここまで */

.schedule__swiper {
  height: auto;
}

.schedule__swiper-list {
  margin-top: 145px;
}

.schedule__swiper-item {
  border: 10px solid #000;
  border-radius: 20px;
}

.schedule__swiper-header {
  background: #000;
  height: 100px;
  position: relative;
  border-radius: 8px 8px 0 0;
}

.schedule__swiper-header img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(calc(-50% - 63px)) translateX(-50%);
  z-index: 99999;
  width: 530px;
}

@media (max-width: 1366px) {

  .schedule__swiper-header img {
    width: 480px;
  }

}

@media (max-width: 960px) {

  .schedule__swiper-header img {
    width: 430px;
  }

  /*  日付  */
  .schedule__detail-title {
    width: 25%;
  }

  /*  内容  */
  .schedule__detail-content {
    width: 75%;
  }

}

@media (max-width: 768px) {

  .schedule__swiper-item {
    border: 1.3vw solid #000;
  }

  .schedule__swiper-header {
    height: 10vw;
  }
  .schedule__swiper-header img {
    width: 65vw;
    transform: translateY(calc(-50% - 8.85vw)) translateX(-50%);
  }

  .schedule__swiper-list {
    margin-top: 20vw;
  }

  /*  日付  */
  .schedule__detail-title {
    width: 20%;
  }

  /*  内容  */
  .schedule__detail-content {
    width: 80%;
  }

}


/*======================================================

    アニメーション処理

======================================================*/

.about__operation-img.displayed {
  animation-delay: 0.5s;
}

.displayed {
  animation: rotate-01 1s forwards;
}

@keyframes rotate-01 {
  0% {
    transform: rotate(300deg);
  }
  100% {
    transform: rotate(0);
  }
}

.diagonal__line-black.displayed {
  animation-delay: 0.3s;
  animation: line-01 1s forwards;
}

.diagonal__line-white.displayed {
  animation-delay: 0.5s;
  animation: line-01 1s forwards;
}

@keyframes line-01 {
  0% {
    transform: rotate(-7deg) translateX(100%);
  }
  100% {
    transform: rotate(-7deg) translateX(0);
  }
}

.fukidasi_01.displayed {
  animation: zoom-01 1s forwards;
}

@keyframes zoom-01 {
  0% {
    transform: translate(calc(-50% + 19.89vw), calc(-50% - 19px)) scale(1);
  }
  50% {
    transform: translate(calc(-50% + 19.89vw), calc(-50% - 19px)) scale(1.5);
  }
  100% {
    transform: translate(calc(-50% + 19.89vw), calc(-50% - 19px)) scale(1);
  }
}

@media screen and (max-width: 1366px) {
  @keyframes zoom-01 {
    0% {
      transform: translate(calc(-50% + 21.15vw), calc(-50% - 1.09vw)) scale(1);
    }
    50% {
      transform: translate(calc(-50% + 21.15vw), calc(-50% - 1.09vw)) scale(1.5);
    }
    100% {
      transform: translate(calc(-50% + 21.15vw), calc(-50% - 1.09vw)) scale(1);
    }
  }
}

.fukidasi_02.displayed {
  animation: zoom-02 1s forwards;
  animation-delay: 0.6s;
}

@keyframes zoom-02 {
  0% {
    transform: translate(calc(-50% - 25.05vw), calc(-50% + 154px)) scale(1);
  }
  50% {
    transform: translate(calc(-50% - 25.05vw), calc(-50% + 154px)) scale(1.5);
  }
  100% {
    transform: translate(calc(-50% - 25.05vw), calc(-50% + 154px)) scale(1);
  }
}

@media screen and (max-width: 1366px) {
  @keyframes zoom-02 {
    0% {
      transform: translate(calc(-50% - 29.72vw), calc(-50% + 9vw)) scale(1);
    }
    50% {
      transform: translate(calc(-50% - 29.72vw), calc(-50% + 9vw)) scale(1.5);
    }
    100% {
      transform: translate(calc(-50% - 29.72vw), calc(-50% + 9vw)) scale(1);
    }
  }
}

.fukidasi_03.displayed {
  animation: zoom-03 1s forwards;
  animation-delay: 1.2s;
}

@keyframes zoom-03 {
  0% {
    transform: translate(calc(-50% + 239px), calc(-50% + 24.79vw)) scale(1);
  }
  50% {
    transform: translate(calc(-50% + 239px), calc(-50% + 24.79vw)) scale(1.5);
  }
  100% {
    transform: translate(calc(-50% + 239px), calc(-50% + 24.79vw)) scale(1);
  }
}

@media screen and (max-width: 1366px) {
  @keyframes zoom-03 {
    0% {
      transform: translate(calc(-50% + 12.66vw), calc(-50% + 28.18vw)) scale(1);
    }
    50% {
      transform: translate(calc(-50% + 12.66vw), calc(-50% + 28.18vw))
        scale(1.5);
    }
    100% {
      transform: translate(calc(-50% + 12.66vw), calc(-50% + 28.18vw)) scale(1);
    }
  }
}









/*======================================================

    非表示

======================================================*/

.home .about__operation,
.home .about__tip,
.home .about__more-link {
  display: none !important;
}

.home .about__character-title,
.home .about__character-list,
.home .about__pickup {
  display: none !important;
}

.home .about__steps {
  margin-bottom: 0 !important;
}

.home .point,
.single .point,
.page-template-page-news .point {
  display: none !important;
}

.home .release_schedule_btn,
.home .modal_toggle,
.home .header_toggle_btn,
.home .sns,
.single .release_schedule_btn,
.single .modal_toggle,
.single .header_toggle_btn,
.single .sns,
.page-template-page-news .release_schedule_btn,
.page-template-page-news .modal_toggle,
.page-template-page-news .header_toggle_btn,
.page-template-page-news .sns {
  display: none !important;
}

.home .nav__container,
.home .header .nav__container .flex-container,
.single .nav__container,
.single .header .nav__container .flex-container,
.page-template-page-news .nav__container,
.page-template-page-news .header .nav__container .flex-container {
  justify-content: center !important;
}

.home .about {
  padding-bottom: 120px !important;
}
.home .product {
  background-color: #FAA21F !important;
}
.page-id-36 .product {
  padding-bottom: 0;
}

.home .footer__info,
.single .footer__info,
.page-template-page-news .footer__info {
  justify-content: center;
  gap: 40px;
}

@media screen and (max-width: 960px) {
  .home .footer,
  .single .footer,
  .page-template-page-news .footer {
    padding: 50px 0 120px !important;
  }
}

@media screen and (max-width: 768px) {
  .home .footer,
  .single .footer,
  .page-template-page-news .footer {
    padding: 8vw 0 20vw !important;
  }
  .home .about {
    padding-bottom: 12vw !important;
  }
  .home .product {
    padding: 12vw 0 16vw !important;
  }
}