@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
* {
  margin: 0;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
}

ul li {
  list-style: none;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  width: 100%;
  height: 100vh;
}

.bg {
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
  z-index: -1;
}
.bg-i {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
}
.bg-i.-color1 {
  background-color: #e5171f;
}
.bg-i.-color2 {
  background-color: #522886;
}
.bg-i.-color3 {
  background-color: #0078ba;
}
.bg-i.-color4 {
  background-color: #019a66;
}
.bg-i.-color5 {
  background-color: #e44d93;
}
.bg-i.-color6 {
  background-color: #814721;
}
.bg-i.-color7 {
  background-color: #a9cc51;
}
.bg-i.-color8 {
  background-color: #ee7b1a;
}
.bg-i.-fromTop {
  top: -100%;
  left: 0;
  animation: fromTop 0.5s ease 0.01s forwards;
}
.bg-i.-fromRight {
  top: 0;
  left: -100%;
  animation: fromRight 0.5s ease 0.01s forwards;
}
.bg-i.-fromBottom {
  top: 100%;
  left: 0;
  animation: fromBottom 0.5s ease 0.01s forwards;
}
.bg-i.-fromLeft {
  top: 0;
  left: -100%;
  animation: fromLeft 0.5s ease 0.01s forwards;
}

@keyframes fromTop {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes fromRight {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
@keyframes fromBottom {
  0% {
    top: 100%;
  }
  100% {
    top: 0;
  }
}
@keyframes fromLeft {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
.lp {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  z-index: 100;
}
@media (max-width: 767px) {
  .lp {
    padding: 60px 0;
  }
}
.lp-logo {
  display: block;
  width: 248px;
  margin-bottom: 45px;
}
.lp-lead {
  font-size: 13px;
  font-weight: 400;
  line-height: 22.75px;
  color: #fff;
  text-align: center;
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .lp-lead {
    margin-bottom: 45px;
  }
}
.lp-lead .bold {
  font-weight: 600;
}
.lp-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .lp-list {
    margin-bottom: 40px;
  }
}
.lp-list-i + .lp-list-i {
  margin-top: 10px;
}
.lp-list-i a {
  display: block;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.lp-list-i a:hover {
  transform: scale(1.1);
}
.lp-sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 84px;
}
.lp-sns-i:nth-child(1) {
  width: 30px;
}
.lp-sns-i:nth-child(2) {
  width: 32px;
}
.lp-sns-i a {
  display: block;
  width: 100%;
  transition: 0.2s;
}
.lp-sns-i a:hover {
  transform: scale(1.1);
}

.modal {
  width: 405px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  border-radius: 14px;
  padding: 47px 18px 30px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
@media (max-width: 767px) {
  .modal {
    width: calc(100% - 40px);
    max-width: 335px;
    max-height: calc(100vh - 100px);
    padding: 40px 25px 30px;
  }
}
.modal.-shown {
  transition: 0.3s;
  visibility: visible;
  opacity: 1;
}
.modal-content {
  display: block;
  width: 100%;
  position: relative;
}
.modal-content-link {
  display: block;
  width: 100%;
  height: 65px;
  position: absolute;
  top: 90%;
  left: 0;
}
@media (max-width: 767px) {
  .modal-content-link {
    height: 55px;
  }
}
.modal-close {
  width: 27px;
  height: 27px;
  background: url(/img/modal-close.png) no-repeat center/cover;
  position: absolute;
  top: -37px;
  right: 0;
  transition: 0.2s;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .modal-close {
    width: 20px;
    height: 20px;
    top: -30px;
  }
}
.modal-close.-shown {
  visibility: visible;
  opacity: 1;
}
.modal-overlay {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.modal-overlay.-shown {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 767px) {
  .ios {
    height: calc(var(--vh, 1vh) * 100);
  }
  .ios .bg {
    height: calc(var(--vh, 1vh) * 100 + 1em);
    top: calc(var(--vh, 1vh) - 1em);
  }
  .ios .lp {
    height: calc(var(--vh, 1vh) * 100);
  }
  .ios .modal-overlay {
    height: calc(var(--vh, 1vh) * 100 + 1em);
    top: calc(var(--vh, 1vh) - 1em);
  }
}/*# sourceMappingURL=index.css.map */