#slideshow-container {
    position: absolute;
    width: 90rem;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden; /* スライドショーの範囲外を隠す */
  }

  .slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    transition: opacity 3s ease-in-out; /* フェードアニメーション */
  }

  .slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slideshow img:not(.active) {
    opacity: 0; /* アクティブでない画像を非表示にする */
  }

  .slideshow.active img:nth-child(1) {
    opacity: 0; /* 最初の画像をフェードアウト */
  }

  .slideshow.active img:nth-child(2) {
    opacity: 1; /* 2番目の画像をフェードイン */
  }