@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : top.css
Description : トップ
===================================================================== */
@-webkit-keyframes glitchy {
  0% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  25% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  50% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  75% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
}
@keyframes glitchy {
  0% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  25% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  50% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  75% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
}
.movie::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cc0011;
  mix-blend-mode: overlay;
  z-index: -1;
}

/* =====================================================================
    共通
======================================================================*/
.main > * {
  padding: 20rem 0;
}

.sec-ttl {
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .sec-ttl {
    width: calc(640 / 1000 * 100%);
  }
}

/* =====================================================================
    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-wrap .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-wrap .article-list {
    width: 100%;
    padding: 0;
  }
}
.article-list-wrap .article-list li {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .article-list-wrap .article-list li {
    width: 40rem;
    margin-right: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .article-list-wrap .article-list li:last-child {
    margin-right: 0;
  }
}

/* =====================================================================
    mv
======================================================================*/
.mv {
  padding: 2rem 0;
}
.mv h1 {
  margin: 14rem 0;
  -webkit-box-shadow: 0px 0px 16rem 4.3rem rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 16rem 4.3rem rgba(0, 0, 0, 0.5);
}
.mv-date {
  margin: 0 auto;
  width: calc(639 / 750 * 100%);
  z-index: 2;
}
.mv-last {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 56rem;
  opacity: 0;
}
.mv.is-show h1 {
  -webkit-animation: fadeOut 1.5s ease-in-out forwards;
          animation: fadeOut 1.5s ease-in-out forwards;
}
.mv.is-show .mv-last {
  -webkit-animation: fadeIn 1s ease-out 1s forwards;
          animation: fadeIn 1s ease-out 1s forwards;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .mv {
    padding: 0;
  }
  .mv h1 {
    margin: 0 auto;
    max-width: 1017px;
  }
  .mv-date {
    padding: 1.8rem 0;
    width: calc(750 / 1240 * 100%);
    max-width: 750px;
  }
}
/* =====================================================================
    banner1
======================================================================*/
.banner1 {
  padding: 4rem 0;
  border-bottom: 2px solid #99000d;
}
@media screen and (max-width: 767px) {
  .banner1 .banner-list {
    margin: 0 calc(50% - 50vw);
  }
}
.banner1 .banner-list li {
  margin: 3rem calc(16 / 750 * 100%) 0;
  width: calc(328 / 750 * 100%);
}
@media screen and (max-width: 767px) {
  .banner1 .banner-list li:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .banner1 .banner-list li {
    margin: 4rem calc(20 / 1000 * 100%) 0;
    width: calc(280 / 1000 * 100%);
  }
  .banner1 .banner-list li:nth-child(-n+3) {
    margin-top: 0;
  }
}

/* =====================================================================
    news
======================================================================*/
.news {
  padding: 12rem 0;
  background-color: rgba(0, 0, 0, 0.75);
}
@media screen and (min-width: 768px) {
  .news {
    padding: 8rem 0;
  }
}
@media screen and (min-width: 768px) {
  .news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.news-list-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-list li {
  margin-bottom: 7rem;
}
@media screen and (min-width: 768px) {
  .news-list li {
    margin-bottom: 4rem;
    width: calc(470 / 1000 * 100%);
  }
  .news-list li:nth-child(2n) {
    margin-right: 0;
  }
  .news-list li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
.news-list li figure {
  margin-bottom: 0;
  width: calc(240 / 640 * 100%);
}
@media screen and (min-width: 768px) {
  .news-list li figure {
    width: 34.0425531915%;
  }
}
.news-list li .article-list-text {
  margin-top: -0.3em;
  width: calc(350 / 640 * 100%);
}
@media screen and (min-width: 768px) {
  .news-list li .article-list-text {
    width: 60.6382978723%;
  }
}
.news-list li .article-list-date {
  color: #cc0011;
}
.news-list .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.news-list .slick-dots li {
  display: inline-block;
  margin: 0 0.4em;
  width: 0.5em;
  height: 0.5em;
}
.news-list .slick-dots li button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: transparent;
}
.news-list .slick-dots li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #bdbdc4;
  border-radius: 50%;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.news-list .slick-dots li.slick-active button::before {
  background-color: #cc0011;
}

/* =====================================================================
    nextstory
======================================================================*/
.nextstory {
  color: #000000;
}
.nextstory-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.nextstory-bg::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: calc(100% - 75rem);
  background-color: rgba(255, 255, 255, 0.75);
}
@media screen and (min-width: 768px) {
  .nextstory-bg::before {
    height: calc(100% - 72rem);
  }
}
.nextstory-bg::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 75rem;
  background: url(../images/common/bg_triangle.svg) no-repeat left bottom/cover;
  opacity: 0.75;
}
@media screen and (min-width: 768px) {
  .nextstory-bg::after {
    width: 75vw;
    height: 72rem;
  }
}
.nextstory .sec-ttl {
  margin-bottom: 11rem;
}
.nextstory-head {
  position: relative;
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .nextstory-head {
    margin: 0 auto 6rem;
    width: calc(800 / 1000 * 100%);
  }
}
.nextstory-movie {
  position: relative;
}
.nextstory-movie::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg_img_movie.jpg) no-repeat center/100% 100%;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  z-index: -1;
}
.nextstory-subttl {
  text-align: center;
  margin: 3rem auto 0;
  padding: 0.4em;
  width: 6.66em;
  font-size: 3.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  background: url(../images/common/bg_story_subttl.png) no-repeat center/100% 100%;
}
@media screen and (min-width: 768px) {
  .nextstory-subttl {
    margin-top: 6rem;
    font-size: 135%;
  }
}
.nextstory-date {
  text-align: center;
  margin-top: 1rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #99000d;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .nextstory-date {
    font-size: 150%;
  }
}
.nextstory-btn {
  margin-top: 6rem;
}

/* =====================================================================
    movie
======================================================================*/
.movie-list .article-list-date {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  bottom: -0.8em;
  padding: 0.4em 1em;
  background: url(../images/top/bg_grange_red.jpg) no-repeat center/cover;
  z-index: 1;
}
.movie-list h4 {
  margin-bottom: 0;
}
.movie-btn {
  margin-top: 6rem;
}
.movie-btn span {
  color: #000000;
  background-color: #ffffff;
}

/* =====================================================================
    topics
======================================================================*/
.topics {
  background-color: rgba(0, 0, 0, 0.75);
}
.topics .sec-ttl {
  margin-left: calc(-8 / 640 * 100%);
}
.topics-list li {
  margin-right: 2.4rem !important;
  width: 44.8rem !important;
}
@media screen and (min-width: 768px) {
  .topics-list li {
    margin-right: calc(32 / 1000 * 100%) !important;
    width: calc(320 / 1000 * 100%) !important;
  }
}
.topics-list li a {
  position: relative;
  padding: 5.3571428571%;
  color: #000000;
  background-color: #ffffff;
}
.topics-list figure {
  margin-bottom: 0.5em;
}
.topics-list .article-list-date {
  margin-bottom: 0.8em;
  color: #99000d;
}
.topics-btn {
  margin-top: 6rem;
}
.topics-btn span {
  background-color: #99000d;
}
.topics-btn span::after {
  border-color: #000000;
}

/* =====================================================================
    sns
======================================================================*/
@media screen and (min-width: 768px) {
  .sns .sec-ttl {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(640 / 1240 * 100%);
    margin-left: calc(120 / 1240 * 100%);
  }
}
@media screen and (min-width: 768px) {
  .sns-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .sns-group > *:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.sns-group .tiktok-embed {
  margin: 0;
}
.sns-group .tiktok-embed iframe {
  height: 51rem !important;
  min-height: 400px;
}
@media screen and (min-width: 768px) {
  .sns-widget {
    width: calc(480 / 1000 * 100%);
    background-color: #ffffff;
  }
}
@media screen and (min-width: 1240px) {
  .sns-widget {
    height: 510px;
  }
}
@media screen and (min-width: 768px) {
  .sns-list {
    width: calc(480 / 1000 * 100%);
  }
}
.sns-list li {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .sns-list li {
    font-size: 3rem;
  }
}
.sns-list li:not(:last-child) {
  margin-bottom: 0.8em;
}
.sns-list li a {
  position: relative;
  position: relative;
}
.sns-list li a:before, .sns-list li a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.sns-list li a:before {
  background-color: #a2a1e5;
  z-index: -1;
}
.sns-list li a:after {
  background-color: #cc0011;
  z-index: -2;
}
.sns-list li a:hover {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}
.sns-list li a:hover:before {
  -webkit-animation: glitchy 0.3s ease 0.3s infinite;
          animation: glitchy 0.3s ease 0.3s infinite;
}
.sns-list li a:hover:after {
  animation: glitchy 0.3s ease infinite reverse;
}
.sns-list li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  padding: 1.37em 0;
  padding-left: 1.6em;
  background: url(../images/top/bg_grange_red.jpg) no-repeat center/cover;
}
.sns-list li a svg {
  margin-right: 1em;
  width: 1.5em;
  height: 1.5em;
  fill: #ffffff;
}

/* =====================================================================
*    hulu_popup
* =================================================================== */
.hulu-popup {
  display: none;
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .hulu-popup {
    font-size: 2.6vh;
  }
}
.hulu-popup .popup-bg {
  background: rgba(0, 0, 0, 0.8);
}
.hulu-popup-inner {
  position: relative;
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-align: center;
  margin: auto;
  width: calc(650 / 750 * 100%);
  height: auto;
  background: url(../images/top/bg_hulu_popup.jpg) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .hulu-popup-inner {
    width: 21.66em;
  }
}
.hulu-popup-inner h2 {
  margin-bottom: 0;
  padding: 2.5em 0 1.5em;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 0.666em;
}
.hulu-popup-inner h3 {
  position: relative;
  padding-bottom: 0.75em;
  font-family: "Noto Serif JP", serif;
  font-size: 133%;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
.hulu-popup-img {
  position: relative;
}
.hulu-popup-btn, .hulu-popup-link {
  margin: 0 auto;
  width: calc(460 / 650 * 100%);
}
.hulu-popup-btn a, .hulu-popup-link a {
  position: relative;
  padding: 0.833em 0;
  letter-spacing: 0.1em;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3em;
}
@media screen and (min-width: 768px) {
  .hulu-popup-btn a, .hulu-popup-link a {
    -webkit-transition-property: background-image;
    transition-property: background-image;
  }
  .hulu-popup-btn a:hover, .hulu-popup-link a:hover {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.hulu-popup-btn a::after, .hulu-popup-link a::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 0.2em);
  right: 1em;
  width: 0.6em;
  height: 0.6em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
.hulu-popup-btn {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
}
.hulu-popup-btn a {
  font-family: "Noto Serif JP", serif;
  background-image: url(../images/top/bg_hulu_popup_btn1.jpg);
}
@media screen and (min-width: 768px) {
  .hulu-popup-btn a:hover {
    background-image: url(../images/top/bg_hulu_popup_btn1_h.jpg);
  }
}
.hulu-popup-link a {
  background-image: url(../images/top/bg_hulu_popup_btn2.jpg);
}
@media screen and (min-width: 768px) {
  .hulu-popup-link a:hover {
    background-image: url(../images/top/bg_hulu_popup_btn2_h.jpg);
  }
}
.hulu-popup-bottom {
  padding: 1.333em 0;
  background-color: #ffffff;
}
.hulu-popup-streaming {
  margin-bottom: 0.833em;
}
.hulu-popup-streaming img {
  margin: 0 auto;
  width: calc(397 / 650 * 100%);
}
.hulu-popup-check {
  padding: 1.307em 0;
  font-family: "Noto Serif JP", serif;
  font-size: 86%;
}
.hulu-popup-check label {
  cursor: pointer;
}
.hulu-popup-check input {
  width: 1em;
  height: 1em;
  margin: -0.15em 0.3em 0 0;
  vertical-align: middle;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.hulu-popup-close {
  position: absolute;
  bottom: -2.5em;
  width: 100%;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}/*# sourceMappingURL=top.css.map */