.newProductMain {
  position: relative;
}

.newProductHeader {
  position: relative;
  width: 100%;
  aspect-ratio: 1100/555;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  max-width: 1044px;
}
.newProductHeader:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.newProductHeader img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newProductHeader h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.3em;
}

.newProductLead {
  padding: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.newProductLead h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  text-align: center;
}
.newProductLead p {
  font-size: 16px;
  line-height: 1.8;
}

.newProductFeature {
  display: flex;
  gap: 24px;
  padding: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.newProductFeature figure {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.newProductFeature_inner {
  flex: 1;
}
.newProductFeature_inner h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
}
.newProductFeature_inner p {
  font-size: 16px;
  line-height: 1.8;
}

.newProductProduct {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 120px 0;
}
.newProductProduct_header {
  border-bottom: 1px solid #ebebeb;
}
.newProductProduct_header h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
}
.newProductProduct_inner {
  width: 100%;
  padding-top: 32px;
}
.newProductProduct_inner h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
}
.newProductProduct_inner figure {
  padding: 24px 0;
  width: 100%;
}
.newProductProduct_inner figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 1100/400;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
}
.newProductProduct_inner_bio {
  margin-top: 10px;
  font-size: 15px;
  margin-bottom: 30px;
}
.newProductProduct_inner_bio h4 {
  font-size: 16px;
  font-weight: bold;
  line-height: 3;
}
.newProductProduct_inner_bio p {
  font-size: 16px;
  line-height: 1.8;
}

.newProductLineup {
  margin-top: 32px;
  padding: 0 32px;
  background-color: rgba(240, 246, 250, 0.75);
  margin-bottom: 60px;
}
.newProductLineup_inner {
  display: flex;
  border-bottom: 1px dashed #8a8a8a;
  align-items: center;
  gap: 42px;
}
.newProductLineup_inner:last-child {
  border-bottom: none;
}
.newProductLineup_inner dl {
  width: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  color: #7a7a7a;
}
.newProductLineup_inner dl dt {
  font-size: 16px;
  font-weight: 600;
}
.newProductLineup_inner dl dd {
  font-size: 16px;
  line-height: 1.8;
}

/* brand navi */
nav.brandList {
  margin: 120px auto;
  width: 80%;
  max-width: 920px;
}
nav.brandList .brand {
  margin: 0 10px 10px 0;
  width: 30%;
  max-width: 300px;
}
nav.brandList .brand:nth-of-type(3n) {
  margin: 0 0 10px 0;
}
nav.brandList .brand a figure {
  position: relative;
}
nav.brandList .brand a figure figcaption {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
}
nav.brandList .brand a:hover figure figcaption {
  opacity: 1;
}
nav.brandList .brand a figure figcaption span {
  font-size: var(--fs34);
  font-family: var(--mincho);
  font-weight: 700;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 20px;
  left: 25px;
}

@media (max-width: 780px) {
  nav.brandList .brand a figure figcaption span {
    margin: auto;
    height: 40px;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    text-align: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  nav.brandList .brand a figure figcaption span.ls40 {
    letter-spacing: 0;
    text-indent: 0;
  }
}
@media (max-width: 480px) {
  nav.brandList .brand {
    margin: 0 4% 20px 0;
    width: 48%;
  }

  nav.brandList .brand:nth-of-type(3n) {
    margin: 0 4% 20px 0;
  }

  nav.brandList .brand:nth-of-type(2n) {
    margin: 0 0 20px 0;
  }

  nav.brandList .brand a figure figcaption span {
    height: 25px;
  }
}
@media (max-width: 780px) {
  .newProductHeader h1 {
    font-size: 30px;
    text-align: center;
  }

  .newProductLead {
    padding: 20px;
    max-width: none;
    margin: 0 auto;
  }
  .newProductLead h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .newProductLead p {
    font-size: 14px;
    padding: 0px;
  }

  .newProductFeature {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: none;
    margin: 0 auto;
  }
  .newProductFeature figure {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 auto;
  }
  .newProductFeature_inner {
    flex: 1;
  }
  .newProductFeature_inner h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .newProductFeature_inner p {
    font-size: 16px;
  }

  .newProductProduct {
    max-width: none;
    padding: 80px 0;
  }
  .newProductProduct_header h2 {
    font-size: 20px;
  }
  .newProductProduct_inner {
    width: 100%;
    padding-top: 20px;
  }
  .newProductProduct_inner h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .newProductProduct_inner figure {
    padding: 20px 0;
  }
  .newProductProduct_inner figure img {
    aspect-ratio: 800/450;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .newProductProduct_inner_bio {
    margin-top: 10px;
    font-size: 15px;
    margin-bottom: 30px;
  }
  .newProductProduct_inner_bio h4 {
    font-size: 15px;
    line-height: 1.8;
  }
  .newProductProduct_inner_bio p {
    margin-top: 10px;
    font-size: 15px;
  }

  .newProductLineup {
    margin-top: 32px;
    padding: 0 20px;
    margin-bottom: 60px;
  }
  .newProductLineup_inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
    gap: 12px;
  }
  .newProductLineup_inner dl {
    gap: 12px;
    padding: 12px 0;
  }
  .newProductLineup_inner dl dt {
    font-size: 14px;
    font-weight: 600;
    width: 110px;
  }
  .newProductLineup_inner dl dd {
    font-size: 14px;
  }
}
nav.brandList .brand a figure figcaption span.horizontal {
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
}