section.booking_table {
	width: 100%;
	max-width: 1400px;
	margin: 50px auto;
}

.booking_table .inner {
	margin: 0;
}

.booking_table .page-title {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.date-sat {
	background: #0070fb38 !important;
}
.date-sun {
	background: #ff000040 !important;
}

.table-wrap {
	max-width: none;
	overflow: visible;
}

.scroller {
	overflow-x: visible;
}

.hscroll-table {
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
	font-size: 15px;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-top: 2px solid;
}

/* 셀 공통 */
.hscroll-table th,
.hscroll-table td {
	box-sizing: border-box;
	padding: 15px;
	height: 44px;
	background: #fff;
	text-align: center;
	border-right: 1px solid #eee;
}
.hscroll-table th:last-child,
.hscroll-table td:last-child {
	border-right: none;
}

/* 헤더 고정 */
.hscroll-table thead th {
	position: sticky;
	top: 0;
	background: #f7f9fc;
	font-weight: 600;
}

.hscroll-table thead th span {
	display: block;
}


/* 왼쪽 고정 열 */
.row-head {
	width: 150px;
	text-align: left;
}
.sticky-left {
	position: sticky;
	left: 0;
	z-index: 3;
	background: #fff;
}

/* PC 날짜 폭 : 왼쪽 150px 제외한 나머지를 14개로 균등 분배 */
.hscroll-table thead th:not(.row-head),
.hscroll-table tbody td {
	width: calc((100% - 150px) / 14);
	min-width: 0;
	max-width: none;
	white-space: nowrap;
}

@media (max-width: 1199px) {
	.booking_table .page-title {
		width: 90%;
		margin: 20px auto;
	}

	.table-wrap {
		max-width: 100%;
		overflow: hidden;
		margin: auto;
	}

	.scroller {
		overflow-x: auto; 
		-webkit-overflow-scrolling: touch;
	}

	.hscroll-table {
		width: max-content;
		table-layout: fixed;
		font-size: 13px;
	}

	/* 스크롤 단위(폭 110px) */
	.hscroll-table thead th:not(.row-head),
	.hscroll-table tbody td {
		width: 90px;
		min-width: 90px;
		max-width: 90px;
		white-space: nowrap;
	}

	.hscroll-table th,
	.hscroll-table td {
		padding: 0;
	}

	.row-head {
		width: 90px;
	}
}




.main_bottom {
    display: flex;
	width: 1400px;
	margin: 50px auto;
	gap: 80px;
}

.main_bottom>section {
    width: 50%;
}

section.banner_bottom .title {
    text-align: left;
}

section.banner_bottom .flex_wrap {
	display: flex;
	gap: 50px;
	height: 250px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    justify-content: center;
    align-items: center;
}

section.banner_bottom .flex_wrap .img_box {
    width: 180px;
    height: 180px;
    box-sizing: border-box;
    border-radius: 100px;
    background: #f5f5f5;
	text-align: center;
    align-content: center;
}


section.banner_bottom .flex_wrap img {
	width: 70%;
    height: 70%;
    object-fit: contain;
}

.banner_bottom .title {
	text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
	margin-bottom: 20px;
}

.banner_bottom .title i {
    font-size: 20px;
}

.banner_bottom ul {
	display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner_bottom a {
	background: #8cc11d78;
	padding: 10px 15px;
	box-sizing: border-box;
	border-radius: 50px;
	display: block;
	width: fit-content;
	font-size: 14px;
	letter-spacing: 0.1rem;
	font-weight: bold;
}

.banner_bottom a i {
	margin-right: 10px;
}



@media (max-width: 768px) {
	.main_bottom {
		gap: 50px;
		width: 90%;
		flex-direction: column;
	}

	.main_bottom>section {
		width: 100%;
	}

	section.banner_bottom .flex_wrap {
		height: 200px;
	}

	section.banner_bottom .flex_wrap .img_box {
		width: 100px;
		height: 100px;
		display: none;
	}

	.banner_bottom .title {
		justify-content: center;
	}

	.banner_bottom ul {
		flex-direction: column;
		gap: 10px;
	}

	.banner_bottom a {
		padding: 10px;
		width: 170px;
        font-size: 13px;
        text-align: center;
	}
}