* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
}
*:before, *:after {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}

@font-face {
  font-family: "DonguriDuel";
  src: url("./font/x10y12pxDonguriDuel.ttf") format("truetype");
}
html {
  font-size: 62.5%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.938vw;
  line-height: 1.25;
  color: #ffffff;
  background: url(./images/bg-main.webp) no-repeat #ffb52b center center/contain;
  position: relative;
  z-index: 0;
}
body img {
  max-width: 100%;
  width: 100%;
}
body.is-fixed {
  position: fixed;
  width: 100%;
}
body.modal-open {
  overflow: hidden;
}
body.body-game {
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 3.271vw;
    background: #000;
  }
  body.body-game {
    display: block;
  }
  body img {
    pointer-events: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

.sp_inline {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp_inline {
    display: inline-block;
  }
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}
.flex {
  display: flex;
}

.grid {
  display: grid;
}

section {
  position: relative;
  z-index: 0;
}

.inner {
  width: 90%;
  margin: 0 auto;
}
.inner-howto {
  max-width: 40.833vw;
}
@media screen and (max-width: 1024px) {
  .inner-howto {
    width: 100%;
    max-width: 92.523vw;
  }
}
.inner-modal_box {
  max-width: 46.667vw;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all ease-in-out 0.4s;
}
.inner-modal_box::-webkit-scrollbar {
  display: none;
}
.inner-modal_box-gameover {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .inner-modal_box {
    width: 100%;
    max-width: 92.8vw;
  }
}

.text-orange {
  color: #ff5b24;
}

.text-bold {
  font-weight: bold;
}

.link-hover {
  opacity: 1;
  transition: all ease-in-out 0.4s;
}
@media screen and (min-width: 1024px) {
  .link-hover:hover {
    opacity: 0.75;
  }
}

.link-underline {
  text-decoration: underline;
}

.link-linkicon {
  position: relative;
  padding-right: 1.25vw;
  z-index: 0;
}
.link-linkicon::after {
  content: "";
  width: 0.833vw;
  height: 0.833vw;
  background-image: url(./images/icon-link.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .link-linkicon {
    padding-right: 5.607vw;
  }
  .link-linkicon::after {
    width: 3.738vw;
    height: 3.738vw;
  }
}

.link-arrow {
  display: block;
  font-family: "unibody-8-new", "DotGothic16", sans-serif;
  font-size: 1.25vw;
  font-weight: 700;
  text-align: center;
  transition: all ease-in-out 0.4s;
}
.link-arrow span {
  position: relative;
  padding-left: 1.25vw;
}
.link-arrow span::before {
  content: "";
  width: 0.833vw;
  height: 0.99vw;
  background-image: url(./images/icon-triangle.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .link-arrow:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 1024px) {
  .link-arrow {
    font-size: 3.738vw;
  }
  .link-arrow span {
    padding-left: 4.673vw;
  }
  .link-arrow span::before {
    width: 2.804vw;
    height: 3.271vw;
    animation: Arrow-Opacity 1.4s steps(1) infinite;
  }
}
.link-arrow.text-ab {
  font-family: "ab-megadot9", sans-serif;
}

.link-cart span::after {
  content: "";
  width: 1.823vw;
  height: 1.823vw;
  background-image: url(./images/item-cart.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 52%;
  right: -1.823vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .link-cart span::after {
    width: 6.308vw;
    height: 6.308vw;
    right: -6.308vw;
  }
}

.btn-orange {
  width: 21.875vw;
  height: 6.302vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "unibody-8-new", sans-serif;
  font-size: 2.031vw;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 1024px) {
  .btn-orange:hover::before {
    opacity: 0.75;
  }
  .btn-orange:hover span {
    animation: Titika-Moveka 1s infinite;
  }
}
.btn-orange::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(./images/btn-bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
  z-index: -1;
}
.btn-orange span {
  position: relative;
  padding-left: 2vw;
  margin-top: -0.26vw;
}
.btn-orange span::before {
  content: "";
  width: 1.25vw;
  height: 1.458vw;
  background-image: url(./images/icon-triangle.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .btn-orange {
    width: 70.093vw;
    height: 20.093vw;
    font-size: 6.075vw;
  }
  .btn-orange span {
    padding-left: 7.71vw;
    margin-top: -1vw;
  }
  .btn-orange span::before {
    width: 3.972vw;
    height: 4.673vw;
    animation: Arrow-Opacity 1.4s steps(1) infinite;
  }
}

.btn-start small {
  display: block;
  font-size: 50%;
  margin-top: 0px;
  text-align: center;
}
.btn-start span {
  padding-left: 2.9vw;
}
.btn-start span::before {
  width: 2.344vw;
  height: 1.875vw;
  background-image: url(./images/icon-sound.webp);
}
.btn-start-mute {
  margin-top: 1vw;
}
.btn-start-mute span::before {
  height: 1.719vw;
  background-image: url(./images/icon-mute.webp);
}
@media screen and (max-width: 1024px) {
  .btn-start span {
    padding-left: 12vw;
  }
  .btn-start span::before {
    width: 8.411vw;
    height: 6.776vw;
    animation: none;
  }
  .btn-start-mute {
    margin-top: 4.5vw;
  }
}

.howto_box {
  width: 100%;
  transition: all ease-in-out 0.4s 0.2s;
}
@media screen and (max-width: 1024px) {
  .howto_box {
    transition: all ease-in-out 0.4s 0s;
  }
}
.howto_box.active {
  opacity: 1;
  transform: translateY(0%);
}
.howto_box-top {
  max-width: 40.833vw;
  height: 34.531vw;
  padding: 3.021vw 3.333vw;
  background: url(./images/bg-howto-top.webp) no-repeat center top/contain;
  margin-top: 0.833vw;
  margin-bottom: 2.083vw;
  opacity: 0;
  transform: translateY(3%);
}
@media screen and (max-width: 1024px) {
  .howto_box-top {
    max-width: none;
    height: 139.486vw;
    padding: 9.346vw 6.542vw;
    margin-top: 3.738vw;
    margin-bottom: 7.477vw;
    background: url(./images/sp_bg-howto-top.webp) no-repeat center top/contain;
  }
}
.howto_box-game {
  max-width: 21.667vw;
  height: 27.5vw;
  padding: 2.083vw 1.875vw 2.604vw 2.292vw;
  background: url(./images/bg-howto-game.webp) no-repeat center top/contain;
  opacity: 1;
  transform: translateY(0%);
}
.howto_box-game .howto_game_explanation {
  margin-top: 2.083vw;
}
.howto_box-game .howto_game_explanation:first-of-type {
  margin-top: 0;
}

.howto_list {
  counter-reset: list-counter;
}
.howto_list .howto_list_li {
  counter-increment: list-counter;
  font-size: 0.938vw;
  line-height: 1.83;
  position: relative;
  margin-top: 2.917vw;
}
.howto_list .howto_list_li:first-of-type {
  margin-top: 0;
}
.howto_list .howto_list_li::before {
  content: counter(list-counter, decimal-leading-zero);
  font-family: "unibody-8-new", sans-serif;
  font-size: 1.042vw;
  position: absolute;
  top: 0;
  left: 0;
}
.howto_list .howto_list_li p {
  width: 90%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .howto_list .howto_list_li {
    font-size: 3.271vw;
    margin-top: 11.682vw;
  }
  .howto_list .howto_list_li::before {
    font-size: 3.738vw;
  }
}

.character_list {
  width: 100%;
  max-width: 20.885vw;
  margin-top: 1.667vw;
  margin-left: 2.865vw;
}
.character_list .character_list_li {
  align-items: center;
}
.character_list .character_list_li figure {
  margin-right: 0.833vw;
}
.character_list .character_list_li figure img {
  width: 3.125vw;
  max-width: none;
}
.character_list .character_list_li p {
  font-family: "unibody-8-new", sans-serif;
  font-size: 0.729vw;
}
.character_list .character_list_li-enemy {
  margin-left: 4.427vw;
}
@media screen and (max-width: 1024px) {
  .character_list {
    max-width: 71.262vw;
    margin-top: 5.607vw;
    margin-left: 4.206vw;
  }
  .character_list .character_list_li figure {
    margin-right: 3.738vw;
  }
  .character_list .character_list_li figure img {
    width: 11.916vw;
  }
  .character_list .character_list_li p {
    font-size: 2.57vw;
  }
  .character_list .character_list_li-enemy {
    margin-left: 9.346vw;
  }
}

.item_list {
  margin-top: 1.667vw;
  margin-left: 2.865vw;
}
.item_list .item_list_li {
  display: flex;
  align-items: center;
  margin-top: 1.25vw;
}
.item_list .item_list_li:first-of-type {
  margin-top: 0;
}
.item_list .item_list_li figure {
  margin-right: 0.833vw;
}
.item_list .item_list_li figure img {
  width: 2.083vw;
  max-width: none;
}
.item_list .item_list_li p {
  font-size: 0.833vw;
  line-height: 1.5;
}
.item_list-game {
  margin-top: 0.833vw;
  margin-left: 0;
}
.item_list-game .item_list_li {
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .item_list {
    margin-top: 5.607vw;
    margin-left: 2.336vw;
  }
  .item_list .item_list_li {
    margin-top: 4.673vw;
  }
  .item_list .item_list_li figure {
    margin-right: 3.738vw;
  }
  .item_list .item_list_li figure img {
    width: 9.346vw;
  }
  .item_list .item_list_li p {
    font-size: 2.804vw;
  }
}

.active h1 {
  clip-path: inset(0%);
}

h1 {
  width: 42.5vw;
  margin: 0 auto;
  padding-top: 2.083vw;
  text-align: center;
  position: relative;
  z-index: 10;
  clip-path: inset(50%);
  transition: all ease-out 0.4s;
}
h1.h1-game {
  clip-path: inset(0%);
}
h1.h1-game.--pc {
  width: 21.094vw;
  margin-bottom: 8.594vw;
}
@media screen and (max-width: 1024px) {
  h1 {
    width: 83.178vw;
    padding-top: 7.009vw;
  }
  h1.h1-game.--sp {
    width: 74.065vw;
    padding-top: 3.738vw;
    margin-bottom: 0;
  }
}

h2 {
  position: relative;
}
h2.h2-howto {
  font-family: "unibody-8-new", sans-serif;
  font-size: 0.938vw;
  font-weight: 700;
  text-align: center;
}
h2.h2-howto span {
  position: relative;
}
h2.h2-howto span::before, h2.h2-howto span::after {
  content: "";
  width: 1.458vw;
  height: 1.615vw;
  background-image: url(./images/howto-deco-xline-orange.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
}
h2.h2-howto span::before {
  left: -1.875vw;
}
h2.h2-howto span::after {
  right: -1.875vw;
}
@media screen and (max-width: 1024px) {
  h2.h2-howto {
    font-size: 4.206vw;
  }
  h2.h2-howto span::before, h2.h2-howto span::after {
    content: "";
    width: 4.206vw;
    height: 4.673vw;
  }
  h2.h2-howto span::before {
    left: -6.075vw;
  }
  h2.h2-howto span::after {
    right: -6.075vw;
  }
}
h2.h2-howto-game {
  color: #ff5b24;
  font-size: 1.25vw;
  text-align: center;
}
h2.h2-howto-game span {
  position: relative;
}
h2.h2-howto-game span::before, h2.h2-howto-game span::after {
  content: "";
  width: 1.458vw;
  height: 1.667vw;
  background-image: url(./images/howto-deco-xline-orange.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
}
h2.h2-howto-game span::before {
  left: -1.875vw;
}
h2.h2-howto-game span::after {
  right: -1.875vw;
}
h2.h2-clear {
  width: 31.563vw;
  margin: 0 auto;
  padding-top: 2.604vw;
}
@media screen and (max-width: 1024px) {
  h2.h2-clear {
    width: 65.421vw;
    padding-top: 11.449vw;
  }
}
h2.h2-gameover {
  width: 27.604vw;
  margin: 0 auto;
  margin-top: 0.417vw;
  margin-bottom: 1.042vw;
  position: relative;
  z-index: 0;
}
h2.h2-gameover::before {
  content: "";
  width: 6.406vw;
  height: 5.99vw;
  background-image: url(./images/img_mouse-bad.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 1.25vw;
  right: -6.25vw;
  transform-origin: left bottom;
  animation: Mouse_Move-GameOver-Scale 3s steps(1) infinite;
}
@media screen and (max-width: 1024px) {
  h2.h2-gameover {
    width: 65.421vw;
    margin-top: 1.869vw;
    margin-bottom: 1.636vw;
  }
  h2.h2-gameover::before {
    width: 19.393vw;
    height: 18.224vw;
    bottom: auto;
    top: -17vw;
    right: -3.505vw;
    animation: Mouse_Move-GameOver-Scale_SP 3s steps(1) infinite;
  }
}

.deco_ul {
  transition: all 0.4s;
}
.deco_ul .deco_li {
  position: absolute;
}
.deco_ul .deco_li::before {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.deco_ul .deco_li-kira {
  animation: Sclae-Move-Kira 1.4s steps(3) infinite;
}
.deco_ul .deco_li-kira-01::before {
  background-image: url(./images/deco-kira-01.webp);
}
.deco_ul .deco_li-kira-02::before {
  background-image: url(./images/deco-kira-02.webp);
}
.deco_ul .deco_li-kira-03::before {
  background-image: url(./images/deco-kira-03.webp);
}
.deco_ul .deco_li-kira-04::before {
  background-image: url(./images/deco-kira-04.webp);
}
.deco_ul .deco_li-kira-05::before {
  background-image: url(./images/deco-kira-05.webp);
}
.deco_ul .deco_li-kira-06::before {
  background-image: url(./images/deco-kira-06.webp);
}
.deco_ul .deco_li-cheese {
  width: 1.667vw;
  height: 1.7vw;
  position: relative;
}
.deco_ul .deco_li-cheese::before {
  background-image: url(./images/cheese.webp);
}
@media screen and (max-width: 1024px) {
  .deco_ul .deco_li-cheese {
    width: 5.607vw;
    height: 5.607vw;
  }
}
.deco_ul .deco_li-heart {
  width: 2.083vw;
  height: 1.927vw;
  position: relative;
  z-index: 0;
}
.deco_ul .deco_li-heart::before {
  background-image: url(./images/heart.webp);
}
.deco_ul .deco_li-heart::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(./images/heart-damage.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.deco_ul .deco_li-heart.--damage::before {
  opacity: 0;
}
.deco_ul .deco_li-heart.--damage::after {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .deco_ul .deco_li-heart {
    width: 5.776vw;
    height: 5.075vw;
  }
}
@media screen and (max-width: 767px) {
  .deco_ul .deco_li-heart {
    width: 6.776vw;
    height: 6.075vw;
  }
}
.deco_ul-mv {
  opacity: 0;
}
.deco_ul-mv .mv-kira-01 {
  width: 2.865vw;
  height: 2.865vw;
  top: 5vw;
  left: 3.698vw;
  animation-delay: -0.1s;
}
.deco_ul-mv .mv-kira-02 {
  width: 1.458vw;
  height: 1.458vw;
  top: 8.385vw;
  left: 6.51vw;
  animation-delay: -0.7s;
}
.deco_ul-mv .mv-kira-03 {
  width: 2.865vw;
  height: 2.865vw;
  top: 4.531vw;
  right: 3.333vw;
  animation-delay: -0.7s;
}
.deco_ul-mv .mv-kira-04 {
  width: 1.406vw;
  height: 1.406vw;
  top: 5.99vw;
  right: 6.979vw;
  animation-delay: -0.35s;
}
.deco_ul-mv .mv-kira-05 {
  width: 1.458vw;
  height: 1.458vw;
  top: 7.969vw;
  right: 8.333vw;
  animation-delay: -0.1s;
}
@media screen and (max-width: 1024px) {
  .deco_ul-mv .mv-kira-01 {
    width: 5.841vw;
    height: 5.841vw;
    top: 10.514vw;
    left: 8.411vw;
  }
  .deco_ul-mv .mv-kira-02 {
    width: 3.037vw;
    height: 3.037vw;
    top: 17.29vw;
    left: 14.252vw;
  }
  .deco_ul-mv .mv-kira-03 {
    width: 5.841vw;
    height: 5.841vw;
    top: 9.346vw;
    right: 8.411vw;
  }
  .deco_ul-mv .mv-kira-04 {
    width: 2.804vw;
    height: 2.804vw;
    top: 12.383vw;
    right: 15.888vw;
  }
  .deco_ul-mv .mv-kira-05 {
    width: 3.037vw;
    height: 3.037vw;
    top: 16.355vw;
    right: 18.692vw;
  }
}
.deco_ul-intro_img .intro_img-kira-01 {
  width: 2.813vw;
  height: 2.813vw;
  top: 1.146vw;
  left: 0;
  animation-delay: -0.7s;
}
.deco_ul-intro_img .intro_img-kira-02 {
  width: 1.51vw;
  height: 1.51vw;
  top: 4.01vw;
  left: 2.604vw;
}
.deco_ul-intro_img .intro_img-kira-03 {
  width: 2.813vw;
  height: 2.813vw;
  bottom: 1.146vw;
  right: 0;
}
.deco_ul-intro_img .intro_img-kira-04 {
  width: 1.51vw;
  height: 1.51vw;
  bottom: 4.01vw;
  right: 2.604vw;
  animation-delay: -0.7s;
}
@media screen and (max-width: 1024px) {
  .deco_ul-intro_img .intro_img-kira-01 {
    width: 6.308vw;
    height: 6.308vw;
    top: 0;
    left: 0;
  }
  .deco_ul-intro_img .intro_img-kira-02 {
    width: 3.505vw;
    height: 3.505vw;
    top: 6.542vw;
    left: 6.542vw;
  }
  .deco_ul-intro_img .intro_img-kira-03 {
    width: 6.308vw;
    height: 6.308vw;
    bottom: auto;
    top: 1.869vw;
    right: 30.374vw;
  }
  .deco_ul-intro_img .intro_img-kira-04 {
    width: 3.505vw;
    height: 3.505vw;
    bottom: auto;
    top: 8.879vw;
    right: 37.383vw;
  }
}
.deco_ul-cheese {
  width: 100%;
  max-width: 44.1vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .deco_ul-cheese {
    max-width: 82.71vw;
  }
  .deco_ul-cheese .deco_li-cheese:nth-of-type(n + 7) {
    display: none;
  }
}
.deco_ul-heart {
  display: flex;
  align-items: center;
  gap: 0.417vw;
}
@media screen and (max-width: 1024px) {
  .deco_ul-heart {
    gap: 1.869vw;
  }
}
.deco_ul-heart_gameover {
  justify-content: center;
}
.deco_ul-clear .clear-kira-01 {
  width: 3.698vw;
  height: 3.698vw;
  top: 2.135vw;
  left: 0;
  animation-delay: -0.1s;
}
.deco_ul-clear .clear-kira-02 {
  width: 1.979vw;
  height: 1.979vw;
  top: 5.833vw;
  left: 3.646vw;
  animation-delay: -0.7s;
}
.deco_ul-clear .clear-kira-03 {
  width: 1.979vw;
  height: 1.979vw;
  top: 1.667vw;
  right: 1.042vw;
  animation-delay: -0.1s;
}
.deco_ul-clear .clear-kira-04 {
  width: 2.031vw;
  height: 2.031vw;
  top: 5.625vw;
  right: 4.167vw;
  animation-delay: -0.7s;
}
.deco_ul-clear .clear-kira-05 {
  width: 2.813vw;
  height: 2.813vw;
  top: 14.063vw;
  left: 1.458vw;
  animation-delay: -0.35s;
}
.deco_ul-clear .clear-kira-06 {
  width: 1.198vw;
  height: 1.198vw;
  top: 11.719vw;
  left: 5.208vw;
  animation-delay: -0.1s;
}
.deco_ul-clear .clear-kira-07 {
  width: 1.927vw;
  height: 1.927vw;
  top: 9.792vw;
  right: 7.813vw;
  animation-delay: -0.7s;
}
.deco_ul-clear .clear-kira-08 {
  width: 3.698vw;
  height: 3.698vw;
  top: 9.896vw;
  right: 0;
  animation-delay: -0.35s;
}
@media screen and (max-width: 1024px) {
  .deco_ul-clear .clear-kira-01 {
    width: 7.71vw;
    height: 7.71vw;
    top: 10.514vw;
    left: 0;
  }
  .deco_ul-clear .clear-kira-02 {
    width: 4.206vw;
    height: 4.206vw;
    top: 18.224vw;
    left: 7.009vw;
  }
  .deco_ul-clear .clear-kira-03 {
    width: 4.206vw;
    height: 4.206vw;
    top: 9.346vw;
    right: 0;
  }
  .deco_ul-clear .clear-kira-04 {
    width: 4.206vw;
    height: 4.206vw;
    top: 17.757vw;
    right: 5.841vw;
  }
  .deco_ul-clear .clear-kira-05 {
    width: 6.075vw;
    height: 6.075vw;
    top: 33.879vw;
    left: 2.336vw;
  }
  .deco_ul-clear .clear-kira-06 {
    width: 2.57vw;
    height: 2.57vw;
    top: 28.972vw;
    left: 9.346vw;
  }
  .deco_ul-clear .clear-kira-07 {
    width: 4.206vw;
    height: 4.206vw;
    top: 29.206vw;
    right: 14.019vw;
  }
  .deco_ul-clear .clear-kira-08 {
    width: 7.71vw;
    height: 7.71vw;
    top: 29.439vw;
    right: 0px;
  }
}

.line_cheese_box {
  height: 4.167vw;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 1.667vw;
  overflow: hidden;
}
.line_cheese_box .line_cheese-mouse {
  position: absolute;
  top: 0;
  z-index: 1;
}
.line_cheese_box .line_cheese-mouse img {
  width: 4.167vw;
}
.line_cheese_box#line_cheese_box-top .deco_li-cheese {
  animation-duration: 10s;
  animation-delay: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: steps(1);
}
.line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-last-of-type(1) {
  animation-name: cheese-sequence-1;
}
@keyframes cheese-sequence-1 {
  0% {
    opacity: 1;
  }
  4.5454545455% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  54.5454545455% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-last-of-type(2) {
  animation-name: cheese-sequence-2;
}
@keyframes cheese-sequence-2 {
  0% {
    opacity: 1;
  }
  9.0909090909% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  59.0909090909% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-last-of-type(3) {
  animation-name: cheese-sequence-3;
}
@keyframes cheese-sequence-3 {
  0% {
    opacity: 1;
  }
  13.6363636364% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  63.6363636364% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-last-of-type(4) {
  animation-name: cheese-sequence-4;
}
@keyframes cheese-sequence-4 {
  0% {
    opacity: 1;
  }
  18.1818181818% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  68.1818181818% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-last-of-type(5) {
  animation-name: cheese-sequence-5;
}
@keyframes cheese-sequence-5 {
  0% {
    opacity: 1;
  }
  22.7272727273% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  72.7272727273% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-last-of-type(6) {
  animation-name: cheese-sequence-6;
}
@keyframes cheese-sequence-6 {
  0% {
    opacity: 1;
  }
  27.2727272727% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  77.2727272727% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-last-of-type(7) {
  animation-name: cheese-sequence-7;
}
@keyframes cheese-sequence-7 {
  0% {
    opacity: 1;
  }
  31.8181818182% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  81.8181818182% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-last-of-type(8) {
  animation-name: cheese-sequence-8;
}
@keyframes cheese-sequence-8 {
  0% {
    opacity: 1;
  }
  36.3636363636% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  86.3636363636% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-last-of-type(9) {
  animation-name: cheese-sequence-9;
}
@keyframes cheese-sequence-9 {
  0% {
    opacity: 1;
  }
  40.9090909091% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  90.9090909091% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-last-of-type(10) {
  animation-name: cheese-sequence-10;
}
@keyframes cheese-sequence-10 {
  0% {
    opacity: 1;
  }
  45.4545454545% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  95.4545454545% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-top .line_cheese-mouse {
  right: -4.167vw;
  animation: Mouse_Move-Top 10s steps(11) 1.2s infinite;
}
.line_cheese_box#line_cheese_box-top .line_cheese-mouse img {
  transform: rotate(90deg);
}
.line_cheese_box#line_cheese_box-bottom .deco_li-cheese {
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: steps(1);
}
.line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(1) {
  animation-name: cheese-sequence-nodelay-1;
}
@keyframes cheese-sequence-nodelay-1 {
  0% {
    opacity: 1;
  }
  4.5454545455% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  54.5454545455% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(2) {
  animation-name: cheese-sequence-nodelay-2;
}
@keyframes cheese-sequence-nodelay-2 {
  0% {
    opacity: 1;
  }
  9.0909090909% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  59.0909090909% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(3) {
  animation-name: cheese-sequence-nodelay-3;
}
@keyframes cheese-sequence-nodelay-3 {
  0% {
    opacity: 1;
  }
  13.6363636364% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  63.6363636364% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(4) {
  animation-name: cheese-sequence-nodelay-4;
}
@keyframes cheese-sequence-nodelay-4 {
  0% {
    opacity: 1;
  }
  18.1818181818% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  68.1818181818% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(5) {
  animation-name: cheese-sequence-nodelay-5;
}
@keyframes cheese-sequence-nodelay-5 {
  0% {
    opacity: 1;
  }
  22.7272727273% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  72.7272727273% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(6) {
  animation-name: cheese-sequence-nodelay-6;
}
@keyframes cheese-sequence-nodelay-6 {
  0% {
    opacity: 1;
  }
  27.2727272727% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  77.2727272727% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(7) {
  animation-name: cheese-sequence-nodelay-7;
}
@keyframes cheese-sequence-nodelay-7 {
  0% {
    opacity: 1;
  }
  31.8181818182% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  81.8181818182% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(8) {
  animation-name: cheese-sequence-nodelay-8;
}
@keyframes cheese-sequence-nodelay-8 {
  0% {
    opacity: 1;
  }
  36.3636363636% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  86.3636363636% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(9) {
  animation-name: cheese-sequence-nodelay-9;
}
@keyframes cheese-sequence-nodelay-9 {
  0% {
    opacity: 1;
  }
  40.9090909091% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  90.9090909091% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(10) {
  animation-name: cheese-sequence-nodelay-10;
}
@keyframes cheese-sequence-nodelay-10 {
  0% {
    opacity: 1;
  }
  45.4545454545% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  95.4545454545% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.line_cheese_box#line_cheese_box-bottom .line_cheese-mouse {
  left: -4.167vw;
  animation: Mouse_Move-Bottom 10s steps(11) infinite;
}
.line_cheese_box#line_cheese_box-bottom .line_cheese-mouse img {
  transform: rotate(-90deg);
}
@media screen and (max-width: 1024px) {
  .line_cheese_box {
    height: 14.953vw;
    margin-top: 5.607vw;
  }
  .line_cheese_box .line_cheese-mouse img {
    width: 14.953vw;
  }
  .line_cheese_box#line_cheese_box-top .deco_li-cheese {
    animation-duration: 8s;
    animation-delay: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: steps(1);
  }
  .line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-of-type(6) {
    animation-name: SP_cheese-sequence-6;
  }
  @keyframes SP_cheese-sequence-6 {
    0% {
      opacity: 1;
    }
    7.1428571429% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    57.1428571429% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-of-type(5) {
    animation-name: SP_cheese-sequence-5;
  }
  @keyframes SP_cheese-sequence-5 {
    0% {
      opacity: 1;
    }
    14.2857142857% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    64.2857142857% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-of-type(4) {
    animation-name: SP_cheese-sequence-4;
  }
  @keyframes SP_cheese-sequence-4 {
    0% {
      opacity: 1;
    }
    21.4285714286% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    71.4285714286% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-of-type(3) {
    animation-name: SP_cheese-sequence-3;
  }
  @keyframes SP_cheese-sequence-3 {
    0% {
      opacity: 1;
    }
    28.5714285714% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    78.5714285714% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-of-type(2) {
    animation-name: SP_cheese-sequence-2;
  }
  @keyframes SP_cheese-sequence-2 {
    0% {
      opacity: 1;
    }
    35.7142857143% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    85.7142857143% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .line_cheese_box#line_cheese_box-top .deco_li-cheese:nth-of-type(1) {
    animation-name: SP_cheese-sequence-1;
  }
  @keyframes SP_cheese-sequence-1 {
    0% {
      opacity: 1;
    }
    42.8571428571% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    92.8571428571% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .line_cheese_box#line_cheese_box-top .line_cheese-mouse {
    right: -14.953vw;
    animation: SP_Mouse_Move-Top 8s steps(7) 1.2s infinite;
  }
  .line_cheese_box#line_cheese_box-bottom .deco_li-cheese {
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: steps(1);
  }
  .line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(1) {
    animation-name: SP_cheese-sequence-bottom-1;
  }
  @keyframes SP_cheese-sequence-bottom-1 {
    0% {
      opacity: 1;
    }
    7.1428571429% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    57.1428571429% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(2) {
    animation-name: SP_cheese-sequence-bottom-2;
  }
  @keyframes SP_cheese-sequence-bottom-2 {
    0% {
      opacity: 1;
    }
    14.2857142857% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    64.2857142857% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(3) {
    animation-name: SP_cheese-sequence-bottom-3;
  }
  @keyframes SP_cheese-sequence-bottom-3 {
    0% {
      opacity: 1;
    }
    21.4285714286% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    71.4285714286% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(4) {
    animation-name: SP_cheese-sequence-bottom-4;
  }
  @keyframes SP_cheese-sequence-bottom-4 {
    0% {
      opacity: 1;
    }
    28.5714285714% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    78.5714285714% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(5) {
    animation-name: SP_cheese-sequence-bottom-5;
  }
  @keyframes SP_cheese-sequence-bottom-5 {
    0% {
      opacity: 1;
    }
    35.7142857143% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    85.7142857143% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .line_cheese_box#line_cheese_box-bottom .deco_li-cheese:nth-of-type(6) {
    animation-name: SP_cheese-sequence-bottom-6;
  }
  @keyframes SP_cheese-sequence-bottom-6 {
    0% {
      opacity: 1;
    }
    42.8571428571% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    92.8571428571% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .line_cheese_box#line_cheese_box-bottom .line_cheese-mouse {
    left: -14.953vw;
    animation: SP_Mouse_Move-Bottom 8s steps(7) infinite;
  }
}

.bg_fixed {
  width: 100%;
  max-width: inherit;
  height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.bg_fixed-body {
  overflow: hidden;
  background: url(./images/bg-main.webp) no-repeat center center/cover;
}
.bg_fixed-body::before, .bg_fixed-body::after {
  content: "";
  width: inherit;
  height: inherit;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.bg_fixed-body::before {
  background-image: url(./images/bg-main_light-01.webp);
  animation: Light-Opacity 1.5s ease-in-out alternate infinite, Light_Brightness_Move 1.5s ease-in-out alternate infinite, Light-Before-Move 2s linear alternate infinite;
}
.bg_fixed-body::after {
  background-image: url(./images/bg-main_light-02.webp);
  animation: Light-Opacity 1.5s ease-in-out alternate infinite, Light_Brightness_Move 1.5s ease-in-out alternate infinite, Light-After-Move 2s linear alternate infinite;
  animation-delay: -1.4s;
}
@media screen and (max-width: 1024px) {
  .bg_fixed-body {
    background: #000;
  }
  .bg_fixed-body::before, .bg_fixed-body::after {
    background-image: none;
    animation: none;
  }
}
.bg_fixed-main {
  background: url(./images/bg-black-top.webp) center center/10%;
  animation: about_bg 200s linear infinite;
}
@media screen and (max-width: 1024px) {
  .bg_fixed-main {
    background: url(./images/bg-black-top.webp) left 11% top/20%;
    animation: about_bg 50s linear infinite;
  }
}
.bg_fixed-main.--game {
  background: url(./images/bg-blak-game.webp) center center/cover;
  animation: none;
}

.side_box {
  width: 26%;
  height: 100vh;
}
.side_box-left {
  background: url(./images/img_side.webp) no-repeat center bottom/contain;
}
.side_box-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .side_box {
    display: none;
  }
}

.link_box a {
  margin-top: 2.083vw;
}
.link_box a:first-of-type {
  margin-top: 0;
}
.link_box-start {
  margin-top: 3.646vw;
}
.link_box-clear {
  margin-top: 2.083vw;
  padding-bottom: 2.083vw;
}
.link_box-gameover {
  margin-top: 3.75vw;
}
@media screen and (max-width: 1024px) {
  .link_box a {
    margin-top: 9.346vw;
  }
  .link_box-start {
    margin-top: 9.346vw;
  }
  .link_box-game {
    margin-top: 10.514vw;
    padding-bottom: 9.346vw;
  }
  .link_box-clear {
    margin-top: 9.346vw;
    padding-bottom: 9.346vw;
  }
  .link_box-gameover {
    margin-top: 9.346vw;
  }
}

.modal_box {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
}
.modal_box.active {
  opacity: 1;
  pointer-events: auto;
}
.modal_box.active .inner-modal_box {
  opacity: 1;
  transform: translateY(0px);
}
.modal_box .coupon_contents_box {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  width: 100%;
  max-width: 40.833vw;
  height: 47.708vw;
  margin: 0 auto;
  margin-top: 0.573vw;
  padding: 1.6vw 3.385vw 1.615vw;
  text-align: center;
  background: url(./images/bg-coupon.webp?2026081702) no-repeat center top/contain;
}
.modal_box .coupon_contents_box #coupon_100 {
  width: 100%;
  max-width: 32.5vw;
  margin: 0 auto;
}
.modal_box .coupon_contents_box #coupon_500 {
  margin-top: 5vw;
  color: #171515;
}
.modal_box .coupon_contents_box p.coupon_get-100 {
  font-size: 1.667vw;
}
.modal_box .coupon_contents_box p.coupon_get-mail {
  font-size: 1.406vw;
  font-weight: 900;
}
.modal_box .coupon_contents_box p.coupon_get-500 {
  font-size: 1.25vw;
  font-weight: 900;
  line-height: 3.281vw;
  margin-top: 0.7vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal_box .coupon_contents_box p.coupon_text {
  font-size: 1.667vw;
}
.modal_box .coupon_contents_box p.coupon_explanation {
  text-align: left;
}
.modal_box .coupon_contents_box p.coupon_explanation-100 {
  line-height: 1.83;
  margin-top: 0.5vw;
}
.modal_box .coupon_contents_box p.coupon_explanation-500 {
  font-size: 1.042vw;
  line-height: 1.45;
  width: 86%;
  margin: 0 auto;
  margin-top: 1.927vw;
  margin-bottom: 0.833vw;
}
.modal_box .coupon_contents_box p.coupon_mail_delivery {
  margin-top: 1.667vw;
  margin-bottom: 0.833vw;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .modal_box .coupon_contents_box {
    max-width: none;
    height: 183.178vw;
    margin-top: 1.402vw;
    padding: 5vw 5.14vw 5.607vw;
    background: url(./images/sp_bg-coupon.webp?2026081702) no-repeat center top/contain;
  }
  .modal_box .coupon_contents_box #coupon_100 {
    max-width: 81.542vw;
  }
  .modal_box .coupon_contents_box #coupon_500 {
    margin-top: 21vw;
  }
  .modal_box .coupon_contents_box p.coupon_get-100 {
    font-size: 5.374vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .modal_box .coupon_contents_box p.coupon_get-mail {
    font-size: 4.3vw;
  }
  .modal_box .coupon_contents_box p.coupon_get-500 {
    font-size: 4.3vw;
    line-height: 1.25;
    margin-top: 1.168vw;
    align-items: baseline;
  }
  .modal_box .coupon_contents_box p.coupon_text {
    font-size: 4.673vw;
  }
  .modal_box .coupon_contents_box p.coupon_explanation-100 {
    margin-top: 3vw;
  }
  .modal_box .coupon_contents_box p.coupon_explanation-500 {
    font-size: 3.271vw;
    line-height: 1.83;
    width: 96%;
    margin-top: 2.5vw;
    margin-bottom: 5.607vw;
  }
  .modal_box .coupon_contents_box p.coupon_mail_delivery {
    margin-top: 7.477vw;
    margin-bottom: 3.738vw;
  }
}
.modal_box .coupon_contents_box .text-coupon {
  display: inline-block;
}
.modal_box .coupon_contents_box .text-coupon-100 {
  font-size: 2.5vw;
  font-weight: 900;
}
.modal_box .coupon_contents_box .text-coupon-100 small {
  font-size: 1.667vw;
}
.modal_box .coupon_contents_box .text-coupon-500 {
  font-size: 2.5vw;
  color: #ffffff;
  font-weight: 900;
  margin-right: 1vw;
  position: relative;
  z-index: 0;
}
.modal_box .coupon_contents_box .text-coupon-500 small {
  font-size: 1.667vw;
}
.modal_box .coupon_contents_box .text-coupon-500::before {
  content: "";
  width: 106%;
  height: 3.281vw;
  background-color: #ff5b24;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .modal_box .coupon_contents_box .text-coupon-100 {
    font-size: 9.5vw;
  }
  .modal_box .coupon_contents_box .text-coupon-100 small {
    font-size: 5.374vw;
  }
  .modal_box .coupon_contents_box .text-coupon-500 {
    margin-right: 3vw;
    font-size: 7vw;
  }
  .modal_box .coupon_contents_box .text-coupon-500 small {
    font-size: 4.3vw;
  }
  .modal_box .coupon_contents_box .text-coupon-500::before {
    height: 8.645vw;
  }
}
.modal_box .coupon_contents_box .coupon_box {
  width: 25.833vw;
  height: 5.052vw;
  margin: 0 auto;
  margin-top: 0.781vw;
  margin-bottom: 0.5vw;
  background: url(./images/bg-couponno.webp) no-repeat center center/contain;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}
.modal_box .coupon_contents_box .coupon_box::before {
  content: "";
  width: 6.25vw;
  height: 5.781vw;
  background-image: url(./images/img_mouse-happy.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -0.521vw;
  right: -2.083vw;
  z-index: 1;
  animation: Mouse_Move-Intro_img 1.4s steps(1) infinite;
}
@media screen and (max-width: 1024px) {
  .modal_box .coupon_contents_box .coupon_box {
    width: 79.439vw;
    height: 15.654vw;
    margin-top: 2.804vw;
    margin-bottom: 2.103vw;
  }
  .modal_box .coupon_contents_box .coupon_box::before {
    width: 17.991vw;
    height: 16.822vw;
    top: -0.701vw;
    right: -4.206vw;
  }
}
.modal_box .coupon_contents_box .btn_coupon_copy {
  font-size: 0.833vw;
  background-color: #171515;
  padding: 0.521vw 0.781vw;
  border-radius: 1.042vw;
  font-weight: bold;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  touch-action: manipulation;
}
.modal_box .coupon_contents_box .btn_coupon_copy::before {
  content: "Copied!";
  position: absolute;
  top: 2.563vw;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  background: #171515;
  border-radius: 1.042vw;
  padding: 0.469vw 0.521vw;
  font-size: 0.729vw;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
}
.modal_box .coupon_contents_box .btn_coupon_copy::after {
  content: "";
  position: absolute;
  top: 2.302vw;
  left: 50%;
  width: 0.521vw;
  height: 0.521vw;
  background: #171515;
  opacity: 0;
  transform: translateX(-50%) rotate(45deg);
  pointer-events: none;
  transition: all 0.4s;
}
.modal_box .coupon_contents_box .btn_coupon_copy.active::before, .modal_box .coupon_contents_box .btn_coupon_copy.active::after {
  opacity: 1;
}
.modal_box .coupon_contents_box .btn_coupon_copy span {
  transition: all ease-in-out 0.4s;
}
@media screen and (min-width: 767px) {
  .modal_box .coupon_contents_box .btn_coupon_copy:hover span {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1024px) {
  .modal_box .coupon_contents_box .btn_coupon_copy {
    font-size: 2.804vw;
    padding: 2.336vw 3.505vw;
    border-radius: 4.673vw;
  }
  .modal_box .coupon_contents_box .btn_coupon_copy::before {
    top: 10.542vw;
    border-radius: 3.505vw;
    padding: 1.636vw 4.673vw;
    font-size: 3.271vw;
  }
  .modal_box .coupon_contents_box .btn_coupon_copy::after {
    top: 9.374vw;
    width: 2.336vw;
    height: 2.336vw;
  }
}
.modal_box .coupon_contents_box .btn_mail {
  font-family: "Noto Sans JP", sans-serif;
  width: 17.188vw;
  height: 4.948vw;
  font-size: 1.25vw;
  font-weight: 700;
  padding-left: 0.8vw;
  padding-bottom: 0.2vw;
}
.modal_box .coupon_contents_box .btn_mail::after {
  content: "";
  width: 2.188vw;
  height: 3.333vw;
  background-image: url(./images/icon-pointer.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -0.781vw;
  right: -0.521vw;
  z-index: 1;
  animation: Pointer_Move-Clear_Mail_Btn 1.4s steps(1) infinite;
}
@media screen and (max-width: 1024px) {
  .modal_box .coupon_contents_box .btn_mail {
    width: 72.43vw;
    height: 20.561vw;
    font-size: 5.374vw;
    padding-left: 3vw;
    padding-bottom: 1vw;
  }
  .modal_box .coupon_contents_box .btn_mail::after {
    width: 9.813vw;
    height: 14.953vw;
    bottom: -3.505vw;
    right: -3.505vw;
  }
}

main {
  width: 90%;
  max-width: 49.167vw;
  margin: 0 auto;
  background-color: #000;
  clip-path: inset(0);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  main {
    width: 100%;
    max-width: none;
  }
}
main #mv.active .deco_ul-mv {
  opacity: 1;
  transition-delay: 0.4s;
}
main #mv.active .intro_container {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 0.8s;
}
main #mv.active .intro_contents {
  transform: translateY(0%);
  transition-delay: 0.8s;
}
main #mv .intro_container {
  opacity: 0;
  transition: opacity ease-in-out 0.4s;
}
main #mv .intro_contents {
  transform: translateY(3%);
  transition: transform ease-in-out 0.4s;
}
main #mv .intro_txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25vw;
  text-align: center;
  margin-top: 1.667vw;
}
main #mv .intro_txt p:last-of-type {
  line-height: 1.8;
  margin-top: 0.938vw;
}
main #mv .intro_txt p:last-of-type span {
  font-size: 1.8vw;
  font-weight: 900;
}
main #mv .intro_img_box {
  width: 100%;
  max-width: 37.76vw;
  height: 11.927vw;
  margin: 0 auto;
  margin-top: 1.094vw;
  margin-bottom: 2.083vw;
  position: relative;
  z-index: 0;
}
main #mv .intro_img_box .intro_img .intro_img_li {
  position: absolute;
}
main #mv .intro_img_box .intro_img .intro_img_li-100 {
  width: 11.302vw;
  top: 0.938vw;
  left: 6.771vw;
  z-index: 3;
}
main #mv .intro_img_box .intro_img .intro_img_li-500 {
  width: 11.302vw;
  top: 4.583vw;
  left: 12.083vw;
  z-index: 1;
}
main #mv .intro_img_box .intro_img .intro_img_li-mouse {
  width: 11.823vw;
  top: 0;
  right: 5.833vw;
  z-index: 2;
  animation: Mouse_Move-Intro_img 1.4s steps(1) infinite;
}
@media screen and (max-width: 1024px) {
  main #mv .intro_txt {
    font-size: 4.673vw;
    line-height: 2;
    margin-top: 5.607vw;
  }
  main #mv .intro_txt p:last-of-type {
    margin-top: 4.206vw;
  }
  main #mv .intro_txt p:last-of-type span {
    font-size: 5.607vw;
  }
  main #mv .intro_img_box {
    max-width: 83.178vw;
    height: 42.523vw;
    margin-top: 5.607vw;
    margin-bottom: 7.477vw;
  }
  main #mv .intro_img_box .intro_img .intro_img_li-100 {
    width: 35.981vw;
    top: 7.944vw;
    left: 3.271vw;
    z-index: 3;
  }
  main #mv .intro_img_box .intro_img .intro_img_li-500 {
    width: 35.981vw;
    top: 19.159vw;
    left: 20.327vw;
    z-index: 1;
  }
  main #mv .intro_img_box .intro_img .intro_img_li-mouse {
    width: 37.383vw;
    top: 2.336vw;
    right: 0;
    z-index: 2;
  }
}
main #howto {
  margin-top: 3.438vw;
  padding-bottom: 2.083vw;
}
@media screen and (max-width: 1024px) {
  main #howto {
    margin-top: 14.019vw;
    padding-bottom: 9.579vw;
  }
}/*# sourceMappingURL=style.css.map */