.woocommerce{
	margin: 2rem auto!important;
	width: 1040px;
	@media (max-width:768px) {
		width: 90%;
	}
}

/* 商品一覧・商品 */
#primary{
		.site-main{
			margin: 2rem auto;
			width: 1040px;
			@media (max-width:768px) {
				width: 90%;
			}
			.woocommerce-breadcrumb,.woocommerce-products-header{
				display: none;
			}
			.woocommerce-result-count,.woocommerce-ordering{
				text-align: right;
				margin-right: 2rem;
				margin-bottom: 1rem;
			}
			.products{
				&.columns-4{
					/* background-color: brown; */
					@media (max-width:768px) {
						margin: 0 auto;
						flex-direction: column;
					}
					
				}
				li.product{
					display: inline-grid;
					h2{
						font-size: 1.2rem;
					}
					.price{
						font-size: 1.2rem;
					}
					.add_to_cart_button{
						border: 1px solid;
						padding: 1rem;
						margin: 1.5rem;
					}
					.added_to_cart.wc-forward{
						border: 1px solid;
						padding: 1rem;
						margin: 1.5rem;
						background-color: rgba(123, 189, 228, 0.637);
					}
					@media (max-width:768px) {
						border-bottom: 1px dotted;
					}
				}
				
			}
			.summary{
				.product_title{
					font-size: 2rem;
				}
				.price{
					bdi{
						font-size:1.5rem;
						.woocommerce-Price-currencySymbol{
							font-size:1.5rem;
						}
					}
				}
				.stock{
					font-size:1.5rem;
					margin-bottom: .5rem;
				}
				.single_add_to_cart_button{
					font-size:1.5rem;
				}
				.product_meta{
					display: none;
				}
			}
		}
}
/* カート画面 */
.wp-block-woocommerce-cart{
	margin: 2rem auto!important;
	width: 1040px;
	@media (max-width:768px) {
		width: 90%;
	}
	.wc-block-components-button__text{
		border: 1px solid;
		padding: 1rem;
		margin: 1.5rem;
		background-color: rgba(123, 189, 228, 0.637);
	}
}

/* チェックアウト画面 */
.wp-block-woocommerce-checkout{
	margin: 2rem auto!important;
	width: 1040px;
	@media (max-width:768px) {
		width: 90%;
	}
}
/* 注文完了画面 */
.woocommerce-order{
	margin: 2rem auto!important;
	width: 1040px;
	@media (max-width:768px) {
		width: 90%;
	}
	.woocommerce-customer-details{
		.col-1,.col-2{
			max-width: 48%!important;
			@media (max-width:768px) {
				margin-top: 1rem;
				max-width: 100%!important;
			}
		}
	}
}

/* アカウントページ */
.woocommerce-MyAccount-navigation{
	ul{
		font-weight: bold;
		display: flex;
		flex-wrap: wrap;
		li{
			margin: 1rem;
			a{
				border-bottom: 1px solid grey;
			}
		}
	}
}
.woocommerce-MyAccount-content{
	.col-1,.col-2{
		max-width: 48%!important;
		@media (max-width:768px) {
			margin-top: 1rem;
			max-width: 100%!important;
		}
		.woocommerce-Address-title{
			a.edit{
				display: inline-block;
				padding:.375rem .75rem;
				border-radius:.25rem;
				color:white;
				background-color:#007bff;
				border-color: #007bff;
			}
		}
	}
	.woocommerce-Addresses{
		margin-top: 1.5rem;
	}
}