.t_blk2 {
	margin: 0;
	padding: 0;
}

.shp_btn {
	display: inline-block;
	padding: 10px;

	color: white;
	background-color: #9acd32;
	text-align: center;
	cursor: pointer;
}

a.shp_btn {
	text-decoration: none;
}

.disable_btn {
	display: inline-block;
	padding: 10px;

	color: white;
	background-color: #006400;
	text-align: center;
	cursor: default;
}

a.disable_btn {
	text-decoration: none;
}

.shp_bar {
	width: 100%;
	height: 50px;

	background-color: #faf0e6;

	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
}

.shp_display {
	margin: 10px;

	width: calc(100% - 20px);
	/* height: calc(100% - 120px); */

	/* display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex; */
	display: flex;
	/* -webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap; */
	flex-wrap: wrap;
	/* -webkit-flex-line-pack:start;
	-moz-flex-line-pack:start;
	-webkit-align-content:flex-start;
	-moz-align-content:flex-start; */
	align-content: flex-start;

	gap: 10px;
}

.shp_pagenation {
	width: 80%;
	height: 50px;

	/* background-color: #faf0e6; */

	display: inline-flex;
	justify-content: center;
	align-items: center;
}


.shp_bar>div {
	margin: 10px;
}

#cart-icon {
	width: 120px;
	/* width: 80px; */
	height: 40px;

	border-radius: 10px;
	color: #5D7A1E;
	background-color: #9acd32;
	font-size: 1em;
	cursor: pointer;

	display: flex;
	justify-content: center;
	align-items: center;
}

#cart-icon .fa-lg {
	font-size: 0.8em;
	color: #7CA328;
}

.shp_pagenation>a {
	text-decoration: none;
}

.shp_pagenation .page_link {
	margin: 10px;

	width: 30px;
	height: 30px;

	border-radius: 5px;
	color: white;
	background-color: #9acd32;
	cursor: pointer;

	display: flex;
	justify-content: center;
	align-items: center;
}

.shp_pagenation .page_link.now {
	cursor: default;
	background-color: black;
}

.shp_display .item.normal {
	position: relative;
	width: 350px;
	height: 550px;


	border: solid 1px;
	border-radius: 10px;
	/* background-color: #faf0e6; */
}

/* サムネイル */
.item.normal img.thumbnail {
	position: absolute;
	top: 0px;
	left: 0px;

	width: 350px;
	height: 350px;
	/* object-fit: cover; */
	object-fit: contain;
	border-radius: 10px 10px 0px 0px;
}

/* 詳細ボタン */
.item.normal .detail {
	position: absolute;
	bottom: 10px;
	left: 10px;

	border-radius: 10px;
}

/* カートに入れるボタン */
.item.normal .into_cart {
	position: absolute;
	bottom: 10px;
	right: 10px;

	border-radius: 10px;
}

/* テキスト */
.item.normal .text {
	position: absolute;
	top: 260px;
	left: 0px;

	margin: 10px;
	width: 330px;
	height: 260px;

	/* background-color: #faf0e6; */
	background-color: rgba(250, 240, 230, 0.8);
	overflow: hidden;
}

/* .item .text h2 {
	background-color: #faf0e6;
} */

.item .text span {
	display: inline-block;
	padding-left: 5px;
}