@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  font-family: "M PLUS 1p", sans-serif;
}

*:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

p {
  font-size: 1.6rem;
  line-height: 2;
  font-family: "Noto Sans";
}

.ttl-logo {
  padding-top: 90vw;
}

@media screen and (min-width: 501px) {
  .ttl-logo {
    padding-top: 450px;
  }
}

.ttl {
  text-align: center;
  padding-bottom: 20px;
  font-size: 3.6rem;
  line-height: 0.4;
  font-weight: 700;
  letter-spacing: 0.5rem;
}

.ttl-small {
  font-size: 1rem;
}

.main__ttl__txt {
  padding-top: 10vw;
  font-size: 3.6rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.7rem;
}

@media screen and (min-width: 501px) {
  .main__ttl__txt {
    padding-top: 50px;
  }
}

.main__ttl__txt-small {
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}

.main__movie-link {
  margin-top: 20px;
  width: 80vw;
  height: 45vw;
}

@media screen and (min-width: 501px) {
  .main__movie-link {
    width: 400px;
    height: 225px;
  }
}

.main__story__txt {
  padding-top: 20px;
  font-size: 1.2rem;
  line-height: 2.5;
  font-weight: 500;
  letter-spacing: 0.2rem;
}

.main__story__txt__ttl {
  font-weight: 700;
  font-size: 1.4rem;
}

.main__story__txt-large {
  text-align: center;
  padding-top: 30px;
  font-size: 2.3rem;
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0.2rem;
}

/* .main__slide__img {
  margin: auto;
  height: 200px;
  background-color: greenyellow;
} */

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: 100vw;
}
@media screen and (min-width: 501px) {
  .scroll-infinity__item {
    width: 500px;
  }
}
.scroll-infinity__item > img {
  width: 100%;
}

/* カルーセル全体 */
.carousel {
  padding-top: 20px;
  /* 水平方向中央寄せ */
  display: flex;
  justify-content: center;
}
/* カルーセル内容 */
.contains {
  /* サイズは自由に変更してください。*/
  /* 下の.slideも同じサイズにしてください。 */
  width: 100vw;
  height: 960px;
  overflow: hidden;
  position: relative;
  list-style: none;
  /* background-color: coral; */
}
@media screen and (min-width: 501px) {
  .contains {
    width: 500px;
  }
}
/* スライド切り換え用ラジオボタンは常に非表示 */
.slide_select {
  display: none;
}
/* 各スライド */
.slide {
  /* サイズは自由に変更してください。*/
  /* 上の.containsも同じサイズにしてください。 */
  width: 100vw;
  height: 880px;
  position: absolute;
  /* スライドの初期値は選択されていないので透明にしておく */
  opacity: 0;
  bottom: 0;
  /* background-color: #00ffe1; */
}
@media screen and (min-width: 501px) {
  .slide {
    width: 500px;
  }
}

/* スライド移動ボタンエリア */
.move_controler {
  top: 40px;
  width: 100%;
  text-align: center;
}
/* スライド移動の各ボタン */
.button_move {
  display: inline-block;
  height: 50px;
  width: 50px;
  margin: 0 5px;
  border-radius: 100%;
  border: 3px solid;
  cursor: pointer;
  /* 普段はやや薄くする */
  opacity: 0.5;
  /* スライドより前面にする */
  /* z-index: 2; */
}
/* ホバー時はやや明るくする */
.button_move:hover {
  opacity: 0.75;
}
/* スライド移動ボタンの色 */
.button_move:nth-of-type(1) {
  background-image: url(../images/rekkaicon.png);
  background-size: cover;
  border-color: #df0909;
}
.button_move:nth-of-type(2) {
  background-image: url(../images/senaicon.png);
  background-size: cover;
  border-color: #33cbe6;
}
.button_move:nth-of-type(3) {
  background-image: url(../images/kirikaicon.png);
  background-size: cover;
  border-color: #240cc1;
}
.button_move:nth-of-type(4) {
  background-image: url(../images/rinneicon.png);
  background-size: cover;
  border-color: #e0c80f;
}
.button_move:nth-of-type(5) {
  background-image: url(../images/verudeicon.png);
  background-size: cover;
  border-color: #0c8e07;
}
/* 1番目のスライド選択時 */
/* 1番目のスライドの透明度を0にして表示する */
.slide_select:nth-of-type(1):checked ~ .slide:nth-of-type(1) {
  opacity: 1;
}
/* スライド移動ボタンの1個目を明るくする */
/* （今選択されていることが分かるように） */
.slide_select:nth-of-type(1):checked ~ .move_controler .button_move:nth-of-type(1) {
  opacity: 1;
}
.slide_select:nth-of-type(2):checked ~ .slide:nth-of-type(2) {
  opacity: 1;
}
/* 2番目のスライド選択時（1番目のスライドと同じことをする） */
.slide_select:nth-of-type(2):checked ~ .move_controler .button_move:nth-of-type(2) {
  opacity: 1;
}
/* 3番目のスライド選択時 */
.slide_select:nth-of-type(3):checked ~ .slide:nth-of-type(3) {
  opacity: 1;
}
.slide_select:nth-of-type(3):checked ~ .move_controler .button_move:nth-of-type(3) {
  opacity: 1;
}
/* 4番目のスライド選択時 */
.slide_select:nth-of-type(4):checked ~ .slide:nth-of-type(4) {
  opacity: 1;
}
.slide_select:nth-of-type(4):checked ~ .move_controler .button_move:nth-of-type(4) {
  opacity: 1;
}
/* ５５番目のスライド選択時 */
.slide_select:nth-of-type(5):checked ~ .slide:nth-of-type(5) {
  opacity: 1;
}
.slide_select:nth-of-type(5):checked ~ .move_controler .button_move:nth-of-type(5) {
  opacity: 1;
}

.rekka {
  /* background-color: #df0909; */
  height: 880px;
  .char-name,
  .char-cv {
    color: #df0909;
  }
}
.sena {
  /* background-color: #33cbe6; */
  height: 880px;
  .char-name,
  .char-cv {
    color: #33cbe6;
  }
}
.kirika {
  /* background-color: #240cc1; */
  height: 880px;
  .char-name,
  .char-cv {
    color: #240cc1;
  }
}
.rinne {
  /* background-color: #e0c80f; */
  height: 880px;
  .char-name,
  .char-cv {
    color: #e0c80f;
  }
}
.verute {
  /* background-color: #0c8e07; */
  height: 880px;
  .char-name {
    font-size: 2rem;
    height: 30px;
    margin-top: 10px;
  }
  .char-name,
  .char-cv {
    color: #0c8e07;
  }
}

.char-name {
  text-align: left;
  margin: auto;
  width: 70vw;
  height: 40px;
  font-size: 3rem;
  font-weight: 600;
  color: #1f1f1f;
  bottom: 0;
}

@media screen and (min-width: 501px) {
  .char-name {
    width: 350px;
  }
}

.char-sen {
  margin: auto;
  width: 70vw;
}

@media screen and (min-width: 501px) {
  .char-sen {
    width: 350px;
  }
}

.char-cv {
  text-align: left;
  margin: auto;
  width: 70vw;
  height: 40px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f1f1f;
}

@media screen and (min-width: 501px) {
  .char-cv {
    width: 350px;
  }
}

.char-txt {
  text-align: left;
  margin: auto;
  width: 70vw;
  height: 120px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f1f1f;
}

@media screen and (min-width: 501px) {
  .char-txt {
    width: 350px;
  }
}

.char-img {
  padding-top: 40px;
  margin: auto;
  height: 130vw;
}

@media screen and (min-width: 501px) {
  .char-img {
    height: 650px;
  }
}

.credit__stf,
.credit__cst {
  padding-top: 30px;
  font-size: 2.2rem;
  line-height: 2.5;
  font-weight: 800;
  letter-spacing: 0.2rem;
}
.credit__stf-txt,
.credit__cst-txt {
  padding-top: 10px;
  font-size: 1.1rem;
  line-height: 2.5;
  font-weight: 500;
  letter-spacing: 0.2rem;
}

.logo {
  margin: auto;
  height: 200px;
}

.sns {
  display: flex;
  justify-content: center;
}

.youtube-icon {
  margin: 20px;
  height: 40px;
  width: 60px;
}
.x-icon {
  margin: 20px;
  height: 40px;
  width: 45px;
}

.insta-icon {
  margin: 20px;
  height: 40px;
  width: 40px;
}

.cap {
  padding-top: 20px;
  font-size: 1.2rem;
  line-height: 2.5;
  font-weight: 400;
  letter-spacing: 0.2rem;
}
