@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-container > .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-container > .modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

.modaal-container > .modaal-close:focus,
.modaal-container > .modaal-close:hover {
  outline: none;
  background: #fff;
}

.modaal-container > .modaal-close:focus:before,
.modaal-container > .modaal-close:focus:after,
.modaal-container > .modaal-close:hover:before,
.modaal-container > .modaal-close:hover:after {
  background: #b93d0c;
}

.modaal-container > .modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-container > .modaal-close:before,
.modaal-container > .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}

.modaal-container > .modaal-close:before {
  transform: rotate(-45deg);
}

.modaal-container > .modaal-close:after {
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-container > .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}

.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
  background: #afb7bc;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before,
  .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}
/* =============================================

基本設定

============================================= */
html {
  font-size: 0.625em;
}
@media (max-width: 1000px) {
  html {
    font-size: 1vw;
  }
}

body {
  font-family: "YakuHanJP", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1;
}
body.is-lock {
  overflow: hidden;
}

img {
  width: 100%;
  max-width: none;
  height: auto;
}

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

@media (max-width: 1000px) {
  .pc {
    display: none;
  }
}

summary {
  list-style: none;
}

em {
  font-style: normal;
}

.modal {
  display: none;
}

.modaal-container {
  max-width: 88rem;
}

.modaal-content-container {
  padding: 0;
}

.contents {
  overflow: hidden;
}

.fadein {
  transform: translateY(4rem);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}
.fadein.is-showin {
  transform: translateY(0);
  opacity: 1;
}

.mainvisual {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  position: relative;
}
.mainvisual__title {
  width: 70.2rem;
  position: absolute;
  top: 9rem;
  left: 50%;
  transform: translateX(-50%) scale(0.3);
  transition: transform 1s;
}
.mainvisual__title.is-showin {
  transform: translateX(-50%) scale(1);
}
.mainvisual__reward {
  width: 35.2rem;
  position: absolute;
}
.mainvisual__reward--01 {
  top: 89.2rem;
  left: 10.8rem;
  animation: shabon 2s ease-in-out alternate-reverse forwards infinite;
}
.mainvisual__reward--02 {
  top: 90.4rem;
  left: 55.2rem;
  animation: shabon-r 2s ease-in-out alternate-reverse infinite;
}

@keyframes shabon {
  0% {
    transform: translateY(0.5rem);
  }
  100% {
    transform: translateY(-0.5rem);
  }
}
@keyframes shabon-r {
  0% {
    transform: translateY(-0.5rem);
  }
  100% {
    transform: translateY(0.5rem);
  }
}
.select {
  background: #cf733b;
  width: 100%;
  max-width: 100rem;
  padding: 7rem 3rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.select__item--01 {
  width: 46.6rem;
}
.select__item--02 {
  width: 44.8rem;
}
.select__banner {
  display: block;
  margin-bottom: 2.5rem;
  position: relative;
}
.select__img {
  filter: drop-shadow(0.3rem 0.3rem 0.3rem rgba(114, 61, 37, 0.7));
}
.select__btn {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  background: #753e26;
  width: 24rem;
  height: 4.6rem;
  margin: 0 auto;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.select__balloon {
  width: 13.2rem;
  position: absolute;
  top: -2.6rem;
  left: 0.4rem;
  animation: balloon 2s ease-out infinite;
}

@keyframes balloon {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.15);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.15);
  }
  75% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.campaign {
  background: #faf5e8;
  width: 100%;
  max-width: 100rem;
  padding: 5rem 0 7rem;
  margin: 0 auto;
}
.campaign__outline {
  width: 93.6rem;
  padding: 7rem 0 0;
  margin: 0 auto 14rem;
  position: relative;
}
.campaign__outline::before {
  content: "";
  background: url("../img/index/campaign-frame-top.png") no-repeat top center/100% auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.campaign__outline::after {
  content: "";
  background: url("../img/index/campaign-frame-bottom.png") no-repeat bottom center/100% auto;
  width: 100%;
  height: 7rem;
  position: absolute;
  bottom: -7rem;
  left: 0;
  pointer-events: none;
}
.campaign__title {
  width: 57.4rem;
  margin: 0 auto 4rem;
}
.campaign__date {
  width: 65.6rem;
  margin: 0 auto 3.5rem;
}
.campaign__notice {
  font-size: max(2rem, 10px);
  line-height: 1.3;
  color: #753e26;
  text-align: center;
}
.campaign__notice sub {
  bottom: -0.4em;
}
.campaign__notice + .campaign__notice {
  margin-top: 2rem;
}
.campaign__way {
  display: block;
  width: 58.4rem;
  margin: 4rem auto 0;
}

.btn-entry {
  background: #753e26;
  display: block;
  width: 79rem;
  margin: 0 auto;
}
.btn-entry--orange {
  background: #d86929;
}

.course {
  background: #cf733b;
  width: 100%;
  max-width: 100rem;
  padding: 10rem 0;
  margin: 0 auto;
}
.course__title {
  width: 62.4rem;
  margin: 0 auto 2rem;
}
.course__detail {
  width: 88.4rem;
  margin: 0 auto;
}
.course__notice {
  font-size: max(1.4rem, 9px);
  line-height: 1.5;
  color: #fff;
  text-align: justify;
  width: 88.4rem;
  margin: 1.5rem auto 2rem;
}

.send {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}

.rule {
  background: #cf733b;
  width: 100%;
  max-width: 100rem;
  padding: 6rem 0;
  margin: 0 auto;
}
.rule__detail {
  width: 92.4rem;
  margin: 0 auto 8rem;
}
.rule__example {
  width: 94rem;
  margin: 0 auto;
}

.outline {
  background: #f3f1eb;
  width: 100%;
  max-width: 100rem;
  padding: 6rem 0;
  margin: 0 auto;
}
.outline__detail {
  background: #fff;
  width: 88rem;
  margin: 0 auto 5rem;
}
.outline__heading {
  text-align: center;
  padding: 4rem;
  border: 0.2rem solid #d86929;
  position: relative;
  cursor: pointer;
}
.outline__heading img {
  width: auto;
  height: 5rem;
}
.outline__heading::after {
  content: "";
  background: url("../img/index/outline-arrow.png") no-repeat center center/cover;
  width: 6.4rem;
  aspect-ratio: 64/34;
  position: absolute;
  top: 50%;
  right: 5rem;
  transform: translateY(-50%);
}
.outline__body {
  background: #fff;
  padding: 3rem;
  border: 0.2rem solid #d86929;
  border-top: none;
}
.outline__txt {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  text-align: justify;
}
.outline__txt + .outline__txt {
  margin-top: 4rem;
}
.outline a {
  text-decoration: underline;
}

.game {
  background: #c28000;
  width: 100%;
  max-width: 100rem;
  padding-bottom: 16rem;
  margin: 0 auto;
}
.game__mainvisual {
  position: relative;
}
.game__mainvisual-txt01 {
  width: 80rem;
  position: absolute;
  top: 51.6rem;
  left: 8.8rem;
}
.game__mainvisual-txt01.is-showin {
  animation: nazotoki 1s step-end forwards 1;
}
.game__mainvisual-txt02 {
  width: 50.6rem;
  position: absolute;
  top: 79.8rem;
  left: 31.2rem;
  opacity: 0;
}
.game__mainvisual-txt02.is-showin {
  animation: game 0.5s 1.5s ease forwards 1;
}
.game__mainvisual-clock {
  width: 13.6rem;
  position: absolute;
  top: 83rem;
  left: 4rem;
  animation: clock 3s linear forwards infinite;
  transform-origin: 6.8rem 9.5rem;
}
.game__mainvisual-pipe {
  width: 15rem;
  position: absolute;
  top: 47.4rem;
  left: 82.2rem;
  animation: pipe 1s ease-in-out alternate-reverse forwards infinite;
}
.game__mainvisual-memo {
  width: 16.4rem;
  position: absolute;
  top: 132.8rem;
  left: 22.2rem;
}
.game__mainvisual-memo.is-showin {
  animation: memo 3s ease-in-out forwards 1;
}
.game__story {
  margin-top: -5rem;
  margin-bottom: 9rem;
}
.game__start {
  display: block;
  width: 55rem;
  margin: 0 auto 12rem;
  filter: drop-shadow(0.8rem 0.8rem 0.4rem rgba(0, 0, 0, 0.5));
}
.game__howto {
  width: 88.4rem;
  margin: 0 auto;
  position: relative;
}
.game__howto-backtop01 {
  width: 36rem;
  margin: 0 auto;
  position: absolute;
  top: 99rem;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0.3rem 0.3rem 0.3rem rgba(208, 94, 42, 0.7));
}
.game__howto-backtop02 {
  width: 50.6rem;
  margin: 0 auto;
  position: absolute;
  top: 132rem;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes nazotoki {
  0% {
    transform: rotate(-5deg);
  }
  33% {
    transform: rotate(0deg);
  }
  66% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes game {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  1% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes clock {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pipe {
  0% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(1rem);
  }
}
@keyframes memo {
  0% {
    transform: translate(-2rem, -13.4rem) rotate(12deg);
  }
  33% {
    transform: translate(2rem, -6.7rem) rotate(-4deg);
  }
  66% {
    transform: translate(-2rem, -2rem) rotate(20deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.nazotoki {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}
.nazotoki img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.nazotoki__Q {
  position: relative;
  display: none;
}
.nazotoki__Q.is-active {
  display: block;
}
.nazotoki__Q.is-lock {
  pointer-events: none;
}
.nazotoki__A {
  display: block;
  position: absolute;
  z-index: 10;
}
.nazotoki__A--01 {
  width: 4.4rem;
  height: 9.6rem;
  top: 36rem;
  left: 42.8rem;
}
.nazotoki__A--02 {
  width: 13.6rem;
  height: 13.6rem;
  top: 131rem;
  left: 61.4rem;
}
.nazotoki__A--03 {
  width: 23.2rem;
  height: 14.8rem;
  top: 113.6rem;
  left: 68rem;
}
.nazotoki__A--04 {
  width: 16.5rem;
  height: 16.5rem;
  top: 160.4rem;
  left: 76rem;
}
.nazotoki__A--05 {
  width: 11.2rem;
  height: 3.8rem;
  top: 227.4rem;
  left: 57.6rem;
}
.nazotoki__mozaik {
  width: 4.4rem;
  position: absolute;
  top: 36rem;
  left: 42.8rem;
}
.nazotoki__mozaik img {
  position: absolute;
  inset: 0;
  animation: mozaik 0.2s linear alternate-reverse infinite;
}
.nazotoki__mozaik img:nth-child(2) {
  animation-delay: 0.2s;
}
.nazotoki__mozaik img:nth-child(3) {
  animation-delay: 0.4s;
}
.nazotoki__fiber {
  width: 23.2rem;
  position: absolute;
  top: 113.6rem;
  left: 68rem;
  animation: fiber 1.6s ease alternate-reverse infinite;
}

@keyframes mozaik {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fiber {
  0% {
    transform: rotate(2deg) scaleX(1) scaleY(1);
  }
  50% {
    transform: rotate(2deg) scaleX(0.95) scaleY(1.05);
  }
  100% {
    transform: rotate(-2deg) scaleX(1) scaleY(1);
  }
}
.transition {
  position: fixed;
  inset: 0;
  background: #fffdee url("../img/game/game-logo.png") no-repeat center center/50.4rem auto;
  z-index: 9999;
  pointer-events: none;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.transition.is-active {
  clip-path: circle(150% at 50% 50%);
}

.goal {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  position: relative;
  display: none;
}
.goal.is-active {
  display: block;
}
.goal__entry {
  width: 78.4rem;
  position: absolute;
  top: 206.8rem;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.5s;
}
.goal__entry:hover {
  opacity: 0.7;
}
.goal__congratulations {
  width: 78.2rem;
  position: absolute;
  top: 41.6rem;
  left: 11rem;
  opacity: 0;
}
.goal__congratulations.is-showin {
  animation: game 0.5s 1.5s ease forwards 1;
}
.goal__key {
  width: 12.8rem;
  position: absolute;
  top: 5.6rem;
  left: 11.2rem;
  animation: pipe 1s ease-in-out alternate-reverse forwards infinite;
}
.goal__clock {
  width: 12rem;
  position: absolute;
  top: 26.4rem;
  left: 2.6rem;
  transform-origin: 8.6rem bottom;
  animation: goal-clock 1s ease-in-out alternate-reverse forwards infinite;
}

@keyframes goal-clock {
  0% {
    transform: rotate(60deg);
  }
  100% {
    transform: rotate(0);
  }
}
.loading {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fffdee;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading.is-hide {
  opacity: 0;
  visibility: hidden;
}
.loading__inner {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.loading__logo {
  width: 50.4rem;
}
.loading__spinner {
  width: 5rem;
  aspect-ratio: 1;
  display: grid;
  -webkit-mask: conic-gradient(from 15deg, rgba(0, 0, 0, 0), #000);
  animation: l26 1s infinite steps(12);
  background: radial-gradient(closest-side at 50% 12.5%, #d1733b 96%, rgba(0, 0, 0, 0)) 50% 0/20% 80% repeat-y, radial-gradient(closest-side at 12.5% 50%, #d1733b 96%, rgba(0, 0, 0, 0)) 0 50%/80% 20% repeat-x;
}
@media (max-width: 1000px) {
  .loading__spinner {
    width: 10rem;
  }
}
.loading__spinner::before, .loading__spinner::after {
  content: "";
  grid-area: 1/1;
  transform: rotate(30deg);
  background: radial-gradient(closest-side at 50% 12.5%, #d1733b 96%, rgba(0, 0, 0, 0)) 50% 0/20% 80% repeat-y, radial-gradient(closest-side at 12.5% 50%, #d1733b 96%, rgba(0, 0, 0, 0)) 0 50%/80% 20% repeat-x;
}
.loading__spinner::after {
  transform: rotate(60deg);
}

@keyframes l26 {
  100% {
    transform: rotate(1turn);
  }
}
.mb0 {
  margin-bottom: 0rem;
}

.mb5 {
  margin-bottom: 0.5rem;
}

.mb10 {
  margin-bottom: 1rem;
}

.mb15 {
  margin-bottom: 1.5rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb25 {
  margin-bottom: 2.5rem;
}

.mb30 {
  margin-bottom: 3rem;
}

.mb35 {
  margin-bottom: 3.5rem;
}

.mb40 {
  margin-bottom: 4rem;
}

.mb45 {
  margin-bottom: 4.5rem;
}

.mb50 {
  margin-bottom: 5rem;
}

.mb55 {
  margin-bottom: 5.5rem;
}

.mb60 {
  margin-bottom: 6rem;
}

.mb65 {
  margin-bottom: 6.5rem;
}

.mb70 {
  margin-bottom: 7rem;
}

.mb75 {
  margin-bottom: 7.5rem;
}

.mb80 {
  margin-bottom: 8rem;
}

.mb85 {
  margin-bottom: 8.5rem;
}

.mb90 {
  margin-bottom: 9rem;
}

.mb95 {
  margin-bottom: 9.5rem;
}

.mb100 {
  margin-bottom: 10rem;
}

.mb105 {
  margin-bottom: 10.5rem;
}

.mb110 {
  margin-bottom: 11rem;
}

.mb115 {
  margin-bottom: 11.5rem;
}

.mb120 {
  margin-bottom: 12rem;
}

.mb125 {
  margin-bottom: 12.5rem;
}

.mb130 {
  margin-bottom: 13rem;
}

.mb135 {
  margin-bottom: 13.5rem;
}

.mb140 {
  margin-bottom: 14rem;
}

.mb145 {
  margin-bottom: 14.5rem;
}

.mb150 {
  margin-bottom: 15rem;
}

.mb155 {
  margin-bottom: 15.5rem;
}

.mb160 {
  margin-bottom: 16rem;
}

.mb165 {
  margin-bottom: 16.5rem;
}

.mb170 {
  margin-bottom: 17rem;
}

.mb175 {
  margin-bottom: 17.5rem;
}

.mb180 {
  margin-bottom: 18rem;
}

.mb185 {
  margin-bottom: 18.5rem;
}

.mb190 {
  margin-bottom: 19rem;
}

.mb195 {
  margin-bottom: 19.5rem;
}

.mb200 {
  margin-bottom: 20rem;
}/*# sourceMappingURL=style.css.map */