.title-box {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 40px;
}

.scene {
    background-image: url(../img/function-num-bgm.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}
.scene-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto;
  gap: 24px;
  padding: 24px 0;
  padding-bottom: 80px;
}
.contact {
    margin-top: 0;
}
@media screen and (max-width: 1024px) {
  .scene-grid {
    max-width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .scene {
      background-image: url(../img/function-num-bgm-sp.png);
      background-repeat: repeat;
      background-size: contain;
  }
  .scene-grid {
    gap: 16px;
    margin-bottom: 0;
    grid-template-columns: 1fr;
  }
}