@charset "utf-8";
/* CSS Document */
.goodsWrap {
	text-align: left;
	width: 96%;
	margin: 0 auto;
}
#goods_list .boxReset{
	display: grid;
	grid-template-columns:repeat(4, 1fr);
	column-gap: 0.5em;
	row-gap: 1em;
	padding-bottom: 1em;
	padding-top: 1em;
}


.itemBox{
	/*width: 24%;
	margin: 1em 0.5%;
	display: inline-block;
	vertical-align: top;*/
	border:#000 1px solid;
	padding: 0.5em;
	font-size: max(0.9em,12.5px);
	position: relative;
}
.goods2 .itemBox{
	border:#ccc 1px solid;
}
.itemBox .new{
	text-align: center;
	background-color: var(--pink);
	color: #fff;
}
.itemBox .new:before{
	content: none;
}
.goodsNum{
position: absolute;
top:-0.2em;
left:0em;
/*padding: 0.25em;*/
width: 2em;
	height: 2em;
background-repeat: no-repeat;
background-position: center;
background-size:contain;
text-align: center;
font-size: 15px;
	line-height: 2em;
font-weight: bold;
	background-color: var(--yellow);
	border-radius: 50%;
color: var(--black);
text-shadow: none;
	transform: scale(0.9);
}
.itemBox h4{
	font-weight: bold;
	padding: 0.2em 0 0.5em;
	line-height: 1.5em;
}
.itemBox .limit{
	background-color: var(--red);
	color: #fff;
	padding: 0 0.3em;
}
.itemBox a:hover{
	background-color:transparent;
}
.itemBox a{
	position: relative;
	display: block;
}
.itemBox a:before{
	content: "";
	width: 0;
	height: 100%;
	display: block;
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	transition: all 0.2s 0s ease-out;
	background: var(--green);
	opacity: 0.8;
}
.itemBox a:hover:before{
	width: 100%;
}
.itemBox a:after{
	content: "more";
	position: absolute;
	margin-top: -0.75em;
	margin-left: -2.5em;
	line-height: 1.5em;
	height: 1.5em;
	letter-spacing: 1px;
	width: 5em;
	border: var(--black) 1px solid;
	text-align: center;
	top:50%;
	left:50%;
	color: var(--black);
	z-index: 2;
	display: block;
	opacity: 0;
	transition: all 0.2s 0s ease-out;
	/*transform: translateY(1em);*/
}
.itemBox a:hover:after{
	opacity: 1;
	/*transform: translateY(0);*/
}
.goodsCategory{
	color: #fff;
	padding: 0.2em;
	margin-bottom: 0.3em;
}
/*イベント開催記念///////////*/
/*.itemBox.event{
	background-color: #ffb5d5;
}*/
.itemBox.event .goodsCategory{
	background-color: #ff99c4;
}
/*先行販売///////////*/
/*.itemBox.pre-sale{
	background-color: #b4e86f;
}*/
.itemBox.pre-sale .goodsCategory{
	background-color: var(--pink);
	color: var(--darkBlue);
	text-shadow: none;
}
/*既存商品///////////*/
/*.itemBox.old{
	background-color: #9bcdf9;
}*/
.itemBox.old .goodsCategory{
	background-color: #79b5f2;
}
/*///////////*/
.itemBox.only .goodsCategory{
}
/*///////////*/


.price{
	text-align: right;
	/*font-weight: bold;*/
	background-color: var(--red);
	color: #fff;
	padding: 0 0.3em;
	position: relative;
}

ul.list{
	margin-left: 1em;
}
ul.list li{
	text-indent: -1em;
	margin: 0.5em 0;
}
.memo{
	color: var(--red);
	font-weight: bold;
}
@media (max-width: 1024px) {

#goods_list .boxReset{
	grid-template-columns:repeat(3, 1fr);
}
}
@media (max-width: 786px) {

#goods_list .boxReset{
	grid-template-columns:repeat(2, 1fr);
}
}
@media (max-width: 480px) {

#goods_list .boxReset{
	grid-template-columns:repeat(1, 1fr);
}
}
