@charset "UTF-8";

.p-cart{}

.p-cart .price{
	font-size: 1.2em;
}
.p-cart-items{
	margin-top: 40px;
}
.p-cart-items--item{
	display: flex;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e5e5e5;
}
.p-cart-items--item:first-child{
	border-top: 1px solid #e5e5e5;
	padding-top: 20px;
}

.p-cart-items--item .thumb{
	width: 30%;
	min-width: 100px;
	position: relative;
}
.p-cart-items--item .thumb a,
.p-cart-items--item .thumb span{
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
}
.p-cart-items--item .thumb a img,
.p-cart-items--item .thumb span img{
	max-height: 100%;
	width: auto;
}

.p-cart-items--item .info{
	width: 100%;
	margin-left: 30px;
	display: flex;
	flex-direction: column;
}

.p-cart-items--item .name .item-name{
	font-size: 1.8rem;
}

.p-cart-items--item .info .price_info{
	display: flex;
	padding-top: 10px;
	border-top:1px solid #e5e5e5;
	margin-top: 20px;
	align-items: center;
	align-self: flex-end;
	width: 100%;
}

.p-cart-items--item .info .price_info span + span{
	margin-left: 20px;
}

@media screen and (max-width: 768px) {
	.p-cart-items--item .info .price_info{
		flex-wrap: wrap;
	}
	.p-cart-items--item .info .price_info .price_sub-total{
		display: block;
		width: 100%;
		margin-left: 0;
	}
}


.p-cart-price-table {
	margin-top: 20px;
}

.p-cart-price-table table {
	width: 100%;
}

.p-cart-price-table table tr th {
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	text-align: right;
	vertical-align: middle;
	padding: 0.75em 1em;
}

.p-cart-price-table table tr td {
	width: 20%;
	white-space: nowrap;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	text-align: right;
	vertical-align: middle;
	padding: 0.75em 1em;
}

.p-cart-price-table table tr:nth-child(even) th,
.p-cart-price-table table tr:nth-child(even) td { background-color: #f6f7f9; }
.p-cart-price-table table tr:nth-child(odd) th,
.p-cart-price-table table tr:nth-child(odd) td { background-color: #eef0f4; }

.p-cart-order__Btn{
	padding-top: 40px;
	margin-top: 40px;
	border-top: 1px dotted #828f9e;
}
