@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap");

@font-face {
  font-family: "Busan";
  src: url("https://cdn.jsdelivr.net/korean-webfonts/1/orgs/govs/busan/Busan/Busan.woff2")
    format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "S-CoreDream-3Light";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "S-CoreDream-5Medium";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "S-CoreDream-6Bold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

* {
  font-family: "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
}

html,
body {
  height: 100%;
}

#wrap {
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 186px;
}
/* header 스타일 */
header {
  position: relative;
  border-bottom: 1px solid #ddd;
}

/* 네비게이션 컨테이너 */
.nav-container {
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}

/* 로고 */
.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #333;
}

/* PC 메인 메뉴 */
.main-nav {
  padding-left: 150px;
}

.main-nav ul {
  display: flex;
  gap: 80px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  cursor: pointer;
  font-weight: 600;
  color: #222;
  font-family: "S-CoreDream-6Bold", sans-serif;
  font-size: 18px;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav li::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #0072bc;
  transition: width 0.3s ease;
}

.main-nav li:hover {
  color: #0072bc;
}
.main-nav a {
  font-family: "S-CoreDream-6Bold";
}

.main-nav li:hover::after {
  width: 100%;
}

/* 오른쪽 상단 메뉴 */
.top-nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #555;
  border: 1px solid #0072bc;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.top-nav a:hover {
  background-color: #0072bc;
  color: #fff;
}

/* 메가 메뉴 */
.pc-mega-panel {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
  border-top: 1px solid #eee;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 180px;
}

.pc-mega-panel.active {
  max-height: 500px;
  padding: 30px 0;
}

.pc-mega-panel-inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
}

/* 대메뉴 제목 */
.menu-title-area {
  width: 200px;
  height: 120px;
  border-right: 1px solid #eee;
  padding: 0 24px;
  font-size: 20px;
  font-weight: 700;
  color: #0072bc;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: "S-CoreDream-6Bold";
}

/* 하위 메뉴 영역 */
.submenu-container {
  flex: 1;
  display: flex;
  padding-left: 30px;
}

.submenu {
  display: none;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.submenu.active {
  display: flex;
}

.submenu a {
  position: relative;
  width: 200px;
  font-weight: 500;
  text-decoration: none;
  color: #444;
  font-size: 15px;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.submenu a:hover::before {
  content: "";
  position: absolute;
  left: -10px;
  width: 5px;
  height: 5px;
  background-color: #0072bc;
  border-radius: 50%;
}

.submenu a:hover {
  color: #0072bc;
}

.utill {
  position: absolute;
  top: 17px;
  right: 15px;
}

.utill .bannergoto {
  width: 170px;
  height: 35px;
  border: 1px solid #d3d3d3;
  border-radius: 17px;
  position: relative;
  cursor: pointer;
  text-align: center;
  display: grid;
  place-content: center;
}

.utill .bannergoto:hover {
  border: 1px solid #1f68c6;
  transition: all 0.4s;
}

.utill .bannergoto a {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #000;
  font-family: "S-CoreDream-3Light";
}

.utill .bannergoto:hover a {
  transition: all 0.4s;
  color: #1f68c6;
}

/* 모바일 햄버거 메뉴 기본 숨김 처리 */
.mobile-toggle {
  display: none !important; /* 필요 시 media query로 보이게 조절 */
  position: absolute;
  right: 16px; /* 또는 0px, 필요에 따라 조절 */
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

/* 모바일 메뉴 */
.mobile-nav ul {
  display: none; /* 기본적으로 숨김 */
  flex-direction: column;
  width: 100%;
  background: #333;
  position: absolute;
  top: 70px;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 9999999;
}

/* 모바일 메뉴가 열린 상태 */
.mobile-nav ul.open {
  display: flex;
}

/* 모바일 메뉴 아이템 */
.mobile-nav li {
  border-bottom: 1px solid #444;
}

.mobile-nav li a {
  display: block;
  padding: 15px;
  color: #fff;
  text-decoration: none;
}

/* 하위 메뉴 */
.mobile-nav .submenu01 {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  background: #444;
  z-index: 999999;
  position: absolute;
  top: 54px; /* 상위 메뉴 바로 아래에 위치 */
  left: 0;
  width: 100%;
}

/* 하위 메뉴 링크 스타일 */
.mobile-nav .submenu01 li a {
  padding: 10px 0;
  font-size: 14px;
  color: #fff;
}

/* 하위 메뉴 링크 스타일 */
.mobile-nav .submenu01 li {
  border-bottom: 1px solid #b0b0b0;
  margin: 0 20px 0 0;
}

/* 모바일 아코디언 활성화 */
.mobile-nav li.active .submenu01 {
  display: flex; /* 하위 메뉴가 보이도록 설정 */
}

.mobile-nav .submenu02 {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  background: #444;
  z-index: 999999;
  position: absolute;
  top: 108px; /* 상위 메뉴 바로 아래에 위치 */
  left: 0;
  width: 100%;
}

.mobile-nav .submenu02 li {
  border-bottom: 1px solid #b0b0b0;
  margin: 0 20px 0 0;
}
/* 하위 메뉴 링크 스타일 */
.mobile-nav .submenu02 li a {
  padding: 10px 0;
  font-size: 14px;
  color: #fff;
}

/* 모바일 아코디언 활성화 */
.mobile-nav li.active .submenu02 {
  display: flex; /* 하위 메뉴가 보이도록 설정 */
}

.mobile-nav .submenu03 {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  background: #444;
  z-index: 999999;
  position: absolute;
  top: 162px; /* 상위 메뉴 바로 아래에 위치 */
  left: 0;
  height: 250px;
  width: 100%;
  overflow-y: scroll;
  white-space: nowrap;
}

.mobile-nav .submenu03 li {
  border-bottom: 1px solid #b0b0b0;
  margin: 0 20px 0 0;
}
/* 하위 메뉴 링크 스타일 */
.mobile-nav .submenu03 li a {
  padding: 10px 0;
  font-size: 14px;
  color: #fff;
}

/* 모바일 아코디언 활성화 */
.mobile-nav li.active .submenu03 {
  display: flex; /* 하위 메뉴가 보이도록 설정 */
}

.mobile-nav .submenu04 {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  background: #444;
  z-index: 999999;
  position: absolute;
  top: 214px; /* 상위 메뉴 바로 아래에 위치 */
  left: 0;
  width: 100%;
}

.mobile-nav .submenu04 li {
  border-bottom: 1px solid #b0b0b0;
  margin: 0 20px 0 0;
}
/* 하위 메뉴 링크 스타일 */
.mobile-nav .submenu04 li a {
  padding: 10px 0;
  font-size: 14px;
  color: #fff;
}

/* 모바일 아코디언 활성화 */
.mobile-nav li.active .submenu04 {
  display: flex; /* 하위 메뉴가 보이도록 설정 */
}

.mobile-nav .submenu05 {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  background: #444;
  z-index: 999999;
  position: absolute;
  top: 268px; /* 상위 메뉴 바로 아래에 위치 */
  left: 0;
  width: 100%;
}
.mobile-nav .submenu05 li {
  border-bottom: 1px solid #b0b0b0;
  margin: 0 20px 0 0;
}
/* 하위 메뉴 링크 스타일 */
.mobile-nav .submenu05 li a {
  padding: 10px 0;
  font-size: 14px;
  color: #fff;
}

/* 모바일 아코디언 활성화 */
.mobile-nav li.active .submenu05 {
  display: flex; /* 하위 메뉴가 보이도록 설정 */
}

#contents {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/*카피라이터*/
#footer {
  width: 100%;
  height: 120px;
  background: #1c2633;
  color: #fff;
  display: flex;
  align-items: center;
}

#footerIn {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 왼쪽 로고 */
.flogo img {
  max-height: 50px;
}

/* 가운데 카피라이터 */
.finfo {
  font-size: 15px;
  color: #7a899a;
  text-align: center;
  flex: 1;
}

/* 오른쪽 유관기관 로고 */
.related_org {
  display: flex;
  align-items: center;
}

.related_org img {
  max-height: 40px;
}

/*카피라이터 end*/

/*서브페이지 공통*/

.sub_header {
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 60px;
}

.s1 {
  color: #a9a9a9;
  position: relative;
  padding-left: 25px;
  letter-spacing: -0.8px;
  font-size: 15px;
}

.s1::before {
  content: url(../images/home_icon.png);
  position: absolute;
  left: 0;
  top: 2px;
}

.s2 {
  color: #606060;
}

.sub_tit h1 {
  font-size: 37px;
  font-family: "S-CoreDream-6Bold";
  margin: 30px 0 45px;
}

.clear {
  clear: both;
}

.blue-bt {
  width: 100px;
  height: 50px;
  background: #1f68c6;
  border: 1px solid #1f68c6;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.blue-bt:hover {
  background: #2170d6;
  transition: all 0.3s;
}

.point {
  color: #1f68c6;
  vertical-align: middle;
}

.reserve_complete .my_r_sum {
  display: block;
  margin-bottom: 15px;
}

.sum {
  font-size: 20px;
  font-weight: 600;
  color: #222222;
}
.list_num {
  color: #1f68c6;
}

.list_02 {
  width: 100%;
  border-top: 2px solid #000;
}

.list_02 tr {
  border-bottom: 1px solid #dcdcdc;
  cursor: pointer;
}

.list_02 th {
  width: 200px;
  font-size: 15px;
  font-weight: 600;
  padding: 20px 0 20px 0;
  color: #000;
  background: #fff;
  cursor: default;
}

.list_02 td {
  font-size: 17px;
  text-align: center;
  padding: 15px 0 15px 0;
  color: #666666;
  border-bottom: 1px solid #dcdcdc;
}

.list_02 tr:hover {
  background: #fbfbfb;
  transition: all 0.3s;
}

.list_02 tr:hover .r_view {
  color: #1f68c6;
  font-weight: 400;
  transition: all 0.3s;
}

/*공지사항*/
.notice2 {
  margin-bottom: 30px;
}

.notice2 tr {
  cursor: default;
}

.notice2 td {
  padding: 20px 0 20px 0;
  font-size: 16px;
  color: #222;
}

.notice2 .nh_tit {
  text-align: left;
}

.notice2 .n_tit {
  font-size: 17px;
  font-weight: 600;
  text-align: left;
}
.nview_tit {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.notice2 tr:hover .n_tit {
  color: #1f68c6;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}
.notice_view th {
  text-align: left;
  padding: 30px 0 30px 20px;
}

.no_des {
  display: none;
}

.reserve_bt {
  text-align: right;
  margin-top: 30px;
  margin-bottom: 50px;
}

reserve {
  margin-bottom: 40px;
}

.notice_view th {
  text-align: left;
  padding: 30px 0 30px 20px;
}

.notice_view th:after {
  content: "";
  display: block;
  clear: both;
}

.no_date {
  float: right;
  margin-top: 2px;
  padding-right: 10px;
}

.notice_view .nview_tit {
  vertical-align: middle;
}

.notice_view td {
  font-size: 16px;
  text-align: left;
  cursor: default;
}
.notice_view .file_tit {
  font-weight: 600;
  color: #222;
  padding: 20px 0 20px 20px;
  width: 10%;
}

.notice_view tr:hover {
  background: none;
}

.notice_view tr td a:hover {
  color: #1f68c6;
}

.notice_view tr .f2 img {
  vertical-align: middle;
  margin-right: 3px;
}

.notice_view .write {
  font-weight: 600;
  color: #222;
  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 {
  width: 120px;
  padding: 20px 0 20px 20px;
}

.notice_view tr .nex {
  width: 120px;
  padding: 20px 0 20px 20px;
}

/*검색*/
.search {
  position: absolute;
  top: 100px;
  right: 0;
}

.input_search {
  width: 550px;
  height: 57px;
  border: 1px solid #c1c1c1;
  border-radius: 30px;
  font-size: 17px;
  padding: 0 70px 0 30px;
  position: relative;
}

.input_search::placeholder {
  color: #aeaeae;
}

.search_bt {
  background: none;
  vertical-align: middle;
  position: absolute;
  top: 17px;
  right: 30px;
  cursor: pointer;
}

/*정보공개제도*/
/* 각 제도 섹션 (세부타이틀 + 내용) */
.policy-section {
  margin-bottom: 30px;
  padding: 25px;
  background-color: #f9fbfd; /* 섹션 배경색 */
  border-radius: 8px;
  border: 1px solid #e0e6ed; /* 옅은 테두리 */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.policy-section:hover {
  transform: translateY(-5px); /* 호버 시 살짝 떠오르는 효과 */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* 세부 타이틀 */
.policy-section .section-title {
  font-size: 1.2em;
  color: #007bff; /* 파란색으로 강조 */
  margin-top: 0;
  margin-bottom: 15px;
  border-left: 5px solid #007bff; /* 왼쪽에 라인 추가 */
  padding-left: 15px;
  font-weight: 700; /* 더 굵게 */
}

/* 내용 부분 */
.policy-section .section-content {
  font-size: 1em;
  color: #555;
}

.policy-section .section-content p {
  margin-bottom: 10px;
  line-height: 1.7;
}

.policy-section .section-content ul {
  list-style-type: disc; /* 원형 블릿 */
  padding-left: 25px;
  margin-top: 10px;
}

.policy-section .section-content li {
  margin-bottom: 8px;
}
.flowchart {
  display: flex;
  justify-content: center;
  align-items: center; /* 필요시 세로 중앙 */
  margin: 0 auto;
}
/* 각 단계 박스 공통 스타일 */
.step {
  background: #3498db;
  color: white;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 8px;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.step.decision {
  background: #f1c40f;
  color: #333;
  top: 40px;
}
.step.action1 {
  background: #27ae60;
}
.step.action2 {
  background: #e74c3c;
}
/* 단계 간 가로 화살표 */
.arrow-right {
  width: 20px;
  top: 0px;
  position: relative;
  margin: 0 15px;
}

/* 분기 컨테이너 */
.branch-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1; /* 박스보다 뒤에 표시 */
}
/* 분기 위아래 단계 */
.branch-step {
  background: #3498db;
  color: white;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 8px;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 15px 0;
  position: relative;
}
.branch-step.action1 {
  background: #27ae60;
}
.branch-step.action2 {
  background: #e74c3c;
}

/* 다음 단계 박스들 간 연결용 화살표 */
.next-arrow-horizontal {
  width: 20px;
  margin: 0 15px;
  top: 40px;
  position: relative;
}

/* 마지막 오른쪽(정보공개) 박스 */
.step.final {
  min-width: 160px;
  top: 40px;
}

/*정보공개제도 end*/

/*수수료안내*/
/* 법령 참조 부분 */
.pg-law-ref {
  /* policy-guide-law-reference 대신 pg-law-ref */
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a73e8;
  border-left: 5px solid #1a73e8;
  padding-left: 12px;
}

/* 테이블 본체 스타일 */
.pg-table {
  /* policy-guide-table 대신 pg-table */
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-bottom: 30px;
}
.pg-table thead {
  background: #e9f0ff;
}
.pg-table thead th {
  font-weight: 700;
  color: #084298;
  padding: 7px 18px;
  font-size: 0.9em;
  text-align: left;
  border-bottom: 2px solid #b6d4fe;
}
.pg-table tbody tr {
  border-bottom: 1px solid #ddd;
}
.pg-table tbody tr:nth-child(even) {
  background-color: #fcfcfe;
}
.pg-table tbody td {
  padding: 15px 20px;
  vertical-align: top;
  color: #444;
  font-size: 0.9em;
  word-break: break-word;
}

/* 각 열의 넓이 지정 */
.pg-col-title {
  /* policy-guide-col-title 대신 pg-col-title */
  width: 18%;
  font-weight: 600;
  color: #1a1a1a;
}
.pg-col-content {
  /* policy-guide-col-content 대신 pg-col-content */
  width: 82%;
}

.pg-col-task1 {
  /* policy-guide-col-task 대신 pg-col-task */
  width: 31%;
}
.pg-col-task2 {
  /* policy-guide-col-task 대신 pg-col-task */
  width: 51%;
}

/*공시지정자*/
.disclosure-info {
  margin-bottom: 20px;
}
.disclosure-info p {
  margin: 5px 0;
  color: #666;
}
.disc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.disc-table th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.disc-table th {
  background-color: #f2f6fc;
  color: #2c3e50;
  font-weight: 600;
}
.disc-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.disc-table tr:hover {
  background-color: #f9f9f9;
}
.no-data {
  text-align: center;
  padding: 30px;
  color: #999;
}
/*정관 / 규범 / 규정*/
.doc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 100px;
}

.doc-section {
  flex: 1 1 calc(33.333% - 20px); /* 3개씩 배치, gap 고려 */
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-sizing: border-box;
  min-width: 250px; /* 너무 작아지지 않도록 제한 */
}

.doc-section h2 {
  margin-top: 0;
  color: #333;
  font-size: 20px;
}

.file-box p {
  margin: 5px 0;
  font-size: 14px;
}

.file-box a {
  display: inline-block;
  margin-top: 8px;
  background-color: #007bff;
  color: white;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 4px;
}

.file-box a:hover {
  background-color: #0056b3;
}

/*에러페이지*/
#error_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.error_bg {
  width: 100%;
  height: 100%;
  background: #f3f4f6;
}

.box {
  width: 1157px;
  height: 400px;
  background: #fff;
  box-shadow: 0 0 15px rgb(0 0 0 / 8%);
  margin: 0 auto;
  padding: 150px 0;
  text-align: center;
}

.box2 {
  width: 1157px;
  height: 360px;
  background: #fff;
  box-shadow: 0 0 15px rgb(0 0 0 / 8%);
  margin: 0 auto;
  padding: 150px 0;
  text-align: center;
}

.error_tit {
  color: #162c5e;
  font-size: 30px;
  font-family: "SBAggroB";
  letter-spacing: -1px;
}

.error_des {
  font-size: 16px;
  margin-top: -5px;
}

.btn_main_div button {
  width: 226px;
  height: 57px;
  background: #162c5e;
  border-radius: 4px;
  border: none;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  margin-top: 40px;
}

.btn_main_div button:hover {
  background: #1c3876;
  transition: all 0.3s;
}

.af a {
  color: #05146e;
  font-weight: 600;
  cursor: pointer;
}