body,
html {
  margin: 0;
}

section.flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.flex.top {
  width: 100%;
  background: linear-gradient(rgba(84, 84, 84, 0.4), rgba(84, 84, 84, 0.4)), url(../img/dots.webp);
  background-size: 100px;
  background-repeat: repeat;
  position: relative;
}
section.flex.top .key_out {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
section.flex.top .key_out .key {
  position: relative;
  top: 0;
  max-width: 100%;
  max-height: 800px;
  z-index: 10;
}
section.flex.top .key_out::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: url("../img/top.webp");
  filter: blur(10px) brightness(0.7);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
section.flex.top .story {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 55vw;
  z-index: 10;
  background-color: white;
  background: linear-gradient(rgba(93, 91, 228, 0.86), rgba(93, 91, 228, 0.86)), url(../img/noise.webp);
}
@media screen and (min-width: 1500px) {
  section.flex.top .story {
    margin-top: 850px;
  }
}
section.flex.top .story .bg {
  width: 100%;
  position: absolute;
}
section.flex.top .story .lines {
  width: calc(100% - 20px);
  top: 0;
  left: 0;
  z-index: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
section.flex.top .story .lines img {
  width: 12vw;
  margin: 10px;
  margin-left: auto;
  margin-right: auto;
}
section.flex.top .story .lines p {
  width: calc(100% - 20px);
  border-bottom: 1px solid #a2adbe;
  font-size: 2vw;
  margin: 0 10px;
  padding-top: 2px;
  height: 4vw;
  text-align: center;
  text-wrap: nowrap;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 600px) {
  section.flex.top .story .lines p {
    font-size: 14px;
    height: 28px;
  }
  section.flex.top .story .lines img {
    width: 84px;
    margin: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.flex.top .story .lines ::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: white;
  z-index: -1;
}
section.flex.top .story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(93, 91, 228, 0.86), rgba(93, 91, 228, 0.86)), url(../img/noise.webp);
  z-index: -1;
}
section.flex.top .story::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(39, 44, 168, 0.86), rgba(39, 44, 168, 0.86)), url(../img/noise.webp);
  transform: rotateZ(3deg);
  z-index: -2;
}
section.flex.middle {
  width: 100%;
  background: linear-gradient(rgba(84, 84, 84, 0.4), rgba(22, 22, 22, 0.9019607843)), url(../img/dots.webp);
  background-size: 100px;
  background-repeat: repeat;
  position: relative;
  padding: 50px 0;
}
section.flex.middle > .ticket {
  width: calc(100% - 30px);
  max-width: 600px;
  min-height: 150px;
  margin: 15px;
  margin-top: 30px;
  border-radius: 22px;
  border: 2px solid white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
section.flex.middle > .ticket::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 100%;
  height: 100%;
  padding: 4px;
  border-radius: 28px;
  border: 4px solid white;
  z-index: 1;
  pointer-events: none;
}
section.flex.middle > .ticket img {
  width: 30vw;
  margin: 10px;
  margin-left: auto;
  margin-right: auto;
}
section.flex.middle > .ticket p {
  width: calc(100% - 20px);
  font-size: 3vw;
  margin: 10px 10px;
  padding-top: 2px;
  text-align: center;
  text-wrap: nowrap;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
section.flex.middle > .ticket p a {
  color: rgb(213, 250, 255);
  text-decoration: none;
  position: relative;
}
section.flex.middle > .ticket p a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: rgba(25, 204, 249, 0.38);
  transition: all 0.3s ease;
}
section.flex.middle > .ticket p a:hover::before {
  width: 100%;
}
@media (min-width: 600px) {
  section.flex.middle > .ticket p {
    font-size: 18px;
  }
  section.flex.middle > .ticket img {
    width: 120px;
    margin: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.flex.bottom {
  background: #161616;
}
section.flex.bottom > .part {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 50px 0;
}
section.flex.bottom > .part > img {
  width: 16vw;
  margin: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 600px) {
  section.flex.bottom > .part > img {
    width: 84px;
    margin: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.flex.bottom > .part > .items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
section.flex.bottom > .part > .items > .item {
  width: 220px;
  margin: 12px;
  text-align: center;
  border: 2px solid white;
  padding: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.flex.bottom > .part > .items > .item > div {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: white;
  display: flex;
  align-content: center;
  justify-content: center;
  justify-items: center;
  margin: 10px;
  flex-wrap: wrap;
}
section.flex.bottom > .part > .items > .item > div > span {
  background-color: black;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  margin: 1px;
}
section.flex.bottom > .part > .items > .item > div > span.n {
  background-color: transparent;
}
section.flex.bottom > .part > .items > .item > div.one > span {
  background-color: red;
}
section.flex.bottom > .part > .items > .item > div.three > span {
  width: 4px;
  height: 4px;
}
section.flex.bottom > .part > .items > .item > button {
  width: 80%;
  max-width: 180px;
  height: 40px;
  background: white;
  border: 1px solid black;
  padding-inline: 0;
  margin: 10px;
  cursor: pointer;
}
@media screen and (max-width: 780px) {
  section.flex.bottom > .part > .items {
    flex-direction: column;
    align-items: center;
  }
  section.flex.bottom > .part > .items > .item {
    width: calc(100% - 40px);
  }
}
section.flex.bottom > .dice {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.flex.bottom > .dice > img {
  width: calc(100% - 30px);
  max-width: 900px;
  margin: 30px 15px;
}/*# sourceMappingURL=index.css.map */