/* swiper関連 */
.swiper {
  width: 100%;
  max-width: 1024px;
  height: auto;
  padding-top: 25px;
  padding-bottom: 25px;
}

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-color: #d9d9d9;
}

.swiper-pagination-bullet {
  background-color: rgb(225, 225, 225);
}

.slides {
  width: 100%;
  z-index: 1;
}

.topicText {
  width: 100%;
  text-align: center;
  padding-top: 20px;
}





/* transitions */
.main-links {
  width: 100%;
  max-width: 1024px;
  height: 100%;
  margin: 0 auto;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

@media screen and (max-width: 1024px) {
  .main-links {
    justify-content: center;
  }
}

@media screen and (max-width: 774px) {
  .game-box {
    max-width: 640px;
  }
}

.game-box {
  margin: 25px 10px;
  text-align: center;
  width: 300px;
  aspect-ratio: 1 / 0.85;
  /* background-color: rgb(66, 66, 66); */
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  /* border-radius: 10px; */
}

.image-container.about {
  width: 65%;
  height: 65%;
  margin: auto;
  background-image: URL('/img/ME_sq1.png');
  background-size: cover;
  background-position: center;
  transition: background-image 0.2s ease-in-out;
}


.image-container.works {
  width: 65%;
  height: 65%;
  margin: auto;
  background-image: URL('/img/MIMI_sq2.png');
  background-size: cover;
  background-position: center;
  transition: background-image 0.2s ease-in-out;
}

.image-container.news {
  width: 65%;
  height: 65%;
  margin: auto;
  background-image: URL('/img/HANA_sq2.png');
  background-size: cover;
  background-position: center;
  transition: background-image 0.2s ease-in-out;
}

@media (hover: hover) {
  .game-box.works:hover {

    .image-container.works {
      background-image: URL('/img/MIMI_sq1.png');
    }
  }
  .game-box.about:hover {

    .image-container.about {
      background-image: URL('/img/ME_sq2.png');
    }
  }

  .game-box.news:hover {

    .image-container.news {
      background-image: URL('/img/HANA_sq1.png');
    }
  }
}


.works_textBox {
  padding: 25px 0px 10px 0px;
}

.game-box h2 {
  font-size: 28px;
}