@charset "UTF-8";
/* CSS Document */

/* =================================
  ●まんぷくフェア
================================= */


/*///////////////////////////////////////////////
背景
///////////////////////////////////////////////*/


div#wrapper_fair {
	background: url(../images/bg_fair.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

/* セクションタイトル */
.contents__title_fair {
	margin-block: 80px 60px;
	padding: clamp(20px, 2.2vw, 24px);
	color: #fff;
	text-align: center;
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: 700;
	letter-spacing: 0.04em;
	background-color: #e43d00;
}

@media screen and (max-width: 768px) {
	.contents__title_fair {
		margin-block: 40px 30px;
	}

}

/*//////////////////////////////////////
商品一覧
//////////////////////////////////////*/

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 32px);
}

@media screen and (max-width: 768px) {
	.product-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

.product-card {
	display: flex;
	flex-direction: column;

	padding: clamp(20px, 3vw, 30px);

	border: 1px solid #d8b54a;
	border-radius: 6px;

	background: #fff;
}

.product-card__image {
	display: flex;
	align-items: center;
	justify-content: center;

	min-height: 280px;
	margin-bottom: 24px;
}


.product-card__image img {
	display: block;
	width: 100%;
	max-width: 420px;
	height: auto;
	object-fit: contain;
	border-radius: 20px;
}

.product-card__title {
	margin: 0 0 18px;
	padding: 18px 10px;

	border-top: 1px solid #d8b54a;
	border-bottom: 1px solid #d8b54a;
	background-color: #fef8ee;
	color: #7b3e32;

	text-align: center;
	font-size: clamp(15px, 1.6vw, 18px);
}

.product-card__price {
	margin-bottom: 12px;
	color: #e43d00;
	text-align: center;
}

.product-card__price strong {
	font-size: clamp(22px, 2.5vw, 30px);
}

.product-card__price span {
	font-size: 13px;
	font-weight: bold;

}

.product-card__text {
	margin: 0 0 28px;
	font-size: clamp(13px, 1.4vw, 15px);
	line-height: 1.8;
}

.product-card__shop {
	margin-top: auto;
	margin-bottom: 0;

	text-align: center;
	font-size: 13px;
	font-weight: 600;
}



p.sizeup {
	text-align: center;
	color: #fff;
	font-weight: bold;
	background-color: #e43d00;
	border-radius: 100px;
	padding-block: 10px;
}


span.Note {
	color: #d00202;
	font-size: clamp(13px, 1vw, 15px);
}