@charset "utf-8";

/*----------------------------
	shopnews
------------------------------*/

.shopnews .contArea {
	padding: calc((80 / 16) * 1rem) 0 calc((150 / 16) * 1rem);
	overflow: hidden;
}
.shopnews h1 {
	font-size: calc((40 / 16) * 1rem);
	font-family: "Zen Old Mincho", serif;
	text-align: center;
	letter-spacing: calc((2 / 16) * 1rem);
}
.shopnews .ttlJp {
	margin-top: calc((2 / 16) * 1rem);
	font-size: calc((14 / 16) * 1rem);
	font-weight: 500;
	text-align: center;
	color: var(--greenColor);
}
@media (max-width: 768px) {
	.shopnews .contArea {
		padding: calc((50 / 16) * 1rem) 0 calc((100 / 16) * 1rem);
	}
	.shopnews h1 {
		font-size: calc((36 / 16) * 1rem);
	}
	.shopnews .ttlJp {
		margin-top: calc((2 / 16) * 1rem);
		font-size: calc((12 / 16) * 1rem);
	}
}

/* shopnewsList */
.shopnews .shopnewsList {
	margin-top: calc((100 / 16) * 1rem);
	display: flex;
	flex-wrap: wrap;
	gap: calc((100 / 16) * 1rem) 1.6%;
}
.shopnews .shopnewsList li {
	width: 23.777%;
}
.shopnews .shopnewsList li a {
	display: block;
	position: relative;
}
.shopnews .shopnewsList .new {
	display: inline-block;
	font-size: calc((14 / 16) * 1rem);
	font-weight: 700;
	color: var(--whiteColor);
	background-color: var(--redColor);
	border-radius: 0 calc((2 / 16) * 1rem) calc((2 / 16) * 1rem) 0;
	padding: calc((1 / 16) * 1rem) calc((20 / 16) * 1rem);
	position: absolute;
	top: calc((10 / 16) * 1rem);
	left: 0;
	z-index: 5;
}
.shopnews .shopnewsList li .pic {
	aspect-ratio: 285 / 252;
	overflow: hidden;
}
.shopnews .shopnewsList li .pic img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: calc((6 / 16) * 1rem);
}
.shopnews .shopnewsList .labelBox {
	margin-top: calc((18 / 16) * 1rem);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.shopnews .shopnewsList .place {
	width: 2em;
	font-size: calc((12 / 16) * 1rem);
	font-weight: 500;
	color: var(--greenColor);
}
.shopnews .shopnewsList .cat {
	display: inline-block;
	font-size: calc((12 / 16) * 1rem);
	font-weight: 500;
	color: var(--greenColor);
	border: solid 1px var(--greenColor);
	border-radius: calc((2 / 16) * 1rem);
	padding: calc((1 / 16) * 1rem) calc((10 / 16) * 1rem) calc((2 / 16) * 1rem);
}
.shopnews .shopnewsList .name {
	margin-top: calc((10 / 16) * 1rem);
	font-size: calc((14 / 16) * 1rem);
}
.shopnews .shopnewsList .ttl {
	margin-top: calc((10 / 16) * 1rem);
	font-weight: 500;
}
.shopnews .shopnewsList .date {
	margin-top: calc((10 / 16) * 1rem);
	font-size: calc((14 / 16) * 1rem);
}
@media (max-width: 768px) {
	.shopnews .shopnewsList {
		margin-top: calc((60 / 16) * 1rem);
		justify-content: space-between;
		gap: calc((30 / 16) * 1rem) 0;
	}
	.shopnews .shopnewsList li {
		width: 48.575%;
	}
	.shopnews .shopnewsList .new {
		font-size: calc((11 / 16) * 1rem);
		padding: calc((1 / 16) * 1rem) calc((15 / 16) * 1rem);
		top: calc((8 / 16) * 1rem);
	}
	.shopnews .shopnewsList li .pic {
		aspect-ratio: 170 / 150;
	}
	.shopnews .shopnewsList .labelBox {
		margin-top: calc((15 / 16) * 1rem);
	}
	.shopnews .shopnewsList .cat {
		font-size: calc((11 / 16) * 1rem);
		padding: calc((1 / 16) * 1rem) calc((8 / 16) * 1rem) calc((2 / 16) * 1rem);
	}
	.shopnews .shopnewsList .name {
		font-size: calc((13 / 16) * 1rem);
	}
	.shopnews .shopnewsList .date {
		font-size: calc((13 / 16) * 1rem);
	}
}