/* ------------------ Flyer ------------------ */
.flyer-list {
	width: 100%;
	display: flex;
	justify-content: center;
	position: relative;
	gap: 55px;
	flex-wrap: wrap;
}
.flyer-list-item {
	width: 400px;
	display: flex;
	flex-flow: column;
	gap: 20px;
	align-items: center;
	overflow: hidden;
	position: relative;
	transition: all ease 0.33s;
}
.flyer-list-item > figure {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	aspect-ratio: 400 / 566;
}

.flyer-list-item:hover {
	opacity: 0.6;
}
.flyer-list-item:hover > figure > img {
	transform: scale(1.05);
}

.flyer-list-item-note {
	width: 100%;
	text-align: center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}

@media screen and (max-width: 999px) {
	.flyer-list {
		gap: 20px;
		flex-wrap: nowrap;
		flex-flow: column;
	}
	.flyer-list-item {
		width: 100%;
		gap: 10px;
	}

	.flyer-list-item-note {
		font-size: 12px;
	}
}

/* ------------------ Shop place ------------------ */
.shop-place-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.shop-place-grid .card-grid-item > div {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}
.shop-place-grid .card-grid-item > div > span {
	width: 118px;
	display: flex;
	flex-flow: column;
	align-items: center;
	background: #3a4652;
	color: #fefefe;
	border-radius: 5px;
	overflow: hidden;
	flex-shrink: 0;
	font-size: 14px;

	padding: 8px 10px;
	letter-spacing: 0;
	text-wrap: nowrap;
}

.shop-place-grid .card-grid-item > div > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 10px;
}
.shop-place-grid .card-grid-item > div > div > p {
	width: 100%;
	display: flex;
	align-items: baseline;
	gap: 10px;
	font-size: 14px;
}
.shop-place-grid .card-grid-item > div > div > span {
	font-size: 12px;
	letter-spacing: 0;
	text-wrap: nowrap;
}

@media screen and (max-width: 1600px) {
	.shop-place-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media screen and (max-width: 999px) {
	.shop-place-grid .card-grid-item > div {
		gap: 10px;
		flex-flow: column;
	}
	.shop-place-grid .card-grid-item > div > span {
		font-size: 12px;
		padding: 5px 10px;
	}

	.shop-place-grid .card-grid-item > div > div > span {
		text-wrap: wrap;
		line-height: 1.4;
	}
}

/* ------------------ Items ------------------ */
.goods-items-list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 50px;
	column-gap: 22px;
	overflow: hidden;
}
.card-goods-items {
	display: flex;
	flex-flow: column;
	width: 100%;
	gap: 15px;
	align-items: center;
	justify-content: flex-start;
}
.card-goods-items > figure {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	aspect-ratio: 311 / 280;
	flex-shrink: 0;
}
.card-gi-body {
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 15px;
}
.card-gi-ttl {
	width: 100%;
	text-align: center;
	font-size: 20px;
 min-height: 40px;
 line-height: 1.3;
}
.card-gi-price {
	width: 100%;
	text-align: center;
	font-size: 20px;
	color: #e4572e;
 min-height: 40px;
}
.card-gi-venue {
	width: 100%;
	text-align: center;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 1.5;
}

@media screen and (max-width: 1400px) {
	.goods-items-list {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 20px;
		column-gap: 15px;
	}
}
@media screen and (max-width: 1200px) {
	.goods-items-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 999px) {
	.card-gi-body {
		gap: 10px;
		justify-content: flex-start;
	}
	.card-gi-ttl {
		font-size: 14px;
  min-height: auto;
	}
	.card-gi-price {
		font-size: 16px;
  min-height: auto;
	}
	.card-gi-venue {
		font-size: 14px;
	}
}
