/* CSS Document */
.historyArea .itemBox .itemTitle span::before, .historyArea .itemBox .itemTitle {
  transition: all 0.4s ease-in-out;
}

.mainArea:not(:has(.classBoxArea)) {
  padding-top: 100px;
}
@media (max-width: 1180px) {
  .mainArea:not(:has(.classBoxArea)) {
    padding-top: 80px;
  }
}
@media (max-width: 400px) {
  .mainArea:not(:has(.classBoxArea)) {
    padding-top: 60px;
  }
}

.historyArea {
  padding-bottom: 200px;
}
@media (max-width: 1180px) {
  .historyArea {
    padding-bottom: 150px;
  }
}
@media (max-width: 840px) {
  .historyArea {
    padding-bottom: 100px;
  }
}
@media (max-width: 400px) {
  .historyArea {
    padding-bottom: 60px;
  }
}
.historyArea .dataList {
  position: relative;
  z-index: 1;
}
.historyArea .dataList::after {
  content: "";
  position: absolute;
  top: 0;
  left: 220px;
  background-color: #c3c3c3;
  width: 1px;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 1400px) {
  .historyArea .dataList::after {
    left: 180px;
  }
}
@media (max-width: 1180px) {
  .historyArea .dataList::after {
    display: none;
  }
}
.historyArea .dataItem {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  -moz-column-gap: 120px;
       column-gap: 120px;
}
.historyArea .dataItem:not(:last-child) {
  margin-bottom: 74px;
}
.historyArea .dataItem:nth-child(even) .itemBox {
  background-color: #f1f7fb;
}
@media (max-width: 1400px) {
  .historyArea .dataItem {
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}
@media (max-width: 1180px) {
  .historyArea .dataItem {
    flex-direction: column;
    row-gap: 40px;
  }
  .historyArea .dataItem:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media (max-width: 640px) {
  .historyArea .dataItem {
    row-gap: 30px;
  }
}
.historyArea .dataItemTitle {
  font-size: 65px;
  line-height: 1;
  letter-spacing: 0px;
  font-family: "Plus Jakarta Sans", "Noto Sans SC", "Microsoft JhengHei", sans-serif;
  font-weight: 600;
  color: #2a59a7;
  flex-shrink: 0;
  width: 170px;
}
@media (max-width: 1400px) {
  .historyArea .dataItemTitle {
    font-size: 55px;
    width: 145px;
  }
}
@media (max-width: 1180px) {
  .historyArea .dataItemTitle {
    font-size: 45px;
    width: unset;
  }
}
@media (max-width: 640px) {
  .historyArea .dataItemTitle {
    font-size: 40px;
  }
}
.historyArea .itemBox {
  position: relative;
  width: 100%;
  background-color: #f8f8f8;
  padding: 0 37px;
}
.historyArea .itemBox::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #2a59a7 50%, #d8df3f 50%);
  top: 0;
  left: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.historyArea .itemBox .item {
  padding: 18px 0;
}
.historyArea .itemBox .item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.historyArea .itemBox .item.hasText .itemTitle {
  position: relative;
  cursor: pointer;
  padding-right: 40px;
}
.historyArea .itemBox .item.hasText .itemTitle::before, .historyArea .itemBox .item.hasText .itemTitle::after {
  content: "";
  width: 22px;
  height: 2px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}
.historyArea .itemBox .item.hasText .itemTitle::before {
  transform: translateY(-50%);
}
.historyArea .itemBox .item.hasText .itemTitle::after {
  transform: translateY(-50%) rotate(90deg);
}
.historyArea .itemBox .item.hasText.open .itemTitle::after {
  transform: translateY(-50%);
}
@media (min-width: 1181px) {
  .historyArea .itemBox .item.hasText:hover .itemTitle {
    color: #2a59a7;
  }
  .historyArea .itemBox .item.hasText:hover .itemTitle::before, .historyArea .itemBox .item.hasText:hover .itemTitle::after {
    background-color: #2a59a7;
  }
  .historyArea .itemBox .item.hasText:hover .itemTitle span::before {
    background-color: #2a59a7;
  }
}
.historyArea .itemBox .itemTitle {
  padding: 10px 0;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.9px;
  color: #333;
  font-weight: bold;
}
.historyArea .itemBox .itemTitle span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  -moz-column-gap: 23px;
       column-gap: 23px;
}
.historyArea .itemBox .itemTitle span::before {
  content: "";
  position: relative;
  width: 7px;
  height: auto;
  aspect-ratio: 1/1;
  height: auto;
  background-color: #333;
  border-radius: 50%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.historyArea .itemBox .textEditor {
  display: none;
}
@media (max-width: 1180px) {
  .historyArea .itemBox {
    padding: 0 24px;
  }
  .historyArea .itemBox .item.hasText .itemTitle {
    padding-right: 24px;
  }
  .historyArea .itemBox .item.hasText .itemTitle::before, .historyArea .itemBox .item.hasText .itemTitle::after {
    width: 18px;
    right: 0;
  }
  .historyArea .itemBox .itemTitle {
    font-size: 16px;
  }
  .historyArea .itemBox .itemTitle span {
    -moz-column-gap: 18px;
         column-gap: 18px;
  }
}