.product-detail {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.product-image {
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
}

.product-title {
  font-size: 2.4em;
  font-weight: 700;
  margin: -40px 0 10px;
  text-align: center;
}

.product-title-p {
  font-size: 1.4em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}

.product-features {
  margin: 40px 0;
}

.product-features h2 {
  border-left: 5px solid #333;
  padding-left: 10px;
  font-size: 1.4em;
}

.product-features ul {
  margin-top: 10px;
  padding-left: 20px;
  line-height: 1.8;
}

.product-specs h2 {
  border-left: 5px solid #333;
  padding-left: 10px;
  font-size: 1.4em;
  margin-bottom: 20px;
}

.product-specs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
  margin-bottom: 50px;
}

.product-specs th,
.product-specs td {
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: top;
}

.product-specs th {
  width: 30%;
  background-color: #f8f8f8;
  text-align: left;
}

/* ===== 製品ページ内の見出しはグローバルh2を無効化 ===== */
.product-detail h2 {
  /* グローバルで付いたセンター/relativeを打ち消し */
  text-align: left;
  position: static;
}

/* 赤い下線の疑似要素を消す */
.product-detail h2::after {
  content: none;
  /* または display: none; */
}

/* 以降は製品ページ用デザインを適用（あなたの既存定義でOK） */
.product-features h2,
.product-specs h2 {
  border-left: 5px solid #333;
  padding-left: 10px;
  font-size: 1.4em;
  margin: 40px 0 16px;
  font-weight: 700;
}

/* ==== 製品価格用デザイン ==== */
.price-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.4em;
  margin-bottom: 50px;
  text-align: center;
}

.price-text {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.4;
}

.price-amount {
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 10px;
  font-variant-numeric: tabular-nums;
}


/* タブレット以下 */
@media (max-width: 1136px) {
  .product-title {
    margin: 0px 0 10px;
  }

  .product-title-p {
    font-size: 1.2em;
  }

  .price-text {
    font-size: 1.2em;
    font-weight: 600;
  }

  .price-amount {
    font-size: 2em;
    font-weight: 700;
  }
}