@charset "UTF-8";
/* fontサイズ・バリエーション */
/* -------------------------------------------------------------------------------------------------------------------
SP
------------------------------------------------------------------------------------------------------------------- */
.pc {
  display: none;
}

.tb {
  display: none;
}

.sp {
  display: block;
}

body {
  background: #f59ff3;
}

/* ----------------------
NAVI
------------------------- */
body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
  overflow-x: hidden;
}

@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#overlay-button {
  position: absolute;
  right: 2%;
  top: 14px;
  padding: 26px 11px;
  z-index: 11;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#overlay-button span {
  height: 2px;
  width: 35px;
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;
  background: #ff20ae;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 2px;
  width: 35px;
  position: absolute;
  right: 0;
  content: "";
  transition: all 0.2s ease-in-out;
  background: #ff20ae;
}
#overlay-button.active span {
  background: transparent;
}
#overlay-button.active span:before {
  transform: rotate(45deg) translate(7px, 7px);
  background: #fff;
}
#overlay-button.active span:after {
  transform: rotate(-45deg) translate(7px, -7px);
  background: #fff;
}

#overlay {
  height: 101vh;
  width: 100vw;
  background: url(../img/mobile/menubg.png) no-repeat #f038ad center center;
  background-size: cover;
  visibility: hidden;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
}
#overlay.active {
  visibility: visible;
}
#overlay ul {
  width: 90%;
  margin: auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 75vh;
  list-style-type: none;
}
#overlay ul li {
  width: 100%;
}
#overlay ul li::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  box-shadow: 0 0 10px #960762;
}
#overlay ul li:last-child::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  box-shadow: 0 0 10px #960762;
}
#overlay ul li a {
  display: block;
  margin: auto;
  padding: 1.6em 0.4em;
  transition: opacity 0.2s ease;
  text-decoration: none;
  font-size: 1.5em;
}
#overlay ul li a:hover {
  opacity: 0.8;
}
#overlay ul li a img {
  width: 45%;
}

.navLogoSp {
  width: 30%;
  position: relative;
  top: 14px;
  left: 2%;
}
.navLogoSp img {
  max-width: 100%;
  vertical-align: middle;
}
.navLogoSp a {
  transition: opacity 0.3s ease;
}

.headerNav {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 80px;
  background-color: #fff;
}
.headerNav .navLogo {
  position: relative;
  width: 20%;
  left: 2%;
  top: 10px;
}
.headerNav .navLogo a {
  display: block;
}
.headerNav .navLogo img {
  max-width: 100%;
  vertical-align: middle;
}

.contentBlock {
  width: 96%;
  margin: 0 auto;
}

.contentsWrap {
  width: 80%;
  margin: auto;
}

.section-main .contentsWrap,
.section-spinoff .contentsWrap,
.section-articles .contentsWrap {
  width: 100%;
  margin: auto;
}

/* -------------------------------------
* トップページ
* ------------------------------------- */
h1 {
  padding-top: 80px;
}

.section-cast {
  background: url(../img/paint.png) no-repeat top 60px center;
  background-size: 100% auto;
  padding-bottom: 180px;
}

.section-main {
  background: url(../img/bg_ribbon_main.png) repeat-x top center #c950ff;
  background-size: auto 40px;
  padding-bottom: 180px;
}

.section-spinoff {
  background: url(../img/bg_ribbon_spinoff.png) repeat-x top center #ff50cc;
  background-size: auto 40px;
  padding-bottom: 180px;
}

.section-articles {
  background: url(../img/bg_ribbon_articles.png) repeat-x top center #55c125;
  background-size: auto 40px;
  padding-bottom: 120px;
}

.title_cast {
  width: 200px;
  margin: 40px auto 20px;
}

.castContainer {
  width: 80%;
  margin: auto;
}

.section-main,
.section-spinoff,
.section-articles {
  margin-top: -120px;
  position: relative;
}
.section-main article h2,
.section-spinoff article h2,
.section-articles article h2 {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  max-width: 80%;
}

.section-main article .subtitle {
  width: 90%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.section-main article .subtitle img {
  position: absolute;
  top: 25px;
  right: 0;
  width: 180px;
  transform: rotate(15deg);
}

.section-spinoff article .subtitle {
  width: 90%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.section-spinoff article .subtitle img {
  position: absolute;
  top: 35px;
  right: 0;
  width: 180px;
  transform: rotate(15deg);
}

ul.movieList {
  width: 100%;
  margin: 140px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
}
ul.movieList li {
  width: 48%;
  margin-bottom: 40px;
}
ul.movieList li .img-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
  border: 2px solid #000;
}
ul.movieList li img {
  -o-object-fit: cover;
     object-fit: cover;
}

.section-articles ul.movieList {
  width: 100%;
  margin: 120px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
}
.section-articles ul.movieList li {
  margin-bottom: 40px;
}
.section-articles ul.movieList li .img-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
  border: 2px solid #000;
}
.section-articles ul.movieList li img {
  -o-object-fit: cover;
     object-fit: cover;
}

/* -------------------------------------
* footer
* ------------------------------------- */
footer .credit p {
  font-size: 0.9em;
  text-align: center;
}/*# sourceMappingURL=base_tb.css.map */