













/* 製品テンプレート専用。renewal-product-scope の外には影響させない。 */
.renewal-product-scope {
  --product-forest: #0a251b;
  --product-green: #1e583f;
  --product-paper: #eef0e8;
  --product-line: rgba(16, 37, 29, .2);
  --product-ink: #10251d;
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--product-ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  box-sizing: border-box;
}

.renewal-product-scope *,
.renewal-product-scope *::before,
.renewal-product-scope *::after {
  box-sizing: border-box;
}

.renewal-product-scope img {
  display: block;
  max-width: 100%;
}

.renewal-product-scope a {
  color: inherit;
  text-decoration: none;
}

.renewal-product-scope.renewal-product-page {
  padding: clamp(90px, 10vw, 160px) 5vw;
  background: var(--product-paper);
}

.renewal-product-scope .renewal-product-heading {
  position: static !important;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 32%;
  align-items: start;
  gap: clamp(32px, 4vw, 70px);
  max-width: 1500px;
  margin: 0 auto clamp(65px, 8vw, 110px);
}

.renewal-product-scope .renewal-product-heading > p {
  margin: 15px 0 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}

.renewal-product-scope .renewal-product-heading h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .06em;
  white-space: nowrap;
}

.renewal-product-scope .renewal-product-heading > div {
  align-self: end;
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: .035em;
}

.renewal-product-scope.renewal-product-page .renewal-product-section {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
}

.renewal-product-scope.renewal-product-embed {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding: 0;
  background: transparent;
}

.renewal-product-scope .renewal-product-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 72px 28px;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.renewal-product-scope .renewal-product-card {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  list-style: none !important;
}

.renewal-product-scope .renewal-product-card > article {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.renewal-product-scope .renewal-product-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
}

.renewal-product-scope .renewal-product-image > a,
.renewal-product-scope .renewal-product-noimage {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.renewal-product-scope .renewal-product-image img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center center;
  transition: transform 1.2s cubic-bezier(.2, .75, .2, 1), filter .6s;
}

.renewal-product-scope .renewal-product-image a:hover img {
  transform: scale(1.045);
  filter: brightness(.95);
}

.renewal-product-scope .renewal-product-body {
  position: relative;
  padding: 22px 0 0;
  border-top: 1px solid var(--product-line);
}

.renewal-product-scope .renewal-product-number {
  color: rgba(16, 37, 29, .55);
  font-family: Georgia, serif;
  font-size: 11px;
}

.renewal-product-scope .renewal-product-body h2,
.renewal-product-scope .renewal-product-body h3 {
  margin: 8px 0 18px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .04em;
}

.renewal-product-scope .renewal-product-spec {
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 1.7;
}

.renewal-product-scope .renewal-product-spec > div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 8px;
}

.renewal-product-scope .renewal-product-spec dt {
  color: rgba(16, 37, 29, .58);
}

.renewal-product-scope .renewal-product-spec dd {
  min-width: 0;
  margin: 0;
}

.renewal-product-scope .renewal-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.renewal-product-scope .renewal-product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 128px;
  padding: 12px 14px;
  border: 1px solid var(--product-line);
  color: var(--product-ink);
  font-size: 11px;
  text-decoration: none;
  transition: color .35s, background .35s, border-color .35s;
}

.renewal-product-scope .renewal-product-actions a:hover {
  color: #fff;
  border-color: var(--product-green);
  background: var(--product-green);
}

@media (max-width: 980px) {
  .renewal-product-scope .renewal-product-heading {
    grid-template-columns: 1fr 1fr;
  }

  .renewal-product-scope .renewal-product-heading > p {
    grid-column: 1 / -1;
  }

  .renewal-product-scope .renewal-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .renewal-product-scope.renewal-product-page {
    padding: 80px 20px;
  }

  .renewal-product-scope .renewal-product-heading {
    display: block;
    margin-bottom: 58px;
  }

  .renewal-product-scope .renewal-product-heading h1 {
    margin-top: 26px;
    font-size: clamp(34px, 10.5vw, 43px);
  }

  .renewal-product-scope .renewal-product-heading > div {
    margin-top: 28px;
    margin-bottom: 0;
    font-size: 15px;
  }

  .renewal-product-scope .renewal-product-list {
    gap: 55px 14px;
  }

  .renewal-product-scope .renewal-product-body h2,
  .renewal-product-scope .renewal-product-body h3 {
    font-size: 17px;
  }

  .renewal-product-scope .renewal-product-spec > div {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 8px;
  }

  .renewal-product-scope .renewal-product-actions {
    display: grid;
  }

  .renewal-product-scope .renewal-product-actions a {
    min-width: 0;
  }
}
