.mw-page {
  width: 100%;
  overflow: hidden;
  background: #f5f5f3;
  color: #333;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
}
.mw-page img {
  display: block;
  width: 100%;
  height: auto;
}

.mw-hero,
.mw-visual,
.mw-look,
.mw-copy,
.mw-buttons,
.mw-design,
.mw-last {
  max-width: 1400px;
  margin-inline: auto;
}

.mw-hero {
  display: grid;
  grid-template-columns: 44% 30%;
  justify-content: center;
  align-items: center;
  column-gap: 12%;
  z-index: 1001;
}
@media (min-width: 768px) {
  .mw-hero__image {
    height: calc(100vh - 54px);
  }
  .mw-hero__image img {
    height: 100%;
    width: auto;
    vertical-align: bottom;
  }
}
.mw-hero__title {
  margin: 0;
  font-family: "Times New Roman", serif;
  font-size: clamp(4.5rem, 6vw, 7.6rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
}
.mw-hero__lead {
  margin-top: 8%;
  font-size: clamp(1.2rem, 0.9vw, 1.4rem);
  line-height: 2;
}
.mw-hero__sub {
  margin-top: 5%;
  font-size: clamp(1.2rem, 0.8vw, 1.2rem);
  letter-spacing: 0.08em;
}

.mw-visual {
  margin-top: 8%;
}
.mw-visual--left {
  width: 54%;
  margin-left: 0;
}
.mw-visual--wide {
  width: 76%;
  margin-left: 24%;
}

.mw-look {
  display: grid;
  grid-template-columns: 36% 42%;
  justify-content: center;
  align-items: end;
  column-gap: 12%;
  margin-top: 10%;
}
.mw-look__image:nth-child(2) {
  margin-top: 24%;
}

.mw-copy {
  display: grid;
  grid-template-columns: 36% 42%;
  justify-content: center;
  align-items: end;
  column-gap: 12%;
  margin-top: -20%;
}
.mw-copy h2 {
  font-size: clamp(2rem, 2.6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.mw-copy p {
  margin-top: 8%;
  font-size: clamp(1.2rem, 0.9vw, 1.3rem);
  line-height: 2.4;
}

.mw-buttons {
  width: 92%;
  display: grid;
  grid-template-columns: 45% 45%;
  justify-content: center;
  align-items: center;
  column-gap: 10%;
  margin-top: 12%;
}
.mw-buttons h2 {
  font-size: clamp(2rem, 2.6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.mw-buttons p {
  margin-top: 8%;
  font-size: clamp(1.2rem, 0.9vw, 1.3rem);
  line-height: 2.4;
}

.mw-design {
  display: grid;
  grid-template-columns: 42% 50%;
  align-items: center;
  column-gap: 10%;
  margin-top: 12%;
}
.mw-design .mw-design__body {
  margin-left: 10%;
}
.mw-design h2 {
  font-size: clamp(2rem, 2.6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.mw-design p {
  margin-top: 8%;
  font-size: clamp(1.2rem, 0.9vw, 1.3rem);
  line-height: 2.4;
}

.mw-last {
  display: grid;
  grid-template-columns: 40% 46%;
  justify-content: center;
  align-items: center;
  column-gap: 10%;
  margin-top: 12%;
  padding-bottom: 14%;
}
.mw-last h2 {
  font-size: clamp(2rem, 2.6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.mw-last p {
  margin-top: 8%;
  font-size: clamp(1.2rem, 0.9vw, 1.3rem);
  line-height: 2.4;
}

.mw-fade {
  opacity: 0;
  transform: translateY(8%);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.mw-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .mw-hero,
  .mw-visual,
  .mw-look,
  .mw-copy,
  .mw-buttons,
  .mw-design,
  .mw-last {
    width: 82%;
    max-width: none;
  }
  .mw-hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-block: 0 12%;
  }
  .mw-hero__image {
    width: 62%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
  }
  .mw-hero__text {
    margin-top: 12%;
    width: 62%;
    margin-right: auto;
    margin-left: auto;
  }
  .mw-visual {
    margin-top: 14%;
  }
  .mw-visual--left {
    width: 82%;
    margin-left: 0;
  }
  .mw-visual--wide {
    width: 100%;
    margin-left: 0;
  }
  .mw-look {
    display: block;
    margin-top: 18%;
  }
  .mw-look__image {
    width: 62%;
    margin-right: 0;
    margin-left: auto;
  }
  .mw-look__image:nth-child(2) {
    width: 72%;
    margin-top: 16%;
    margin-left: auto;
  }
  .mw-copy {
    width: 70%;
    margin-top: 14%;
    display: flex;
    flex-direction: column-reverse;
  }
  .mw-copy__image {
    margin-bottom: 10%;
  }
  .mw-copy__body {
    width: 100%;
  }
  .mw-buttons {
    display: block;
    margin-top: 18%;
  }
  .mw-buttons__image {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }
  .mw-buttons__body {
    margin-top: 12%;
  }
  .mw-design {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin-top: 18%;
  }
  .mw-design__body {
    width: 82%;
    margin-top: 12%;
  }
  .mw-design__image {
    width: 100%;
  }
  .mw-last {
    display: block;
    margin-top: 18%;
    padding-bottom: 20%;
  }
  .mw-last__image {
    width: 70%;
    margin-inline: auto;
  }
  .mw-last__body {
    width: 70%;
    margin-top: 12%;
    margin: 10% auto;
  }
}

/*# sourceMappingURL=midnight-walker.css.map */
