@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;
}
html {
 font-size: 62.5%;
 -webkit-overflow-scrolling: touch;
}
ol, ul {
 list-style: none;
 padding: 0;
}
.container, .container-inner {
 height: 100%;
 width: 100%;
}
.container-inner {
 display: flex;
 align-items: center;
}
.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 {
 width: 90%;
 display: flex;
 flex-wrap: wrap;
 margin: 4px auto;
}
.__btns li {
 width: 33.3333%;
 width: calc(100% / 3);
 line-height: 40px;
 text-align: center;
 font-size: clamp(1.4rem, 2vw, 1.8rem);
 font-weight: 600;
 letter-spacing: 0;
 font-style: normal;
 margin: 0;
 padding: 4px;
 box-sizing: border-box;
 transition: all 0.3s ease;
}
.__btns li span {
 background: rgba(255, 241, 0, .5);
 width: 100%;
 height: 100%;
 display: block;
 text-decoration: none;
 padding: 0;
 float: left;
}
.__btns li:hover span, .__btns li.select span {
 background-color: rgba(255, 241, 0, 1);
 color: #080302;
}
@media screen and (max-width : 767px) {
 .container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
 }
 .movie {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  padding-bottom: 0;
 }
 .__btns {
  width: 100%;
 }
 .__btns li {
  min-width: inherit;
  width: 50%;
 }
 .__btns li span {
  min-height: 30px;
  font-size: 12px;
 }
}
@media screen and (min-width : 768px) {
 .sp {
  display: none;
 }
 .__btns li.special {
  width: auto;
 }
}