.timeTableContainer .timeItem .title span {
  background-image: none;
  -webkit-transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  will-change: transform;
}
.timeTableContainer .timeItem .title span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 75%;
  height: 3px;
  border-radius: 10px;
  background: hsl(0, 0%, 4%);
  display: block;
}
.timeTableContainer .timeItem .title span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 3px;
  height: 100%;
  border-radius: 10px;
  background: hsl(0, 0%, 4%);
  display: block;
  -webkit-transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.timeTableContainer .timeItem .title.open span::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}/*# sourceMappingURL=style2024_add0829.css.map */