.itemlist {
	color: #666;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2%;
}
.itemlist li {
	box-shadow: 0 0 2px 0 rgba(128,128,128,.3);
	display: flex;
	margin: 2%;
	width: 46%;
}
.itemlist li:hover {
	box-shadow: 0 0 2px 0 #449d89;
}
.itemlist li a {
	display: flex;
	flex-direction: column;
	padding: 16px;
	width: 100%;
}
.itemlist li figure img {
	margin: auto;
	width: 100px;
}
#category .listLink {
	border: 1px solid #449d89;
	border-radius: 16px;
	color: #449d89;
	display: block;
	line-height: 3em;
	margin: 1em auto 1.6em;
	text-align: center;
	width: 200px;
}
.price {
	margin-top: auto;
	margin-bottom: 0;
	text-align: right;
}
.order .price {
	font-size: 1.5rem;
}
.order img {
	display: block;
	margin: auto;
	width: 250px;
}
.order dl {
	display: flex;
	font-size: .9rem;
	line-height: 3em;
	justify-content: center;
}
.order .regular_btn {
	background: #eb5463;
	border: 0;
	border-radius: 16px;
	color: #fff;
	display: block;
	line-height: 3em;
	width: 88%;
	margin: auto;
}
.order .regular_btn::before {
	margin-right: 4px;
}
.detail img {
	display: block;
	width: 100%;
	max-width: 500px;
	height: auto;
	margin: auto;
}
.modal {
	align-items: center;
	background: rgba(0, 0, 0, .5);
	display: none;
	justify-content: center;
	position: fixed;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 4;
}
.modal div {
	display: none;
}
.cartIn .modal, .cartInError .modal {
	display: flex;
}
.cartIn .modal .success,
.cartInError .modal .error {
	background: #fff;
	border-radius: 16px;
	display: block;
	padding: 20px;
	width: 300px;
}
.modalHeading {
	border-bottom: 1px solid #eee;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
}
.modal a.cart_button {
	background: #449d89;
	border: 0;
	border-radius: 16px;
	color: #fff;
	display: block;
	line-height: 3em;
	text-align: center;
	width: 100%;
}
.modal a.close {
	color: #449d89;
	line-height: 3em;
	position: relative;
	text-align: center;
}
.modal a.close::before {
	border-top: 1px solid #449d89;
	border-left: 1px solid #449d89;
	content: '';
	display: inline-block;
	transform: rotate(-45deg);
	width: 8px;
	height: 8px;
}
.modal .cart_async::before {
	margin-right: 4px;
}
.modal .close {
	display: block;
}
dl.guide {
	background: #eee;
	padding: 10px;
}
dl.guide dt {
	font-weight: 700;
}
dl.guide ul {
	left: 1.6em;
	position: relative;
	width: calc(100% - 1.6em);
}
.order form {
	background: #fffc;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px 10px 0;
	position: fixed;
	z-index: 3;
}
#itemdetail p.acc {
	background: #eee;
	display: flex;
	padding: 1em;
	position: relative;
}
#itemdetail p.acc::after {
	content: '\3009';
	font-size: smaller;
	font-weight: bold;
	position: absolute;
	right: 1em;
	transform-origin: center left;
	transition: all 0.2s ease-out;
}
#itemdetail p.acc.view::after {
	transform: rotate(90deg);
}
@media screen and (min-width: 1024px) {
	.order {
		border-bottom: 1px solid #ddd;
		padding: 0 40px 20px;
	}
	.order form {
		background: none;
		padding: 0;
		position: relative;
	}
	.order img {
		float: left;
		margin-right: 6%;
	}
	.order .price {
		font-size: 1.8rem;
		line-height: 220%;
	}
	.order .regular_btn {
		width: calc(82% - 300px);
	}
	.order dl {
		font-size: 1.2rem;
		justify-content: center;
	}
	.order dt::after {
		content: ':';
		margin-right: 4px;
	}
	.itemlist {
		flex-wrap: wrap;
		overflow: initial;
	}
	.itemlist li {
		width: 22%;
	}
	.itemlist li:nth-of-type(4n) {
		margin-right: 0;
	}
	.itemlist li:nth-of-type(4n+1) {
		margin-left: 0;
	}
	.itemlist li figure img {
		width: 100%;
	}
	.cartIn .modal .success,
	.cartInError .modal .error {
		background: #fff;
		border-radius: 16px;
		padding: 20px;
		width: 400px;
	}
	.modalHeading {
		font-size: 2rem;
	}
}