.chartTitle div {
  position: absolute;
  z-index: 2;
  left: 30px;
  top: 20px; /* 변경됨 +200px씩 */
}
.chartTitle div h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
.otherWeahterChartContent {
  padding: 20px 0 20px 20px;
}
.otherWeahterChartContent .chartItem {
  width: 110px;
  height: 200px;
  z-index: 1;
  border-left: 1px dashed #d8d8d8;
}
.otherWeahterChartContent .chartItem:last-child {
  position: relative;
}
.otherWeahterChartContent .chartItem:last-child::after {
  content: "";
  height: 140px;
  border-right: 1px dashed #d8d8d8;
  position: absolute;
  bottom: 0;
  right: -1px;
}

.otherWeahterChartContent .chartItem .chartItemBody {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: end;
  width: 110px;
  height: 100px;
  margin-top: 50px;
  background-color: #f4f4f4;
}

.otherWeahterChartContent .chartItem .chartItemBody > div {
  width: 110px;
  border-top: 2px solid;
}
.otherWeahterChartContent .chartItem .chartItemBody .itemData {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #28282a;
  font-size: 13px;
}
.otherWeahterChartContent .chartItem .chartItemBody .itemTime {
  position: absolute;
  width: 100%;
  text-align: start;
  bottom: -24px;
  font-size: 10px;
  font-weight: 400;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 2px;
}
.otherWeahterChartContent .chartItems:last-child .chartItem {
  height: 165px;
}
.otherWeahterChartContent .chartItems:last-child .chartItem .itemTime {
  border-bottom: none;
}
[data-theme="dark-mode"] .otherWeahterChartContent .chartItem .chartItemBody {
  background-color: #3a3a3a;
}
[data-theme="dark-mode"]
  .otherWeahterChartContent
  .chartItem
  .chartItemBody
  .itemData {
  color: #e3e4e5;
}
.chartItems {
  padding-left: 5px;
}

.wind-direction {
  display: inline-block;
  font-weight: 700;
  margin-right: 5px;
  color: #000;
}
