.downloadBox .documentItem .downloadLink svg, .downloadBox .documentItem .downloadLink span {
  transition: all 0.5s ease-in-out;
}

.articleTitle {
  margin-bottom: clamp(20px, 3vw, 50px);
}

.sectionTitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.shareBox {
  float: right;
}
.shareBox .btn-fb {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.shareBox .back {
  display: inline-block;
  vertical-align: middle;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(to bottom, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
  cursor: pointer;
}
@media (min-width: 1181px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}

.investorLayout {
  display: flex;
  justify-content: space-between;
  gap: 20px 40px;
  padding-top: 30px;
  padding-bottom: 50px;
}
.investorLayout .leftBox {
  max-width: 320px;
  width: 100%;
}
.investorLayout .rightBox {
  flex: 1;
}
@media (max-width: 1180px) {
  .investorLayout {
    flex-direction: column;
  }
  .investorLayout .leftBox {
    max-width: 100%;
  }
  .investorLayout .rightBox {
    flex: auto;
  }
}

.moreInfoBox {
  margin-top: 20px;
}
.moreInfoBox h4,
.moreInfoBox .infotitle {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  padding-bottom: 10px;
  padding-left: 10px;
  position: relative;
}
.moreInfoBox h4::before,
.moreInfoBox .infotitle::before {
  content: "";
  width: 2px;
  height: 16px;
  background-color: #AA8223;
  position: absolute;
  top: 2px;
  left: 0;
}
.moreInfoBox p {
  padding-left: 10px;
  color: #5C5C5C;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 24px;
}
.moreInfoBox p.subtitle {
  padding-bottom: 0px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.investorNav {
  padding: 0;
  position: relative;
}
.investorNav .classCurrent {
  background-color: transparent;
  color: #5C5C5C;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
}
.investorNav .classCurrent::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 1px solid #878787;
  border-right: 1px solid #878787;
  border-left: none;
  border-bottom: none;
  background-color: transparent;
  transform: rotate(135deg);
  font-family: inherit;
  color: inherit;
  font-size: 0;
  right: 15px;
  transition: transform 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .investorNav .classCurrent::before {
    right: 10px;
  }
}
.investorNav > .classLink {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: none;
}
@media (min-width: 1181px) {
  .investorNav > .classLink {
    display: block;
  }
}
@media (max-width: 1180px) {
  .investorNav > .classLink {
    display: none !important;
    position: absolute !important;
    width: 100% !important;
    max-height: 65dvh !important;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    top: calc(100% + 1px);
    left: 0;
    z-index: 10;
    text-align: left;
  }
  .investorNav > .classLink::-webkit-scrollbar-track {
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.15);
    background-color: #dbdbdb;
  }
  .investorNav > .classLink::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: #dbdbdb;
  }
  .investorNav > .classLink::-webkit-scrollbar-thumb {
    background: #AA8223;
  }
  .investorNav > .classLink.open {
    display: block !important;
  }
}
.investorNav > .classLink > .classItem {
  list-style: none;
}
@media (min-width: 1181px) {
  .investorNav > .classLink > .classItem {
    width: 100%;
  }
}
.investorNav > .classLink > .classItem > a:not(.linkHasItems) {
  display: block;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #5C5C5C;
  letter-spacing: 2px;
  border-left: 1px solid #D7D7D7;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media (max-width: 1180px) {
  .investorNav > .classLink > .classItem > a:not(.linkHasItems) {
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
    border-left-color: transparent;
  }
}
.investorNav > .classLink > .classItem > a:not(.linkHasItems)::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #AA8223;
  height: 0;
  width: 1px;
  transition: all 0.3s ease-in-out;
}
.investorNav > .classLink > .classItem > a:not(.linkHasItems).current {
  color: #AA8223;
}
.investorNav > .classLink > .classItem > a:not(.linkHasItems).current::after {
  height: 100%;
}
@media (max-width: 1180px) {
  .investorNav > .classLink > .classItem > a:not(.linkHasItems).current::after {
    display: none;
  }
}
@media (min-width: 1181px) {
  .investorNav > .classLink > .classItem > a:not(.linkHasItems):hover {
    color: #AA8223;
  }
  .investorNav > .classLink > .classItem > a:not(.linkHasItems):hover::after {
    height: 100%;
  }
}
.investorNav > .classLink > .classItem > a.linkHasItems {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  background: transparent;
  border-left: 1px solid #D7D7D7;
  transition: all 0.3s ease-in-out;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #5C5C5C;
  letter-spacing: 2px;
  cursor: pointer;
}
.investorNav > .classLink > .classItem > a.linkHasItems::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #AA8223;
  height: 0;
  width: 1px;
  transition: all 0.3s ease-in-out;
}
.investorNav > .classLink > .classItem > a.linkHasItems::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 1px solid #878787;
  border-right: 1px solid #878787;
  background-color: transparent;
  transform: rotate(135deg);
  transition: all 0.3s;
  position: static;
  order: 1;
}
@media (min-width: 1181px) {
  .investorNav > .classLink > .classItem > a.linkHasItems:hover {
    background: transparent;
    color: #AA8223;
  }
  .investorNav > .classLink > .classItem > a.linkHasItems:hover::after {
    height: 100%;
  }
}
.investorNav > .classLink > .classItem > a.linkHasItems.current {
  color: #AA8223;
}
.investorNav > .classLink > .classItem > a.linkHasItems.current::before {
  border-color: #AA8223;
}
.investorNav > .classLink > .classItem > a.linkHasItems.current::after {
  height: 100%;
}
@media (max-width: 1180px) {
  .investorNav > .classLink > .classItem > a.linkHasItems.current::after {
    display: none;
  }
}
.investorNav > .classLink > .classItem > a.linkHasItems.open::before {
  transform: rotate(-45deg);
}
@media (max-width: 1180px) {
  .investorNav > .classLink > .classItem > a.linkHasItems {
    justify-content: space-between;
    text-align: left;
    white-space: normal;
    border-left-color: transparent;
    gap: 10px;
  }
}
.investorNav > .classLink > .classItem > .dataList {
  display: none;
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
  background: transparent;
}
.investorNav > .classLink > .classItem > .dataList > .dataItem {
  list-style: none;
}
.investorNav > .classLink > .classItem > .dataList > .dataItem > a.item {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: #5C5C5C;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.investorNav > .classLink > .classItem > .dataList > .dataItem > a.item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #AA8223;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.investorNav > .classLink > .classItem > .dataList > .dataItem > a.item.current {
  color: #AA8223;
  background: transparent;
}
.investorNav > .classLink > .classItem > .dataList > .dataItem > a.item.current::after {
  width: 16px;
}
@media (min-width: 1181px) {
  .investorNav > .classLink > .classItem > .dataList > .dataItem > a.item:hover {
    color: #AA8223;
  }
  .investorNav > .classLink > .classItem > .dataList > .dataItem > a.item:hover::after {
    width: 16px;
  }
}
@media (max-width: 1180px) {
  .investorNav > .classLink > .classItem > .dataList > .dataItem > a.item {
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
  }
}
@media (max-width: 1180px) {
  .investorNav {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .investorNav .classCurrent {
    padding: 14px 10px 14px 5px;
  }
}

.downloadBox {
  margin-top: 40px;
  padding-top: 20px;
}
.downloadBox .documentList {
  margin-top: 0;
}
.downloadBox .documentItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  font-family: "Noto Sans TC", "Noto Sans JP", "Noto Sans KR", sans-serif;
}
.downloadBox .documentItem .downloadLink {
  width: 90px;
  text-align: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .downloadBox .documentItem .downloadLink {
    width: 70px;
  }
}
.downloadBox .documentItem:first-child {
  background-color: #AA8223;
  border-bottom: none;
}
.downloadBox .documentItem:first-child .title,
.downloadBox .documentItem:first-child .downloadLink {
  color: #fff;
  font-size: 15px;
}
.downloadBox .documentItem:not(:first-child):nth-child(odd) {
  background-color: #f8f9fa;
}
.downloadBox .documentItem .title {
  flex: 1;
  font-size: 15px;
  font-weight: normal;
  margin: 0;
}
.downloadBox .documentItem .title a {
  color: #5C5C5C;
  transition: color 0.3s;
}
@media (min-width: 1181px) {
  .downloadBox .documentItem .title a:hover {
    color: #AA8223;
  }
}
.downloadBox .documentItem .downloadLink {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #AA8223;
  white-space: nowrap;
  position: relative;
}
.downloadBox .documentItem .downloadLink svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  opacity: 0;
  color: #AA8223;
}
@media (min-width: 1181px) {
  .downloadBox .documentItem .downloadLink:hover span {
    color: transparent;
  }
  .downloadBox .documentItem .downloadLink:hover svg {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 640px) {
  .downloadBox .documentItem .downloadLink span {
    color: transparent;
  }
  .downloadBox .documentItem .downloadLink svg {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}