@charset "utf-8";

/* ── レイアウト ── */
.product-wrapper {
  width: 680px;
  display: flex;
  align-items: flex-start;
}

.product-image-col,
.product-info-col {
  width: 350px;
  text-align: center;
  vertical-align: top;
}

.product-image-col img,
.product-info-col img {
  border: 0;
  width: 300px;
}

/* ── スペック表 ── */
.product-spec-table {
  border-collapse: collapse;
  width: 350px;
  margin: 16px auto 12px;
  font-size: 14px;
}

.product-spec-table th,
.product-spec-table td {
  border: 1px solid #cccccc;
  padding: 8px;
}
.product-spec-table td {
  padding: 8px;
}

/* ヘッダー行（商品名） */
.product-spec-table .spec-header {
  background-color: #4a4a4a;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}

.product-spec-table .spec-header:first-child {
  width: 20%;
}

.product-spec-table .spec-header:last-child {
  width: 80%;
}

/* ラベルセル */
.spec-label {
  background-color: #f5f5f5;
  text-align: center;
  vertical-align: middle;
  width: 25%;
}

/* 値セル */
.spec-value {
  background-color: #ffffff;
  text-align: left;
  line-height: 20px;
}
/* スペック表下の注意画像 */
.notice-img {
  margin-top: 20px;
}
