@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&family=Kiwi+Maru:wght@500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  vertical-align: bottom;
}

body {
  color: #1D1816;
  font-family: sans-serif;
  background-image: url("../../assets/img/common/bg_body.png");
  background-size: cover;
  background-attachment: fixed;
}

/* ----------------------- Container ----------------------- */
.container-pc {
}
.container-pc__left,
.container-pc__right {
  display: none;
}
@media screen and (min-width: 1024px) {
  .container-pc {
    display: flex;
    justify-content: center;
    gap: 3vw;
  }
  .container-pc__left,
  .container-pc__right {
    position: relative;
    display: block;
    width: 260px;
  }
  .pc-left-logo {
    position: fixed;
    top: calc(50vh - 120px);
    width: 260px;
  }
  .pc-left-logo div img {
    width: 100%;
    height: auto;
  }
  .pc-left-logo p {
    margin-top: 24px;
    text-align: center;
    font-family: "Sawarabi Mincho", serif;
  }
  .pc-left-bottom-chara {
    position: fixed;
    bottom: 0;
    width: 260px;
  }
  .pc-left-bottom-chara img {
    width: 100%;
    height: auto;
  }
  .pc-right-nav {
    position: fixed;
    top: 220px;
    width: 260px;
    text-align: center;
  }
  .pc-right-nav div img {
    width: 50%;
    height: auto;
  }
  .pc-right-nav .footer__menu a {
    font-size: 18px;
  }
  .pc-right-bottom-link {
    position: fixed;
    bottom: 24px;
    width: 260px;
  }
  .pc-right-bottom-link div img {
    width: 100%;
    height: auto;
  }
}

.container {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
  background-image: url("../../assets/img/common/bg_page.png");
  background-repeat: repeat;
}
@media screen and (min-width: 431px) {
  .container {
    max-width: 430px;
    margin-inline: auto;
    border-inline: 4px solid #3FA6EA;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 430px;
    margin: 48px 0;
    border: 4px solid #3FA6EA;
    border-radius: 16px;
  }
}


/* ----------------------- 背景装飾、ロゴ ----------------------- */
.bg-top,
.bg-top-line,
.logo-switch {
  display: none;
}
@media screen and (min-width: 431px) {
  .bg-top {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    height: 175px;
    background-image: url("../../assets/img/common/bg_body_top.png");
    background-repeat: repeat;
  }
  .bg-top-line {
    display: block;
    position: fixed;
    top: 170px;
    width: 100%;
    height: 32px;
    background-image: url("../../assets/img/common/bg_body_top_line.png");
    background-repeat: repeat;
  }
}

@media screen and (min-width: 1024px) {
  .logo-switch {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
  }
}


/* ------------------------------------------------------ */
/* ----------------------- Header ----------------------- */
/* ------------------------------------------------------ */
.header {
}

.c-header__list {
  display: flex;
  margin: 0;
  padding: 0;
}

.c-hamburger-menu {
  position: fixed;
  width: 100%;
  z-index: 100;
}

.c-hamburger-menu__list {
  overflow: scroll;
  background-color: #EBF8FA;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  left: 0;
  padding: 64px 2rem 2rem 2rem;
  position: absolute;
  transform: translateY(-100%);
  transition: 0.3s;
  top: 0;
  width: 100%;
  height: 100vh;
}

#hamburger:checked ~ .c-hamburger-menu__list {
  transform: translateX(0%);
  transition: 0.3s;
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #000;
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  position: absolute;
  top: 10px;
  right: 10px;
  align-items: center;
  appearance: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 40px;
  justify-content: center;
  width: 40px;
  background-color: #ffffff;
}

.c-hamburger-menu__button-mark {
  background-color: #3FA6EA;
  display: block;
  height: 3px;
  transition: 0.3s;
  width: 24px;
}

#hamburger:checked
~ .c-hamburger-menu__button
.c-hamburger-menu__button-mark:nth-of-type(1) {
  transform: translate(2px, 1px) rotate(45deg);
  transform-origin: 0%;
}
#hamburger:checked
~ .c-hamburger-menu__button
.c-hamburger-menu__button-mark:nth-of-type(2) {
  opacity: 0;
}
#hamburger:checked
~ .c-hamburger-menu__button
.c-hamburger-menu__button-mark:nth-of-type(3) {
  transform: translate(2px, 3px) rotate(-45deg);
  transform-origin: 0%;
}

.nav-title_menu {
  width: 100%;
  text-align: center;
}
.nav-btn-bonus {
  margin-top: 40px;
}
.nav-btn-bonus img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 431px) {
  .c-hamburger-menu__list {
    width: 422px;
  }
  .c-hamburger-menu__bg {
    width: 422px;
  }
  .c-hamburger-menu__button {
    top: 10px;
    left: 370px;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    display: none;
  }
}


/* ------------------------------------------------------ */
/* ----------------------- Footer ----------------------- */
/* ------------------------------------------------------ */
.footer {
  padding-top: 32px;
  background-color: #E4ECEF;
}
.footer__logo {
  text-align: center;
}
.footer__menu {
  width: 100%;
  font-size: 24px;
  list-style: none;
  padding-top: 16px;
  text-align: center;
  font-family: "Sawarabi Mincho", serif;
}
.footer__menu li a {
  display: flex;
  gap: 10px;
  justify-content: center;
  text-decoration: none;
  padding-block: 12px;
  color: #1D1816;
}
.footer__menu li a::before {
  content: '';
  width: 34px;
  height: 28px;
  background-image: url("/assets/img/common/ic_menu_before.png");
  background-size: cover;
}
.footer__menu li a::after {
  content: '';
  width: 29px;
  height: 28px;
  background-image: url("/assets/img/common/ic_menu_after.png");
  background-size: cover;
}

.footer__game-detail {
  text-align: center;
  margin-top: 16px;
}

@media screen and (max-width: 430px) {
  .footer__game-detail img {
    width: 94%;
    height: auto;
  }
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding-top: 24px;
  margin-inline: auto;
}

.footer__link {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  column-gap: 8px;
  width: 70%;
  margin-inline: auto;
  padding-top: 24px;
  list-style: none;
}
.footer__link li a {
  color: #1D1816;
  font-size: 10px;
  text-decoration: none;
}

.footer__copyright {
  color: #ffffff;
  padding-block: 4px;
  font-size: 10px;
  text-align: center;
  background-color: #3FA6EA;
  margin-top: 16px;
}

.footer__nintendo {
  padding-block: 16px;
  background-color: #ffffff;
}
.footer__nintendo dl {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer__nintendo dd {
  font-size: 10px;
  align-content: center;
}

/* ----------------------- モーダル微調整 ----------------------- */
.lity {
  background: rgba(0, 0, 0, 0.8) !important;
}
.lity-close {
  right: 20px !important;
  top: 20px !important;
}
