@charset "utf-8";


.cart {
	max-width: 1400px;
	margin: 65px auto 0;
}
.cart table {
	font-family: 'GimpoGothic';
	transform: rotate(0.03deg);
	margin-top: 30px;
}
.cart table th {
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: #313131;
	border-top: 1px solid #454240;
	padding: 18px 0;
}
.cart table td {
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: #313131;
	border-top: 1px solid #454240;
	padding: 18px 0;
}
.cart table td.tit {
	cursor: pointer;
}
.cart .option {
	margin: -20px 0;
	text-align: left;
}
.cart .option .item {
	display: flex;
	background: #EDECE9;
	border-bottom: 1px solid #D5D5D5;
	padding: 20px;
	font-size: 15px;
	color: #969696;
	box-sizing: border-box;
}
.cart .option .item > div:first-child {
	position: relative;
	flex: 1;
}
.cart .option .item > div:first-child strong {
	position: absolute;
	left: 0;
	color: #313131;
	font-weight: 400;
}
.cart .option .item > div:first-child span {
	padding-left: 45px;
	display: block;
}
.cart .option .item > div:last-child strong {
	color: #313131;
	font-weight: 400;
}
.cart table tfoot tr {
	background: #EDECE9;
	border-bottom: 1px solid #454240;
}
.cart table tfoot td {
	color: #dc9c51;
	font-size: 16px;
	letter-spacing: 1px;
}
.cart table tfoot .flex {
	align-items: center;
}
.cart table tfoot .flex > div {
	flex: 1;
}
.cart table tfoot .flex > div:last-child {
	padding-right: 40px;
	text-align: right;
}
.cart table tfoot .flex > div:last-child strong {
	font-size: 25px;
}
.cart table input {
	display: none;
}
.cart table input + label {
	position: relative;
	display: block;
}
.cart table input + label:before {
	content:'';
	display: block;
	width: 20px;
	height: 20px;
	margin: 0 auto;
	border: 1px solid #1E1E1E;
	border-radius: 2px;
	box-sizing: border-box;
}
.cart table input:checked + label {
	color: #131313;
}
.cart table input:checked + label:before {
	background: #FFD073 url("../images/ico-check.svg")no-repeat 50% 50% / 12px;
}
.cart .btn_area {
	margin-top: 30px;
}
.cart .btn_area > div:first-child {
	flex: 1;
}
.cart .btn_area > div button {
	padding: 15px 42px 13px;
	box-sizing: border-box;
	font-size: 18px;
	font-weight: 400;
	font-family: 'GimpoGothic';
	transform: rotate(0.03deg);
	border: 1px solid #dc9c51;
}
.cart .btn_area .select_del {
	color: #dc9c51;
	background: #fff;
}
.cart .btn_area .select_order {
	color: #dc9c51;
}
.cart .btn_area .all_order {
	background: #dc9c51;
	color: #fff;
	margin-left: 10px;
}



@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1024px) {
	.cart {
		margin: 40px auto 0;
	}
	.cart table tfoot .flex > div:last-child {
		padding-right: 20px;
	}
	.cart table tfoot .flex > div:last-child strong {
		font-size: 20px;
	}
}
@media screen and (max-width: 768px) {
	.cart table colgroup {
		display: none;
	}
	.cart table th {
		font-size: 14px;
		padding: 13px 0;
	}
	.cart table td {
		font-size: 14px;
		padding: 13px 0;
	}
	.cart table tfoot td {
		font-size: 14px;
	}
	.cart table tfoot .flex {
		display: block;
	}
	.cart table tfoot .flex > div {
		margin: 2px 0 5px;
		text-align: right;
		padding-right: 20px;
	}
	
	.cart .option {
		margin-top: -13px;
	}
	.cart .option .item {
		padding: 15px;
		font-size: 14px;
	}
	
	.cart .btn_area {
		display: block;
		margin-top: 15px;
	}
	.cart .btn_area > div button {
		padding: 12px 20px 10px;
		font-size: 14px;
	}
	.cart .btn_area .all_order {
		margin-left: 5px;
	}
	.cart .btn_area .flex {
		margin-top: 15px;
		justify-content: center;
	}
	.cart .btn_area .flex button {
		flex: 1;
		max-width: 200px;
		padding: 12px 0 10px;
	}
}
@media screen and (max-width: 480px) {
	.cart .option .item {
		display: block;
	}
	.cart .option .item .price {
		margin-top: 10px;
	}
	.cart .option .item > div:first-child span {
		line-height: 1.2;
	}
}
@media screen and (max-width: 380px) {
	.cart table th {
		font-size: 12px;
	}
	.cart table td {
		font-size: 12px;
	}
	.cart table input + label:before {
		width: 17px;
		height: 17px;
	}
	.cart table tfoot td {
		font-size: 12px;
	}
	.cart table tfoot .flex > div:last-child strong {
		font-size: 17px;
	}
}