/* 式場一覧ページ */

.page-template-page-venue-list #content.site-content {
	flex-direction: column;
}

.venue-list-section {
	background: #fef5f0;
	min-height: 80vh;
}

.venue-list-title {
	font-size: 28px;
	font-weight: bold;
	color: #f18849;
	margin-bottom: 12px;
}

.venue-list-intro {
	font-size: 15px;
	color: #666;
	margin-bottom: 40px;
	line-height: 1.8;
}

/* エリアから選ぶナビ */
.venue-area-nav {
	background: #fff;
	border-radius: 12px;
	padding: 20px 24px;
	margin-bottom: 32px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.venue-area-nav-label {
	font-size: 15px;
	font-weight: bold;
	color: #f18849;
	margin-bottom: 12px;
}

.venue-area-nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.venue-area-nav-list li a {
	display: inline-block;
	font-size: 13px;
	padding: 4px 14px;
	border-radius: 20px;
	border: 1px solid #f18849;
	color: #f18849;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}

.venue-area-nav-list li a:hover {
	background: #f18849;
	color: #fff;
}

/* エリアブロック */
.venue-area {
	margin-bottom: 32px;
	background: #fff;
	border-radius: 12px;
	padding: 20px 24px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.venue-area-title {
	font-size: 17px;
	font-weight: bold;
	color: #fff;
	background: #f18849;
	display: inline-block;
	padding: 4px 20px;
	border-radius: 20px;
	margin-bottom: 16px;
}

/* 式場リスト */
.venue-area-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.venue-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 8px 10px;
	border-left: 3px solid #f18849;
}

.venue-name {
	font-size: 14px;
	font-weight: bold;
	color: #333;
	line-height: 1.5;
}

.venue-address {
	font-size: 12px;
	color: #888;
	line-height: 1.5;
}

/* ホームへ戻るボタン（hall-list共通） */
.hall-list-back {
	text-align: center;
	margin-top: 16px;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
	.venue-area-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 480px) {
	.venue-area-list {
		grid-template-columns: 1fr;
	}

	.venue-area {
		padding: 16px;
	}
}
