/* =============================
   シルクプリント価格表
   ============================= */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

.price-table th,
.price-table td {
  border: 1px solid #ccc;
  padding: 8px 5px;
}

.price-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.price-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* ▼外部htmlを読み込んだ時に改行をそのまま扱う▼ */
#silk-print {
  white-space: pre-line;
}

/* ▼table関連は通常表示に戻す▼ */
#silk-print table,
#silk-print th,
#silk-print td {
  white-space: normal;
}

/* 商品説明エリア内の画像は必ず改行させる */
#silk-print img {
  display: block;
}