/* =========================
   SHOP ARCHIVE
========================= */
.shop-archive {
	padding: 80px 20px;
	background: #f8f4ec;
}

/* =========================
   ARCHIVE HERO
========================= */
.archive-hero {
	margin-bottom: 60px;
	text-align: center;
}

.archive-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.archive-description {
	margin-top: 15px;
	font-size: 16px;
	color: #666;
	line-height: 1.8;
}

/* =========================
   SECTION TITLE
========================= */
.section-title {
	text-align: center;
	margin-bottom: 30px;
}

.section-title span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .2em;
	color: #8b6f3d;
	text-transform: uppercase;
}

.section-title span i {
	font-size: 16px;
}

.section-title h1,
.section-title h2 {
	margin-top: 12px;
	font-size: 38px;
	font-weight: 700;
	color: #2f2f2f;
}

/* =========================
   SHOP GRID
========================= */
.shop-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 35px;
	max-width: 1200px;
	margin: 0 auto;
}

/* =========================
   SHOP CARD
========================= */
.shop-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
	transition: .3s;
}

/*.shop-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}*/

.shop-card a {
	display: block;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

/* =========================
   CARD HEADER
========================= */
.shop-card-header {
	padding: 25px 30px 15px;
	border-bottom: 1px solid #864500;
	background: #fff3c6;
}
.shop-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.shop-title h2 {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	color: #8c5646;
}
.shop-title h2 a {
	transition: 300ms;
}
.shop-title h2 a:hover {
	color: #c94b4b;
}
.shop-area span {
	display: inline-block;
	padding: 5px 15px;
	border-radius: 999px;
	background: #b8860b;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}
/* =========================
   CARD BODY
========================= */
.shop-card-body {
	display: grid;
	grid-template-columns: 45% 55%;
	gap: 25px;
	padding: 25px 30px;
	align-items: center;
}
.shop-card-body .shop-info {
	padding: 10px;
}
/* =========================
   IMAGE
========================= */
.shop-image {
	border-radius: 15px;
	overflow: hidden;
	background: #eee;
}

.shop-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: 300ms;
}
.shop-card:hover .shop-image img {
	transform: scale(1.08);
}

/* =========================
   SHOP INFO
========================= */
.shop-info ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.shop-info li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 1.6em;
	color: #333;
}

.shop-info li i {
	width: 20px;
	color: #b8860b;
	font-size: 16px;
	margin-top: 5px;
}

/* =========================
   FOOTER
========================= */
.shop-card-footer {
	padding: 0 30px 30px;
}

.shop-card-footer p {
	margin: 0;
	line-height: 2;
	color: #555;
	font-size: 15px;
	min-height: 30px;
}

/* =========================
   BUTTON
========================= */
.shop-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 320px;
	margin: 20px auto 0;
	padding: 14px 28px;
	border-radius: 999px;
	background: #2f5d2a;
	color: #fff;
	font-weight: 700;
	text-align: center;
	transition: .3s;
}

/* カードにカーソルを乗せたら赤 */
.shop-card:hover .shop-btn {
	background: #c94b4b;
}

/* 矢印も右へ */
/*.shop-card:hover .shop-btn i {
	transform: translateX(5px);
}*/

.shop-btn i {
	transition: .3s;
}

/* =========================
   PAGINATION
========================= */
.archive-pagination {
	margin-top: 70px;
	text-align: center;
}

.archive-pagination .nav-links {
	display: inline-flex;
	gap: 10px;
	flex-wrap: wrap;
}

.archive-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #fff;
	color: #2f5d2a;
	font-weight: 700;
	text-decoration: none;
	transition: .3s;
}

.archive-pagination .page-numbers:hover,
.archive-pagination .current {
	background: #2f5d2a;
	color: #fff;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {

	.shop-grid {
		grid-template-columns: 1fr;
	}

}

/* =========================
   SMART PHONE
========================= */
@media (max-width: 768px) {

	.shop-archive {
		padding: 50px 15px;
	}

	.section-title h1,
	.section-title h2 {
		font-size: 30px;
	}

	.shop-card-header {
		padding: 20px;
	}

	.shop-title {
		flex-direction: column;
		align-items: flex-start;
	}

	.shop-title h2 {
		font-size: 24px;
	}

	.shop-card-body {
		grid-template-columns: 1fr;
		padding: 20px;
	}
	.shop-info {
		padding: 15px;
	}
	.shop-image img {
		height: 230px;
	}

	.shop-card-footer {
		padding: 0 20px 20px;
	}

	.shop-card-footer p {
		min-height: auto;
	}

	.shop-btn {
		width: 100%;
		justify-content: center;
	}

}