@CHARSET "UTF-8";

.header-menu {
	width: 100%;
	margin: 1px 0 5px 0;
	background-color: #C8C8C8;
}

.header-menu ul {
	width: 500px;
	height: 40px;
	margin: 0 auto;
	padding: 0;
	list-style-type: none;
}

.header-menu li {
	float: left;
	width: 100px;
	height: 20px;
	padding: 10px 0;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	color: black;
	text-shadow: 1px 1px 3px #646464;
}

.header-menu li:hover {
	color: white;
	text-shadow: 1px 1px 3px #C8C8C8;
	background-color: #969696;
}

.separator {
	clear: left;
	width: 100%;
	height: 2px;
	margin: 3px 0px 3px 0px;
	background-color: black;
}

.contents {
	margin: 0px;
	padding: 0px;
	display: inline-block;
}

.item-area {
	float: left;
	width: 400px;
	height: 350px;
	margin: 5px 5px 5px 5px;
	text-align: center;
	border: solid 1px #969696;
}

.item-img {
	width: 250px;
	height: 250px;
	margin: 3px auto;
}

.item-caption {
	text-align: center;
	font-size: 14px;
	font-weight: bold;
}

.item-buy-area {
	margin: 7px 0;
	display: inline-block;
}

.item-amount:before {
	content: "\00a5 \00a0";
}
.item-amount {
	float: left;
	height: 30px;
	margin: 0 10px;
	text-align: center;
	font-size: 25px;
	font-weight: bold;
}

.item-number {
	float: left;
	width: 25px;
	height: 28px;
	margin: 0 10px;
	padding: 0;
	font-size: 16px;
	text-align: center;
	border: solid 1px #969696;
	border-radius: 3px;
}

.apple-pay-button {
	float: left;
	visibility: hidden;
	width: 140px;
	height: 30px;
	padding: 0px;
	margin: 0 10px;
	border: 1px solid black;
	-webkit-appearance: -apple-pay-button;
	-apple-pay-button-type: plain; /* plain / buy / set-up / donate */
	background-image: -webkit-named-image(apple-pay-logo-black);
	background-size: 100% calc(60% + 2px);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	border-radius: 5px;
	transition: background-color .15s;
}

.apple-pay-button.buy {
	-apple-pay-button-type: buy;
}

.apple-pay-button.set-up {
	-apple-pay-button-type: set-up;
}

.item-annotation {
	clear: left;
	width: 100%;
	margin: 0;
	display: inline-block;
	text-align: center;
	font-size: 12px;
	color: gray;
}

.attention {
	color: red;
}

.arrow {
	position: relative;
	display: inline-block;
	padding: 0 20px 0 0;
}
.arrow:after {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	right: -10px;
	width: 20px;
	height: 10px;
	margin: auto;
	box-sizing: border-box;
	border: 7px solid transparent;
	border-left: 7px solid purple;
}

.arrow-left {
	position: relative;
	display: inline-block;
	padding: 0 0 0 20px;
}
.arrow-left:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: -10px;
	width: 20px;
	height: 10px;
	margin: auto;
	box-sizing: border-box;
	border: 7px solid transparent;
	border-right: 7px solid purple;
}

footer {
	clear: left;
}

.footer-menu {
	margin: 5px auto;
	font-size: 14px;
	text-align: center;
}

.copyright {
	margin: 5px auto;
	font-size: 12px;
	text-align: center;
}