/* テスト環境のcategory.cssに追加が必要となる調整 */

.orderSp {
  display: none;
}
.orderChoice{
  display: flex;
  flex-wrap: wrap;
}

.orderChoice input{
  margin: 0;
}
.productSelectBox .orderChoice,
.paperSelectBox .orderChoice{
	gap:10px;
}
.productSelectBox .orderChoice > li,
.paperSelectBox .orderChoice > li {
  width: calc((100% - 10px) / 2);
  margin:0;
}
.leadtimeSelectBox .orderChoice{
	gap:10px;
}
.leadtimeSelectBox .orderChoice > li {
  width: calc((100%  - 20px) / 3);
  margin:0;
}

.orderChoiceBox {
  border: 1px solid #CACACA;
  padding: 15px 15px 13px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 5px;
  height: 100%;
}

.orderChoiceBox p {
  line-height: 120%;
  margin-left: 10px;
  font-weight: bold;
  flex-grow: 2;
  word-break: break-word;
}

.orderChoiceBox dl {
  text-align: center;
  line-height: 120%;
  margin-left: 10px;
  flex-grow: 2;
}

.orderChoiceBox dd {
  font-size: 16px;
  font-weight: bold;
  border-top: 1px solid #333;
  margin-top: 5px;
  padding-top: 15px;
}

.orderShipping{
	border-radius: 5px;
}

/*チェックの入ったラベル*/
.orderChoice li label.active .orderChoiceBox{
  border: 1px solid #EA5304;
  background: #FFF5F0;
  color: #EA5304;
}

.orderChoice li .active .orderChoiceBox dd{
  border-top: 1px solid  #EA5304;
}

.label-dt{
	margin-top:20px;
	font-weight:bold;
}

/*仕様未確定の時*/
.priceSelectBox.deactive  p ,
.priceSelectBox.deactive .priceTable ,
.priceSelectBox.deactive .orderStepPrice,
.priceSelectBox.deactive ul,
.priceSelectBox.deactive .orderSp{
  display: none;
}

@media screen and (max-width: 750px){
  .orderPc {
    display: none;
  }
  
  .orderSp {
    display: block;
  }
  
  .reqList dl {
    display: flex;
    align-items: center;
    margin-top: 20px;
  } 
  
  .reqList dt {
    font-weight: bold;
    text-align: right;
    width: 60px;
  }
  
  .reqList dd {
    flex-grow: 3;
    margin-left: 10px;
  }  

  .reqList select {
    border: 1px solid #CFC5AF;
    width: 100%;
    padding: 10px;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .leadtimeSelectBox .orderChoice > li {
    width: calc((100%  - 10px) / 2);
    margin:0;
  }
  .label-dt{
    width:60px;
    text-align:right;
  }
}

@media screen and (max-width: 480px) {
  .reqList dl {
    display: block;
    align-items: center;
    margin-top: 15px;    
  } 
  
  .reqList dt {
    font-weight: bold;
    text-align: left;
    width: 100%;
    padding: 0 10px 5px 0;
  }
  
  .reqList dd {
    margin-left: 0;
  }
  .priceTable tr>*{
    display:table-cell;
  }
  .label-dt{
    width:100%;
    text-align:left;
  }
  .orderChoiceBox dd {
    font-size:14px;
  }
}