/* ホール詳細ページ */

/* GeneratePressのsidebar無効化（full width） */
.page-template-page-hall-detail #content.site-content {
	flex-direction: column;
}

/* ホール名 */
.hall-detail-title {
	font-size: 36px;
	font-weight: bold;
	color: #f18849;
	margin-bottom: 0;
}

/* 写真スライダー */
.hall-photo-section {
	width: 100%;
	padding: 20px 0 40px;
}

.hall-photo-swiper {
	width: 100%;
	position: relative;
}

.hall-photo-swiper .swiper-slide img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	display: block;
}

.hall-photo-prev,
.hall-photo-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: #e8a020;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hall-photo-prev { left: 16px; }
.hall-photo-next { right: 16px; }

.hall-photo-pagination {
	text-align: center;
	margin-top: 16px;
}

.hall-photo-pagination .swiper-pagination-bullet {
	background: #e8a020;
	opacity: 0.4;
}

.hall-photo-pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.hall-photo-swiper .swiper-slide img {
		height: 220px;
	}
}

/* 基本情報 */
.hall-section-title {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 32px;
	padding-bottom: 8px;
	border-bottom: 2px solid #eee;
}

.hall-kihon-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.kihon-item {
	margin-bottom: 28px;

	> p > span {
		font-size: 16px;
		padding-left: 20px;
		padding-top: 20px;
	}
}

.kihon-label {
	display: inline-block;
	background: #f18849;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	padding: 6px 20px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.kihon-item p {
	line-height: 1.5;
	color: #333;
	margin-bottom: 12px;
	font-size: 18px;
}

.hotel-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
}

.hotel-list li {
	font-size: 18px;
	color: #333;

	a {
		text-decoration: none;
		&:hover {
			text-decoration: underline;
		}
	}
}

.hotel-list li::before {
	content: '・';
}

.hotel-list a {
	color: #333;
	text-decoration: underline;
}

.map-open-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
	font-size: 14px;
	padding: 6px 16px;
	border-radius: 4px;
	text-decoration: none;
	margin-bottom: 12px;
}

.map-open-btn:hover {
	background: #f5f5f5;
	color: #333;
}

.map-embed iframe {
	width: 100%;
	height: 360px;
	border: none;
	display: block;
}

.map-placeholder {
	width: 100%;
	height: 360px;
	background: #e8e8e8;
	border-radius: 4px;
}

@media screen and (max-width: 768px) {
	.hall-kihon-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* 施設概要 */
.hall-shisetsu-section {
	background: #fff;
}

/* 設備アイコン */
.facility-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin-bottom: 48px;
}

.facility-icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 80px;
}

.facility-icon-box {
	width: 72px;
	height: 72px;
	background: #f18849;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
}

.facility-icon-label {
	font-size: 12px;
	text-align: center;
	color: #333;
	line-height: 1.4;
}

/* フロア別ホール情報 */
.rooms-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-bottom: 16px;
}

.room-block {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.room-floor {
	display: inline-block;
	background: #f18849;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	padding: 2px 16px;
	border-radius: 20px;
	align-self: flex-start;
	margin-bottom: 20px;
}

.room-name {
	font-size: 20px;
	font-weight: bold;
	color: #333;
}

.room-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
}

.room-table th,
.room-table td {
	border: 1px solid #f18849;
	padding: 8px 16px;
}

.room-table th {
	text-align: center;
	background: #fff5ee;
	color: #333;
	width: 80px;
}

.room-table td {
	color: #333;
}

.room-note {
	font-size: 13px;
	color: #777;
	margin-top: 8px;
}

@media screen and (max-width: 768px) {
	.rooms-grid {
		grid-template-columns: 1fr;
	}
}

/* 特徴ハイライト */
.hall-highlights-section {
	background: #fff;
}

.highlights-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 48px;
}

.highlight-title {
	font-size: 22px;
	font-weight: bold;
	color: #f18849;
	margin-bottom: 8px;
}

.highlight-text {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
}

@media screen and (max-width: 768px) {
	.highlights-grid {
		grid-template-columns: 1fr;
	}
}

/* 他のホールも見る */
.hall-others-section {
	background: #fff;
}

.hall-others-title {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin-bottom: 32px;
}

.hall-others-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.hall-other-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #f18849;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	padding: 10px 24px;
	border-radius: 40px;
	text-decoration: none;
	transition: background 0.2s;
}

.hall-other-btn:hover {
	background: #d4911a;
	color: #fff;
}

.hall-others-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.hall-footer-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: bold;
	padding: 10px 24px;
	border-radius: 40px;
	text-decoration: none;
	transition: background 0.2s;
}

.hall-footer-btn--green {
	background: #4da487;
	color: #fff;
}

.hall-footer-btn--green:hover {
	background: #3d8a70;
	color: #fff;
}

@media screen and (max-width: 768px) {
	.hall-others-grid,
	.hall-others-footer {
		flex-direction: column;
	}

	.hall-other-btn,
	.hall-footer-btn {
		justify-content: space-between;
	}
}
