/**
 * Shop List Page Styles (店舗一覧)
 *
 *
 * @package Okayama
 */





.shop-list {
	padding: 80px 0 0;
}

.shop-list__inner {
	max-width: 1100px;
	margin: 0 auto;
}



.shop-list__desc {
	text-align: center;
	font-size: 16px;
	line-height: 2;
	color: var(--portal-text);
	margin: 0 auto 68px;
	max-width: 600px;
}



.shop-list__filters {
	display: flex;
	gap: 25px;
	margin-bottom: 40px;
}

.shop-list__filter-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 200px;
	height: 60px;
	background-color: var(--portal-white);
	border-radius: 10px;
	padding: 0 14px;
	transition: opacity 0.3s ease;
}

.shop-list__filter-btn:hover {
	opacity: 0.7;
}

.shop-list__filter-name {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--portal-text);
}

.shop-list__filter-arrow {
	flex-shrink: 0;
}



.shop-list__station {
	margin-bottom: 100px;
}

.shop-list__station:last-child {
	margin-bottom: 0;
}

.shop-list__station-header {
	margin-bottom: 32px;
}

.shop-list__station-name {
	font-size: 35px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--portal-text);
	margin: 0 0 10px;
}

.shop-list__station-line {
	width: 100%;
	height: 1px;
	background-color: var(--portal-gray);
}



.shop-list__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}



.shop-list__card {
	display: flex;
	flex-direction: column;
	color: var(--portal-text);
	transition: opacity 0.3s ease;
}

a.shop-list__card:hover {
	opacity: 0.85;
}


.shop-list__card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}

.shop-list__card-image img,
.shop-list__card-img-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shop-list__card-img-placeholder {
	background-color: var(--portal-gray);
}


.shop-list__card-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	background-color: var(--portal-white);
	border-radius: 0 0 10px 10px;
	padding: 20px;
	min-height: 206px;
}

.shop-list__card-category {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	white-space: nowrap;
}

.shop-list__card-name {
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
	color: var(--portal-text);
	text-align: center;
	margin: 0;
	width: 100%;
}

.shop-list__card-location {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--portal-text);
	text-align: center;
	margin: 0;
}

.shop-list__card-hours {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--portal-text);
}

.shop-list__card-clock {
	flex-shrink: 0;
}



.shop-list__search-section {
	padding-top: 100px;
	margin: 0 auto;
}



.shop-list__no-results {
	text-align: center;
	padding: 40px 0;
	width: 100%;
	font-size: 16px;
	line-height: 2;
	color: var(--portal-text);
	margin: 0;
}



.shop-list__banner-wrap {
	display: flex;
	justify-content: center;
	padding: 100px 0;
}



@media (max-width: 1024px) {

	.shop-list__inner {
		padding: 0 40px;
	}

	.shop-list__filters {
		flex-wrap: wrap;
		gap: 15px;
	}

	.shop-list__filter-btn {
		width: calc(33.333% - 10px);
		min-width: 180px;
	}

	.shop-list__search-section {
		padding-left: 40px;
		padding-right: 40px;
	}
}



@media (max-width: 768px) {

	.shop-list {
		padding: 60px 5% 0;
	}

	.shop-list__inner {
		max-width: none;
		padding: 0;
	}

	.shop-list__desc {
		font-size: 14px;
		margin-bottom: 40px;
	}


	.shop-list__filters {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		margin-bottom: 24px;
	}

	.shop-list__filter-btn {
		width: auto;
		height: 40px;
		border-radius: 8px;
		padding: 0 10px;
	}

	.shop-list__filter-name {
		font-size: 18px;
	}

	.shop-list__filter-arrow {
		width: 16px;
		height: 16px;
	}


	.shop-list__station {
		margin-bottom: 60px;
	}

	.shop-list__station-header {
		margin-bottom: 24px;
	}

	.shop-list__station-name {
		font-size: 23px;
		color: var(--portal-blue);
	}


	.shop-list__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}


	.shop-list__card-image {
		height: 97px;
	}

	.shop-list__card-info {
		align-items: flex-start;
		padding: 10px 8px;
		min-height: auto;
	}

	.shop-list__card-category {
		font-size: 12px;
	}

	.shop-list__card-name {
		font-size: 14px;
		text-align: left;
	}

	.shop-list__card-location {
		font-size: 14px;
		text-align: left;
	}

	.shop-list__card-hours {
		font-size: 14px;
	}


	.shop-list__search-section {
		padding-top: 60px;
		padding-left: 0;
		padding-right: 0;
	}


	.shop-list__no-results {
		font-size: 14px;
	}


	.shop-list__banner-wrap {
		padding: 60px 5%;
	}
}
