/*■■■商品かご回りの商品詳細飾りつけ■■■*/
 /*全体*/
 .wp_item-detail {
  box-sizing: border-box;
 }
 
 /*各項目全体*/
 .wp_item-detail_table {
  margin-bottom: 50px;
  border-bottom: 1px #444 solid;
  color: #222;
 }
 
 /*各項目全体*/
 .wp_item-detail_table>tbody {
  border: 1px solid #444;
 }
 
 /*主題部分*/
 .wp_item-detail_table>thead th {
  padding-bottom: 20px;
  text-align: center;
  font-size: 1.5em;
 }
 
 /*副題部分*/
 .wp_item-detail_table>tbody th {
  background-color: #ccc;
  border: 1px solid #444;
  border-bottom: 0;
  padding: 10px;
  width: 25%;
  font-size: 1.2em;
 }
 
 /*内容部分*/
 .wp_item-detail_table td {
  padding: 10px;
 }
 
 .wp_item-detail_table>tbody td {
  border-top: 1px solid #444;
  border-right: 1px solid #444;
  border-left: 1px solid #444;
 }
 
 .wp_item-detail_table li {
  list-style: disc;
  margin: 10px 0 10px -0.5em;
  font-size:1em;
  line-height: 1.8em;
 }

 /*キーワード*/
 .wp_item-detail_keyword {
  font-size: 0.8em;
  color: #444;
  margin-bottom: 50px;
 }