/****************************************
		2. レイアウト
*****************************************/
/*
フォント
*/
@import url('https://fonts.googleapis.com/earlyaccess/sawarabimincho.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Orbitron:wght@400..900&family=Shippori+Mincho&display=swap');

/*==================
goods
==================*/
#goods_wrap{
    width: 100%;
    margin: 0 auto;
    padding: 0 0 2.0em 0;
    max-width: 1100px;
}
.goodsWrap {
	text-align: left;
	display: grid;
	grid-template-columns:repeat(3, 1fr);
	column-gap: 0.5em;
	row-gap: 1em;
	padding: 1em 0 0;
    
}
.itemBox{
	padding: 0;
	font-size: 0.8em;
	position: relative;
	background-color: #000;
	color: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    
}
.itemBox img{
    box-sizing: border-box;
    margin-bottom: 5px;
    border-radius: 5px;
    overflow: hidden;
    border: double 3px #fff;
}
.itemBox img,.itemBox{
	margin: 0;
	padding: 0;
	font-weight: normal;
	list-style-type: none;
	box-sizing: border-box;
	width: 100%;
}
.itemBox .new{
	text-align: center;
	background-color:var(--red);
	color: #fff;
}
.itemBox .new:before{
	content: none;
}

.itemBox a:hover{
	background-color:transparent;
}
.image{
	padding: 0.5em 0.5em 0;
	position: relative;
}
.itemBox a{
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.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-color: rgba(133,237,226,0.60);
    border-radius: 5px;
	
}
.itemBox a:hover:before{
	width: 100%;
}
.itemBox a:after{
	content: "more";
    font-weight: bold;
	position: absolute;
	line-height: 1.5em;
	height: 1.5em;
	letter-spacing: 1px;
	width: 100%;
    background-color: #000;
	text-align: center;
	top:50%;
	left:0%;
	color: #fff;
	z-index: 2;
	display:block;
	opacity: 0;
	transition: all 0.2s 0s ease-out;
}
.itemBox a:hover:after{
	opacity: 1;
}
.goodsCategory{
	color: #fff;
	padding: 0.2em 0;
	margin-bottom: 0.3em;
}
.memo{
    position: absolute;
    top: -1%;
    right: -1%;
    background-color: #85ede2;
    color: #000;
    padding: 0.3em;
    border: 2px solid #000;
}
.num{
    position: absolute;
    bottom: 0;
    left: 0em;
    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: #85ede2;
    border-radius: 50%;
    color: #000;
    text-shadow: none;
    transform: scale(0.9);
}
.itemBox h4{
	padding: 0.5em;
	line-height: 1.5em;
	border-bottom: #fff 2px dotted;
}
.price{
	text-align: right;
	font-weight: bold;
	border-top: var(--darkTxt) 1px solid;
	padding: 0.5em;
}

ul.list{
	margin-left: 1em;
}
ul.list li{
	text-indent: -1em;
	margin: 0.5em 0;
}
.br2{}
.limited{
    border: #fff double 3px;
    padding: 0.3em;
    font-size: 1.2em;
    margin: 0.3em 0;
}
/*//////////////////////////////////////////////////////////////////////*/
@media screen and (max-width: 768px) {
/*==================
goods
==================*/
    .goodsWrap {
	grid-template-columns:repeat(2, 1fr);
}
    
}/*max-width: 768px*/


/*//////////////////////////////////////////////////////////////////////*/
@media screen and (max-width: 480px) {
}/*media:480*/