.site-header{position:fixed;}
.image-gallery {
  max-width: 1920px;
  width:100%;
  min-width:1200px;
  height: 400px;          /* ✅ 고정 높이 */
  overflow: hidden;       /* ✅ 넘치는 부분 숨김 */
  position: relative;
  margin: 0 auto;         /* ✅ 화면 중앙 정렬 */
	word-break: keep-all;   /* 단어 중간 끊김 방지 */
	white-space: normal;    /* 자동 줄바꿈 허용 */
}

.image-gallery img {
  position: absolute;
  left:50%;
  top:50%;
  width:100%;
  transform: translate(-50%, -50%);
  height:400px;
  object-fit: cover;      /* 선택 사항: 비율 맞춰 꽉 채우기 (없어도 됨) */
}
.slick-next {
  right: 50px;
  z-index: 3;
}
.slick-prev {
  left: 50px;
  z-index: 3;
}
.slick-prev, .slick-next{
    font-size: 50px;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:before,
.slick-next:before{
	font-size:50px;
}
.slick-dots {
    position: absolute;
    bottom: 50px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  border:6px solid #fcf9ba;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}
/* 활성화된 dot */
.slick-dots li.slick-active button {
  background: #fcf9ba; /* 활성화 색상 */
  width: 22px;
  height: 22px;
  border:none;
}
.site_text_title{
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -30px);
	width:100%;
	height:200px;
	text-align:center;
	z-incex:3;
}
.site_text_title h1 {
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 1); /* x, y, blur, color */
  font-weight:bold;
}
.site_text_title h1{
	  -webkit-text-stroke: 0.3px #fff; /* 검은색 외곽선 */
}
.site_text_title p{
	font-size:20px;
	margin-top:10px;
	display:inline-block;
	padding:5px 20px;
	color:#fff;
	background:rgba(0,0,0,0.5);
	border-radius:20px;
}
.sub_menu{
	height:auto;
	background:#fff;
	border-bottom:1px solid #ccc;
}
.sub_menu ul{
	width:1200px;
	margin:0 auto;
	padding:0;
	display:flex;
	list-style:none;
	justify-content: center;
	gap:40px;
}
.sub_menu ul li{
	display:inline-block;
}
.sub_menu ul li a{
	display:block;
	width:100%;
	line-height:50px;
	text-align:center;
	text-decoration:none;
	color:#999;
}
.sub_menu ul li a:hover{
	color:#f00;
	font-weight:bold;
}
.sub_menu ul li.active a{
	color:#000;
	font-weight:bold;
}
.sub_menu ul li.active{
	border-bottom:2px solid #f00;
	box-sizing:border-box;
}
.business_info,
.special{
	width:1080px;
	margin:50px auto;
	text-align:center;
}
h2{
	margin:50px 0;
	text-align:center;
	font-size:30px;
}
h2 span{
	display:inline-block;
	border-bottom:5px solid #f00;
	padding-bottom:20px;
}
.slide-item img{
	width:1080px;
	height:auto;
}
.special img{
	width:1080px;
	height:auto;
	display:block;
	margin-bottom:50px;
	padding:15px;
	border-radius:10px;
	background:#f5f5f5;
}
.special p{
	margin: 20px 0 60px;
	font-size: 24px;
	color: #444;
}
.table{
	width:1080px;
	margin:50px auto;
	font-size:14px;
	border:none;
}
table{
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 10px;
	overflow: hidden;
}
th,td{
	box-sizing:border-box;
	border-bottom:1px solid #bbb;
}
th{
	width:200px;
	padding:20px 0;
	background:#697ca4;
	color:#fff;
}
td{
	width:400px;
	padding:20px;
	background:#101f40;
	color:#fff;
}
.none-border{
	border-bottom:none;
}
.image-desc {
    font-size: 16px;
    margin: 10px 0 30px;
    color: #333;
    background: #f2f2f2;
    padding: 12px 18px;
    border-left: 5px solid #007bff;
    border-radius: 4px;
}
.floor-tabs {
  width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.tab-menu-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom:50px;
}
.tab-menu {
  display: flex;
  flex-wrap: wrap;         /* ✅ 6개 초과 시 줄바꿈 */
  justify-content: flex-start; /* ✅ 왼쪽 정렬 */
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 10px;
}

.tab-menu li {
  flex: 0 0 calc((100% - 50px) / 6);  /* ✅ 6개 기준으로 균등 분할 */
  text-align: center;
  padding: 10px;
  background: #eee;
  cursor: pointer;
  white-space: nowrap;
}
.tab-menu li:last-child{
	border-right:none;
}
.tab-menu li.active {
	border:1px solid #ccc;
  border-bottom:3px solid #043365;
  color: #043365;
  font-weight:bold;
  background:#fff;
}


.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
.scroll-arrow{
	display:none;
}
@media screen and (max-width: 768px) {
  .image-gallery {
    min-width: 100%;
    height: 250px;
  }

  .image-gallery img {
    height: 250px;
    object-fit: cover;
  }

  .site_text_title {
    top: 45%;
    height: auto;
    transform: translate(-50%, -30px);
    padding: 0 20px;
  }

  .site_text_title h1 {
    font-size: 26px;
    -webkit-text-stroke: 0.2px #fff;
  }

  .site_text_title p {
    font-size: 14px;
    padding: 4px 14px;
    margin-top: 5px;
  }
	
  .sub_menu ul {
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    padding: 10px;
	padding-bottom:0px;
  }
	.sub_menu ul li.active{
	margin-bottom:-1px;
	border-bottom:5px solid #f00;
}
  .sub_menu ul li a {
    font-size: 14px;
    line-height: 40px;
  }

  .business_info,
  .special,
  .table,
  .floor-tabs {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .special p{
		margin: 0px 0 60px;
		font-size: 16px;
		color: #444;
	}
	.special img{
		margin-bottom:20px;
	}
  .business_info{
	  margin-top:0;
	  padding: 0px;
  }
  .table{
	  margin-top:0;
  }
  .slide-item img,
  .special img {
    width: 100%;
    padding: 10px;
  }

  h2 {
    font-size: 22px;
    margin: 30px 0 0;
  }

  h2 span {
    padding-bottom: 10px;
  }

  .tab-menu {
    flex-wrap: nowrap;
    justify-content: left;
    font-size: 13px;
	gap:0px;
	border:none;
	overflow:hidden;
	overflow-x:scroll;
	padding-bottom:15px;
	margin-bottom:20px;
	scrollbar-width: auto;        /* Firefox */
	-ms-overflow-style: auto;     /* IE/Edge */
  }

  .tab-menu li {
    flex: none;
    font-size: 13px;
    padding: 12px 10px;
	border:1px solid #ccc;
	border-left:none;
	box-sizing:border-box;
  }
  .tab-menu li:first-child{
	  border-left:1px solid #ccc;
  }
      .tab-menu li:last-child{
	  border-right:1px solid #ccc;
  }
  .tab-content img{
	  padding:0;
	  border-radius:0;
	  padding:0px;
  }

.scroll-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 10;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 16px;
  user-select: none;
  display: none; /* 기본은 숨김 */
}

.scroll-left { left: -20px; }
.scroll-right { right: -20px; }

  .slick-dots {
    bottom: 20px;
  }

  .slick-prev, .slick-next {
    display: none !important; /* 모바일에서 화살표 숨김 */
  }
  .slick-dots li{
	  width:auto;
	  height:auto;
  }
	.slick-dots li button {
	  width: 10px;
	  height: 10px;
	  border-radius: 50%;
	  background: transparent;
	  border:2px solid #fcf9ba;
	  text-indent: -9999px;
	  overflow: hidden;
	  cursor: pointer;
	  transition: background 0.3s;
	}
	/* 활성화된 dot */
	.slick-dots li.slick-active button {
	  background: #fcf9ba; /* 활성화 색상 */
	  width: 12px;
	  height: 12px;
	  border:none;
	}
  .image-desc {
    font-size: 14px;
    padding: 10px 14px;
    margin: 10px 0 20px;
  }

  th, td {
    display: block;
    width: 100%;
    text-align: left;
  }

  th {
    padding: 12px;
    font-size: 14px;
  }

  td {
    padding: 12px;
    font-size: 14px;
	background:#fff;
	color:#000;
  }
}
