@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@600&display=swap');
body, html {
 height: 100%;
 font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
 font-weight: 600;
}
body {
 background-color: #000;
 margin: 0;
 padding: 0;
}
.container, .container-inner {
 height: 100%;
 width: 100%;
}
.movie {
 width: 90%;
 margin: auto;
 height: 70%;
 padding: 5% 0;
 position: relative;
}
.movie iframe {
 position: absolute;
 top: 0;
 right: 0;
 width: 100%;
 height: 100%;
}
.__btns {
 list-style: none;
 margin: 20px auto 2px;
 text-align: center;
 padding-left: 0;
 display: -ms-flexbox;
 display: flex;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 justify-content: center;
 width: 96%;
 max-width: 1440px;
}
.__btns li {
 display: inline-block;
 vertical-align: middle;
 line-height: 1.2;
 font-weight: 600;
 letter-spacing: normal;
 min-width: 13%;
 /*max-width: 300px;*/
 height: 40px;
 text-align: center;
 padding: 0 5px 8px;
 box-sizing: border-box;
 cursor: pointer;
}
.__btns li span {
 width: 100%;
 height: 100%;
 padding: 5px;
 font-size: 14px;
 white-space: nowrap;
 color: #fff;
 text-decoration: none;
 transition: 0.2s all;
 border: 1px solid rgba(66, 66, 66, 1.0);
 background: rgba(66, 66, 66, 1.0);
 box-sizing: border-box;
 display: -ms-flexbox;
 display: flex;
 align-items: center;
 justify-content: center;
}
.__btns li:hover span {
 color: #000;
 background: #fff100;
}
.__btns li.select span {
 color: #000;
 background: #fff100;
}
@media screen and (max-width: 980px) {
 .container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
 }
 .container-inner {
  height: auto;
 }
 .movie {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  padding-bottom: 0;
 }
 .__btns {
  justify-content:flex-start;
 }
 .__btns li {
  min-width: inherit;
  width: 50%;
 }
 .__btns li span {
  height: 30px;
 }
 .__btns li span {
  font-size: 12px;
 }
}