@charset "utf-8";


.main {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.game h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}

.game h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #0d0015;
  margin-top: 10px;
  margin-bottom: 35px;
}

.products ul {
  width: 1200px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 320px);
  column-gap: 25px;
  row-gap: 40px;
  justify-content: center;
}

.products ul li {
  transition-duration: .4s;
}

.products ul li:hover {
  box-shadow: 0 0 11px dimgray;
}

.text-box {
  border: 1px solid #0d0015;
}

.text-box p {
  margin: 0.2em 1em 0.2em 1em;
  font-size: 16px;
}

.gtitle {
  font-size: 20px;
}

.date {
  font-size: 14px;
}

.footer {
  margin-top: 100px;
}

@media (max-width: 800px) {
  .products ul {
    grid-template-columns: 1fr;
  }
}