#wrapper {
  display: grid;
  /* 1列目から順番に230px、1frxの幅 */
  grid-template-columns: 230px 1fr;
  /* 1行目から順番にheader main-img main footer の高さ */
  grid-template-rows: 91px 113px 1fr 280px;
  text-align: center;
}

/*---------------
main
---------------*/
h1 {
  font-size: 1.6rem;
  margin: 20px 0 20px 0;
}
#top_contents {
  margin: 30px 0;
}
#top_contents img {
  display: block;
  margin: auto;
}
#box {
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
#video_1 {
  width: 700px;
}

/*---------------
footer
---------------*/

/* -------------------- スマホ 390px以下 -------------------- */
@media screen and (max-width: 390px) {
  #wrapper {
    display: grid;
    /* 1列目から順番に230px、1frxの幅 */
    grid-template-columns: 0 1fr;
    /* 1行目から順番にheader main-img main footer の高さ */
    grid-template-rows: 52px auto 1fr auto;
  }
  .h1-sp {
    margin-bottom: 30px;
  }

  /*---------------
main
---------------*/
  #video_1 {
    width: 100%;
  }
}
