#main{
  padding-top: 60px;
  width:94%;
  margin:0 auto 40px;
}
h2.title {
    margin: 0 0 40px;
    line-height:1.5;
    text-align: center;
    font-size: 24px;
    padding: 50px 0 0;
    letter-spacing: 5px;
}
p.lead{
	margin-bottom:3em;
	text-align: center;
	font-size:14px;
	line-height: 1.6;
}
.delete-btn{
	border:none;
	font-size:24px;
}

.cart-item-box{
	padding-right:10px;
	border-radius: 0;
	border:2px solid #ddd;
	display: flex;
	align-items: center;
	justify-content: space-around;
	width:100%;
	max-width:430px;
	margin:0 auto 20px;
}
.cart-item-box .image{
	padding:10px;
	width: 150px;
}
.cart-item-box .image img{
	max-width: 100%;
}
.cart-item-box .text{
	flex: 1;
	margin-right:20px;
}
.cart-item-box .price{
	margin-top:2em;
	font-size:18px;
	text-align: left;
}

.cart-item-box .del{
	width: 29px;
}


.cart-few-box .price .stotal{
	font-size:18px;
	display: inline-block;
    padding-top: 10px;
}

.cart-total-box{
	width:100%;
	max-width:430px;
	margin:10px auto 40px;
}
.cart-total{
	width:100%;
	border-top:1px solid #ccc;
	margin:0 0 10px l;/;
}
.cart-total th,
.cart-total td{
	padding:10px 15px;
}
.cart-total td{
	text-align: right;
	border-left:1px solid #ccc;
}
.cart-total tr{
	border-bottom:1px solid #ccc;
}
.caption{
}
.cart-btns-box{
	width:100%;
	max-width:430px;
	margin:10px auto 40px;
	display: flex;
	justify-content: space-between;
}

.cart-btns-box .btn{
	border:none;
	color:#fff!important;
	background: #aaa;
	position: relative;
	line-height:1;
	height:40px;
	line-height: 25px;
}
.cart-btns-box .btn-left{
	margin-left:20px;
}
.cart-btns-box .btn-right{
	margin-right:20px;
}
.cart-btns-box .btn-left:before{
	content:"";
	position: absolute;
	left:-20px;
	top:0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-right: 20px solid #a9a9a9;
  border-bottom: 20px solid transparent;
}

.cart-btns-box .btn-right:before{
	content:"";
	position: absolute;
	right:-20px;
	top:0;
  width: 0;
  height: 0;
  border-left: 20px solid #a9a9a9;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.cart-btns-box .btn.disabled{
	background: #ccc;
	color: #999;
	cursor: default;
}
.cart-btns-box .btn.disabled::before{
	border-left-color: #ccc;
}

.util-link-box{
	width:100%;
	max-width:430px;
	margin:10px auto 40px;
}

#cart-guide li{
	margin-bottom:5px;
}

.message{
	color: #f00;
	font-weight: bold;
	text-align: center;
}

#error-box{
	border: 2px solid #b12704;
	color: #b12704;
	padding: 10px;
	margin: 1rem 0;
}

.point-set{
	color: #092;
}
.cart-total td{
	text-align: right;
}
.all-total{
	color: #b12704;
	font-weight: bold;
	font-size: 16px;
}
#point-wrap{
	padding: 1rem 0;
}
#point-wrap b{
	font-weight: bold;
}

input[type=number]{
	font-size: 16px;
	height: 20px;
	padding: 8px 8px 8px 6px;
	width: 80px;
	margin-bottom: 5px;
	line-height: 20px;
	color: #555555;
	vertical-align: middle;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: unset;
	box-sizing: content-box;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}


@media screen and (max-width: 639px) {
.cart-btns-box .btn{
	line-height: 1;
}
.cart-item-box .image {
	width: 40%;
    margin: 10px;
}
.cart-item-box .text {
	width:40%;
	margin-right:10px;
}
.cart-item-box .image img{
	width:100%;
}

}


@media screen and (max-width:320px) {
 
/*iPhone 5, 5s, seに適用させたいCSSを記述*/
.cart-btns-box {

    display: block;
}
.cart-btns-box .next{
	margin-top:10px;
	text-align: right;
}
}