#cart {
	margin: 0 auto;
	width: calc(100% - 40px);
	max-width: 1080px;
	font-family: 'ヒラギノ角ゴ Pro', 'メイリオ', 'Noto Sans JP', sans-serif;
	font-size: 14px;
}
.cart_table_type {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 20px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	box-sizing: border-box;
}
.cart_table_type:last-child {
	margin: 0 0 30px 0;
	border-bottom: 1px solid #ccc;
}
.cart_table_type li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.cart_table_type li a {
	color: #e6b400;
	text-decoration: none;
}
.cart_table_type li a:hover {
	background: #f0f0f0;
	text-decoration: underline;
}

.cart_table_type .name {
	width: 47%;
}
.cart_table_type .price {
	width: 15%;
	text-align: right;
	text-align: center;
}
.cart_table_type .suryo {
	width: 14%;
	text-align: center;
}
.cart_table_type .total {
	width: 15%;
	text-align: center;
}
.cart_table_type .del {
	position: relative;
	width: 9%;
	text-align: center;
	background-color: #CCCCCC;
}
.cart_table_type .del a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.cart_table_type .del:hover {
	background-color: #f00;
}
.cart_table_type span {
	display: block;
	padding: 0 0 15px 0;
	line-height: 1.1em;
}
.cart_table_type .input_suryo {
	margin: 0;
	width: 50px;
	text-align: center;
}
.cart_update {
	width: 27%;
}
.cart_update .submit {
	margin: 0;
	padding: 10px;
	width: 100%;
	max-width: none;
    font-size: 14px;
}

.cart_btn_type {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
}
.cart_btn_type li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.cart_btn_type li a {
	text-decoration: none;
}
.cart_btn_type li a:hover {
}
.cart_btn_type .btn01 {
	position: relative;
    padding: 10px 0;
	width: 200px;
	text-align: center;
	color: #ffffff;
	background-color: #333333;
}
.cart_btn_type .btn01 a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.cart_btn_type .btn01:hover {
}
.cart_btn_type .btn02 {
	position: relative;
    padding: 15px 0;
	width: 100%;
    max-width: 600px;
	text-align: center;
	color: #ffffff;
	background-color: #333333;
}
.cart_btn_type .btn02 a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.last_border {
    border-bottom: 1px solid #ccc;
}
.cart_back_btn {
    display: block;
    margin: 20px auto;
    padding: 5px 10px;
    width: 200px;
    max-width: 22%;
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    background-color: #888888;
}
.cart_back_btn:hover {
    text-decoration: none !important;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
	.cart_table_type .name {
		width: 100%;
	}
	.cart_table_type .price {
		margin: 10px 0;
		width: 100%;
		text-align: right;
	}
	.cart_table_type .suryo {
		width: 30%;
		text-align: center;
	}
	.cart_table_type .total {
		margin: 10px 0;
		width: 100%;
		text-align: right;
	}
	.cart_table_type .del {
		position: relative;
		width: 30%;
		text-align: center;
		background-color: #CCCCCC;
	}
	.cart_update {
		width: 62%;
	}
}
@media only screen and (max-width: 414px) {
}



