/* ホール一覧ページ */

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

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

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

/* 2カラムグリッド */
.hall-list-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 48px;
}

/* ホールカード */
.hall-card {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hall-card-name {
	font-size: 24px;
	font-weight: bold;
	color: #f18849;
	margin: 0;
}

.hall-card-body {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

/* サムネイル */
.hall-card-thumb {
	width: 180px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
}

.hall-card-thumb img {
	width: 180px;
	height: 130px;
	object-fit: cover;
	display: block;
}

/* 情報 */
.hall-card-info {
	flex: 1;
	min-width: 0;
}

.hall-card-address {
	font-size: 16px;
	line-height: 1.5;
	color: #555;
	margin-bottom: 14px;
}

.hall-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.hall-card-tag {
	font-size: 12px;
	padding: 3px 10px;
	border-radius: 20px;
	background: #fff5ee;
	border: 1px solid #f18849;
	color: #f18849;
	white-space: nowrap;
}

/* 詳細ボタン */
.hall-card-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #f18849;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	padding: 10px;
	border-radius: 40px;
	text-decoration: none;
	transition: opacity 0.2s;
	margin-top: auto;
}

.hall-card-btn:hover {
	opacity: 0.85;
	color: #fff;
}

/* ご利用可能な式場一覧 */
.hall-venue-card {
	display: flex;
	gap: 32px;
	align-items: center;
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hall-venue-img {
	width: 200px;
	flex-shrink: 0;
}

.hall-venue-img img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.hall-venue-info {
	flex: 1;
}

.hall-venue-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-bottom: 8px;
}

.hall-venue-text {
	font-size: 13px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 16px;
}

.hall-venue-btn {
	padding: 10px 32px;
	display: inline-flex;
	width: auto;
}

/* ホームへ戻るボタン */
.hall-list-back {
	text-align: center;
}


/* レスポンシブ */
@media screen and (max-width: 768px) {
	.hall-list-grid {
		grid-template-columns: 1fr;
	}
	.hall-card-body {
		flex-direction: column;
	}

	.hall-card-slider {
		width: 140px;
	}

	.hall-card-slider .swiper-slide img {
		width: 140px;
		height: 100px;
	}

	.hall-venue-card {
		flex-direction: column;
		gap: 16px;
	}

	.hall-venue-img {
		width: 100%;
	}

	.hall-venue-img img {
		height: 180px;
	}
	.hall-card-thumb {
		width: unset;
	}
	.hall-card-thumb img {
		width: unset;
		height: unset;

	}
}
