@charset "UTF-8";
/* 프로젝트에서 뽑은 값 */
/* //End 프로젝트에서 뽑은 값 */
/* 드롭다운,멀티포함 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #888888;
}

::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 0;
}

/**
 * 텍스트의 상단 및 하단 여백을 제거하는 믹스인
 * @param {unit} $font-size - 적용할 폰트 크기
 * @param {unit} $top-trim - 상단 여백을 조절할 값 (em 단위 추천)
 * @param {unit} $bottom-trim - 하단 여백을 조절할 값 (em 단위 추천)
 */
/**
 * [헬퍼 믹스인] remove-text-space-style로 생성된 요소의
 * 상하 트림(margin) 값만 수정합니다.
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 16px;
  font-family: "Noto Sans KR", "Malgun Gothic", "돋움", "DotumChe", "Dotum", sans-serif;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
  letter-spacing: -0.02em;
  word-break: keep-all;
  line-height: 1.5;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
div {
  position: relative;
  display: block;
}

body {
  line-height: 1;
  color: black;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

strong {
  font: inherit;
}

label,
button,
input[type=submit],
input[type=checkbox],
input[type=radio],
input[type=button] {
  padding: 0px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}

input[type=text],
input[type=password],
input[type=number] {
  padding: 0px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input,
button,
textarea,
select {
  border: none;
  font-family: "Noto Sans KR", "Malgun Gothic", "돋움", "DotumChe", "Dotum", sans-serif;
  box-sizing: border-box;
}

input[type=submit],
button[type=submit] {
  font-family: "Noto Sans KR", "Malgun Gothic", "돋움", "DotumChe", "Dotum", sans-serif;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

button:focus,
textarea:focus,
input:focus {
  outline: none;
}

button,
textarea,
input,
select,
a,
label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

img {
  vertical-align: middle;
}

button {
  background: transparent;
  color: inherit;
}

input,
textarea {
  border: 1px solid transparent;
  transition: border 0.3s ease-in-out;
}

::-moz-placeholder {
  color: #666666;
  font-family: "Noto Sans KR", "Malgun Gothic", "돋움", "DotumChe", "Dotum", sans-serif;
}

::placeholder {
  color: #666666;
  font-family: "Noto Sans KR", "Malgun Gothic", "돋움", "DotumChe", "Dotum", sans-serif;
}

.no-scroll {
  overflow: hidden !important;
}
.no-scroll .scroll-frame {
  overflow: hidden !important;
}

br.mo {
  display: block;
}
@media screen and (min-width: 768px) {
  br.mo {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  br.mo {
    display: none;
  }
}
br.sm {
  display: none;
}
@media screen and (min-width: 768px) {
  br.sm {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  br.sm {
    display: none;
  }
}
br.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  br.pc {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  br.pc {
    display: block;
  }
}

/* 변수 설정 */
.org-row .inner {
  width: 100%;
  max-width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .org-row .inner {
    max-width: 25rem;
  }
}
@media screen and (min-width: 992px) {
  .org-row .inner {
    max-width: 100%;
  }
}
@media screen and (min-width: 1600px) {
  .org-row .inner {
    width: 992px;
    max-width: 100%;
  }
}
.org-row .box {
  position: relative;
  background: #fff;
  font-weight: 500;
  font-size: 15px;
  color: #003a63;
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  border: 2px solid #003a63;
  border-radius: 8px;
  z-index: 2;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box {
    font-size: 0.9167rem;
  }
}
@media (max-width: 639px) {
  .org-row .box {
    font-size: 3.85vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box {
    border-radius: 0.5rem;
  }
}
@media (max-width: 639px) {
  .org-row .box {
    border-radius: 2.1vw;
  }
}
.org-row .box.t2 {
  width: 70px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t2 {
    width: 4.375rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t2 {
    width: 18.375vw;
  }
}
.org-row .box.t3 {
  width: 70px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t3 {
    width: 4.375rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t3 {
    width: 18.375vw;
  }
}
.org-row .box.t4 {
  width: 87px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t4 {
    width: 5.4167rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t4 {
    width: 22.75vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .box.t4 {
    width: 107px;
  }
}
.org-row .box.t5 {
  width: 103px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t5 {
    width: 6.4583rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t5 {
    width: 27.125vw;
  }
}
.org-row .box.t6 {
  width: 120px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t6 {
    width: 7.5rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t6 {
    width: 31.5vw;
  }
}
.org-row .box.t7 {
  width: 137px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t7 {
    width: 8.5417rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t7 {
    width: 35.875vw;
  }
}
.org-row .box.t8 {
  width: 153px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t8 {
    width: 9.5833rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t8 {
    width: 40.25vw;
  }
}
.org-row .box.t9 {
  width: 170px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t9 {
    width: 10.625rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t9 {
    width: 44.625vw;
  }
}
.org-row .box.t10 {
  width: 187px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t10 {
    width: 11.6667rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t10 {
    width: 49vw;
  }
}
.org-row .box.t11 {
  width: 203px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t11 {
    width: 12.7083rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t11 {
    width: 53.375vw;
  }
}
.org-row .box.t12 {
  width: 220px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t12 {
    width: 13.75rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t12 {
    width: 57.75vw;
  }
}
.org-row .box.t13 {
  width: 237px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t13 {
    width: 14.7917rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t13 {
    width: 62.125vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .box.t13 {
    width: 87px;
  }
}
.org-row .box.t14 {
  width: 253px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t14 {
    width: 15.8333rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t14 {
    width: 66.5vw;
  }
}
.org-row .box.t15 {
  width: 270px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t15 {
    width: 16.875rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t15 {
    width: 70.875vw;
  }
}
.org-row .box.t16 {
  width: 287px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t16 {
    width: 17.9167rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t16 {
    width: 75.25vw;
  }
}
.org-row .box.t17 {
  width: 303px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.t17 {
    width: 18.9583rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.t17 {
    width: 79.625vw;
  }
}
.org-row .box.tr1 {
  height: 37px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.tr1 {
    height: 2.2917rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.tr1 {
    height: 9.625vw;
  }
}
.org-row .box.tr2 {
  height: 60px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.tr2 {
    height: 3.75rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.tr2 {
    height: 15.75vw;
  }
}
.org-row .box.tr3 {
  height: 83px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .box.tr3 {
    height: 5.2083rem;
  }
}
@media (max-width: 639px) {
  .org-row .box.tr3 {
    height: 21.875vw;
  }
}
.org-row .node {
  padding: 0px 0px 20px 0px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .node {
    padding: 0rem 0rem 1.25rem 0rem;
  }
}
@media (max-width: 639px) {
  .org-row .node {
    padding: 0vw 0vw 5.25vw 0vw;
  }
}
.org-row .node:before, .org-row .node:after {
  content: "";
  opacity: 0.5;
  background: #ccc;
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: 1;
}
.org-row .node .left:before, .org-row .node .left:after, .org-row .node .right:before, .org-row .node .right:after {
  content: "";
  opacity: 0.5;
  background: #ccc;
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: 1;
}
.org-row .level-1:after {
  width: 133px;
  left: 35px;
  top: 47px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-1:after {
    width: 8.3333rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-1:after {
    width: 35vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-1:after {
    left: 2.1875rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-1:after {
    left: 9.1875vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-1:after {
    top: 2.9167rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-1:after {
    top: 12.25vw;
  }
}
.org-row .level-1 i {
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 3;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-1 i {
    width: 1.25rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-1 i {
    width: 5.25vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-1 i {
    height: 1.25rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-1 i {
    height: 5.25vw;
  }
}
.org-row .level-1 i:nth-of-type(1) {
  left: -13px;
  bottom: 10px;
  background: url("/images/SVG/symbol-top.svg") 0 0 no-repeat;
  background-size: 100%;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-1 i:nth-of-type(1) {
    left: -0.8333rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-1 i:nth-of-type(1) {
    left: -3.5vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-1 i:nth-of-type(1) {
    bottom: 0.625rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-1 i:nth-of-type(1) {
    bottom: 2.625vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-1 i:nth-of-type(1) {
    left: 50%;
    margin-left: -46px;
  }
}
.org-row .level-1 i:nth-of-type(2) {
  left: 60px;
  top: -10px;
  background: url("/images/SVG/symbol-bottom.svg") 0 0 no-repeat;
  background-size: 100%;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-1 i:nth-of-type(2) {
    left: 3.75rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-1 i:nth-of-type(2) {
    left: 15.75vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-1 i:nth-of-type(2) {
    top: -0.625rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-1 i:nth-of-type(2) {
    top: -2.625vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-1 i:nth-of-type(2) {
    left: 50%;
    margin-left: 26px;
  }
}
.org-row .level-1:before, .org-row .level-2:before {
  top: 0;
  left: 35px;
  height: 85px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-1:before, .org-row .level-2:before {
    left: 2.1875rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-1:before, .org-row .level-2:before {
    left: 9.1875vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-1:before, .org-row .level-2:before {
    height: 5.3125rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-1:before, .org-row .level-2:before {
    height: 22.3125vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-1:before, .org-row .level-2:before {
    left: 50%;
    height: 25px;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-1, .org-row .level-2 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-1:before {
    left: 50%;
    height: 57px;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-1:after {
    width: 494px;
    left: 293px;
    top: 113px;
  }
}
.org-row .level-1 .box {
  background: #003a63;
  color: #fff;
}
.org-row .level-2 {
  padding-bottom: 33px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-2 {
    padding-bottom: 2.0833rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-2 {
    padding-bottom: 8.75vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-2 {
    padding-bottom: 20px;
  }
}
.org-row .level-2:before {
  height: 300px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-2:before {
    height: 18.75rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-2:before {
    height: 78.75vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-2:before {
    height: 57px;
  }
}
.org-row .level-2 .box {
  border-color: #e62140;
}
.org-row .level-3 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding-left: 43px;
  padding-bottom: 183px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-3 {
    gap: 0.625rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-3 {
    gap: 2.625vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-3 {
    padding-left: 2.7083rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-3 {
    padding-left: 11.375vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-3 {
    padding-bottom: 11.4583rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-3 {
    padding-bottom: 48.125vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-3 {
    width: 992px;
    justify-content: space-between;
    padding-bottom: 0;
    padding-left: 0;
    top: -30px;
  }
}
.org-row .level-3:before, .org-row .level-3:after {
  display: none;
}
.org-row .level-3 .left:after {
  width: 67px;
  top: 18px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-3 .left:after {
    width: 4.1667rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-3 .left:after {
    width: 17.5vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-3 .left:after {
    top: 1.1458rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-3 .left:after {
    top: 4.8125vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-3 .left:after {
    width: 392px;
    top: 18px;
  }
}
.org-row .level-3 .left:before {
  height: 92px;
  left: 145px;
  top: 18px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-3 .left:before {
    height: 5.7292rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-3 .left:before {
    height: 24.0625vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-3 .left:before {
    left: 9.0625rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-3 .left:before {
    left: 38.0625vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-3 .left:before {
    top: 1.1458rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-3 .left:before {
    top: 4.8125vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-3 .left:before {
    height: 1px;
    width: 120px;
    left: 52px;
    top: 45px;
  }
}
.org-row .level-3 .left .box {
  border-color: #e62140;
}
.org-row .level-3 .right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  margin-top: -100px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-3 .right {
    gap: 0.625rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-3 .right {
    gap: 2.625vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-3 .right {
    margin-top: -6.25rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-3 .right {
    margin-top: -26.25vw;
  }
}
.org-row .level-3 .right .box:first-child {
  border-color: #e62140;
}
@media screen and (min-width: 992px) {
  .org-row .level-3 .right {
    margin-top: 0;
  }
  .org-row .level-3 .right:before {
    width: 444px;
    left: -392px;
    top: -38px;
  }
  .org-row .level-3 .right:after {
    width: 1px;
    height: 120px;
    left: 50%;
    top: -38px;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 {
    width: 992px;
    height: 400px;
  }
}
.org-row .level-4 .left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  left: 200px;
  top: -220px;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left {
    left: 12.5rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left {
    left: 52.5vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left {
    top: -13.75rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left {
    top: -57.75vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left {
    gap: 0.625rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left {
    gap: 2.625vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .left {
    left: 0;
    top: -60px;
    align-items: flex-start;
  }
  .org-row .level-4 .left:before {
    left: 50%;
    top: -20px;
    height: 120px;
  }
}
.org-row .level-4 .left > .box:before, .org-row .level-4 .left > .box:after {
  content: "";
  opacity: 0.5;
  background: #ccc;
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .left > .box:nth-of-type(1):before {
    display: none;
  }
}
.org-row .level-4 .left > .box:nth-of-type(2):before {
  width: 13px;
  left: -13px;
  top: 15px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left > .box:nth-of-type(2):before {
    width: 0.8333rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left > .box:nth-of-type(2):before {
    width: 3.5vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left > .box:nth-of-type(2):before {
    left: -0.8333rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left > .box:nth-of-type(2):before {
    left: -3.5vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left > .box:nth-of-type(2):before {
    top: 0.9375rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left > .box:nth-of-type(2):before {
    top: 3.9375vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .left > .box:nth-of-type(2):before {
    display: none;
  }
}
.org-row .level-4 .left > .box:nth-of-type(3):before {
  width: 13px;
  left: -13px;
  top: 15px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left > .box:nth-of-type(3):before {
    width: 0.8333rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left > .box:nth-of-type(3):before {
    width: 3.5vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left > .box:nth-of-type(3):before {
    left: -0.8333rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left > .box:nth-of-type(3):before {
    left: -3.5vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left > .box:nth-of-type(3):before {
    top: 0.9375rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left > .box:nth-of-type(3):before {
    top: 3.9375vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .left > .box:nth-of-type(3):before {
    display: none;
  }
}
.org-row .level-4 .left .left-side {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  left: -107px;
  top: 47px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left .left-side {
    gap: 0.625rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left .left-side {
    gap: 2.625vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left .left-side {
    left: -6.6667rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left .left-side {
    left: -28vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left .left-side {
    top: 2.9167rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left .left-side {
    top: 12.25vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .left .left-side {
    left: 118px;
    top: 48px;
  }
  .org-row .level-4 .left .left-side:after {
    display: none;
  }
}
.org-row .level-4 .left .left-side:before {
  content: "";
  opacity: 0.5;
  background: #ccc;
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: 1;
  left: 67px;
  top: -27px;
  height: 67px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left .left-side:before {
    left: 4.1667rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left .left-side:before {
    left: 17.5vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left .left-side:before {
    top: -1.6667rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left .left-side:before {
    top: -7vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left .left-side:before {
    height: 4.1667rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left .left-side:before {
    height: 17.5vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .left .left-side:before {
    left: 50%;
    top: -57px;
    height: 157px;
  }
}
.org-row .level-4 .left .left-side > .box:nth-of-type(1):before {
  content: "";
  opacity: 0.5;
  background: #ccc;
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: 1;
  left: -59px;
  top: -30px;
  width: 10px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(1):before {
    left: -3.7083rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(1):before {
    left: -15.575vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(1):before {
    top: -1.875rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(1):before {
    top: -7.875vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(1):before {
    width: 0.625rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(1):before {
    width: 2.625vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(1):before {
    display: none;
  }
}
.org-row .level-4 .left .left-side > .box:nth-of-type(2) {
  background: #f5f5f5;
}
.org-row .level-4 .left .left-side > .box:nth-of-type(2):before {
  content: "";
  opacity: 0.5;
  background: #ccc;
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: -1;
  left: 43px;
  top: -12px;
  height: 12px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(2):before {
    left: 2.7083rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(2):before {
    left: 11.375vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(2):before {
    top: -0.75rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(2):before {
    top: -3.15vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(2):before {
    height: 0.75rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(2):before {
    height: 3.15vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .left .left-side > .box:nth-of-type(2):before {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 600px;
    left: 240px;
    top: -67px;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.org-row .level-4 .right .right-item .right-item-top:after {
  content: "";
  opacity: 0.5;
  background: #ccc;
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: -1;
  left: 42px;
  top: 37px;
  height: 12px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item .right-item-top:after {
    left: 2.6042rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item .right-item-top:after {
    left: 10.9375vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item .right-item-top:after {
    top: 2.2917rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item .right-item-top:after {
    top: 9.625vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item .right-item-top:after {
    height: 0.75rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item .right-item-top:after {
    height: 3.15vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right .right-item .right-item-top:after {
    left: 50%;
    height: 25px;
    top: -17px;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right .right-item .right-item-top {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.org-row .level-4 .right .right-item .right-item-top .box {
  border-color: #e62140;
}
.org-row .level-4 .right .right-item:nth-of-type(1) {
  height: 200px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item:nth-of-type(1) {
    height: 12.5rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item:nth-of-type(1) {
    height: 52.5vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right .right-item:nth-of-type(1) {
    height: auto;
  }
}
.org-row .level-4 .right .right-item:nth-of-type(1) .right-item-top:after {
  height: 167px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item:nth-of-type(1) .right-item-top:after {
    height: 10.4167rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item:nth-of-type(1) .right-item-top:after {
    height: 43.75vw;
  }
}
.org-row .level-4 .right .right-item:nth-of-type(2) {
  height: 117px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item:nth-of-type(2) {
    height: 7.2917rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item:nth-of-type(2) {
    height: 30.625vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right .right-item:nth-of-type(2) {
    height: auto;
  }
}
.org-row .level-4 .right .right-item:nth-of-type(2) .right-item-top:after {
  height: 83px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item:nth-of-type(2) .right-item-top:after {
    height: 5.2083rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item:nth-of-type(2) .right-item-top:after {
    height: 21.875vw;
  }
}
.org-row .level-4 .right .right-item:nth-of-type(3) {
  height: 200px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item:nth-of-type(3) {
    height: 12.5rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item:nth-of-type(3) {
    height: 52.5vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right .right-item:nth-of-type(3) {
    height: auto;
  }
}
.org-row .level-4 .right .right-item:nth-of-type(3) .right-item-top:after {
  height: 167px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item:nth-of-type(3) .right-item-top:after {
    height: 10.4167rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item:nth-of-type(3) .right-item-top:after {
    height: 43.75vw;
  }
}
.org-row .level-4 .right .right-item:nth-of-type(4) {
  height: 117px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item:nth-of-type(4) {
    height: 7.2917rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item:nth-of-type(4) {
    height: 30.625vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right .right-item:nth-of-type(4) {
    height: auto;
  }
}
.org-row .level-4 .right .right-item:nth-of-type(4) .right-item-top:after {
  height: 83px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item:nth-of-type(4) .right-item-top:after {
    height: 5.2083rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item:nth-of-type(4) .right-item-top:after {
    height: 21.875vw;
  }
}
.org-row .level-4 .right .right-item:nth-of-type(5) {
  height: 183px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item:nth-of-type(5) {
    height: 11.4583rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item:nth-of-type(5) {
    height: 48.125vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right .right-item:nth-of-type(5) {
    height: auto;
  }
}
.org-row .level-4 .right .right-item:nth-of-type(5) .right-item-top:after {
  display: none;
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right .right-item:nth-of-type(5) .right-item-top:after {
    display: block;
    height: 83px;
  }
}
@media screen and (min-width: 992px) and (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item:nth-of-type(5) .right-item-top:after {
    height: 5.2083rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 639px) {
  .org-row .level-4 .right .right-item:nth-of-type(5) .right-item-top:after {
    height: 21.875vw;
  }
}
.org-row .level-4 .right .right-item .right-item-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 100px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item .right-item-bottom {
    gap: 0.625rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item .right-item-bottom {
    gap: 2.625vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item .right-item-bottom {
    left: 6.25rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item .right-item-bottom {
    left: 26.25vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right .right-item .right-item-bottom {
    position: relative;
    top: 20px;
    left: unset;
  }
}
.org-row .level-4 .right .right-item .right-item-bottom .box {
  font-size: 13px;
  justify-content: flex-start;
  padding-left: 10px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box {
    font-size: 0.8333rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box {
    font-size: 3.5vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box {
    padding-left: 0.625rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box {
    padding-left: 2.625vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box {
    width: 107px;
    padding: 10px 5px;
    height: auto;
    background: #f5f5f5;
  }
}
.org-row .level-4 .right .right-item .right-item-bottom .box:after {
  content: "";
  opacity: 0.5;
  background: #ccc;
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: -1;
  left: 50%;
  top: -12px;
  height: 12px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box:after {
    top: -0.75rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box:after {
    top: -3.15vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box:after {
    height: 0.75rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box:after {
    height: 3.15vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box:after {
    top: -11px;
    height: 8px;
  }
}
.org-row .level-4 .right .right-item .right-item-bottom .box:first-child:after {
  display: none;
}
.org-row .level-4 .right .right-item .right-item-bottom .box:first-child:before {
  content: "";
  opacity: 0.5;
  background: #ccc;
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: -1;
  top: 18px;
  left: -15px;
  width: 13px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box:first-child:before {
    top: 1.1458rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box:first-child:before {
    top: 4.8125vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box:first-child:before {
    left: -0.9167rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box:first-child:before {
    left: -3.85vw;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box:first-child:before {
    width: 0.8333rem;
  }
}
@media (max-width: 639px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box:first-child:before {
    width: 3.5vw;
  }
}
@media screen and (min-width: 992px) {
  .org-row .level-4 .right .right-item .right-item-bottom .box:first-child:before {
    display: none;
  }
}