@charset "UTF-8";

.block {
  height: 0px;
}

/* [헤더/비주얼] -  */
.header-wrap.sub-page {
  width: 100%;
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url("../img/sub_main.jpg") center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
}

/* [본문 타이틀] */
.page-title-section {
  padding: 80px 0;
  text-align: center;
}
.vertical-line {
  width: 1px;
  height: 60px;
  background: #000;
  margin: 30px auto 0;
}

/* 브레드크럼*/
.breadcrumb-bar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  font-size: 0.75rem;
  color: #888888;
}

.breadcrumb-bar i {
  margin-right: 15px;
}

.breadcrumb-bar span {
  margin: 0 15px;
  color: #dddddd;
}

.breadcrumb-bar .active {
  color: #333333;
  font-weight: 500;
}

/* [3] 사업개요 섹션 타이틀 */
.page-title-section {
  padding: 80px 0;
  text-align: center;
  background: #ffffff;
}

.page-title {
  font-family: "Noto Serif KR", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
}

/* 타이틀 아래 수직선 */
.vertical-line {
  width: 1px;
  height: 60px;
  background-color: #000000;
  margin: 0 auto;
}

/* 모바일 대응 */
@media (max-width: 1024px) {

  .hero-main-title {
    font-size: 2.5rem;
  }
}

/* 섹션 공통 스타일 */
.section {
  padding: 70px 0;
  border-bottom: 1px solid #f0f0f0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: #000;
}

.section-sub {
  font-size: 1rem;
  color: #888;
  letter-spacing: 0.2em;
  font-weight: 300;
}

.v-line {
  width: 1px;
  height: 50px;
  background: #000;
  margin: 30px auto 0;
}

/* [1] 업체 소개 (Storytelling) */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
  word-break: keep-all;
}

.about-highlight {
  color: #000;
  font-weight: 700;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  font-size: 1.1em;
}

/* [2] 객실 안내 (Clean Grid) */
.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.room-image {
  width: 100%;
  border-radius: 2px;
}

.room-info-list {
  list-style: none;
}

.room-item {
  margin-bottom: 35px;
}

.room-item-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  display: block;
}

.room-item-desc {
  font-size: 1.15rem;
  color: #777;
  font-weight: 300;
}

/* [3] 편의 시설 (Icon Blocks) */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.fac-card {
  padding: 40px 20px;
  transition: background 0.3s;
    background: #f7f7f7;
}

.fac-card:hover {
  background: #e6e6e6;
}

.fac-icon {
  font-size: 2rem;
  color: #333;
  margin-bottom: 25px;
  display: block;
}

.fac-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.fac-desc {
  font-size: 1.1rem;
  color: #888;
  font-weight: 300;
}

.special-box {
  background: #fafafa;
  border: 1px solid #eee;
  margin-top: 60px;
  padding: 50px;
  text-align: center;
}

/* [4] 주변 인프라 (Table Style) */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #eee;
  border: 1px solid #eee;
}

.infra-item {
  background: #fff;
  padding: 40px 30px;
}

.infra-category {
  display: block;
  color: #aaa;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.infra-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.infra-list {
  font-size: 1.1rem;
  color: #888;
  font-weight: 300;
  line-height: 1.6;
}

/* 반응형 */
@media (max-width: 768px) {
  .room-grid,
  .facility-grid,
  .infra-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }
}

/* [갤러리 그리드] */
.gallery-section {
  padding: 0 20px 100px;
  max-width: 1250px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
  overflow: visible;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.img-box {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* 돋보기 아이콘 */
.img-box::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
.gallery-item:hover .img-box::after {
  opacity: 1;
}

.gallery-info {
  padding: 20px;
  text-align: center;
}
.gallery-info h4 {
  font-weight: 300;
  font-size: 1rem;
  color: #333;
}

/* [라이트박스] */
#lightboxModal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  padding: 20px;
}
#lightboxModal.active {
  display: flex;
}

.lightbox-content {
  text-align: center;
  position: relative;
  max-width: 80%;
}
#lightboxImage {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  cursor: pointer;
}
#lightboxTitle {
  color: #fff;
  margin-top: 15px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

/* 화살표 버튼 */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  padding: 20px;
  opacity: 0.5;
  transition: 0.3s;
  z-index: 10001;
}
.nav-btn:hover {
  opacity: 1;
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}
#closeBtn {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
}

body.no-scroll {
  overflow: hidden;
}

/* info */
.information iframe {
  width: 100%;
  aspect-ratio: 16 / 9; /* 가로/세로 비율 고정 */
  height: auto; /* 높이는 비율에 따라 자동 계산 */
}

/**map_box 시작**/
.map_wrap {
  padding: 30px;
  background: #f3f3f3;
  overflow: hidden;
}

.map_wrap .map_box {
  display: flex;
  align-items: center;
}

.map_icon {
  float: left;
  padding-right: 20px;
}

.map_txt {
  text-align: left;
  float: left;
}

.map_txt h2 {
  font-size: 22px;
}

.map_txt p {
  font-size: 18px;
  padding-top: 8px;
}

/**map_box 끝**/
/* #maparea {height: 300px;} */
#maparea .root_daum_roughmap {
  width: 100% !important;
  height: 100% !important;
}

/****************************** sub 갤러리 box 시작 ******************************/
.sub_gall_list {
  margin: -10px -10px 0;
  overflow: hidden;
}

.sub_gall_list .gall_item {
  float: left;
  width: 25%;
  padding: 10px;
}

.sub_gall_list .gall_item a {
  display: block;
  overflow: hidden;
}

.sub_gall_list .gall_item a img {
  transition: all 1.2s;
  transform: scale(1);
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sub_gall_list .gall_item a:hover img {
  transform: scale(1.085);
}

.sub_gall_list.detail_type .gall_item a {
  position: relative;
}

.sub_gall_list.detail_type .gall_desc {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub_gall_list.detail_type .gall_desc_wrap {
  display: block;
  text-align: center;
}

.sub_gall_list .gall_item p {
  text-align: center;
  font-size: 18px;
  color: #666;
  padding-top: 12px;
}

/****************************** sub 갤러리 box 끝 ******************************/

/** product_list 시작**/
.business_tit {
  font-size: 30px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
}

.list_tit {
  font-size: 20px;
  font-weight: 800;
  color: #444;
  margin-top: 30px;
}

.product_list {
  padding: 20px 40px;
  border: 1px solid #ddd;
  margin-top: 10px;
  background: #f5f5f5;
}

.product_list p {
  font-size: 17px;
  color: #666;
  padding-top: 5px;
}

.product_list p b {
  color: #222;
}

/** product_list 끝//**/

/** info_box_wrap 시작**/
.info_box_wrap {
  margin-top: 40px;
}

.info_box_wrap h3 {
  font-size: 22px;
  color: #2763b9;
  font-weight: 800;
  margin-bottom: 10px;
}

.info_box {
  padding: 20px;
  background: #f0f5fb;
  border: 1px solid #e8eef5;
}

.info_box p {
  font-size: 17px;
  color: #444;
}

.info_box p b {
  font-size: 17px;
  color: #2763b9;
  display: block;
}

.info_box span {
  font-size: 15px;
  color: #2763b9;
}

.info_txt p {
  font-size: 17px;
  color: #444;
}

.info_txt h5 {
  font-size: 14px;
  color: #444;
  text-align: right;
  padding: 10px 0 20px 0;
}

.info_txt span {
  font-size: 15px;
  color: #2763b9;
}

/** info_box_wrap 끝//**/

/** table 끝//**/

.d_block {
  display: inline-block;
}

.m_block {
  display: none;
}

.d_block_480 {
  display: block;
}

.m_block_480 {
  display: none;
}

/*******************************************************************************************************************************
 *** PC ~ 테블릿
*******************************************************************************************************************************/
@media (max-width: 1024px) {
  .d_block {
    display: none;
  }

  .m_block {
    display: inline-block;
  }
}

/*******************************************************************************************************************************
 *** 모바일
*******************************************************************************************************************************/
@media (max-width: 768px) {
  .block {
    height: 0px;
  }
  .section {
    padding: 55px 15px !important;
  }
  .section-title {
    font-size: 2.2em;
  }
  .about-text {
    font-size: 1.35em;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .gallery-info h4 {
    font-weight: normal;
    font-size: 1em;
  }

  .page-title-section h2 {
    font-size: 35px;
    padding-bottom: 10px;
  }

  /**map_box 시작**/
  .map_wrap {
    padding: 20px 10px;
  }

  .map_txt h2 {
    font-size: 16px;
  }

  .map_txt p {
    font-size: 13px;
    padding-top: 0;
  }

  .map_icon {
    padding-right: 0;
  }

  .map_icon img {
    width: 80%;
  }

  /**map_box 끝**/

  /**서브 갤러리 시작**/
  .sub_gall_list .gall_item {
    width: 50%;
  }

  .sub_gall_list .gall_item p {
    font-size: 14px;
    padding-top: 10px;
  }

  /**서브 갤러리 끝//**/

  /** product_list 시작**/
  .list_tit {
    font-size: 17px;
  }

  .product_list p {
    font-size: 15px;
  }

  .product_list p span {
    display: block;
  }

  .product_list {
    padding: 10px;
  }

  /** product_list 끝//**/

  /** product_list 시작**/
  .list_tit {
    font-size: 18px;
  }

  .product_list {
    padding: 20px;
  }

  .product_list p {
    font-size: 16px;
  }

  /** product_list 끝//**/

  /** info_box_wrap 시작**/
  .info_box_wrap h3 {
    font-size: 18px;
  }

  .info_box p {
    font-size: 14px;
  }

  .info_box span {
    font-size: 13px;
  }

  .info_txt p {
    font-size: 14px;
  }

  .info_txt span {
    font-size: 13px;
  }

  /** info_box_wrap 끝//**/

  /** table 시작**/
  .table_con th {
    font-size: 14px;
  }

  .table_con td {
    font-size: 14px;
  }

  /** table 끝//**/

  .profile ul li {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    text-align: left;
  }

  .profile .t19 {
    font-size: 16px;
  }

  .profile ul.pro_list {
    padding-bottom: 1rem;
  }

  .profile ul.pro_list li {
    font-size: 16px;
  }
}

/*******************************************************************************************************************************
 *** 모바일 max-width 480
*******************************************************************************************************************************/
@media (max-width: 480px) {


  /** info_box_wrap 끝//**/

  /** table 시작**/
  .table_con th {
    font-size: 13px;
  }

  .table_con td {
    font-size: 13px;
  }

  /** table 끝//**/

  .d_block_480 {
    display: none;
  }

  .m_block_480 {
    display: block;
  }
}

@media (max-width: 360px) {
  .sub_banner_txt span img {
    height: 20px;
  }
}
