@charset "utf-8";

.center_inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.center_inner .center_txt {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.center_inner .center_txt p {
	font-size: var(--fs-24);
  	font-weight: 700;
  	color: var(--color-forest-green);
}
.center_img img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.center_vision {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.center_vision .vision_cont {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.center_vision .vision_cont span {
    color: #fff;
    padding: 5px 20px;
    line-height: normal;
    border-radius: 50px;
    display: inline-block;
    background-color: #0172FF;
    height: auto;
}

.center_taget {
    position: relative;
    width: 100%;
}

.center_taget ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.center_taget ul li {
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    padding: 15px;
}

.center_taget ul li .taget_txt {
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 70px;
    padding: 10px;
    border-radius: 10px;
    background-color: #f2f2f2;
}

.center_taget ul li .taget_txt img {
    max-width: 100%;
    height: auto;
    width: 45px;
    object-fit: cover;
    display: block;
}

.element {
    display: flex;
    gap: 100px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.element .ele_circle {
    position: relative;
    width: 150px;
    height: 150px;
    background-color: var(--color-cream-yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.element .ele_circle span.plus {
    position: absolute;
    right: -58px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #dbdbdb;
    font-weight: 700;
}

.element .ele_circle span {
    display: inline-block;
    text-align: center;
    line-height: 1.2;
}

.center_table table tr th {
    border: 1px solid #dbdbdb;
  	padding: 5px 10px;
}
/* 2. 첫 번째 th의 왼쪽 테두리 제거 */
.center_table table tr th:first-child {
    border-left: none; /* 또는 border-left: 0; */
}

/* 3. 마지막 th의 오른쪽 테두리 제거 */
.center_table table tr th:last-child {
    border-right: none; /* 또는 border-right: 0; */
}]
.center_table table tr,
.center_table table td {
	padding: 5px 10px;
}

.center_table table th:not(:last-child),
.center_table table td:not(:last-child) {
    border-right: 1px solid #dbdbdb; 
}


.org-chart {
    padding: 50px 20px;
    text-align: center;
}

.node {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #50E3C2;
    border-radius: 8px;
    background-color: rgba(80, 227, 194, 0.1);
    min-width: 200px;
}

.level-1 {
    position: relative;
}

.level-1::after {
    content: '';
    position: absolute;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 130px;
    background-color: #99d8c8;
}

.level-2 {
    position: relative;
    margin-top: 30px;
}

.sub-node-group {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    border: 1px solid #B9E300;
    background-color: rgba(185, 227, 0, 0.1);
    min-width: 180px;
}

.sub-node-top,
.sub-node-bottom {
    padding: 5px 15px;
    font-weight: bold;
}

.level-2::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: #99d8c8;
}

.level-2::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: calc(50% - 180px);
    height: 1px;
    background-color: #99d8c8;
}


.level-3-wrapper {
    position: relative;
    margin-top: 100px;
}


.level-3-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: auto;
    background-color: #99d8c8;
}

.level-3-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 1000px;
    transform: translateX(-50%);
    height: 1px;
    background-color: #99d8c8;
    z-index: 1;
}

.team-list {
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index: 2;
}

.team-item {
    width: 30%;
    padding-top: 30px;
    position: relative;
}

.team-item:before {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 30px;
    left: 50%;
    background-color: #99d8c8;
}

.task-list {
    margin-top: 15px;
    padding: 15px;
    text-align: left;
    background-color: #f7fffb;
    border: 1px solid #e6fffb;
    border-radius: 5px;
}

.task-list li {
    font-size: 0.95em;
    line-height: 1.5;
}

.center_inner .grade_txt {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
}

.center_inner .grade_txt p.Line_cont {
    font-weight: 700;
}

.center_inner .grade_txt.full {
    flex: 1 1 100%;
}

.center_inner .txt_wrap {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.doc_card {
    width: 100%;
    border: 2px solid #0172FF;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.doc_card .doc_header {
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc_header h3 {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
}

.doc_header .doc_icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    position: relative;
    background-color: #e9eefc;
}

.doc_header .doc_icon:after {
    content: '';
    width: 35px;
    height: 35px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background: url('/static/assets/ic_earth_hand.svg') no-repeat center center;
    background-size: contain;
}

.doc_header::before {
    content: '';
    width: calc(100% - 40px);
    height: 1px;
    bottom: 0;
    left: 20px;
    position: absolute;
    background-color: #dbdbdb;
}

.doc_card .doc_button a {
    display: flex;
}

.doc_card .doc_button {
    position: relative;
    margin-left: auto;
    font-size: 0.85rem;
}

table.black thead th {
	color:#999;
}
table.black tbody td {
	color:#000;
}
.Direction .direction_wrap {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(251,248,244,1);
}

/* 지도 이미지 영역 */
.Direction .map_area {
  flex: 1.5;
  min-height: 400px;
}

.Direction .map_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
  display: block;
  transform-origin: center center;
}
.Direction .map_area {
  overflow: hidden;
}
/* 정보 영역 */
.Direction .info_area {
  flex: 1;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  border: 2px solid #FF9500;
  gap: 20px;
}

.Direction .info_title {
  font-size: var(--fs-32);
  font-weight: 700;
  color: var(--color-accent-orange);
}

.Direction .info_subtitle {
  font-size: var(--fs-16);
  color: var(--color-neutral-600);
  margin: 0;
}

/* 정보 리스트 */
.Direction .info_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.Direction .info_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.Direction .info_icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.Direction .info_icon img {
  width: 20px;
  height: 20px;
}

.Direction .info_content {
  flex: 1;
}

.Direction .info_ko {
  margin: 0;
  line-height: 1.6;
}

.Direction .info_en {
  font-size: var(--fs-16);
  color: var(--color-neutral-500);
  line-height: 1.5;
}

.Direction .info_route .info_ko {
  line-height: 1.7;
}

/* 길찾기 버튼 */
.Direction .btn_direction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: var(--fs-18);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: auto;
}

.Direction .btn_direction {
  background: var(--color-forest-green);
}

.Direction .btn_direction img {
  width: 20px;
  height: 20px;
}



@media (max-width: 1024px) {
    .center_taget ul li {
        flex: 1 1 calc(50% - 20px);
    }
    .Direction .info_area {
    padding: 25px 30px;
 	 }
    .element .ele_circle {
        width: 100px;
        height: 100px;
    }

    .element .ele_circle span.plus {
        right: -32px;
        font-size: 1.5rem;
    }

    .element {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .center_taget ul li {
        flex: 1 1 100%;
    }

    .center_vision {
        flex-direction: column;
    }

    .center_inner,
    .center_inner .txt_wrap {
        gap: 10px;
    }

    .center_taget ul li {
        gap: 10px;
        padding: 5px;
    }

    .center_taget ul {
        gap: 10px;
    }

    .center_inner .grade_txt {
        flex: 1 1 100%;
    }

    .doc_card .doc_header {
        flex-direction: column;
        padding: 10px;
    }

    .doc_header .doc_icon {
        display: none;
    }

    .org-chart {
        padding: 30px 10px;
    }

    .level-2 {
        min-height: 0;
    }

    .level-2::after,
    .level-2::before,
    .level-3-wrapper::before,
    .level-3-wrapper::after {
        content: none;
    }

    .sub-node-group {
        position: relative;
        right: inherit;
        top: inherit;
        transform: none;
    }

    .node {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        min-width: 100%;
    }

    .task-list {
        margin: 0;
    }

    .level-3-wrapper {
        margin-top: 30px;
    }

    .team-list {
        flex-direction: column;
        justify-content: center;
    }

    .team-item {
        width: 100%;
        padding-top: 0;
        margin-bottom: 0;
    }

    .team-item:not(:first-child)::before {
        content: none;
    }

    .team-item:first-child::before {
        top: -30px;
        height: 30px;
    }

    .level-1::after {
        bottom: -30px;
        height: 30px;
    }
    .Direction .direction_wrap {
    flex-direction: column;
    }

    .Direction .map_area {
      min-height: 0;
    }

    .Direction .info_area {
      padding: 20px;
    }

    .Direction .info_title {
      font-size: var(--fs-20);
    }

    .Direction .info_subtitle {
      font-size: var(--fs-14);
    }

    .Direction .info_list {
      gap: 12px;
    }

    .Direction .info_item {
      gap: 10px;
    }

    .Direction .info_ko {
      font-size: var(--fs-14);
    }

    .Direction .info_en {
      font-size: var(--fs-12);
    }

    .Direction .btn_direction {
      padding: 14px 20px;
      font-size: var(--fs-16);
    }
}

@media (max-width: 600px) {
    .center_img img {
        max-width: 350px;
    }

    .element .ele_circle {
        width: 50px;
        height: 50px;
    }

    .element {
        gap: 10px;
    }

    .element .ele_circle span.plus {
        display: none;
    }
}


@media (max-width: 450px) {
    .task-list {
        padding: 10px;
    }
  	.org-chart {
  		padding: 20px 10px;
  	}
    .level-1::after {
        height: 20px;
        bottom: -20px;
    }

    .level-2,
    .level-3-wrapper {
        margin-top: 20px;
    }

    .team-item:first-child::before {
        top: -20px;
        height: 20px;
    }

    .center_taget ul li .taget_txt img {
        width: 30px;
    }

}