 /* 大枠 */
.slideshow {
  margin: 40px auto;
}

 /* スライドショー */
.slide {
  width: 500px;
  height: 500px;
  margin-bottom: 10px;
}

.slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

 /* ツールバー */
.toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
}

 /* ページ数 */
#page {
  margin: 0 10px;
  font-size: 20px;
  font-weight: bold;
}

 /* ボタン */

.button.slide_button.prev::after {
  content: '';
  width: 5px;
  height: 5px;
  transform: rotate(225deg);
  margin-right: 2em;
  margin-left: 0;
}