@charset "UTF-8";
/* -------------------------------------------*/
html {
  overflow-x: hidden;
}
body {
  height: 100%;
  position: relative;
  overflow-x: hidden;
  color: #000;
}
.body__wrraper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 414px;
  min-height: 100dvh;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 666px) {
  .body__wrraper {
    max-width: 100%;
  }
}
.no-link {
  opacity: 0.4 !important;
  pointer-events: none !important;
}
img {
  display: block;
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
a {
  display: block;
  transition: opacity 0.3s;
  z-index: 1;
}
a:hover {
  opacity: 0.8;
}

/* -------------------------------------------*/
.back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../images/back.webp) no-repeat top center/cover;
  z-index: -10;
}
.back img:nth-child(1) {
  position: absolute;
  top: 5vh;
  left: 9vw;
  width: 19.3vw;
  height: auto;
}
.back img:nth-child(2) {
  position: absolute;
  bottom: 21.3vw;
  right: 10.9vw;
  width: 13vw;
  height: auto;
}
.back img:nth-child(3) {
  position: absolute;
  bottom: 6vw;
  right: 10.9vw;
  width: 13vw;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .back img:nth-child(1) {
    left: 5vw;
    width: 19.3vw;
  }
  .back img:nth-child(2),
  .back img:nth-child(3) {
    right: 7vw;
  }
}
@media screen and (max-width: 900px) {
  .back img {
    display: none;
  }
}
.header {
  display: flex;
  align-items: center;
  height: 55px;
  padding: 0 13px;
  background-color: #fff;
}
.header img {
  width: 172px;
}
.mv {
  background-color: #fff;
  padding: 0 10px;
}
.cta {
  background-color: #fff;
  padding: 20px 10px;
}
.cta a:not(:first-child) {
  margin-top: 1.45%;
}
.wrap01 {
  background-color: #fff;
  padding: 0 10px 10px;
}
.wrap02 {
  position: relative;
}
.wrap02 a:nth-of-type(1) {
  position: absolute;
  top: 16.75%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80.67%;
}
.wrap02 a:nth-of-type(2) {
  position: absolute;
  top: 33.71%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80.67%;
}
.wrap02 a:nth-of-type(3) {
  position: absolute;
  bottom: 0.63%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80.67%;
}
.wrap02_02 {
  background-color: #fff;
  padding: 0 10px;
}
.wrap03 {
  position: relative;
}
.wrap03 a:nth-of-type(1) {
  position: absolute;
  top: 16.78%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80.67%;
}
.wrap03 a:nth-of-type(2) {
  position: absolute;
  top: 77.2%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80.67%;
}
.wrap04,
.wrap06 {
  background-color: #fff;
  padding: 0 10px;
}
.fixed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 414px;
  height: 60px;
  padding: 0 23px;
  transition: opacity 0.3s;
}
.fixed.is-hidden {
  opacity: 0;
}
@media screen and (max-width: 666px) {
  .fixed {
    max-width: 100%;
  }
}
.fixed::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-color: rgba(0, 0, 0, 0.8);
}
.fixed a {
  filter: drop-shadow(2.4px 2.4px 2.4px rgba(0, 0, 0, 0.4));
}
