@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #000;
}

.sns-twitter::before {
  content: "\e61b";
}

.sns-instagram::before {
  content: "\f16d";
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

img, p {
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.lang {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 38px;
  color: #f8c200;
  font-weight: 900;
  text-decoration: none;
  transition: 0.2s ease;
}
@media only screen and (min-width: 768px) {
  .lang {
    top: 60px;
    right: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .lang {
    top: 40px;
    right: 12px;
  }
}
.lang:hover, .lang:focus-visible {
  opacity: 0.2;
}

.top {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}
.top::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: 0;
  background-image: url("../img/hedora_bg.jpg");
  background-repeat: repeat;
  background-size: 500px;
  background-position: center;
  opacity: 0.07;
  filter: blur(5px);
  pointer-events: none;
}
.top img {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90vh;
  max-height: 90dvh;
  object-fit: contain;
}
.top h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 50px;
  font-weight: 800;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.top-spacer {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
}

section {
  position: relative;
  z-index: 2;
  isolation: isolate;
  width: 100%;
  background: rgba(0, 0, 0, 0.849);
  backdrop-filter: blur(10px);
}

article {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 50px 20px;
}

.text {
  color: #fff;
}
.text__box {
  width: 100%;
}
.text__box p {
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.text__box.is-visible p {
  opacity: 1;
  transform: translateX(0);
}
.text__box.is-visible p:nth-child(1) {
  transition-delay: 0.5s;
}
.text__box.is-visible p:nth-child(2) {
  transition-delay: 1s;
}
.text__box.is-visible p:nth-child(3) {
  transition-delay: 1.5s;
}
.text__box.is-visible p:nth-child(4) {
  transition-delay: 2s;
}
.text__box--main {
  font-size: 40px;
}
@media only screen and (max-width: 767px) {
  .text__box--main {
    font-size: 24px;
  }
}
.text__box--title {
  font-size: 40px;
}
@media only screen and (max-width: 767px) {
  .text__box--title {
    font-size: 28px;
  }
}
.text__box--large {
  font-size: 60px;
}
@media only screen and (max-width: 767px) {
  .text__box--large {
    font-size: 42px;
  }
}
.text__box--sub {
  font-size: 32px;
}
@media only screen and (max-width: 767px) {
  .text__box--sub {
    font-size: 24px;
  }
}

@media only screen and (min-width: 768px) {
  .item__box {
    gap: 10px;
    display: flex;
  }
}
.item__image {
  flex: 3;
}
.item__image img {
  width: 500px;
}
.item__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 7;
  width: 500px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .item__text {
    width: 90%;
    margin: 0 auto;
  }
}
.item__text h2 {
  margin: 0;
}
.item__text p {
  margin: 0;
  font-weight: bold;
}
.item__text--ttl {
  font-size: 78px;
}
.item__text--ttl span {
  font-size: 48px;
}
.item__text--ttl {
  line-height: 78px;
  font-weight: bolder;
}
@media only screen and (max-width: 767px) {
  .item__text--ttl {
    font-size: 48px;
  }
  .item__text--ttl span {
    font-size: 20px;
  }
}
.item__text--sub {
  font-size: 40px;
  line-height: 45px;
  letter-spacing: 1.5;
}
@media only screen and (max-width: 767px) {
  .item__text--sub {
    font-size: 24px;
    line-height: 24px;
  }
}
.item__text--suben {
  font-size: 28px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .item__text--suben {
    font-size: 24px;
    line-height: 24px;
  }
}
.item__text--price {
  padding-top: 10px;
  font-size: 30px;
}
@media only screen and (max-width: 767px) {
  .item__text--price {
    font-size: 20px;
  }
}
.item__text--price span {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .item__text--price span {
    font-size: 12px;
  }
}
.item__text--auth {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .item__text--auth {
    font-size: 18px;
  }
}
.item__text--info {
  padding: 20px 0;
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .item__text--info {
    font-size: 18px;
  }
}
.item__text--link {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .item__text--link {
    font-size: 12px;
  }
}
.item__text--link {
  color: #fff;
  pointer-events: all;
  user-select: all;
  transition: 0.2s;
}
.item__text--link::before {
  content: "";
  margin-bottom: -2px;
  background-image: url(../img/gram.png);
  background-size: 18px 18px;
  display: inline-block;
  width: 18px;
  height: 18px;
}
.item__text--link:hover {
  opacity: 0.5;
}

.sales {
  color: #fff;
  width: fit-content;
  margin: 0 auto;
}
.sales__text h2 {
  margin: 0;
}
.sales__text--ttl {
  text-align: center;
  font-size: 78px;
}
.sales__text--ttl span {
  font-size: 48px;
}
.sales__text--ttl {
  line-height: 78px;
  font-weight: bolder;
}
@media only screen and (max-width: 767px) {
  .sales__text--ttl {
    font-size: 48px;
  }
  .sales__text--ttl span {
    font-size: 20px;
  }
}
.sales__text--info {
  width: fit-content;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .sales__text--info {
    font-size: 16px;
  }
}
.sales__text--form {
  width: fit-content;
  margin: 0 auto;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .sales__text--form {
    font-size: 16px;
  }
}
.sales__text--notice {
  text-align: left;
  width: fit-content;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .sales__text--notice {
    font-size: 16px;
  }
}
.sales__text--note {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 4px auto 0;
  padding: 6px 0;
  color: #f8c200;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  pointer-events: all;
  transition: opacity 0.2s ease;
}
.sales__text--note::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: note-arrow 1.4s ease-in-out infinite;
}
.sales__text--note:hover, .sales__text--note:focus-visible {
  opacity: 0.55;
}
@media only screen and (max-width: 767px) {
  .sales__text--note {
    font-size: 14px;
  }
}

@keyframes note-arrow {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(5px) rotate(45deg);
  }
}
.note {
  color: #fff;
}

.copywrite {
  flex-direction: column;
}
.copywrite p {
  color: #fff;
  text-align: center;
}
.copywrite__img {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.copywrite__img img {
  display: block;
  width: 200px;
  max-width: 40vw;
  height: auto;
}

footer {
  position: absolute;
  bottom: 0;
  z-index: 99999;
  width: 100vw;
}

header {
  position: absolute;
  z-index: 99999;
  top: 0;
}/*# sourceMappingURL=style.css.map */