/* 전역 스타일 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
	overflow-x: hidden;
	max-width: 100%;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    touch-action: pan-y;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	max-width: 100%;
}

/* 건너뛰기 메뉴 */
#jump_menu {
	position: absolute;
	left: -9999px;
}

/* 헤더 */
.header_main {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 15px 0;
}

.header_main .inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-size: 24px;
	font-weight: 700;
	color: #2c3e50;
	cursor: pointer;
}

/* PC 메뉴 */
.pc-menu {
	display: flex;
	gap: 40px;
	align-items: center;
}

.pc-menu a {
	color: #2c3e50;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	transition: color 0.3s;
	position: relative;
	padding: 5px 0;
}

.pc-menu a:hover {
	color: #e74c3c;
}

.pc-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #e74c3c;
	transition: width 0.3s;
}

.pc-menu a:hover::after {
	width: 100%;
}

#m_menu {
	display: none;
	cursor: pointer;
}

.bar1, .bar2, .bar3 {
	width: 30px;
	height: 3px;
	background-color: #333;
	margin: 6px 0;
	transition: 0.4s;
}

#m_menu.change .bar1 {
	transform: rotate(-45deg) translate(-6px, 6px);
}

#m_menu.change .bar2 {
	opacity: 0;
}

#m_menu.change .bar3 {
	transform: rotate(45deg) translate(-6px, -6px);
}

.quick_body {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100vh;
	background: white;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
	z-index: 1001;
	transition: right 0.3s ease;
	overflow-y: auto;
}

.quick_body.quick_body_open {
	right: 0;
}

.quick_head {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.close {
	cursor: pointer;
	font-size: 24px;
	color: #333;
}

.quick_menu ul {
	list-style: none;
	padding: 20px;
}

.quick_menu ul li {
	margin-bottom: 15px;
}

.quick_menu ul li a {
	display: block;
	padding: 12px 15px;
	color: #333;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s;
}

.quick_menu ul li a:hover {
	background: #f0f0f0;
	padding-left: 20px;
}

/* 섹션 공통 스타일 */
.sec_v2 {
	width: 100%;
	overflow: hidden;
}

.sec0 {
	height: 50vh;
	margin-top: 60px;
	overflow: visible;
}

.sec1, .sec2, .sec3 {
	padding: 60px 0;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
}

.container h1 {
	text-align: center;
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 40px;
	font-weight: 700;
	letter-spacing: 2px;
	scroll-margin-top: 100px;
}

/* 메인 슬라이더 스타일 */
.slider-container {
	position: relative;
	width: 100%;
	height: 50vh;
	overflow: hidden;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	background-size: cover;
	background-position: center;
}

.slide.active {
	opacity: 1;
}

.slide-content {
	position: absolute;
	left: 8%;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	z-index: 10;
	max-width: 500px;
}

.slide-content h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-content p {
	font-size: 1rem;
	line-height: 1.6;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.slide-0 {
	background: url('/file/main/bg_01.png') center/cover;
}

.slide-1 {
	background: url('/file/main/bg_02.png') center/cover;
}

.slide-2 {
	background: url('/file/main/bg_03.png') center/cover;
}

.nav-controls {
	position: absolute;
	left: 8%;
	bottom: 5%;
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 20;
}

.nav-btn {
	width: 40px;
	height: 40px;
	border: 2px solid white;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.nav-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.nav-btn svg {
	width: 18px;
	height: 18px;
	fill: white;
}

.slide-counter {
	color: white;
	font-size: 0.95rem;
	font-weight: 500;
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 30px;
	border: 2px solid white;
}

.indicators {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 20;
}

.indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background: white;
	transform: scale(1.3);
}

/* Swiper 공통 스타일 */
/* Swiper 래퍼 - 이게 overflow를 막는 핵심 */
.swiper-wrap {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.swiper-container {
	width: 100%;
	padding-bottom: 50px;
	position: relative;
}

.swiper-wrapper {
	box-sizing: border-box;
}

.sec1 .container,
.sec2 .container {
	padding: 20px;
}

.swiper-slide {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.slide-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.swiper-slide:hover .slide-image {
	transform: scale(1.05);
}

.swiper-pagination-bullet {
	background: #2c3e50;
	opacity: 0.5;
	width: 12px;
	height: 12px;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #e74c3c;
}

/* 이미지 모달 */
.img-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	align-items: center;
	justify-content: center;
	padding: 80px 20px 20px 20px;
}

.img-modal img {
	max-width: 95%;
	max-height: 95vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.img-modal .close {
	position: absolute;
	top: 30px;
	right: 50px;
	color: #fff;
	font-size: 50px;
	font-weight: bold;
	cursor: pointer;
	z-index: 10000;
	transition: all 0.3s;
	background: rgba(0, 0, 0, 0.5);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.img-modal .close:hover {
	background: rgba(231, 76, 60, 0.8);
	transform: rotate(90deg);
}

/* 푸터 */
.footer {
	background: #2c3e50;
	color: white;
	padding: 40px 0 20px;
}

.footer .inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer_info2 {
	text-align: center;
}

.footer_info_tx {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 20px;
	color: #ecf0f1;
}

.footer_info_tx2 {
	font-size: 12px;
	color: #95a5a6;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 파트너 (예약) 스타일 */
.partner-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
}

.partner-container h1 {
	text-align: center;
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 40px;
	font-weight: 700;
	letter-spacing: 2px;
	scroll-margin-top: 100px;
}

.partner-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 25px;
	padding: 10px;
}

.partner-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
}

.partner-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.partner-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.partner-card:hover .partner-image {
	transform: scale(1.05);
}

.partner-info {
	padding: 20px;
	background: white;
}

.partner-location {
	font-size: 0.85rem;
	color: #e74c3c;
	font-weight: 600;
	margin-bottom: 8px;
	display: inline-block;
}

.partner-name {
	font-size: 1.1rem;
	color: #2c3e50;
	font-weight: bold;
	line-height: 1.4;
	margin-top: 5px;
}

.location-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 6px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	backdrop-filter: blur(5px);
}

/* 모달 스타일 */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	overflow-y: auto;
	padding: 100px 0;
}

.modal-overlay.active {
	display: block;
}

.modal-content {
	position: relative;
	max-width: 1200px;
	margin: 0 auto -100px;
	background: white;
	border-radius: 10px;
	padding: 0;
	animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 24px;
	color: #333;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	z-index: 10001;
	transition: all 0.3s ease;
}

.modal-close:hover {
	background: #e74c3c;
	color: white;
	transform: rotate(90deg);
}

.modal-body {
	padding: 40px;
}

.modal-header {
	padding: 30px 40px;
	border-bottom: 2px solid #f0f0f0;
}

.modal-title {
	font-size: 1.8rem;
	font-weight: bold;
	color: #2c3e50;
	margin-bottom: 10px;
}

.modal-address {
	color: #7f8c8d;
	font-size: 1rem;
}

.modal-buttons {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.modal-btn {
	padding: 12px 24px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn-reservation {
	background: #e74c3c;
	color: white;
}

.btn-reservation:hover {
	background: #c0392b;
	transform: translateY(-2px);
}

.btn-map {
	background: #3498db;
	color: white;
}

.btn-map:hover {
	background: #2980b9;
	transform: translateY(-2px);
}

.modal-map {
	width: 100%;
	height: 400px;
	border: none;
	margin: 20px 0;
}

.modal-images {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
}

.modal-images img {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 예약 폼 스타일 */
.breadcrumb-path {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 15px 20px;
	background: #f8f9fa;
	border-bottom: 2px solid #e9ecef;
	margin-bottom: 30px;
	font-size: 0.9rem;
	flex-wrap: wrap;
}

.path-item {
	color: #6c757d;
	white-space: nowrap;
}

.path-current {
	color: #2c3e50;
	font-weight: 600;
}

.path-separator {
	color: #adb5bd;
}

.reservation-form {
	max-width: 600px;
	margin: 0 auto;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.form-label.required::after {
	content: ' *';
	color: #e74c3c;
}

.form-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.form-input:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-input[readonly] {
	background-color: #f5f5f5;
	cursor: not-allowed;
}

.form-agreement {
	margin: 20px 0;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 5px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-agreement input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.form-agreement label {
	flex: 1;
	cursor: pointer;
	font-size: 0.95rem;
}

.agreement-detail {
	padding: 5px 12px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 3px;
	cursor: pointer;
	font-size: 0.85rem;
	transition: all 0.3s;
}

.agreement-detail:hover {
	background: #e9ecef;
}

.agreement-text {
	margin: 15px 0;
	padding: 15px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 0.85rem;
	line-height: 1.6;
	color: #555;
}

.form-buttons {
	display: flex;
	gap: 10px;
	margin-top: 30px;
}

.form-btn {
	flex: 1;
	padding: 14px 24px;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-back {
	background: #95a5a6;
	color: white;
}

.btn-back:hover {
	background: #7f8c8d;
}

.btn-submit {
	background: #e74c3c;
	color: white;
}

.btn-submit:hover {
	background: #c0392b;
}

/* 반응형 */
@media (max-width: 768px) {
	#m_menu {
		display: block;
	}

	.pc-menu {
		display: none;
	}

	.container {
		padding: 15px;
	}

	.container h1 {
		font-size: 1.8rem;
		margin-bottom: 25px;
	}

	.sec1, .sec2, .sec3 {
		padding: 40px 0;
	}

	.slider-container {
		height: 40vh;
	}

	.slide-content {
		left: 5%;
		max-width: 80%;
	}

	.slide-content h1 {
		font-size: 1.8rem;
	}

	.slide-content p {
		font-size: 0.9rem;
	}

	.nav-controls {
		left: 5%;
		bottom: 3%;
		gap: 10px;
	}

	.nav-btn {
		width: 35px;
		height: 35px;
	}

	.slide-counter {
		font-size: 0.85rem;
		padding: 8px 15px;
	}

	.indicators {
		right: 3%;
		gap: 10px;
	}

	.indicator {
		width: 8px;
		height: 8px;
	}

	.slide-image {
		height: 280px;
	}

	.swiper-container {
		overflow: hidden;
	}

	.sec1 .container,
	.sec2 .container {
		padding: 15px;
		overflow: hidden;
	}

	.img-modal img {
		max-width: 98%;
		max-height: 90vh;
	}

	.img-modal .close {
		top: 15px;
		right: 15px;
		font-size: 35px;
		width: 45px;
		height: 45px;
	}

	.footer_info_tx {
		font-size: 12px;
	}

	/* 파트너 반응형 */
	.partner-container h1 {
		font-size: 1.8rem;
		margin-bottom: 25px;
	}

	.partner-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.partner-image {
		height: 200px;
	}

	.partner-info {
		padding: 15px;
	}

	.partner-name {
		font-size: 1rem;
	}

	/* 모달 반응형 */
	.modal-content {
		margin: 20px;
		max-width: calc(100% - 40px);
	}

	.modal-body {
		padding: 20px;
	}

	.modal-header {
		padding: 20px;
	}

	.modal-title {
		font-size: 1.4rem;
	}

	.modal-buttons {
		flex-direction: column;
	}

	.modal-btn {
		width: 100%;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.slide-image {
		height: 350px;
	}

	.partner-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (min-width: 1025px) {
	.partner-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1400px) {
	.partner-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.sec1,
.sec2 {
    overflow-x: hidden;
}

.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    width: 100% !important;
}