@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;
}
* {
 box-sizing: border-box;
}
ol, ul {
 list-style: none;
 padding: 0;
}
.container {
 min-height: 100%;
 min-height: 100vh;
 min-height: 100dvh;
 width: 100%;
 display: grid;
 align-items: center;
}
.container-inner {
 padding-bottom: 20px;
}
.movie {
 width: 70%;
 aspect-ratio: 16 / 9;
 margin: auto;
 position: relative;
}
.movie iframe {
 position: absolute;
 top: 0;
 right: 0;
 width: 100%;
 height: 100%;
}
.__btns {
 width: 70%;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 margin: 0 auto;
 padding: 4px;
}
.__btns li {
 width: 33.3333%;
 width: calc(100% / 3);
 text-align: center;
 font-style: normal;
 margin: 0;
 padding: 4px;
 transition: all 0.3s ease;
}
.__btns.btns li {
 width: 50%;
 width: calc(100% / 2);
}
.__btns li span {
 background: rgba(236, 109, 116, .8);
 color: #fff;
 width: 100%;
 height: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 text-decoration: none;
 padding: 5px 13px;
 border-radius: 20px 0;
 font-size: clamp(1.4rem, 2vw, 1.8rem);
 font-weight: 600;
 line-height: 1.2em;
 min-height: 38px;
 opacity: .7;
}
.__btns li:hover span, .__btns li.select span {
 background-color: rgba(236, 109, 116, 1);
 color: #fff;
 opacity: 1;
}
.__btns.btns-chara li span {
 background: rgba(0, 175, 221, .8);
 font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.__btns.btns-chara li:hover span, .__btns.btns-chara li.select span {
 background-color: rgba(0, 175, 221, 1);
}
@media screen and (max-width : 767px) {
 .movie {
  width: 100%;
  margin-bottom: 4px;
 }
 .__btns {
  width: 100%;
 }
 .__btns li {
  min-width: inherit;
  width: 50%;
 }
 .__btns li span {
  min-height: 40px;
 }
}
@media screen and (min-width : 768px) {
 .sp {
  display: none;
 }
 .__btns li.special {
  width: auto;
 }
}