@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;
 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: 90%;
 aspect-ratio: 16 / 8;
 margin: auto;
 position: relative;
}
.movie iframe {
 position: absolute;
 top: 0;
 right: 0;
 width: 100%;
 height: 100%;
}
.__btns {
 width: 90%;
 margin: auto;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 margin: 4px auto;
}
.__btns li {
 width: 33.3333%;
 width: calc(100% / 3);
 line-height: 1.2em;
 text-align: center;
 font-size: clamp(1.2rem, 2vw, 1.6rem);
 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(253, 46, 66, .5);
 width: 100%;
 height: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 text-decoration: none;
 color: #fff;
 padding: 5px;
 min-height: 40px;
}
.__btns li:hover span, .__btns li.select span {
 background-color: rgba(253, 46, 66, 1);
 color: #fff;
}
@media screen and (max-width : 767px) {
 .movie {
  width: 100%;
  aspect-ratio: 16 / 9;
 }
 .__btns {
  width: 100%;
  padding-left: 4px;
  padding-right: 4px;
 }
 .__btns li {
  min-width: inherit;
  width: 50%;
 }
 .__btns li span {
  min-height: 30px;
 }
}
@media screen and (min-width : 768px) {
 .sp {
  display: none;
 }
 .__btns li.special {
  width: auto;
 }
}