@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

/* ==========================================================================
   DESIGN TOKENS — 부산 스마트시티 랩 · Digital Twin Smart City Lab
   ========================================================================== */
:root {
  /* core palette */
  --ink: #0a1526; /* deep tech navy — hero / header ground */
  --ink-soft: #101f38;
  --surface: #ffffff;
  --surface-alt: #f5f7fb; /* soft cool grey for section backgrounds */
  --line: #e4e8f0;
  --line-soft: rgba(255, 255, 255, 0.14);

  /* brand blue, refined from the original #0085ca / #1f68c6 */
  --brand: #0668d9;
  --brand-deep: #04408f;
  --brand-ink: #0a2a5c;

  /* digital-twin signature accent — cyan data-glow */
  --twin: #29e0d1;
  --twin-soft: rgba(41, 224, 209, 0.16);

  /* text */
  --text: #101826;
  --text-soft: #5b6472;
  --text-inverse: #f4f7fc;
  --text-inverse-soft: rgba(244, 247, 252, 0.68);

  /* elevation & shape */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(10, 21, 38, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 21, 38, 0.1);
  --shadow-glow: 0 0 0 1px rgba(41, 224, 209, 0.25),
    0 12px 28px rgba(6, 104, 217, 0.16);

  /* type */
  --font-kr: "Noto Sans KR", sans-serif;
  --font-mono: "Space Grotesk", "Noto Sans KR", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  font-family: var(--font-kr);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
  box-sizing: border-box;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
#header {
  --header-height: 100px;
  position: relative;
  width: 100%;
}

#headerIn {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 100px;
  height: var(--header-height);
  box-sizing: border-box;
  padding: 0 20px;
}

.logo {
  width: 400px;
  margin: 0;
}
.logo a {
  position: relative;
  display: block;
  width: fit-content;
}
.logo img {
  width: 140px;
  height: auto;
  display: block;
  transition: opacity 0.15s var(--ease);
}
.m-menu-btn,
.utill {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.gnb {
  margin: 0;
  padding: 0;
}
.gnb ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 80px;
  align-items: center;
}
.gnb > ul > li {
  position: relative;
}
.gnb > ul > li > a {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #000;
  transition: color 0.2s var(--ease);
  display: inline-block;
  padding: 4px 0;
}
.gnb > ul > li:last-child > a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;

  background: var(--twin);
  transition: width 0.25s var(--ease);
}

.gnb > ul > li:last-child:hover > a::after,
.gnb > ul > li:last-child:focus-within > a::after {
  width: 100%;
}

/* ------------------------------------------------------------------------
   드롭다운 서브메뉴 — 각 대메뉴(li)에 직접 붙여서 항상 정확히 그 아래에 위치
   (기존 전체폭 sub-bg 방식은 대메뉴 위치와 하위메뉴 위치가 어긋나는 문제가 있어
   li 기준 absolute 앵커 방식으로 교체함)
   ------------------------------------------------------------------------ */
.gnb-dropdown-wrap {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 16px; /* 보이지 않는 여백이지만 li의 hover 영역을 이어줘서 메뉴가 끊기지 않게 함 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease);
  z-index: 999;
}
.gnb > ul > li:hover .gnb-dropdown-wrap,
.gnb > ul > li:focus-within .gnb-dropdown-wrap {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gnb-dropdown {
  position: relative;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  transform: translateY(-6px);
  transition: transform 0.2s var(--ease);
}
.gnb > ul > li:hover .gnb-dropdown,
.gnb > ul > li:focus-within .gnb-dropdown {
  transform: translateY(0);
}
.gnb-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand), var(--twin));
}
.gnb-dropdown a {
  display: block;
  padding: 8px 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  white-space: nowrap;
  border-radius: 6px;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease),
    background 0.2s var(--ease);
}
.gnb-dropdown a:hover {
  color: var(--brand);
  background: var(--surface-alt);
  transform: translateX(2px);
}

.utill {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(calc(-50% - 40px));
}
.utill .check {
  width: 108px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  display: grid;
  place-content: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.utill .check:hover {
  border-color: var(--brand);
  background: var(--surface-alt);
}
.utill .check img {
  margin-right: 5px;
}
.utill .check a {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  letter-spacing: -0.2px;
}

/* mobile menu */
.m-menu-btn {
  display: none;
  width: 25px;
  cursor: pointer;
}
.m-menu-btn span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
  border-radius: 2px;
}
.m-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: var(--ink);
  color: var(--text-inverse);
  box-shadow: 2px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  padding: 24px;
  transition: 0.3s var(--ease);
  z-index: 9999;
}
.m-menu.open {
  left: 0;
}
.m-menu-close {
  font-size: 26px;
  cursor: pointer;
  margin-bottom: 20px;
  color: var(--text-inverse);
}
.m-item button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-inverse);
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.m-depth2 {
  display: none;
  padding-left: 15px;
}
.m-depth2 a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-inverse-soft);
}

/* ==========================================================================
   BASE
   ========================================================================== */
#wrap {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: var(--surface);
}

/* ==========================================================================
   뉴스 카드 (공지/새로운 소식)
   ========================================================================== */
.notice_title {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 0;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--twin);
  /*color: #47d8ff;*/
  display: flex;
  align-items: center;
  gap: 14px;
}
.notice_title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}
.notice_card_wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 20px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.notice_list {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.notice_list a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 120px;
  padding: 15px 22px;
  text-decoration: none;
  color: #fff;
}
.notice_list:hover {
  transform: translateY(-6px);
  border-color: var(--twin);
  background: rgba(41, 224, 209, 0.07);
}
.n_cat {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-ink);
  border-radius: 20px;
  padding: 5px 14px;
  background: #fff;
  text-align: center;
  margin-bottom: 12px;
  display: inline-block;
  width: fit-content;
}
.n_title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 10px;
}
.n_date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-inverse-soft);
  text-align: right;
}

/* ==========================================================================
   시설예약 카드
   ========================================================================== */
.ex_recommend {
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 50px;
  box-sizing: border-box;
}

.ex_tit {
  width: 100%;
  background: #1f68c6;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 35px;
  height: 55px;
  box-sizing: border-box;
}
.ex_text {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  /* color: var(--twin);*/
  color: #fff;
}
.ex_more a {
  color: var(--text-inverse-soft);
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: color 0.2s var(--ease);
}
.ex_more a:hover {
  color: #fff;
}
.ex_more img {
  margin-left: 6px;
}

.ex_list ul {
  padding: 10px 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ex_list ul li {
  float: none;
  text-align: center;
  border-right: 1px solid var(--line);
}
.ex_list ul li:nth-child(4n) {
  border-right: none;
}
.ex_list ul li:nth-child(n + 5) {
  border-top: 1px solid var(--line);
}

.ex_photo img {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  margin: 50px auto 15px;
  box-shadow: 0 0 0 4px var(--surface-alt), 0 0 0 5px var(--line);
}
.ex_key {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ex_name {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.ex_des {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.keyword {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand);
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 5px 14px;
  background: var(--surface-alt);
  text-align: center;
}
.history_view {
  width: 164px;
  height: 40px;
  border: none;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 50px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.history_view:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

.ex_list {
  width: 100%;
  height: auto;
  padding: 0 60px;
  background: var(--surface);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid var(--line);
  border-top: none;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.ex_list .bx-controls-direction {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ex_list .bx-controls-direction a {
  display: block;
  width: 35px;
  height: 69px;
  background-repeat: no-repeat;
  text-indent: -9999px;
}
.ex_list .bx-controls-direction .bx-prev {
  background-image: url(../../images/home/left_bt.png);
  position: absolute;
  top: -40px;
  left: 40px;
  width: 50px;
  height: 50px;
}
.ex_list .bx-controls-direction .bx-next {
  background-image: url(../../images/home/right_bt.png);
  position: absolute;
  top: -40px;
  right: 40px;
  width: 50px;
  height: 50px;
}

@media (max-width: 900px) {
  .ex_list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .ex_list ul li:nth-child(2n) {
    border-right: none;
  }
  .ex_list ul li:nth-child(4n) {
    border-right: 1px solid var(--line);
  }
  .ex_list ul li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

/* ==========================================================================
   메인 메뉴 타일
   ========================================================================== */
.main_menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  background: var(--surface);
}
.main_menu ul {
  display: flex;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main_menu li {
  flex: 1;
  position: relative;
  text-align: left;
  height: 88px;
  border-right: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}
.main_menu li:hover {
  background: var(--surface-alt);
}
.main_menu li:last-child {
  border-right: none;
}
.main_menu li a {
  display: block;
  width: 100%;
  height: 100%;
}
.menu_img {
  position: absolute;
  top: 24px;
  left: 48px;
  width: 38px;
  height: 38px;
}
.menu_name {
  position: absolute;
  top: 33px;
  left: 130px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.menu_more {
  position: absolute;
  top: 37px;
  right: 44px;
  width: 18px;
  height: auto;
  transition: transform 0.2s var(--ease);
}
.main_menu li:hover .menu_more {
  transform: translateX(4px);
}

/* ==========================================================================
   서브메뉴 탭
   ========================================================================== */
.sub_tab_menu {
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}
.sub_tab_menu ul {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 34px;
  list-style: none;
  height: 60px;
  align-items: center;
}
.sub_tab_menu li a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.2s var(--ease);
}
.sub_tab_menu li a:hover {
  color: var(--brand);
}
.sub_tab_menu li.on a {
  font-weight: 700;
  color: var(--brand);
}
.sub_tab_menu li.on a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* 준비중 안내 */
.ready-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 100px 0;
}
.ready-box {
  text-align: center;
  padding: 60px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.ready-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.ready-desc {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* 주요기능 */
.consult {
  display: flex;
  margin-bottom: 50px;
  gap: 30px;
}
.consult h2 {
  margin-right: 0;
  width: 30%;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}
.consult_area ul {
  margin-top: 8px;
}
.consult_area ul:after {
  content: "";
  display: block;
  clear: both;
}
.consult_area li {
  width: calc((100% - 40px) / 2);
  height: 400px;
  border-top: 2px solid var(--brand);
  border-bottom: 1px solid var(--line);
  text-align: center;
  float: left;
  margin-bottom: 40px;
  margin-right: 40px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.consult_area li:nth-child(2n) {
  margin-right: 0;
}
.consult_area li:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.consult_area li h3 {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  font-size: 17px;
  font-weight: 700;
}
.consult_area li img {
  width: 80%;
  height: auto;
}
.consult_area li p {
  padding: 15px 0 0;
  color: var(--text-soft);
  font-weight: 400;
}

/* 신청절차 */
.step {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  margin-bottom: 90px;
}
.procedure-intro {
  max-width: 1400px;
  margin: 0 auto 50px;
  text-align: center;
}
.procedure-intro h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text);
}
.procedure-intro p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
}

.apply_step ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
.apply_step li {
  flex: 0 0 calc(20% - 16px);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.apply_step li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--brand);
}
.apply_step li img {
  max-width: 72px;
  margin-bottom: 15px;
}
.step_tit {
  font-family: var(--font-mono);
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.step_name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.step_des {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
.step_arrow img {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: auto;
  opacity: 0.4;
}

/* 검색 */
.search {
  position: relative;
  float: right;
  padding-bottom: 30px;
  max-width: 100%;
}
.input_search {
  width: 100%;
  max-width: 550px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 16px;
  padding: 0 60px 0 24px;
  box-sizing: border-box;
  display: block;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.input_search:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(6, 104, 217, 0.12);
}
.search_bt {
  background: none;
  border: none;
  vertical-align: middle;
  position: absolute;
  top: 20%;
  right: 26px;
  cursor: pointer;
}
.input_search::placeholder {
  color: #a8afb9;
}

.sum {
  font-family: var(--font-mono);
  font-size: 19px;
  font-weight: 700;
  color: var(--brand);
}

/* 시설예약 서브 리스트 */
.expert_sub {
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  padding-top: 90px;
}
.expert_list_sub {
  width: 100%;
  margin-bottom: 45px;
}
.expert_list_sub ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.expert_list_sub li {
  flex: 0 0 calc((100% - 80px) / 5);
  padding: 36px 0 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.expert_list_sub li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.ex_photo_sub {
  width: 108px;
  height: 108px;
  border-radius: 100%;
  margin: 0 auto 15px;
}
.ex_photo_sub img {
  width: 108px;
  height: 108px;
  border-radius: 100%;
}
.ex_name_sub {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text);
}
.ex_des_sub {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.ex_key_sub {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.keyword_sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand);
  background: var(--surface-alt);
  font-weight: 600;
  text-align: center;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 5px 14px;
}
.history_view_sub {
  width: 164px;
  height: 38px;
  border: none;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.history_view_sub:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

/* 시설예약 - 뷰 */
.pro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 120px;
}
.pro_left {
  flex: 1;
  min-width: 600px;
}
.profile {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.pro_photo img {
  width: 108px;
  height: 108px;
  border-radius: 50%;
}
.pro_des {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pro_name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.pro_keyword {
  font-size: 15px;
  color: var(--text-soft);
}
.line {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin-bottom: 35px;
}
.career ul {
  display: block;
  padding: 0;
  margin: 0;
}
.career .c_txt {
  display: block;
  margin-bottom: 55px;
}
.c_tit {
  display: block;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.c_des {
  display: block;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}
.c_txt p {
  margin-bottom: 8px;
}
.ex_keyword p {
  display: inline-block;
  margin-right: 8px;
}
.pro_right {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pro_intro {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 30px 50px;
  box-shadow: var(--shadow-sm);
}
.pro_intro h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.pro_intro .intro_text {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.counsel_apply {
  width: 100%;
  height: 58px;
  background: var(--ink);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.counsel_apply:hover {
  background: var(--brand);
}
.similar_expert h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.similar_list ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.similar_list li {
  display: flex;
  padding: 26px;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.expert_bt {
  text-align: center;
}
.white-bt {
  width: 150px;
  height: 60px;
  background: var(--surface);
  border: 1px solid var(--text);
  font-size: 18px;
  font-weight: 600;
  margin-right: 3px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}
.white-bt:hover {
  background: var(--text);
  color: #fff;
}

/* 시설안내 */
.facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 auto;
  justify-content: flex-start;
}
.facility-view {
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 16px;
  max-width: 500px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.facility-view:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.img-area {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.big-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 7/5;
  object-fit: cover;
}
.thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.thumbs img {
  width: 100px;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: border-color 0.2s var(--ease);
}
.thumbs img:hover {
  border-color: var(--brand);
}
.desc-area {
  width: 100%;
  margin-top: 10px;
}
.desc-area h2 {
  font-size: 21px;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--text);
}
.desc-area .desc {
  margin-bottom: 18px;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 14px;
}
.desc-area .info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.desc-area .info li {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text);
}
.desc-area strong {
  width: 80px;
  flex-shrink: 0;
  color: var(--brand);
}

/* 신청절차 배너 */
.procedure-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 44px 20px;
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  margin-bottom: 50px;
}
.procedure-box {
  text-align: center;
}
.procedure-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand);
}
.procedure-desc {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* 시설예약 스텝 */
.reserve {
  width: 100%;
  margin: 0 auto;
}
.reserve_step ul {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.reserve_step li {
  width: 33.33%;
  height: 78px;
  line-height: 78px;
  background: var(--surface-alt);
  color: var(--text-soft);
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  box-sizing: border-box;
}
.reserve_step .step_on {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}
.counsel_date_wrapper {
  width: 100%;
  margin: 20px 0;
}
.counsel_tit {
  padding: 15px 20px;
  background: var(--surface-alt);
  border-radius: 10px;
  font-size: 19px;
  font-weight: 600;
}
.reserve_bt {
  text-align: right;
  margin-top: 30px;
  margin-bottom: 90px;
}
.reserve_content {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
.cal {
  width: 45%;
  height: auto;
  background: var(--surface);
  border-radius: 0 var(--radius-lg) 0 0;
  border: 1px solid var(--line);
  padding: 30px;
  margin: 0;
}
.rs_notice ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.rs_notice li {
  font-size: 14px;
  float: left;
  margin-right: 10px;
  color: var(--text-soft);
}
.time {
  position: relative;
  top: 0;
  right: 0;
  width: 50%;
}
.counsel_date {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 30px 0 30px 20px;
}
.counsel_date h3 {
  font-size: 18px;
  color: var(--text);
}
.counsel_date h3 span {
  font-weight: 300;
  font-size: 16px;
  padding: 0 0 0 40px;
  color: var(--text-soft);
}
.time_select {
  padding: 30px 0 0 20px;
}
.time_select h3 {
  margin-bottom: 20px;
  font-size: 17px;
}
.time_select li {
  width: 49.2%;
  height: 60px;
  padding: 16px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  margin: 0 5px 5px 0;
  font-size: 16px;
  color: var(--text);
  float: left;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.time_select li input[type="checkbox"] {
  display: none;
}
.time_select li label {
  display: block;
  cursor: pointer;
}
.time_select .on {
  border: 1px solid var(--brand);
  color: var(--brand);
  font-weight: 600;
}
.time_select .time_impos {
  background: var(--surface-alt);
  color: #c6cbd3;
  cursor: default;
}
.time_select .time_ms {
  text-align: center;
  padding: 150px 0;
  color: var(--text-soft);
}
.blue-bt {
  width: 150px;
  height: 60px;
  background: var(--brand);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.blue-bt:hover {
  background: var(--brand-deep);
}

/* 예약정보입력 */
.reserve_info h3 {
  margin: 50px 0 15px;
  color: var(--text);
  font-weight: 700;
}
.list_01 {
  width: 100%;
  border-top: 2px solid var(--ink);
  border-collapse: collapse;
}
.list_01 tr {
  border-bottom: 1px solid var(--line);
}
.list_01 th {
  padding: 15px 15px 15px 23px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  background: var(--surface-alt);
  border-right: 1px solid var(--line);
}
.list_01 td {
  font-size: 16px;
  text-align: left;
  padding: 15px 15px 15px 23px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line);
}
.list_01 td input {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding-left: 18px;
  font-size: 15px;
}
.list_01 td input::placeholder {
  color: #a8afb9;
  font-size: 15px;
  font-weight: 300;
}
.list_01 .counsel_text textarea {
  height: 360px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 15px;
  padding: 18px;
}
.dkblue-bt {
  width: 150px;
  height: 44px;
  background: var(--brand-ink);
  border: none;
  color: #fff;
  font-size: 15px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s var(--ease);
}
.dkblue-bt:hover {
  background: var(--brand);
}

/* 예약완료 */
.reserve_complete h2 {
  margin-bottom: 5px;
  text-align: center;
  font-size: 28px;
  color: var(--text);
}
.reserve_complete .re_com {
  margin: 50px 0 5px;
  text-align: center;
}
.r_des {
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-soft);
  font-weight: 300;
}

.list_02 {
  width: 100%;
  border-top: 2px solid var(--ink);
}
.list_02 tr {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.list_02 th {
  width: 200px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 22px 0;
  color: var(--text);
  background: var(--surface);
  cursor: default;
}
.list_02 td {
  font-size: 16px;
  text-align: center;
  padding: 15px 0;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line);
}
.list_02 tr:hover {
  background: var(--surface-alt);
  transition: all 0.2s var(--ease);
}
.list_02 tr:hover .r_view {
  color: var(--brand);
  font-weight: 500;
}
.dblue-bt {
  width: 150px;
  height: 60px;
  background: var(--ink);
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s var(--ease);
}
.dblue-bt:hover {
  background: var(--brand);
}

/* 공지사항 */
.notice2 {
  margin-bottom: 30px;
  border-top: 2px solid var(--ink);
}
.notice2 tr {
  cursor: default;
  border-bottom: 1px solid var(--line);
}
.notice2 td {
  padding: 18px 10px;
  font-size: 15px;
  color: var(--text);
}
.notice2 .nh_tit {
  text-align: left;
}
.notice2 .n_tit {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.notice2 tr:hover {
  background: var(--surface-alt);
}
.notice2 tr:hover .n_tit {
  color: var(--brand);
  font-weight: 600;
}
.n_lv {
  width: 68px;
  height: 32px;
  padding: 3px 18px 5px;
  background: var(--brand);
  border-radius: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.notice_view th {
  text-align: left;
  padding: 30px 0 30px 20px;
  border-bottom: 1px solid var(--line);
}
.no_date {
  float: right;
  margin-top: 2px;
  padding-right: 30px;
  color: var(--text-soft);
  font-size: 14px;
}
.notice_view .nview_tit {
  vertical-align: middle;
  font-size: 20px;
  font-weight: 700;
}
.notice_view td {
  font-size: 15px;
  text-align: left;
  cursor: default;
  color: var(--text-soft);
}
.notice_view .file_tit {
  font-weight: 600;
  color: var(--text);
  padding: 20px 0 20px 20px;
}
.notice_view tr:hover {
  background: none;
}
.notice_view tr td a:hover {
  color: var(--brand);
}
.notice_view tr .f2 img {
  vertical-align: middle;
  margin-right: 3px;
}
.notice_view .write {
  font-weight: 600;
  color: var(--text);
  text-align: right;
  padding: 20px 30px 20px 0;
}
.notice_view .write .writer {
  margin-right: 20px;
}
.notice_view .write .write_name {
  font-weight: 300;
}
.notice_view tr .pre,
.notice_view tr .nex {
  width: 120px;
  padding: 20px 0 20px 20px;
}

/* 지도 */
#map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-info {
  margin-top: 20px;
}
.contact-info img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}
.contact-info .address,
.contact-info .phone {
  margin-bottom: 15px;
  font-size: 17px;
  color: var(--text);
}
.contact-info .address i,
.contact-info .phone i {
  color: var(--brand);
}
.contact-info-icon {
  vertical-align: middle;
}

/* 사이트맵 */
.horizontal-sitemap {
  padding: 70px 20px;
  background: var(--surface-alt);
}
.horizontal-sitemap .main-menu {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.horizontal-sitemap .main-menu > li {
  flex: 1;
  min-width: 250px;
  background: var(--surface);
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.horizontal-sitemap .main-menu > li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.horizontal-sitemap h3 {
  font-size: 17px;
  margin-bottom: 14px;
  color: var(--text);
  border-bottom: 2px solid var(--brand);
  padding-bottom: 8px;
  font-weight: 700;
}
.horizontal-sitemap .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.horizontal-sitemap .sub-menu li {
  margin: 9px 0;
}
.horizontal-sitemap .sub-menu li a {
  text-decoration: none;
  color: var(--text-soft);
  transition: 0.2s var(--ease);
  font-size: 14px;
}
.horizontal-sitemap .sub-menu li a:hover {
  color: var(--brand);
  padding-left: 4px;
}

/* 이용약관 */
#terms {
  padding: 60px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
#terms .tt {
  font-weight: 800;
  color: var(--brand);
  font-size: 32px;
  line-height: 1;
  padding: 0 0 30px;
  letter-spacing: -1px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
#terms .s_h1 {
  font-weight: 700;
  color: var(--text);
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 20px;
}
#terms .s_h2 {
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
#terms .s_p {
  font-weight: 400;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.det_ul {
  color: var(--text);
}
.det_ul li {
  position: relative;
  padding: 0 0 0 24px;
  line-height: 24px;
  font-size: 14px;
  letter-spacing: -0.5px;
}
.det_ul li span {
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  text-align: center;
  background: var(--ink);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}
.indent1 {
  padding-left: 10px;
}
.terms_down {
  background: var(--surface) url(../../images/home/down_ic.png) left 20px center
    no-repeat;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--line);
  padding: 14px 20px 14px 50px;
  border-radius: 8px;
  margin: 15px 0;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.terms_down:hover {
  background-color: var(--surface-alt);
}

/* 캘린더 커스터마이징 */
.fc .day-num {
  font-size: 14px;
  font-weight: 600;
}
.dot-available,
.dot-blocked {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}
.dot-available {
  background-color: #00af50;
}
.dot-blocked {
  background-color: #c7c7c7;
}
.fc-daygrid-event {
  height: 0;
  padding: 0 !important;
  margin-top: 2px !important;
}
.fc-h-event {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.fc-daygrid-day {
  cursor: pointer;
}
.fc-daygrid-day.fc-day-today {
  background-color: var(--surface-alt);
}
