@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : top.css
Description : トップ
===================================================================== */
/* =====================================================================
    共通
======================================================================*/
.wrapper::before {
  background-image: url(../images/top/bg_pattern-sp.jpg);
}
@media screen and (orientation: landscape) {
  .wrapper::before {
    background-image: url(../images/top/bg_pattern-pc.jpg);
  }
}

.main > * {
  padding: 20rem 0;
}

/* =====================================================================
    article-list
======================================================================*/
.article-list-wrap {
  position: relative;
  margin: 0 calc(50% - 50vw);
  overflow-y: hidden;
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .article-list-wrap {
    overflow: unset;
    margin: 0 auto;
    padding: 0;
  }
}
.article-list-wrap.noScroll {
  margin: 0 auto;
  overflow-x: unset;
}
.article-list-wrap.noScroll ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.article-list-wrap.noScroll ul li {
  margin: 0;
}

.article-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 140rem;
  padding: 0 5.5rem 3rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .article-list {
    width: 100%;
    padding: 0;
  }
}
.article-list li {
  position: relative;
  width: 40.8rem;
  margin-right: 4rem;
}
@media screen and (min-width: 768px) {
  .article-list li {
    margin: 0 calc(84 / 1080 * 100%) 0 0;
    width: calc(304 / 1080 * 100%);
  }
  .article-list li:last-child {
    margin: 0;
  }
}

/* =====================================================================
    mv
======================================================================*/
.mv {
  padding: 2.4rem 0;
}
.mv h1 {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .mv h1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(1314 / 1600 * 100%);
  }
}
@media screen and (min-width: 768px) {
  .mv > .inner {
    width: 100%;
    max-width: 1600px;
  }
}
.mv-slider {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .mv-slider {
    margin: 0 auto;
    width: calc(980 / 1600 * 100%);
  }
}
@media screen and (min-width: 768px) {
  .mv-slider-main .slick-slide a:not(.yt_popup) {
    -webkit-transition-property: opacity;
    transition-property: opacity;
  }
  .mv-slider-main .slick-slide a:not(.yt_popup):hover {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.8;
  }
}
.mv-slider-main .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.4rem;
}
.mv-slider-main .slick-dots li {
  margin: 0 0.4em;
  width: 0.6em;
  height: 0.6em;
}
.mv-slider-main .slick-dots li.slick-active button {
  background-color: #3048bf;
}
.mv-slider-main .slick-dots li button {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  border-radius: 50%;
  background-color: #000000;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.mv-slider-main .slick-dots li button:hover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .mv-slider-thumb {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mv-slider-thumb {
    margin-top: 1.2rem;
  }
  .mv-slider-thumb .slick-slide {
    margin: 0 0.5rem;
    cursor: pointer;
  }
}

/* =====================================================================
    nextstory
======================================================================*/
.nextstory {
  padding: 8rem 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f2ff00), color-stop(70%, transparent));
  background: linear-gradient(#f2ff00 0% 70%, transparent 70%);
}
@media screen and (min-width: 768px) {
  .nextstory-movie {
    margin: 0 auto;
    width: calc(800 / 1080 * 100%);
  }
}

/* =====================================================================
    intro
======================================================================*/
.intro .sec-ttl {
  margin-bottom: 10rem;
}
.intro-text {
  margin-left: -2.34375%;
  width: calc(670 / 640 * 100%);
}
@media screen and (min-width: 768px) {
  .intro-text {
    margin: 0 auto;
    width: calc(925 / 1080 * 100%);
  }
}

/* =====================================================================
    cast
======================================================================*/
.cast {
  color: #ffffff;
}
.cast::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 16, 26, 0.8);
  mix-blend-mode: hard-light;
  z-index: -1;
}
.cast-list li {
  position: relative;
}
@media screen and (min-width: 768px) {
  .cast-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.cast-list li:not(:last-child) {
  margin-bottom: 15rem;
}
@media screen and (min-width: 768px) {
  .cast-list li:not(:last-child) {
    margin-bottom: 12rem;
  }
}
@media screen and (min-width: 768px) {
  .cast-list li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 767px) {
  .cast-list li:nth-child(even) .cast-list-head figure {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .cast-list li:nth-child(even) .cast-list-head figure {
    margin-right: calc(-55 / 640 * 100%);
  }
}
@media screen and (max-width: 767px) {
  .cast-list li:nth-child(even) .cast-list-name dt {
    margin: 0 auto 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cast-list li > p {
  font-size: 107%;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .cast-list li > p {
    width: calc(480 / 1080 * 100%);
  }
}
.cast-list-head {
  position: relative;
}
@media screen and (min-width: 768px) {
  .cast-list-head {
    width: 50%;
  }
}
.cast-list-head figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 48rem;
}
.cast-list-head figure::after {
  content: "";
  position: absolute;
  display: block;
  top: 49%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 104.5%;
  height: 107%;
  background: url(../images/top/img_cast_frame.png) no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .cast-list-head figure {
    margin-left: calc(-55 / 640 * 100%);
  }
}
@media screen and (min-width: 768px) {
  .cast-list-head figure {
    width: 36rem;
  }
}
.cast-list-name {
  position: relative;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .cast-list-name {
    margin-bottom: 7rem;
  }
}
.cast-list-name dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 48rem;
  font-size: 6.4rem;
  font-weight: 500;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (min-width: 768px) {
  .cast-list-name dt {
    font-size: 4.8rem;
    min-height: 36rem;
  }
}
.cast-list-name dt > * {
  position: relative;
}
.cast-list-name dt .position {
  padding: 0.3em;
  font-size: 38%;
  color: #000000;
  background-color: #f2ff00;
}
.cast-list-name dt .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Serif JP", serif;
  margin: 0 2rem;
  letter-spacing: 0.16em;
}
.cast-list-name dt .name small {
  margin-top: 0.6em;
  font-size: 50%;
  letter-spacing: 0;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}
.cast-list-name dt .ruby {
  text-align: left;
  font-size: 33%;
  font-weight: 400;
  letter-spacing: 0.16em;
}
.cast-list-name dd {
  position: relative;
  text-align: center;
  margin-top: 2rem;
  width: 100%;
  font-size: 185%;
  line-height: 1.3;
  letter-spacing: 0.16em;
  color: #f2ff00;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .cast-list-name dd {
    font-size: 3.9rem;
  }
}
.cast-list-comment {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .cast-list-comment {
    width: 100%;
  }
}

.cast h3 {
  color: #f2ff00;
  font-size: 185%;
  padding: 0 0 4em;
  text-align: center;
}

/* =====================================================================
    topics
======================================================================*/
.topics {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2ff00), color-stop(43%, transparent));
  background: linear-gradient(#f2ff00 0% 43%, transparent 43%);
}
.topics .sec-ttl {
  margin-bottom: 8rem;
}

/* =====================================================================
    staff
======================================================================*/
.staff {
  color: #ffffff;
}
.staff::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 16, 26, 0.8);
  mix-blend-mode: hard-light;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .staff > .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.staff .sec-ttl {
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .staff .sec-ttl {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 calc(50 / 1080 * 100%) 0 calc(-80 / 1080 * 100%);
  }
}
@media screen and (min-width: 768px) {
  .staff-list {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 500px;
  }
}
.staff-list li {
  position: relative;
}
.staff-list li:not(:last-child) {
  margin-bottom: 1.6em;
}
.staff-list li.space {
  margin-bottom: 3.2em;
}
.staff-list li dl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 107%;
  line-height: 1.777;
}
@media screen and (min-width: 768px) {
  .staff-list li dl {
    font-size: 122%;
  }
}
.staff-list li dl dt {
  position: relative;
  text-align: left;
  top: 0.2em;
  width: 50%;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.staff-list li dl dd {
  padding-left: 1em;
  text-align: right;
  width: 50%;
  color: #f2ff00;
}
.staff-list li dl dd span {
  display: block;
}
.staff-list li dl dd small {
  font-size: 65%;
}
.staff-list-comment {
  margin: 0.3em 0 0 auto;
  width: 3.2em;
  height: 1.43em;
  background: url(../images/common/btn_comment.png) no-repeat center/contain;
}

/* =====================================================================
    sns
======================================================================*/
@media screen and (max-width: 767px) {
  .sns .sec-ttl {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (min-width: 768px) {
  .sns .sec-ttl {
    margin-bottom: 14rem;
    width: 100%;
  }
}
.sns > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .sns > .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .sns-wrap {
    display: contents;
  }
}
@media screen and (min-width: 768px) {
  .sns-wrap {
    margin-right: calc(-80 / 1080 * 100%);
    width: calc(540 / 1080 * 100%);
  }
}
.sns-widget {
  position: relative;
  margin: 0 auto 10rem;
  padding: 4rem;
  background-color: #f2ff00;
}
@media screen and (min-width: 768px) {
  .sns-widget {
    margin: 0;
    padding: 3rem;
    width: calc(520 / 1080 * 100%);
  }
}
.sns-widget::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 105%;
  height: 108%;
  background: url(../images/top/img_sns_frame.png) no-repeat center/100% 100%;
  pointer-events: none;
  z-index: 1;
}
.sns-widget .tiktok-embed {
  margin: 0;
}
.sns-widget .tiktok-embed iframe {
  height: 45rem !important;
  min-height: 400px;
}
@media screen and (min-width: 768px) {
  .sns-list {
    margin: 0 auto;
    width: 77.7777777778%;
  }
}
.sns-list li {
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .sns-list li {
    font-size: 2.2rem;
  }
}
.sns-list li:not(:last-child) {
  margin-bottom: 1em;
}
.sns-list li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  padding: 1em 2em;
  letter-spacing: 0.08em;
  background: -webkit-gradient(linear, right top, left top, from(#203080), to(#3048bf));
  background: linear-gradient(270deg, #203080 0%, #3048bf 100%);
  border-radius: 3em;
}
.sns-list li a svg {
  margin-right: 2em;
  width: 1.5em;
  height: 1.5em;
  fill: currentColor;
}
.sns-list li a small {
  display: block;
  margin-top: 0.5em;
  font-family: "Poppins", sans-serif;
  font-size: 80%;
  color: #f2ff00;
}/*# sourceMappingURL=top.css.map */