@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@500;700&family=EB+Garamond:wght@500&display=swap');
body, html {
 height: 100%;
 font-family: "Zen Old Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", 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%;
 aspect-ratio: 16 / 9;
 margin: auto;
 position: relative;
}
.movie iframe {
 position: absolute;
 top: 0;
 right: 0;
 width: 100%;
 height: 100%;
}
.__btns {
 width: 90%;
 max-width: 1040px;
 margin: auto;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 margin: 4px auto;
}
.__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(234, 85, 20, .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;
}
.__btns li:hover span, .__btns li.select span {
 background-color: #ea5514;
 color: #fff;
}
@media screen and (max-width : 767px) {
 .movie {
  width: 100%;
 }
 .__btns {
  width: 100%;
 }
 .__btns li {
  width: 50%;
 }
 .__btns li span {
  min-height: 30px
 }
}
@media screen and (min-width : 768px) {
 .sp {
  display: none;
 }
 .__btns li.special {
  width: auto;
 }
}