@charset "utf-8";

* {
	box-sizing: border-box;
}

body {
	margin: 0;
}

.greyBg {
	background-color: #fafafa;
	flex: 1;
}

.container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 16px 16px 64px;
}

/* breadcrumb */
.breadcrumb ul{
	margin: 6 0 0 0;
	padding: 0;
	list-style: none;
	font-size: 0.9rem;
	color: #666;
}

.breadcrumb li {
	display: inline;
}

.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	font-size: 0.7rem;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb a {
	text-decoration: none;
	color: inherit;
}

/* formArea */
.formArea {
	margin-top: 32px;
}

form {
	display: flex;
	gap: 16px;
}

form .selecter {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

form select {
	font-size: 0.9rem;
	padding: 6px;
	width: 200px;
}

form button {
	cursor: pointer;
	width: 60px;
	height: 40px;
	margin: auto 0 0 0;
}

/* ページング
---------------------------------------------- */
section.pager {
	padding: 10px;
	background-color: #fafafa;
	text-align: right;
}
section.pager .number {
	display: inline-block;
}

section.pager ul {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
}

section.pager ul li {
	display:inline-block;
	min-width:17px;
	margin:0 5px 0 0;
	padding:0;
	line-height:1em;
}

section.pager ul li.disabled {
	color:#cccccc!important;
	padding:5px!important;
}

section.pager ul li.currentpage {
	color:#FF6600!important;
	font-weight: bold;
	padding:5px!important;
}
		
section.pager ul li a {
	display:block;
	padding:5px;
	text-decoration:none;
}
		
section.pager ul li a:link { color:#333333; }
section.pager ul li a:visited { color:#333333; }
section.pager ul li a:hover { color:#F60;}

/* main */
main {
	display: flex;
	flex-wrap: wrap;
	margin-top: 32px;
	margin-bottom: 32px;
	gap: 24px;
	width: 100%;
}

.productCard {
	width: 100%;
}

.productCard a {
	display: flex;
	flex-direction: column;
	box-shadow: 0 0 2px rgb(0 0 0 / 0.2);
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.productCard .cardImg {
	background-image: url(../../asset/bg.png);
	background-repeat: no-repeat;
	text-align: center;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.productCard .cardImg img {
	vertical-align: bottom;
	height: 100% !important;
	width: 100% !important;
	object-fit: contain;
}

.productCard .cardBottom {
	background-color: #fff;
	padding: 8px;
	line-height: 2.0;
	color: #222;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.productCard .cardBottom .productName {
	font-size: 1.4rem;
}

.productCard .cardBottom .productPrice {
	font-size: 1.4rem;
	text-align: center;
	color: red;
}

.productCard .cardBottom .productStock {
	text-align: right;
}

/* 商品がありませんエリア */
.notextWrap {
	width: 100%;
}

.notextcard {
	background-color: #fff;
	box-shadow: 0 0 2px rgb(0 0 0 / 0.2);
	border-radius: 10px;
	padding: 36px 16px 48px 16px;
	text-align: center;
}

@media (min-width: 590px) {
	.productCard {
		width: calc((100% - 36px) / 2);
	}

}

@media (min-width: 900px) {
	.productCard {
		width: calc((100% - 36px * 2) / 3);
	}

	form .selecter {
		flex-direction: row;
	}
}

