
/* SKUセレクトの見た目を整える */
.usces_skuform {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.usces_skuform th,
.usces_skuform td {
  padding: 8px 10px;
  border: 1px solid #ddd;
  vertical-align: middle;
  text-align: left;
}

.usces_skuform th {
  background-color: #f9f9f9;
  width: 30%;
}

.usces_skuform td select,
.usces_skuform td input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.usces_skuform .skuimg {
  margin-top: 10px;
  max-width: 100%;
  height: auto;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .usces_skuform th,
  .usces_skuform td {
    display: block;
    width: 100%;
  }

  .usces_skuform th {
    background: none;
    font-weight: bold;
    padding-top: 12px;
  }
}
