/* ページ全体に関する設定 */
* {
  background-color: #5752ac;
  margin: 0;
}

/* mainコンテンツに関する設定 */
body {
  text-align: center;
  margin: 0 auto;
  width: 800px;
}

main {
  margin-top: 50px;
}

.contents {
  width: 100%;
}

/* 見出しに関する設定 */
h1 {
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
}

.movie_player {
  height: 0;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%; /* 16:9 の高さなので 56.25% (= 9 ÷ 16) */
  position: relative;
}

.movie_player iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* footerに関する設定 */
footer {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  margin-bottom: 10px;
}
footer a {
  font-size: 0.7rem;
  display: inline-block;
  color: #fefefe;
  width: 90%;
  margin-top: 15px;
  text-decoration: none;
}

/* 960pxより小さくなる場合 */
@media screen and (max-width: 961px) {
  /*　画面サイズ960px以下の場合はここを読み込む　*/
  body {
    width: 600px;
  }
}

/* 960pxより小さくなる場合 */
@media screen and (max-width: 700px) {
  /*　画面サイズ700px以下の場合はここを読み込む　*/
  body {
    width: 500px;
  }
}
