@charset "UTF-8";

/*------------------------------------------------------------
    ▼テーブル部分
------------------------------------------------------------*/
.form_cart_table {
	display: table;
    border-bottom: 1px dotted #DBDBDB;
    width: 100%;
    margin-bottom: 20px;
}
.form_cart_header {
	display: none;
    width: 100%;
    background: #F4F3F0;
}
.form_cart_header .form_cart_header_label {
	display: table-cell;
    padding: 20px 15px;
    text-align: center;
    background: #EFEFEF;
    overflow-x: hidden;
    font-weight: normal;
}

.form_cart_row {
	display: table-row;
}

.form_cart_delete {
    text-align: center;
    display: table-cell;
    width: 8%;
    vertical-align: middle;
}
.form_cart_content {
	padding: 10px 0;
}
@media screen and (min-width: 768px) {
	.form_cart_header {
		display: table-row;
	}
	.form_cart_delete {
		width: 70px;
	}
	.form_cart_content {
		display: table-cell;
	}
}
.table_detail tr {
	border-bottom: 1px dotted #DBDBDB;
}
.table_detail th {
}
.table_detail th:first-child {width: 6%}
.table_detail th:nth-child(2) {width: 50%}
.table_detail th:nth-child(3) {width: 22%%}
.table_detail th:last-child {width: 22%}

.table_detail td {
	padding: 5px 0;
}
.table_detail td input {
	display: none;
}

/* 削除 */
.delete_ico {
	display: block;
	width: 30px;
	height: 30px;
	margin: 0 auto;
	position: relative;
}
.delete_ico::before {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background: #1D1D1D;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	    -ms-transform: translate(-50%, -50%) rotate(45deg);
	        transform: translate(-50%, -50%) rotate(45deg);
}
.delete_ico::after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background: #1D1D1D;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	    -ms-transform: translate(-50%, -50%) rotate(-45deg);
	        transform: translate(-50%, -50%) rotate(-45deg);
}

/* 商品内容 */
.form_product_content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.form_product_content_img {
	min-width: 70px;
	max-width: 70px;
	margin-right: 10px;
}
.form_product_name {
	margin-bottom: 5px;
}
.form_product_name > a {
	color: #476491;
	font-size: 1.4rem;
	text-decoration: underline;
}
.form_product_content_txt > p {
	font-size: 1.2rem;
}
/* 個数 */
.form_cart_quantity {
	display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 20%;
}
.form_cart_quantity_amount {
	display: none;
    margin-bottom: 10px;
}
.form_cart_quantity_amountsp {
	display: block;
    margin-bottom: 10px;
}
.form_cart_quantity_updown {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	 -webkit-box-pack: center;
	     -ms-flex-pack: center;
	         justify-content: center;
}
.form_cart_quantity_updown > a {
	margin-right: 10px;
}
.form_cart_quantity_updown > a:last-child {
	margin-right: 0;
}
.form_cart_quantity_ico {
	width: 24px;
	height: 24px;
	border: 1px solid #1D1D1D;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.form_cart_quantity_ico::before {
	content: "";
	display: inline-block;
	width: 11px;
	height: 1px;
	background: #1D1D1D;
	position: absolute;
	/* top: auto;
	left: auto; */
}
.form_cart_quantity_ico::after {
	content: "";
	display: inline-block;
	width: 11px;
	height: 1px;
	background: #1D1D1D;
	/* position: absolute;
	top: auto;
	left: auto; */
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}
.form_cart_quantity_down.form_cart_quantity_ico::before {
	position: static;
}
.form_cart_quantity_down.form_cart_quantity_ico::after {
	content: none;
} 
/* 小計 */
.form_cart_subtotal {
	display: table-cell;
    text-align: right;
    width: 18%;
    vertical-align: middle;
}
@media screen and (min-width: 768px) {
	.form_product_content_img {
		min-width: 100px;
		max-width: 100px;
		margin-right: 30px;
	}
	.form_product_name > a {
		font-size: 1.6rem;
	}
	.form_product_content_txt > p {
		font-size: 1.6rem;
	}
	.form_cart_quantity {
		width: 12%;
	}
	.form_cart_quantity_amount {
		display: block;
	}
	.form_cart_quantity_amountsp {
		display: none;
	}
	.form_cart_subtotal {
    width: 16.66666667%;
	}
}
/*------------------------------------------------------------
    ▲テーブル部分END
------------------------------------------------------------*/


/*------------------------------------------------------------
    ▼ボタン・合計部分
------------------------------------------------------------*/
.form_cart_total {
	text-align: right;
	margin-bottom: 30px;
}
.form_cart_totalamount {
	font-size: 2rem;
	margin-left: 20px;
}
.form_cart_btns .btn.btn-01.back{
	padding-left: 25px;
}
@media screen and (max-width: 767px) {
	.form_cart_btns .btn:first-child{
		margin-bottom: 20px;
	}
}
@media screen and (min-width: 768px) {
	.form_cart_totalamount {
		font-size: 2.4rem;
	}
	.form_cart_btns	{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.form_cart_btns .btn {
		width: 250px;
	}
}
@media screen and (min-width: 992px) {
	.form_cart_btns .btn {
		width: 300px;
	}
}
/*------------------------------------------------------------
    ▲ボタン・合計部分END
------------------------------------------------------------*/


/*------------------------------------------------------------
    ▼ベルトバナー部分
------------------------------------------------------------*/
.belt_bnr_area{
    text-align: center;
    margin-bottom: 30px;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
	.belt_bnr_area{
        padding: 0 80px;
    }
}
/*------------------------------------------------------------
    ▲ベルトバナー部分END
------------------------------------------------------------*/




/*------------------------------------------------------------
    ▼商品がない場合の表示
------------------------------------------------------------*/
#page_cart .ec-alert-warning {
	border: 1px solid #1d1d1d;
	background: transparent;
}
#page_cart .ec-alert-warning .ec-alert-warning__text {
	font-size: 14px;
	color: #1d1d1d;
	font-weight: normal;
}

@media screen and (min-width: 768px) {
	#page_cart .ec-alert-warning .ec-alert-warning__text {
		font-size: 16px;
	}
}
/*------------------------------------------------------------
    ▲商品がない場合の表示END
------------------------------------------------------------*/
