@charset "UTF-8";
/*#################################
リセットCSS（簡易）
#################################*/
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}

html {
  font-size: 10px;
}

@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
}
.sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*#################################
メインコンテンツ
#################################*/
.floating {
  width: 100%;
  display: block;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4999;
  max-width: 750px;
}
.floating a {
  display: block;
}

.container {
  max-width: 750px;
  margin: auto;
  position: relative;
}

.container [class^=sec] {
  position: relative;
}

/* フローティングボタン */
.floating-button {
  display: block;
  position: absolute;
  width: min(35.2053333333%, 265px);
  width: min(44.9773333333%, 337.33px);
  right: 0;
  z-index: 100;
  position: fixed;
  bottom: 18%;
}
.floating-button img {
  aspect-ratio: 337.33/175.04;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s;
}
.floating-button img:hover {
  opacity: 0.8;
}

/* CTAボタン */
.cta {
  position: relative;
  z-index: 1000;
}

.c-button-wrap {
  position: absolute;
  bottom: 8rem;
  width: 61.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1500;
}

.c-button-wrap2 {
  position: absolute;
  bottom: 0rem;
  width: 61.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1500;
}

.c-button-top {
  width: 48.6rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -4rem;
  position: relative;
  -webkit-animation: purupuru 2.5s ease-in-out infinite;
          animation: purupuru 2.5s ease-in-out infinite;
  z-index: 2000;
}

.c-button {
  display: block;
  transition: 0.3s;
  position: relative;
  z-index: 1700;
  -webkit-animation: purupuru 2.5s ease-in-out infinite;
          animation: purupuru 2.5s ease-in-out infinite;
  cursor: pointer;
}
.c-button:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.cta-button img {
  aspect-ratio: 378/134;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-button._shiny {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: 300ms;
}

.count-down {
  display: flex;
  gap: 1.95rem;
  position: absolute;
  top: 6.9rem;
  right: 1.4rem;
}

.count-down p {
  color: #000;
  font-size: 5rem;
  letter-spacing: 0.18em;
  letter-spacing: 0.27em;
  font-family: "Jost", sans-serif;
  display: flex;
  justify-content: center;
}

.count-down p span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
}

.sec01 .c-button-wrap {
  bottom: 3rem;
}

.sec04 {
  z-index: 1200;
  margin-top: -6.5rem;
}

.sec05 {
  margin-top: -9rem;
}

.sec07 {
  margin-top: -8rem;
  z-index: 1000;
}

.sec08 {
  margin-top: -28rem;
  z-index: 800;
}

.sec09 {
  z-index: 800;
}

.sec10 {
  z-index: 600;
  margin-top: -20rem;
}

.sec11 {
  z-index: 800;
  margin-top: -63rem;
}

.sec12 {
  z-index: 1000;
  margin-top: -19rem;
}

.sec13 {
  z-index: 1200;
  margin-top: -14rem;
}

.sec14-1 {
  z-index: 1000;
  margin-top: -4.2rem;
}

.sec14-2 {
  z-index: 1000;
  margin-top: -8.4rem;
}

.sec14-3 {
  padding-top: 4.8rem;
}

.sec16 {
  padding-top: 2rem;
  margin-bottom: -2rem;
}

.page-bottom {
  display: flex;
  padding: 6.7rem 17.3rem;
  justify-content: space-between;
  align-items: center;
}

.page-bottom a {
  font-size: 2.4rem;
  color: #000;
  font-weight: 700;
  display: block;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
}

.c-button._shiny::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  -webkit-animation: shinyshiny 2.5s ease-in-out infinite;
          animation: shinyshiny 2.5s ease-in-out infinite;
}

@-webkit-keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes purupuru {
  0% {
    transform: translateY(1rem);
  }
  50% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(1rem);
  }
}
@keyframes purupuru {
  0% {
    transform: translateY(1rem);
  }
  50% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(1rem);
  }
}
/*#################################
モーダル
#################################*/
.sec08 > div > span {
  position: absolute;
  width: 21rem;
  height: 4rem;
  cursor: pointer;
  transition: 0.3s;
}
.sec08 > div > span:hover {
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.4);
}
.sec08 > div > span:nth-of-type(1) {
  bottom: 96.5rem;
  left: 3.2rem;
}
.sec08 > div > span:nth-of-type(2) {
  bottom: 96.5rem;
  left: 26rem;
}
.sec08 > div > span:nth-of-type(3) {
  bottom: 96.5rem;
  right: 4.7rem;
}
.sec08 > div > span:nth-of-type(4) {
  bottom: 55rem;
  left: 13.7rem;
}
.sec08 > div > span:nth-of-type(5) {
  bottom: 55rem;
  right: 15.1rem;
}

.modal-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 5000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.modal-contents {
  overflow: scroll;
  height: 100%;
  max-height: 90vh;
}

.modal-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  width: 70rem;
  max-height: 90vh;
  pointer-events: none;
}

.modal-wrapper .modal-close {
  display: none;
}

.modal-wrapper.open .modal-close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  width: 5rem;
  height: 5rem;
  border: 0.2rem solid #333;
  color: #333;
  top: -3%;
  right: -3%;
  background-color: #fff;
  border-radius: 50%;
  z-index: 200000;
  cursor: pointer;
  line-height: 0;
}

.modal-close::before {
  content: "×";
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  line-height: 1;
  width: 3.2rem;
  height: 3.2rem;
}

.modal-wrapper.open {
  pointer-events: initial;
}

.modal-content {
  display: none;
  width: 100%;
  height: 98.8rem;
}

.modal-overlay {
  display: none;
}

.modal-overlay.open {
  display: block;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */