.history-slider {
  position: relative;
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.history-slider::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200vw;
  height: 100%;
  background-color: #f6f6f6;
  content: "";
}
.history-slider__nav {
  width: 150px;
  margin: 0 0 30px;
  overflow: visible;
}
.history-slider__nav-slide {
  display: flex;
  align-items: flex-start;
  min-width: 150px;
  height: 72px;
  line-height: 1;
  user-select: none;
}
.history-slider__nav-text {
  padding-top: 5px;
  position: relative;
  color: rgba(38, 38, 39, 0.3);
  text-align: right;
  cursor: pointer;
  transform-origin: left top;
  transition: transform 0.4s linear, color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.history-slider__nav-slide--active .history-slider__nav-text {
  padding-top: 0;
  color: #262627;
  transform: scale(2);
}
.history-slider__nav-year {
  display: block;
  font-size: 30px;
  font-weight: 700;
}
.history-slider__nav-date {
  display: block;
  font-size: 12px;
  font-weight: 700;
}
.history-slider__main {
  overflow: visible;
}
.history-slider__main-slide {
  display: flex;
  gap: 30px;
  width: auto;
  opacity: 0.4;
  transition: opacity 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.history-slider__main-slide--active {
  opacity: 1 !important;
}
.history-slider__main-img-box {
  position: relative;
  width: 400px;
  aspect-ratio: 0.851;
}
.history-slider__main-img-box::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff7100;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}
.history-slider__main-slide--active .history-slider__main-img-box::after {
  transform: scaleX(1);
  transition: transform 3s linear;
}
.history-slider__main-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.history-slider__main-text-box {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}
.history-slider__main-text-box > * {
  max-width: 400px;
  margin-top: auto;
  margin-bottom: 40px;
}
.history-slider .block-header-arrows {
  display: none;
  background-color: #fff;
  border-radius: 100px;
  margin-top: 30px;
}
.history-slider .block-header-arrows .block-header-arrow {
  cursor: pointer;
}
.history-slider .block-header-arrows .block-header-arrow--prev {
  transform: rotate(-135deg);
}
.history-slider .block-header-arrows .block-header-arrow--next {
  transform: rotate(45deg);
}
@media (min-width: 1024px) {
  .history-slider .block-header-arrows {
    display: inline-flex;
  }
}