h1.landing-h1 {
  font-size: clamp(3.6rem, 5vw, 5.4rem);
}
@media screen and (min-width: 801px) {
  h1.landing-h1 {
    margin-bottom: 80px;
  }
}

.product-container {
  width: 84.6%;
  margin: 0 auto clamp(160px, 20vw, 280px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: clamp(40px, 6vw, 80px);
}
.product-container .product-card {
  width: 47.3%;
  line-height: 180%;
}
.product-container .product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}
.product-container .product-card h4 {
  font-family: "classico-urw", Yu Gothic, YuGothic, "Yu Gothic", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  line-height: 160%;
  margin-top: 0.4em;
}
.product-container .product-card p.price-label {
  font-family: "nimbus-sans", Yu Gothic, YuGothic, "Yu Gothic", Meiryo, sans-serif;
  font-weight: 300;
  font-size: clamp(12px, 1.6vw, 15px);
  color: #BFBFBF;
  line-height: 180%;
  margin-top: 0.4em;
}
@media screen and (min-width: 650px) {
  .product-container .product-card {
    width: 30%;
  }
}
@media screen and (min-width: 801px) {
  .product-container .product-card {
    width: 22.7%;
  }
}

.landing-banner {
  position: relative;
  margin-top: clamp(175px, 30vw, 190px);
  width: 100%;
  height: calc(100vh - 175px);
  background-position: center;
}
.landing-banner h1 {
  font-family: "classico-urw", Yu Gothic, YuGothic, "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 400;
  width: 64%;
  letter-spacing: 0.06em;
  line-height: 100%;
  transform: translateY(-65%);
  margin: 0 auto;
}
.landing-banner img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.landing-banner img.banner-pc {
  display: none;
}
@media screen and (min-width: 801px) {
  .landing-banner {
    height: calc(100vh - clamp(175px, 30vw, 190px));
  }
  .landing-banner img.banner-sp {
    display: none;
  }
  .landing-banner img.banner-pc {
    display: block;
  }
}

article.product-info {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto auto;
  margin-bottom: clamp(100px, 15vw, 180px);
}
article.product-info .img-col {
  grid-column: 1/2;
  grid-row: 1/2;
}
article.product-info .img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
article.product-info .content-col {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}
article.product-info .content-col .content-wrapper {
  width: 84%;
  margin: auto;
}
article.product-info .content-col .content-wrapper h3 {
  font-family: "classico-urw", Yu Gothic, YuGothic, "Yu Gothic", Meiryo, sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.06em;
  margin-bottom: 1.5em;
}
article.product-info .content-col .content-wrapper .text-container {
  line-height: 280%;
  margin-bottom: clamp(35px, 7vw, 70px);
}
article.product-info .content-col .content-wrapper .text-container p {
  letter-spacing: 0.06em;
  line-height: 165%;
}
article.product-info .content-col .content-wrapper .spec-container {
  font-family: "nimbus-sans", Yu Gothic, YuGothic, "Yu Gothic", Meiryo, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  margin-bottom: 32px;
  line-height: 170%;
  color: #BFBFBF;
}
article.product-info .content-col .content-wrapper .spec-container h4 {
  font-weight: 300;
  color: #ffffff;
  font-size: clamp(12px, 1.8vw, 18px);
}
article.product-info .content-col .content-wrapper .prize-container {
  font-family: "nimbus-sans", Yu Gothic, YuGothic, "Yu Gothic", Meiryo, sans-serif;
  font-weight: 300;
  margin-bottom: clamp(60px, 10vw, 110px);
}
article.product-info .content-col .content-wrapper .arrow-btn {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 801px) {
  article.product-info {
    grid-template-columns: 50% 50%;
    box-sizing: border-box;
  }
  article.product-info .img-col {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  article.product-info .content-col {
    grid-column: 2/3;
    grid-row: 1/2;
    padding-top: 0;
  }
  article.product-info .content-col .content-wrapper {
    width: 62%;
  }
  article.product-info .content-col .content-wrapper .text-container h3 {
    margin-bottom: 1em;
  }
  article.product-info .content-col .content-wrapper .text-container p {
    font-weight: 500;
    letter-spacing: 0;
  }
}

article.product-instructions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 84.6%;
  margin: 0 auto;
}
article.product-instructions .text-container {
  margin-bottom: 60px;
}
article.product-instructions .text-container h2, article.product-instructions .text-container ol {
  margin: 0 auto;
}
article.product-instructions .text-container h2 {
  font-family: "nimbus-sans", Yu Gothic, YuGothic, "Yu Gothic", Meiryo, sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 100%;
  margin-bottom: 1em;
}
article.product-instructions .text-container ol {
  list-style: none;
  counter-reset: counter;
}
article.product-instructions .text-container ol li {
  counter-increment: counter;
  margin-bottom: 2em;
  display: flex;
}
article.product-instructions .text-container ol li .content-wrapper {
  font-size: clamp(11px, 1.6vw, 16px);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 180%;
  margin-left: 1em;
}
article.product-instructions .text-container ol li:before {
  font-family: "classico-urw", Yu Gothic, YuGothic, "Yu Gothic", Meiryo, sans-serif;
  font-weight: 400;
  content: counter(counter) ". ";
  font-size: clamp(18px, 2em, 32px);
  font-weight: 400;
}
article.product-instructions .img-container video {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 801px) {
  article.product-instructions {
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: clamp(100px, 15vw, 180px);
  }
  article.product-instructions .text-container {
    width: 54%;
    margin-bottom: 0;
  }
  article.product-instructions .text-container h2, article.product-instructions .text-container ol {
    width: 70%;
  }
  article.product-instructions .text-container ol li .content-wrapper {
    font-weight: 500;
    letter-spacing: 0;
  }
  article.product-instructions .img-container {
    width: 30%;
    margin: 0 auto;
  }
}

section.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(100px, 15vw, 180px) 0 clamp(160px, 15vw, 190px);
  background-color: rgba(0, 0, 0, 0.85);
}
section.cta a.arrow-btn {
  display: inline-block;
  font-weight: 400;
  font-size: clamp(26px, 5vw, 66px);
  line-height: 130%;
}
section.cta a.arrow-btn img {
  width: auto;
  height: 0.7em;
  margin-top: 0;
  margin-bottom: -0.1em;
  padding-left: 0;
}

.dark-wrapper {
  background-color: white;
}
.dark-wrapper footer {
  background-color: rgba(0, 0, 0, 0.85);
}

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