@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&display=swap');
body, html {
 height: 100%;
 font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
 font-size: 1.5rem;
 font-weight: 500;
 padding: 0;
 margin: 0;
 background-color: #000;
}
html {
 font-size: 62.5%;
 -webkit-overflow-scrolling: touch;
}
* {
 box-sizing: border-box;
}
ol, ul {
 list-style: none;
 padding: 0;
}
.container {
 height: 100%;
 min-height: 640px;
 width: 100%;
 display: grid;
 align-items: center;
}
.movie {
 width: 80%;
 max-width: 1200px;
 aspect-ratio: 16 / 9;
 margin: auto;
 position: relative;
}
.movie iframe {
 position: absolute;
 top: 0;
 right: 0;
 width: 100%;
 height: 100%;
}
.__btns {
 width: 80%;
 max-width: 1216px;
 margin: auto;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 margin: 0 auto;
 padding: 4px;
}
.__btns li {
 width: 33.3333%;
 width: calc(100% / 3);
 font-size: clamp(1.3rem, 2vw, 1.5rem);
 font-weight: 600;
 font-feature-settings: "palt"1;
 letter-spacing: 0;
 font-style: normal;
 margin: 0;
 padding: 4px;
 box-sizing: border-box;
 transition: all 0.3s ease;
}
.__btns li span {
 background: rgba(170, 26, 57, .5);
 width: 100%;
 height: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 text-decoration: none;
 color: #fff;
 padding: 5px 1px;
 float: left;
 line-height: 1em;
 min-height: 40px;
 text-align: center;
 cursor: pointer;
}
.__btns li:hover span, .__btns li.select span {
 background-color: rgba(170, 26, 57, 1);
}
@media screen and (max-width : 912px) {
 .movie {
  width: 100%;
 }
 .__btns {
  width: 100%;
 }
 .__btns li {
  width: 50%;
 }
 .__btns li span {
  min-height: 30px
 }
}
@media screen and (min-width : 913px) {
 .sp {
  display: none;
 }
 .__btns li.special {
  width: auto;
 }
}