.dates {
  height: 100%;
  padding: 4rem 3rem 3rem;
  overflow: auto;
  position: absolute;
  top: 0;
  right: 0;
}

.date {
  width: 9rem;
  margin: 0 1rem 1rem 0;
  background-color: hsl(0, 0%, 50%);
}

.date:hover {
  background-color: black;
}

.date .content-box_title {
  margin-top: 0.75rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
}

.date .content-box_top-left {
  width: auto;
}

.date .content-box_top-right {
  width: auto;
}

@media (max-width: 680px) {
  .date {
    width: 6rem;
    height: 6rem;
  }

  .date .content-box_top-left {
    width: 100%;
    top: 0.8rem;
    left: 0;
    text-align: center;
  }

  .date .content-box_top-right {
    display: none;
  }

  .date .content-box_title {
    margin-top: 1rem;
    font-size: 3rem;
  }
}