.pc {
  display: block;
}
.mo {
  display: none;
}
img {
  max-width: 100%;
  height: auto;
}

.introduce-wrap h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}
.introduce-box {
  margin-bottom: 100px;
}
.introduce-box .tit-box {
  padding: 32px 54px;
  border-radius: 12px;
  background-color: rgba(127, 188, 3, 0.05);
  border: solid 1px #51740b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;
}
.introduce-box .tit-box .title {
  font-size: 24px;
  font-weight: 700;
  color: #51740b;
}
.introduce-box .tit-box .txt {
  font-size: 16px;
  text-align: center;
  line-height: 1.75rem;
  word-break: keep-all;
}

.introduce-map {
  margin-bottom: 16px;
}
.introduce-mapInfo {
  display: flex;
}
.introduce-mapInfo .menu-box {
  min-width: 260px;
  width: 30%;
  display: flex;
  flex-wrap: wrap;
  padding: 8px;
  border: solid 1px #51740b;
  border-radius: 12px;
}
.menu-box > button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: #fff;
  font-size: 18px;
  width: 50%;
  text-decoration: none;
  color: inherit;
  padding: 16px;
}
.menu-box > button.active {
  border-radius: 12px;
  background-color: #51740b;
  color: #fff;
  font-weight: 700;
}
.tab-txtBox {
  flex: 1;
  margin-left: 20px;
  border-radius: 12px;
  border: solid 1px #51740b;
  background-color: rgba(127, 188, 3, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.tab-txtBox ul {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  padding: 16px 20px 16px 28px;
  font-size: 16px;
  background-color: #fff;
}
.tab-txtBox ul li {
  position: relative;
}
.tab-txtBox ul li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background-color: #333;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.system-cont {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.system-cont .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  padding: 32px 24px;
  flex: 1;
  background-color: #dcdcdc;
  border-radius: 24px;
  min-height: 240px;
  background: url(../../../assets/common/img/management_1.jpg) 50% 50% no-repeat;
  background-size: cover;
  position: relative;
}
.system-cont .item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 24px;
  backdrop-filter: blur(4px);
  background-color: #000;
  opacity: 0.4;
}
.system-cont .item:nth-child(2) {
  background: url(../../../assets/common/img/management_2.jpg) 50% 50% no-repeat;
  background-size: cover;
}
.system-cont .item:nth-child(3) {
  background: url(../../../assets/common/img/management_3.jpg) 50% 50% no-repeat;
  background-size: cover;
}
.system-cont .item p {
  font-size: 20px;
  font-weight: 700;
}
.system-cont .item span {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  word-break: keep-all;
}
.system-cont .item p,
.system-cont .item span {
  z-index: 1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  color: #fff;
}

.intro-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro-chart .dep {
  padding: 40px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.intro-chart .dep.several {
  justify-content: space-between;
  border-top: solid 1px #767676;
  width: 60%;
  margin-bottom: 300px;
}
.intro-chart .dep.top {
  padding-top: 0;
}
.intro-chart .dep.bottom {
  padding-bottom: 0;
}
.intro-chart .top li {
  border-radius: 500px;
  border: solid 10px #e5f2cd;
}
.intro-chart .top li div {
  width: 240px;
  height: 120px;
  background: #7fbc03;
  background: linear-gradient(
    140deg,
    rgba(127, 188, 3, 1) 29%,
    rgba(81, 116, 11, 1) 100%
  );
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  position: relative;
}
.intro-chart .top li div::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background-image: url(/assets/common/img/org_bg.png);
  background-size: cover;
}
.intro-chart .dep li {
  position: relative;
}
.intro-chart .dep > li::after,
.intro-chart .dep > li::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 40px;
  background-color: #767676;
  transform: translate(-50%, 100%);
}
.intro-chart .dep li::after {
  top: 0;
  bottom: auto;
  transform: translate(-50%, -100%);
}
.intro-chart .dep.top li::before {
  transform: translate(-50%, calc(100% + 10px));
}
.intro-chart .dep.top li::after,
.intro-chart .dep.bottom li::before {
  display: none;
}
.intro-chart .dep .oneDep-name {
  padding: 16px 48px;
  border-radius: 12px;
  background-color: #ddd;
  font-size: 20px;
  font-weight: 700;
}
.intro-chart .teamDep-name .abs-box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
}
.intro-chart .teamDep-name .abs-box div {
  width: 100%;
  height: 220px;
  background-color: #eee;
  border-radius: 24px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding-top: 48px;
}
.intro-chart .teamDep-name .abs-box ul {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background-color: #fff;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 20px;
}
.intro-chart .teamDep-name .abs-box ul li {
  padding: 20px 0;
  font-size: 18px;
}

@media screen and (max-width: 1024px) {
  .introduce-mapInfo {
    flex-direction: column;
  }
  .introduce-mapInfo .menu-box {
    width: 100%;
    justify-content: space-evenly;
  }
  .menu-box > button {
    width: 20%;
    min-width: 120px;
    flex: 1;
  }
  .tab-txtBox {
    margin-left: 0;
    margin-top: 10px;
  }

  .system-cont {
    gap: 4px;
    flex-direction: column;
  }
  .system-cont .item {
    min-height: 180px;
  }

  .intro-chart {
    position: relative;
  }
  .intro-chart::before {
    position: absolute;
    content: "";
    height: calc(100% - 153px);
    width: 1px;
    top: 38px;
    left: 0;
    background-color: #767676;
  }
  .intro-chart .dep {
    padding: 0;
    position: relative;
  }
  .intro-chart .dep > li::after,
  .intro-chart .dep > li::before {
    display: none;
  }
  .intro-chart .dep::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 50%;
    background-color: #767676;
    top: 50%;
    left: 0;
    z-index: -1;
  }
  .intro-chart .top li div {
    width: 160px;
    height: 56px;
    font-size: 20px;
  }
  .intro-chart .dep > li {
    border-radius: 100px !important;
    margin: 20px 0;
  }
  .intro-chart .dep.top > li {
    margin: 0;
  }
  .intro-chart .dep.several {
    flex-direction: column;
    margin-bottom: 0;
    border: none;
    width: 100%;
  }
  .intro-chart .dep.several::after {
    display: none;
  }
  .intro-chart .teamDep-name .abs-box {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    transform: none;
    display: flex;
  }
  .intro-chart .teamDep-name .abs-box::before {
    position: absolute;
    content: "";
    top: 28px;
    left: 0;
    width: calc(100% - 20px);
    height: 1px;
    z-index: -1;
    background-color: #767676;
  }
  .intro-chart .teamDep-name .abs-box div {
    width: 160px;
    height: 56px;
    font-size: 18px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 500px;
    margin-left: 24px;
  }
  .intro-chart .teamDep-name .abs-box ul {
    position: static;
    transform: none;
    width: calc(100% - 184px);
    background-color: transparent;
    border-radius: auto;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .intro-chart .teamDep-name .abs-box ul li {
    padding: 0;
    font-size: 18px;
    width: 60%;
    min-width: 160px;
    height: 56px;
    background: #fff;
    border: solid 1px #767676;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .mo {
    display: block;
  }
  .introduce-wrap h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .introduce-box .tit-box {
    padding: 32px 28px;
  }
  .introduce-box .tit-box .title {
    font-size: 20px;
    text-align: center;
  }
  .intro-chart .teamDep-name .abs-box ul li,
  .intro-chart .teamDep-name .abs-box div,
  .intro-chart .top li div,
  .menu-box > button.active {
    font-size: 16px;
  }
  .intro-chart .teamDep-name .abs-box div {
    width: 40%;
    min-width: 100px;
  }
  .intro-chart .teamDep-name .abs-box div {
    margin-left: 10px;
  }
  .intro-chart .teamDep-name .abs-box ul {
    width: calc(100% - 110px);
  }
  .intro-chart .teamDep-name .abs-box ul li {
    min-width: 140px;
  }
}

.ani {
  opacity: 0;
}
.ani.in-view {
  animation: slideup 1.5s ease;
  animation-fill-mode: forwards;
}

.ani.ani-1,
.ani.ani-2,
.ani.ani-3 {
  animation: slideup 1s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.ani.ani-2 {
  animation-delay: 0.5s;
}
.ani.ani-3 {
  animation-delay: 1s;
}

@keyframes slideup {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 100;
    transform: translateY(0);
  }
}
