@charset "UTF-8";
:root {
  --color-font-base: #000;
  --color-font-sub: #686868;
  --color-base: #38393F;
  --color-base02: #F5F5F5;
  --color-main: #0A0078;
  --color-accent01: #06F;
  --color-accent02: #13527F;
  --color-white: #fff;
  --f-size-60: 6.0rem;
  --f-size-50: 5.0rem;
  --f-size-40: 4.0rem;
  --f-size-38: 3.8rem;
  --f-size-36: 3.6rem;
  --f-size-32: 3.2rem;
  --f-size-24: 2.4rem;
  --f-size-22: 2.2rem;
  --f-size-20: 2rem;
  --f-size-18: 1.8rem;
  --f-size-16: 1.6rem;
  --f-size-18: 1.8rem;
  --f-size-14: 1.4rem;
  --f-size-13: 1.3rem;
  --f-size-12: 1.2rem;
  --f-size-10: 1.0rem;
  --f-weight-300: 300;
  --f-weight-400: 400;
  --f-weight-500: 500;
  --f-weight-600: 600;
  --f-weight-700: 700;
  --sp-design-width: 390;
  --to-vw: calc(100vw / var(--sp-design-width)
  );
}

.l-button01 {
  width: 296px;
  padding-block: 11px;
  background-color: #fff;
  border-radius: 100px;
  border: 2px solid #000;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  -webkit-transition: background-color ease 0.2s;
  transition: background-color ease 0.2s;
}
.l-button01__label {
  font-size: 1.6rem;
  color: var(--color-main);
  text-box: trim-both text;
  -webkit-transition: color ease 0.2s;
  transition: color ease 0.2s;
}
@media (any-hover: hover) {
  .l-button01:hover {
    border: 2px solid transparent;
    background-color: #3773ea;
  }
  .l-button01:hover .l-button01__label {
    color: #fff;
  }
}

#game_clear_view {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  #game_clear_view {
    -webkit-padding-before: 40px;
            padding-block-start: 40px;
    -webkit-padding-after: 30px;
            padding-block-end: 30px;
  }
}
#game_clear_view .clear_content {
  width: calc(100% - 180px);
  background-color: #fff;
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
  margin-inline: auto;
  padding-block: 20px;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  #game_clear_view .clear_content {
    width: calc(100% - 40px);
    border-radius: 20px;
  }
}
#game_clear_view .clear_content__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#game_clear_view .clear_content__top p {
  font-size: 3.2rem;
}
#game_clear_view .clear_content__bottom {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  #game_clear_view .clear_content__bottom {
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  #game_clear_view .clear_content__bottom img {
    width: 100%;
    height: auto;
  }
}
#game_clear_view #game_level {
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #game_clear_view #game_level {
    font-size: 3rem;
  }
}
#game_clear_view #game_level .level {
  padding-block: 4px;
  padding-inline: 20px;
  border-radius: 100px;
  background-color: #FFE100;
  text-align: center;
  text-box: trim-both text;
}
@media screen and (max-width: 767px) {
  #game_clear_view .clear_message {
    width: 100%;
  }
  #game_clear_view .clear_message img {
    width: 100%;
    height: auto;
  }
}
#game_clear_view .allClear {
  display: none;
}
#game_clear_view .clear_nextBtn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 350px;
  margin-inline: auto;
  border-radius: 100px;
}
#game_clear_view .clear_nextBtn button {
  width: 100%;
  padding-block: 4px;
  -webkit-padding-before: 10px;
          padding-block-start: 10px;
  padding-inline: 20px;
  border-radius: 100px;
  border: 4px solid #FFF;
  background-color: #0041c3;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 2.4rem;
  color: #fff;
}
@media (any-hover: hover) {
  #game_clear_view .clear_nextBtn button:hover {
    background-color: #1c62ef;
  }
}
#game_clear_view .clear_nextBtn button .level {
  font-size: 3rem;
  padding-block: 7px;
  padding-inline: 20px;
  border-radius: 100px;
  background-color: #98D831;
  text-align: center;
  color: #0A0078;
}
#game_clear_view .clear_nextBtn button .label {
  font-size: 3rem;
}
#game_clear_view .gameOver_btns {
  display: none;
}

#game_over_view {
  padding-block: 166px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #game_over_view {
    -webkit-padding-before: 40px;
            padding-block-start: 40px;
    -webkit-padding-after: 30px;
            padding-block-end: 30px;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 767px) {
  #game_over_view .gameOver_image {
    width: 100%;
  }
  #game_over_view .gameOver_image img {
    width: 100%;
    height: auto;
  }
}
#game_over_view .gameOver_btns {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  justify-items: center;
}
@media print, screen and (min-width: 768px) {
  #game_over_view .gameOver_btns {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
#game_over_view .gameOver_linkBtn .l-button01 {
  display: block;
}
#game_over_view .gameOver_nextBtn .level {
  display: inline-block;
  text-box: trim-both text;
  padding-block: 2px;
  padding-inline: 10px;
  background-color: #FFE100;
  border-radius: 100px;
}

#game_play_view {
  -webkit-padding-before: 20px;
          padding-block-start: 20px;
  -webkit-padding-after: 120px;
          padding-block-end: 120px;
  padding-inline: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #game_play_view {
    -webkit-padding-after: 70px;
            padding-block-end: 70px;
    padding-inline: 20px;
    height: 100vh;
  }
}
#game_play_view .game_countdown {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
#game_play_view .game_countdown span {
  font-size: 8rem;
  color: #fff;
}
#game_play_view .play-title {
  font-size: 3.2rem;
  color: var(--color-main);
  text-align: center;
  -webkit-margin-after: 5px;
          margin-block-end: 5px;
}
@media screen and (max-width: 767px) {
  #game_play_view .play-title {
    font-size: 2.4rem;
  }
}
#game_play_view .play_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-margin-after: 13px;
          margin-block-end: 13px;
  height: 41px;
}
#game_play_view #game_level {
  width: 190px;
  border-radius: 100px;
  padding-inline: 10px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  position: relative;
}
#game_play_view #game_level .level {
  width: 24px;
  height: 24px;
  border-radius: 100px;
  background-color: #FFE100;
  color: var(--color-main);
  text-align: center;
  vertical-align: middle;
}
#game_play_view #game_level .label {
  font-size: 2.5rem;
  text-box: trim-both text;
}
#game_play_view #game_level::after {
  content: "";
  display: block;
  width: 34px;
  height: 35px;
  background-image: url(/keananadeshiko/eawase/assets/img/play/icon-level01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 10px;
  -webkit-animation: kururuin 4s linear infinite;
          animation: kururuin 4s linear infinite;
}
#game_play_view #game_timer {
  width: 118px;
  background-color: #fff;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
  text-box: trim-both text;
}
#game_play_view .game__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #game_play_view .game__btns {
    gap: 10px;
  }
}
#game_play_view .game__btns .game_overBtn button,
#game_play_view .game__btns .game_retryBtn button {
  background-color: #fff;
  border-radius: 100px;
  border: 2px solid #000;
  padding-block: 10px;
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  position: relative;
}
#game_play_view .game__btns .game_overBtn button span,
#game_play_view .game__btns .game_retryBtn button span {
  text-box: trim-both text;
}
#game_play_view .game__btns .game_overBtn button::before,
#game_play_view .game__btns .game_retryBtn button::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(/keananadeshiko/eawase/assets/img/play/icon-q.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#game_play_view .game__btns .game_overBtn button::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(/keananadeshiko/eawase/assets/img/play/icon-q.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#game_play_view .game__btns .game_retryBtn button::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(/keananadeshiko/eawase/assets/img/play/icon-r.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#game_play_view .game_card_container {
  width: 100%;
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 767px) {
  #game_play_view .game_card_container {
    width: 60vw;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
#game_play_view .game_card {
  width: 100%;
  aspect-ratio: 230/288;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  cursor: pointer;
}
#game_play_view .game_card_inner {
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
#game_play_view .game_card_flip .game_card_inner {
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
#game_play_view .game_card_front {
  background-color: #0a5572;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
#game_play_view .game_card_back {
  background-color: #811478;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
#game_play_view .game_card_discard .game_card_inner .game_card_back {
  opacity: 0.5;
}
#game_play_view .game_card_discard .game_card_inner .game_card_back::after {
  content: "";
  display: block;
  width: 10%;
  aspect-ratio: 1/1;
  background-image: url(/keananadeshiko/eawase/assets/img/play/icon-check.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 5%;
  left: 5%;
}
#game_play_view .game_card_label {
  color: #ffffff;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#game_start_view {
  -webkit-padding-before: 20px;
          padding-block-start: 20px;
  -webkit-padding-after: 40px;
          padding-block-end: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  #game_start_view .start-title {
    width: calc(100% - 60px);
  }
  #game_start_view .start-title img {
    width: 100%;
    height: auto;
  }
}
#game_start_view .start-list {
  width: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  #game_start_view .start-list {
    width: calc(100% - 40px);
  }
}
#game_start_view .start-list__item {
  background-color: #fff;
  padding: 20px;
  border-radius: 40px;
  display: -ms-grid;
  display: grid;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #game_start_view .start-list__item {
    border-radius: 20px;
    padding: 10px;
  }
}
#game_start_view .start-list__item .num {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: var(--color-main);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #game_start_view .start-list__item .num {
    width: 30px;
    height: 30px;
  }
}
#game_start_view .start-list__item .lead {
  font-size: 2.6rem;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  #game_start_view .start-list__item .lead {
    font-size: 2rem;
  }
}
#game_start_view .start-list__item .text {
  font-size: 2rem;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  #game_start_view .start-list__item .text {
    font-size: 1.6rem;
  }
}
#game_start_view .start-list__item.is-item01 {
  -ms-grid-columns: 40px 20px 260px 20px 1fr;
  grid-template-columns: 40px 260px 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #game_start_view .start-list__item.is-item01 {
    -ms-grid-columns: 30px 10px 1fr;
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }
}
#game_start_view .start-list__item.is-item01 .cards {
  -webkit-margin-start: -10px;
          margin-inline-start: -10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media print, screen and (min-width: 768px) {
  #game_start_view .start-list__item.is-item01 .cards {
    width: 130px;
    height: 162px;
  }
}
@media screen and (max-width: 767px) {
  #game_start_view .start-list__item.is-item01 .cards {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    gap: 10px;
  }
}
#game_start_view .start-list__item.is-item01 .cards li img {
  width: 100%;
  height: auto;
}
#game_start_view .start-list__item.is-item02 {
  -ms-grid-columns: 40px 20px 1fr;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #game_start_view .start-list__item.is-item02 {
    -ms-grid-columns: 30px 10px 1fr;
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }
}
#game_start_view .start-list__item.is-item03 {
  -ms-grid-columns: 40px 20px 1fr;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #game_start_view .start-list__item.is-item03 {
    -ms-grid-columns: 30px 10px 1fr;
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }
}
#game_start_view .start-list__item.is-item03 .level-box {
  width: 460px;
  padding-block: 10px;
  padding-inline: 14px;
  margin-inline: auto;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  background-color: #FAFACC;
  border-radius: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 767px) {
  #game_start_view .start-list__item.is-item03 .level-box {
    width: 100%;
    padding-inline: calc(6 * var(--to-vw));
    gap: calc(6 * var(--to-vw));
  }
}
#game_start_view .start-list__item.is-item03 .level-box .level {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #game_start_view .start-list__item.is-item03 .level-box .level {
    font-size: calc(14 * var(--to-vw));
  }
}
#game_start_view .start-list__item.is-item03 .level-box .level {
  color: var(--color-main);
}
#game_start_view .start-list__item.is-item03 .level-box .level .label {
  display: inline-block;
  padding-inline: 10px;
  border-radius: 100px;
}
#game_start_view .start-list__item.is-item03 .level-box .level.level1 .label {
  background-color: #FFE100;
}
#game_start_view .start-list__item.is-item03 .level-box .level.level2 .label {
  background-color: #98D831;
}
#game_start_view .start-list__item.is-item03 .level-box .level.level3 .label {
  background-color: #7DD2FF;
}
#game_start_view .start-list__item.is-item03 .level-box .level.level4 .label {
  background-color: #F72E42;
  color: #fff;
}
#game_start_view .start-list__item.is-item03 .text {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  text-align: center;
}
#game_start_view .start-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 350px;
  margin-inline: auto;
  border-radius: 100px;
}
#game_start_view .start-btn button {
  width: 100%;
  padding-block: 7px;
  padding-inline: 0;
  border-radius: 100px;
  border: 4px solid #FFF;
  background-color: #E10B17;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: background-color ease 0.2s;
  transition: background-color ease 0.2s;
}
@media (any-hover: hover) {
  #game_start_view .start-btn button:hover {
    background-color: #f11b25;
  }
}
#game_start_view .start-btn button .label {
  font-size: 3rem;
  text-align: start;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-start: 75px;
          margin-inline-start: 75px;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  line-height: 1.4;
}
#game_start_view .start-btn button::after {
  content: "";
  width: 88px;
  height: 180px;
  background-image: url("/keananadeshiko/eawase/assets/img/start/start-btn-nadeshiko.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 25px;
  bottom: -85px;
  -webkit-animation: Iconyurayura 2s ease-in-out infinite;
          animation: Iconyurayura 2s ease-in-out infinite;
}

#game_title_view {
  padding-block: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #game_title_view {
    padding-block: 55px;
  }
}
#game_title_view .top-mainTitle {
  -webkit-animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@media screen and (max-width: 767px) {
  #game_title_view .top-mainTitle {
    width: calc(100% - 20px);
  }
  #game_title_view .top-mainTitle img {
    width: 100%;
    height: auto;
  }
}
#game_title_view .top-lead {
  width: calc(100% - 120px);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  #game_title_view .top-lead {
    width: calc(100% - 40px);
  }
}
#game_title_view .top-lead__text {
  color: var(--color-main);
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #game_title_view .top-lead__text {
    font-size: 1.8rem;
  }
}
#game_title_view .top-startBtn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 350px;
  margin-inline: auto;
  border-radius: 100px;
}
#game_title_view .top-startBtn button {
  width: 100%;
  padding-block: 7px;
  padding-inline: 0;
  border-radius: 100px;
  border: 4px solid #FFF;
  background-color: #0041c3;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: background-color ease 0.2s;
  transition: background-color ease 0.2s;
}
@media (any-hover: hover) {
  #game_title_view .top-startBtn button:hover {
    background-color: #1c62ef;
  }
}
#game_title_view .top-startBtn button .label {
  font-size: 3rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 84px;
          margin-inline-end: 84px;
  line-height: 1.4;
}
#game_title_view .top-startBtn button::after {
  content: "";
  width: 104px;
  height: 153px;
  background-image: url("/keananadeshiko/eawase/assets/img/top/top-btn-nadeshiko.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 28px;
  bottom: -60px;
  -webkit-animation: Iconyurayura 2s ease-in-out infinite;
          animation: Iconyurayura 2s ease-in-out infinite;
}

#level02 #game_play_view #game_level {
  width: 160px;
}
#level02 #game_play_view #game_level .level {
  background-color: #98D831;
}
#level02 #game_play_view #game_level::after {
  width: 35px;
  height: 37px;
  background-image: url(/keananadeshiko/eawase/assets/img/play/icon-level02.png);
}
#level02 #game_play_view .game_card_container {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  #level02 #game_play_view .game_card_container {
    width: 68vw;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
#level02 #game_clear_view #game_level .level {
  background-color: #98D831;
}
#level02 #game_clear_view .clear_nextBtn .level {
  background-color: #7DD2FF;
}
#level02 #game_over_view .gameOver_nextBtn .level {
  background-color: #98D831;
}

#level03 #game_play_view #game_level .level {
  background-color: #7DD2FF;
}
#level03 #game_play_view #game_level::after {
  width: 35px;
  height: 37px;
  background-image: url(/keananadeshiko/eawase/assets/img/play/icon-level03.png);
}
#level03 #game_play_view .game_card_container {
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 767px) {
  #level03 #game_play_view .game_card_container {
    width: 77vw;
    -ms-grid-columns: 1fr 4px 1fr 4px 1fr 4px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }
}
#level03 #game_clear_view #game_level .level {
  background-color: #7DD2FF;
}
#level03 #game_clear_view .clear_nextBtn button .level {
  background-color: #F72E42;
  color: #fff;
  font-size: 2.6rem;
}
#level03 #game_clear_view .clear_nextBtn button .label {
  font-size: 2.6rem;
}
#level03 #game_over_view .gameOver_nextBtn .level {
  background-color: #7DD2FF;
}

#level04 #game_play_view #game_level {
  width: 210px;
}
#level04 #game_play_view #game_level .level {
  background-color: #F72E42;
  color: #fff;
}
#level04 #game_play_view #game_level::after {
  width: 55px;
  height: 59px;
  background-image: url(/keananadeshiko/eawase/assets/img/play/icon-level04.png);
  right: -15px;
}
#level04 #game_play_view .game_card_container {
  -ms-grid-columns: (1fr)[10];
  grid-template-columns: repeat(10, 1fr);
}
@media screen and (max-width: 767px) {
  #level04 #game_play_view .game_card_container {
    width: 82vw;
    -ms-grid-columns: 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr;
    grid-template-columns: repeat(8, 1fr);
    gap: 2px;
  }
}
#level04 #game_clear_view .level {
  background-color: #F72E42;
  color: #fff;
}
#level04 #game_clear_view .clear_content {
  -webkit-padding-after: 0px;
          padding-block-end: 0px;
}
#level04 #game_clear_view .clear_content .comment {
  display: none;
}
#level04 #game_clear_view .clear_content .allClear {
  display: block;
}
#level04 #game_clear_view .clear_content__bottom {
  width: 100%;
}
#level04 #game_clear_view .clear_content__bottom img {
  width: 100%;
  height: auto;
}
#level04 #game_clear_view .clear_nextBtn {
  display: none;
}
#level04 #game_clear_view .gameOver_btns {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #level04 #game_clear_view .gameOver_btns {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
#level04 #game_clear_view .gameOver_linkBtn .l-button01 {
  display: block;
  width: 330px;
}
#level04 #game_clear_view .gameOver_nextBtn .level {
  display: inline-block;
  padding-inline: 10px;
  background-color: #FFE100;
  border-radius: 100px;
}
#level04 #game_over_view .gameOver_nextBtn .level {
  background-color: #F72E42;
  color: #fff;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  width: 100%;
  height: auto;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

button {
  background-color: transparent;
  border: none;
}

ol,
li {
  list-style: none !important;
}

ol {
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

h1,
h2,
h3,
h4 {
  margin-block: 0;
}

@media print, screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

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

.pageContainer {
  width: 100vw;
  height: 100%;
  font-size: 1.8rem;
  line-height: 1.6;
}

.mainContent {
  margin-inline: auto;
  background-image: url("/keananadeshiko/eawase/assets/img/common/page-bg-dots.svg");
  background-repeat: repeat;
  background-color: #FFFCC7;
  color: var(--color-main);
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .mainContent {
    max-width: 800px;
  }
}
@media screen and (max-width: 767px) {
  .mainContent {
    width: 100%;
  }
}

.soundBtn {
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  -webkit-padding-before: 20px;
          padding-block-start: 20px;
}
@media screen and (max-width: 767px) {
  .soundBtn {
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
    -webkit-padding-before: 10px;
            padding-block-start: 10px;
  }
}

/* ─── モーダル オーバーレイ ───────────────── */
#modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  /* iOS Safari でスクロールをブロック */
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
#modal-overlay.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ─── モーダル本体 ────────────────────────── */
#modal-box {
  background: white;
  border-radius: 14px;
  width: min(320px, 100vw - 48px);
  overflow: hidden;
  /* 出現アニメーション */
  -webkit-animation: modal-in 0.2s ease;
          animation: modal-in 0.2s ease;
}

@-webkit-keyframes modal-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#modal-title {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  padding: 20px 20px 6px;
}

#modal-message {
  font-size: 14px;
  color: #3a3a3c;
  text-align: center;
  padding: 0 20px 20px;
  line-height: 1.5;
}

/* ─── モーダルボタン（iOS風） ─────────────── */
#modal-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e5e5ea;
}

.modal-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 14px;
  font-size: 16px;
  background: transparent;
  cursor: pointer;
  color: #007aff;
}

.modal-btn + .modal-btn {
  border-left: 1px solid #e5e5ea;
  font-weight: 600;
}

.modal-btn:active {
  background: #f0f0f0;
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes Iconyurayura {
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes Iconyurayura {
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes kururuin {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  25% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  50% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  75% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@keyframes kururuin {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  25% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  50% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  75% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
/*# sourceMappingURL=style.css.map */