@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-black-pure: #000;
  --color-black: #111;
  --color-white: #fff;
  --color-blue: #22b8ff;
  --gradient-blue: linear-gradient(90deg,rgba(34, 184, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  --font-jp: YakuHanMP, "Noto Serif JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --font-eng: "Antic Didone", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
}

html {
  font-size: min(0.7142857143vw, 15px);
}
@media screen and (max-width: 750px) {
  html {
    font-size: min(2.6666666667vw, 20px);
  }
}
@media screen and (min-width: 751px) and (max-height: 750px) {
  html {
    font-size: min(0.6428571429vw, 15px);
  }
}

body {
  background: var(--color-black);
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

button {
  font-size: 1.6rem;
  line-height: 1.3;
  font-family: var(--font-jp);
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  box-sizing: border-box;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .is-sp {
    display: block;
  }
}

.p-wrapper {
  position: relative;
  color: var(--color-white);
  font-family: var(--font-jp);
  font-weight: 400;
  opacity: 0;
}
.on-load .p-wrapper {
  opacity: 1;
  transition: opacity 0.6s var(--ease-out-quart);
}
@media screen and (max-width: 750px) {
  .p-wrapper {
    overflow: hidden;
  }
}
.p-wrapper__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.p-wrapper__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-wrapper__deco-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  transition: top 0.7s var(--ease-out-cubic);
}
.p-wrapper__deco-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_particle_l_pc.png) repeat center top/100% auto;
}
@media screen and (max-width: 750px) {
  .p-wrapper__deco-inner::before {
    background-image: url(../img/bg_particle_l_sp.png);
  }
}
.p-wrapper__deco-inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_particle_s_pc.png) repeat center top/100% auto;
}
@media screen and (max-width: 750px) {
  .p-wrapper__deco-inner::after {
    background-image: url(../img/bg_particle_s_sp.png);
  }
}
.p-wrapper__deco_net {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s var(--ease-out-quart);
}
.is-scroll-now .p-wrapper__deco_net {
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .is-scroll-now .p-wrapper__deco_net {
    opacity: 1;
  }
}
.p-wrapper__deco_net-item {
  position: absolute;
}
.p-wrapper__deco_net-item:nth-child(1) {
  top: 0;
  left: -19.2rem;
  transform: translateY(-70%);
  width: 72rem;
}
@media screen and (max-width: 750px) {
  .p-wrapper__deco_net-item:nth-child(1) {
    left: auto;
    right: -56%;
    transform: translateY(-4.8%) rotate(25deg);
    width: 37.5rem;
  }
}
.p-wrapper__deco_net-item:nth-child(2) {
  top: 24.5rem;
  left: -35rem;
  transform: translateY(60%);
  width: 60rem;
}
@media screen and (max-width: 750px) {
  .p-wrapper__deco_net-item:nth-child(2) {
    top: 10rem;
    left: -50%;
    transform: translate(0, 12%);
    width: 30rem;
  }
}
.p-wrapper__content {
  display: block;
  position: relative;
}
.p-wrapper__content-scroll_area {
  width: 100%;
  height: calc(205rem - 100vw);
  display: block;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .p-wrapper__content-scroll_area {
    display: none;
    height: 0;
  }
}
.p-wrapper__base {
  width: 100%;
  height: calc(185rem - 100vw);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .p-wrapper__base {
    height: auto;
  }
}

.p-main {
  display: block;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-main {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    bottom: 0;
  }
}

.p-header {
  display: block;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 750px) {
  .p-header {
    overflow: visible;
  }
}
.p-header__wrapper {
  position: relative;
}
.p-header__inner {
  padding: 3rem 5rem;
}
@media screen and (max-width: 750px) {
  .p-header__inner {
    padding: 0;
  }
}
.p-header__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .p-header__content {
    display: block;
    width: 93.2%;
  }
}
.p-header__head {
  position: relative;
  width: 40rem;
  flex-shrink: 0;
  min-width: 0;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 750px) {
  .p-header__head {
    width: 86.5%;
    margin: 0 auto;
    padding-top: 6rem;
    padding-bottom: 0;
  }
}
.p-header__title {
  position: relative;
  margin-top: 5rem;
  margin-bottom: -6rem;
  transform: scale(1.1);
  transform-origin: 50% 40%;
  filter: blur(5px);
  opacity: 0;
}
.on-load .p-header__title {
  transform: scale(1);
  filter: blur(0);
  opacity: 1;
  transition: transform 1.2s var(--ease-out-quart), filter 1.2s var(--ease-out-quart), opacity 0.6s var(--ease-out-quart);
}
@media screen and (max-width: 750px) {
  .p-header__title {
    margin: 0;
  }
}
.p-header__title-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.p-header__title-img:first-child {
  position: relative;
}
.p-header__nav_label {
  position: relative;
  width: 71.5%;
  margin: 0 auto;
  transform: translateX(-1.2rem);
  opacity: 0;
}
.on-load .p-header__nav_label {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-quart) 0.4s, opacity 0.4s var(--ease-out-quart) 0.4s;
}
@media screen and (max-width: 750px) {
  .p-header__nav_label {
    width: 100%;
    transform: translateY(1.2rem);
  }
}
.p-header__nav_label-frame {
  position: relative;
}
.p-header__nav_label-text {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 95%;
  text-align: center;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  .p-header__nav_label-text {
    top: 46%;
    left: 50%;
    font-size: 1.3rem;
  }
}
.p-header__body {
  flex-shrink: 0;
  min-width: 0;
  margin-left: 5rem;
}
@media screen and (min-width: 751px) {
  .p-header__body {
    width: 140rem;
  }
}
@media screen and (max-width: 750px) {
  .p-header__body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-left: 0;
    margin-top: -0.7rem;
  }
}
@media screen and (max-width: 750px) {
  .p-header__nav {
    width: 43.5%;
    margin: 0 2.6%;
  }
}
.p-header__nav:nth-child(n+2) {
  margin-top: 1rem;
}
@media screen and (max-width: 750px) {
  .p-header__nav:nth-child(n+2) {
    margin-top: 0;
  }
}
.p-header__nav-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-1.2rem);
  opacity: 0;
}
.on-load .p-header__nav-list {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-quart) 0.6s, opacity 0.4s var(--ease-out-quart) 0.6s;
}
@media screen and (max-width: 750px) {
  .p-header__nav-list {
    display: block;
    margin-top: 1rem;
    transform: translateY(1.2rem);
  }
}
.p-header__nav-list-item {
  width: 21.1rem;
  flex-shrink: 0;
  min-width: 0;
}
@media screen and (max-width: 750px) {
  .p-header__nav-list-item {
    width: 100%;
  }
}
.p-header__nav-list-item:nth-child(n+2) {
  margin-left: 0.8rem;
}
@media screen and (max-width: 750px) {
  .p-header__nav-list-item:nth-child(n+2) {
    margin-left: auto;
    margin-top: 7%;
  }
}

.p-header_nav_item {
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-header_nav_item {
    height: 100%;
    padding-bottom: 1.9rem;
  }
  .p-header__nav-list-item:last-child .p-header_nav_item {
    padding-bottom: 0;
  }
}
.p-header_nav_item__detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .p-header_nav_item__detail {
    position: absolute;
    top: 0;
    left: -0.2rem;
    flex-direction: column;
    height: 100%;
  }
}
.p-header_nav_item__detail::after {
  content: "";
  display: block;
  position: relative;
  box-sizing: border-box;
  flex-basis: 0;
  flex-grow: 1;
  height: 1px;
  margin-left: 0.9rem;
  background: var(--color-blue);
}
@media screen and (max-width: 750px) {
  .p-header_nav_item__detail::after {
    transform: translateX(0.5rem);
    width: 0.1rem;
    margin-left: 0;
    margin-top: 1rem;
  }
  @supports (writing-mode: sideways-rl) {
    .p-header_nav_item__detail::after {
      transform: none;
    }
  }
}
.p-header_nav_item__detail-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 1.5rem;
}
@media screen and (max-width: 750px) {
  .p-header_nav_item__detail-wrapper {
    display: block;
    height: auto;
  }
}
.nav-2 .p-header_nav_item__detail-wrapper {
  height: 4.5rem;
}
@media screen and (max-width: 750px) {
  .nav-2 .p-header_nav_item__detail-wrapper {
    height: auto;
  }
}
.p-header_nav_item__detail-text {
  color: var(--color-blue);
  font-family: var(--font-eng);
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .p-header_nav_item__detail-text {
    font-size: 1rem;
    writing-mode: vertical-lr;
  }
  @supports (writing-mode: sideways-rl) {
    .p-header_nav_item__detail-text {
      writing-mode: sideways-rl;
    }
  }
}
.nav-2 .p-header_nav_item__detail-text {
  font-family: var(--font-jp);
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .nav-2 .p-header_nav_item__detail-text {
    font-size: 1rem;
  }
}
.p-header_nav_item__detail-text .sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .p-header_nav_item__detail-text .sp {
    display: inline;
  }
}
.p-header_nav_item__content {
  position: relative;
  width: 90%;
  margin-top: 1.8rem;
}
@media screen and (max-width: 750px) {
  .p-header_nav_item__content {
    width: 79.5%;
    margin: 0 auto;
    margin-top: 0rem;
    transform: translateX(0.4rem);
  }
}
.episode-4 .p-header_nav_item__content {
  width: 90%;
  margin-top: 0.7rem;
  padding-top: 0.9rem;
  padding-bottom: 0.5rem;
  border: 1px var(--color-blue) solid;
}
@media screen and (max-width: 750px) {
  .episode-4 .p-header_nav_item__content {
    width: 92%;
    margin-left: auto;
    margin-top: 0rem;
    padding-top: 1rem;
    padding-bottom: 0.6rem;
    border-width: 0.1rem;
  }
}
.nav-2 .episode-4 .p-header_nav_item__content {
  margin-top: -0.7rem;
}
@media screen and (max-width: 750px) {
  .nav-2 .episode-4 .p-header_nav_item__content {
    margin-top: 0rem;
  }
}
.nav-2 .p-header_nav_item__content {
  margin-top: 0.2rem;
}
@media screen and (max-width: 750px) {
  .nav-2 .p-header_nav_item__content {
    margin-top: 0rem;
  }
}
.p-header_nav_item__logo {
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-header_nav_item__logo {
    width: 50%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .episode-4 .p-header_nav_item__logo {
    width: 43%;
  }
}
.p-header_nav_item__visual {
  position: relative;
  width: 89.5%;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-header_nav_item__visual {
    width: 100%;
    margin-top: 1.1rem;
  }
}
.episode-4 .p-header_nav_item__visual {
  width: 90.5%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .episode-4 .p-header_nav_item__visual {
    width: 94%;
    margin-top: 1.1rem;
  }
}
.p-header_nav_item__visual-btn {
  display: block;
  position: relative;
  width: 100%;
}
.p-header_nav_item__visual-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(5px);
  opacity: 0.8;
  transform: scale(1.1);
}
.p-header_nav_item__visual-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-header_nav_item__visual-img {
  display: block;
  position: relative;
  width: 100%;
  padding-top: min(141.1764705882%, 30vh);
}
.p-header_nav_item__visual-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-header_nav_item__visual-cover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-quart);
}
@media (hover: hover) {
  .p-header_nav_item__visual-btn:hover .p-header_nav_item__visual-cover {
    opacity: 1;
  }
}
.p-header_nav_item__visual-cover::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  opacity: 0.8;
}
.p-header_nav_item__visual-cover-logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 71%;
}
.p-header_nav_item__visual-play {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  width: 3rem;
  height: 3rem;
  border: 0.1rem var(--color-white) solid;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-quart);
}
@media (hover: hover) {
  .p-header_nav_item__visual-btn:hover .p-header_nav_item__visual-play {
    opacity: 1;
  }
}
.p-header_nav_item__visual-play::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 100%;
  background: url(../img/icon_arrow.svg) no-repeat center center/100% auto;
}
.p-header_nav_item__episode {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 89.5%;
  height: 4rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 750px) {
  .p-header_nav_item__episode {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
}
.episode-4 .p-header_nav_item__episode {
  margin-left: auto;
  margin-right: auto;
}
.p-header_nav_item__episode-wrapper {
  position: relative;
}
.p-header_nav_item__episode-text {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .p-header_nav_item__episode-text {
    font-size: 1.2rem;
  }
}
.p-header_nav_item__episode-text .--size-small {
  display: inline-block;
  margin-top: -0.6rem;
  font-size: 0.8em;
}
@media screen and (max-width: 750px) {
  .p-header_nav_item__episode-text .--size-small {
    margin-top: -0.4rem;
    font-size: 0.9em;
  }
}

.p-content {
  position: relative;
  width: 116rem;
  margin: 0 auto;
  margin-top: 8.3rem;
}
@media screen and (max-width: 750px) {
  .p-content {
    width: 34.5rem;
    margin-top: 6.8rem;
  }
}

.p-info {
  position: relative;
  padding-bottom: 14rem;
}
@media screen and (max-width: 750px) {
  .p-info {
    padding-bottom: 10rem;
  }
}
.p-info__list-item {
  transform: translateY(1.2rem);
  opacity: 0;
}
.on-load .p-info__list-item {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-quart) 0.8s, opacity 0.4s var(--ease-out-quart) 0.8s;
}
.p-info__list-item:nth-child(n+2) {
  margin-top: 4rem;
}
@media screen and (max-width: 750px) {
  .p-info__list-item:nth-child(n+2) {
    margin-top: 3rem;
  }
}

.p-info_item {
  position: relative;
}
.p-info_item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  border-radius: 1rem;
  opacity: 0.5;
}
@media screen and (max-width: 750px) {
  .p-info_item::before {
    border-radius: 0.6rem;
  }
}
.p-info_item__inner {
  position: relative;
  width: 86.2%;
  margin: 0 auto;
  padding-top: 7.7rem;
  padding-bottom: 7.8rem;
}
@media screen and (max-width: 750px) {
  .p-info_item__inner {
    width: 83%;
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
}
.p-info_item__content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .p-info_item__content {
    display: block;
  }
}
.p-info_item__head {
  width: 36%;
  padding-top: 0.3rem;
}
@media screen and (max-width: 750px) {
  .p-info_item__head {
    width: 100%;
  }
}
.p-info_item__logo {
  width: 39%;
  margin: 0 auto;
  margin-top: 2rem;
}
@media screen and (max-width: 750px) {
  .p-info_item__logo {
    width: 35.2%;
    margin-top: 0.9rem;
  }
}
.p-info_item__official {
  margin-top: 2rem;
}
@media screen and (max-width: 750px) {
  .p-info_item__official {
    margin-top: 1rem;
  }
}
.p-info_item__official-btn {
  width: 20rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .p-info_item__official-btn {
    width: 22.5rem;
  }
}
.p-info_item__body {
  flex-basis: 0;
  flex-grow: 1;
  margin-left: 5.7%;
}
@media screen and (max-width: 750px) {
  .p-info_item__body {
    margin-top: 3.6rem;
    margin-left: 0;
  }
}
.p-info_item__block:nth-child(n+2) {
  margin-top: 5rem;
}
@media screen and (max-width: 750px) {
  .p-info_item__block:nth-child(n+2) {
    margin-top: 3.2rem;
  }
}
.p-info_item__block.--movie {
  margin-top: 5.7rem;
}
@media screen and (max-width: 750px) {
  .p-info_item__block.--movie {
    margin-top: 3.6rem;
  }
}
.p-info_item__block-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.p-info_item__block-title::after {
  content: "";
  display: block;
  position: relative;
  box-sizing: border-box;
  flex-basis: 0;
  flex-grow: 1;
  height: 0.1rem;
  margin-left: 1.7rem;
  background: var(--gradient-blue);
}
@media screen and (max-width: 750px) {
  .p-info_item__block-title::after {
    margin-left: 0.9rem;
  }
}
.p-info_item__block-title-text {
  color: var(--color-blue);
  font-family: var(--font-eng);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 750px) {
  .p-info_item__block-title-text {
    font-size: 2.1rem;
    letter-spacing: 0.02em;
  }
}

.p-story {
  position: relative;
  margin-top: 2.8rem;
}
@media screen and (max-width: 750px) {
  .p-story {
    margin-top: 2rem;
  }
}
.p-story__description {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .p-story__description {
    font-size: 1.3rem;
    line-height: 1.62;
  }
}

.p-streaming {
  position: relative;
  margin-top: 3.6rem;
}
@media screen and (max-width: 750px) {
  .p-streaming {
    margin-top: 2.6rem;
  }
}
.p-streaming__block {
  margin-left: 0.3rem;
}
@media screen and (max-width: 750px) {
  .p-streaming__block {
    margin-left: 0;
  }
}
.p-streaming__block:nth-child(n+2) {
  margin-top: 4rem;
}
@media screen and (max-width: 750px) {
  .p-streaming__block:nth-child(n+2) {
    margin-top: 2.9rem;
  }
}
.p-streaming__block-label {
  position: relative;
  box-sizing: content-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 0.75rem 0.7rem;
  background: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-streaming__block-label {
    padding: 0.3rem 0.55rem 0.4rem;
  }
}
.p-streaming__block-label-text {
  color: var(--color-black);
  font-size: 1.8rem;
}
@media screen and (max-width: 750px) {
  .p-streaming__block-label-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
}
.p-streaming__more {
  margin-top: 2rem;
}
.p-streaming__more-label {
  margin-bottom: 1.1rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
  .p-streaming__more-label {
    font-size: 1.3rem;
    letter-spacing: 0.02em;
  }
}
.p-streaming__more-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.p-streaming__more-list-item {
  width: 49%;
}
@media screen and (max-width: 750px) {
  .p-streaming__more-list-item {
    width: 100%;
  }
}
.p-streaming__more-list-item:nth-child(even) {
  margin-left: 2%;
}
@media screen and (max-width: 750px) {
  .p-streaming__more-list-item:nth-child(even) {
    margin-left: 0;
  }
}
.p-streaming__more-list-item:nth-child(n+3) {
  margin-top: 1.8%;
}
@media screen and (max-width: 750px) {
  .p-streaming__more-list-item:nth-child(n+2) {
    margin-top: 3.3%;
  }
}
.p-books {
  position: relative;
  margin-top: 3.6rem;
}
@media screen and (max-width: 750px) {
  .p-books {
    margin-top: 2.6rem;
  }
}
.p-books__block:nth-child(n+2) {
  margin-top: 3.4rem;
}
.p-books__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
@media screen and (max-width: 750px) {
  .p-books__list {
    margin-top: 0.6rem;
  }
}
.p-books__list-item {
  display: block;
  position: relative;
  width: 19%;
  margin-left: 1.25%;
}
@media screen and (max-width: 750px) {
  .p-books__list-item {
    width: 31.5%;
    margin-left: 2.75%;
  }
}
.p-books__list-item:nth-child(5n-4) {
  margin-left: 0;
}
@media screen and (max-width: 750px) {
  .p-books__list-item:nth-child(5n-4) {
    margin-left: 2.75%;
  }
}
@media screen and (max-width: 750px) {
  .p-books__list-item:nth-child(3n-2) {
    margin-left: 0;
  }
}
.p-books__list-item:nth-child(n+6) {
  margin-top: 2.5%;
}
@media screen and (max-width: 750px) {
  .p-books__list-item:nth-child(n+4) {
    margin-top: 2.75%;
  }
}
.p-books__img-link {
  display: block;
}
.p-books__img-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-quart);
}
@media (hover: hover) {
  .p-books__img-link:hover::after {
    opacity: 0.4;
  }
}

.p-movie {
  position: relative;
  margin-left: 0.3rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 750px) {
  .p-movie {
    margin-left: 0;
    margin-top: 2.7rem;
  }
}
.p-movie__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .p-movie__list {
    display: block;
  }
}
.p-movie__list-item {
  width: 49.2%;
  border: 0.1rem var(--color-white) solid;
  border-radius: 0.4rem;
}
@media screen and (max-width: 750px) {
  .p-movie__list-item {
    width: 100%;
  }
}
.p-movie__list-item:nth-child(even) {
  margin-left: 1.4%;
}
@media screen and (max-width: 750px) {
  .p-movie__list-item:nth-child(even) {
    margin-left: 0;
  }
}
.p-movie__list-item:nth-child(n+3) {
  margin-top: 1.6%;
}
@media screen and (max-width: 750px) {
  .p-movie__list-item:nth-child(n+2) {
    margin-top: 4%;
  }
}

.p-movie_item {
  position: relative;
}
.p-movie_item__thumbnail {
  position: relative;
  width: 100%;
  padding-top: 58%;
  cursor: pointer;
}
.p-movie_item__thumbnail::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 94.2%;
  padding-top: 52.9875%;
  background: var(--color-black);
  opacity: 0.5;
  transition: opacity 0.4s var(--ease-out-quart);
}
@media (hover: hover) {
  .p-movie_item__thumbnail:hover::before {
    opacity: 0;
  }
}

.p-movie_item__thumbnail::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(../img/btn_play.png) no-repeat center center/100% auto;
}
.p-movie_item__thumbnail-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 94.2%;
  padding-top: 52.9875%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.p-footer {
  position: relative;
  z-index: 1;
  background: var(--color-black);
}
.p-footer__inner {
  width: 92.8%;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 750px) {
  .p-footer__inner {
    padding-top: 4.9rem;
    padding-bottom: 4.8rem;
  }
}
.p-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .p-footer__content {
    display: block;
  }
}
.p-footer__official-site {
  width: 35.6rem;
}
@media screen and (max-width: 750px) {
  .p-footer__official-site {
    width: 25.4rem;
    margin: 0 auto;
  }
}
.p-footer__official-site-link {
  display: block;
  transition: opacity 0.4s var(--ease-out-quart);
}
@media (hover: hover) {
  .p-footer__official-site-link:hover {
    opacity: 0.4;
  }
}
.p-footer__official-share {
  margin-top: 2.7rem;
}
@media screen and (max-width: 750px) {
  .p-footer__official-share {
    margin-top: 1.7rem;
  }
}
.p-footer__share {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .p-footer__share {
    justify-content: center;
    margin-left: 1.8rem;
  }
}
.p-footer__share-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 2.7rem;
}
.p-footer__share-list-item {
  margin-right: 1.8rem;
}
@media screen and (max-width: 750px) {
  .p-footer__share-list-item {
    margin-right: 2rem;
  }
}
.p-footer__share-label {
  position: relative;
  font-family: var(--font-eng);
  font-size: 1.7rem;
  padding-bottom: 0.3rem;
  border-bottom: 0.1rem var(--color-white) solid;
}
@media screen and (max-width: 750px) {
  .p-footer__share-label {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    padding-bottom: 0.4rem;
  }
}
.p-footer__share-link {
  display: block;
  width: 2.5rem;
  transition: opacity 0.4s var(--ease-out-quart);
}
@media (hover: hover) {
  .p-footer__share-link:hover {
    opacity: 0.6;
  }
}
.p-footer__share-link svg {
  display: block;
  width: 100%;
}
.p-footer__share-link path {
  display: block;
  width: 100%;
  transition: fill 0.4s var(--ease-out-quart);
}
@media (hover: hover) {
  .p-footer__share-link:hover path {
    fill: var(--color-blue);
  }
}

@media screen and (max-width: 750px) {
  .p-footer__rule-help {
    margin-top: 1.9rem;
  }
}
.p-footer__rule-copyright {
  margin-top: 2.5rem;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.68;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 750px) {
  .p-footer__rule-copyright {
    margin-top: 2.2rem;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.62;
    letter-spacing: 0em;
  }
}
.p-footer__help-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .p-footer__help-list {
    display: block;
  }
}
.p-footer__help-list-item {
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-footer__help-list-item:nth-child(n+2) {
    margin-top: 0.85rem;
  }
}
.p-footer__help-list-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 0.1rem;
  height: 100%;
  background: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-footer__help-list-item::after {
    content: none;
  }
}
.p-footer__help-list-item:last-child::after {
  content: none;
}

.p-footer__help-link {
  display: block;
  box-sizing: content-box;
  padding: 0 2.7rem;
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-eng);
  font-size: 1.4rem;
  transition: color 0.4s var(--ease-out-quart), opacity 0.4s var(--ease-out-quart);
}
@media (hover: hover) {
  .p-footer__help-link:hover {
    color: var(--color-blue);
    opacity: 0.7;
  }
}
@media screen and (max-width: 750px) {
  .p-footer__help-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
  }
}
.p-footer__help-list-item:last-child .p-footer__help-link {
  padding-right: 0;
}
.p-footer__pagetop {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -99%);
  width: 22.5rem;
}
@media screen and (max-width: 750px) {
  .p-footer__pagetop {
    transform: translate(-50%, -95%);
    width: 14rem;
  }
}
.p-footer__pagetop-link {
  display: block;
  position: relative;
  transform-origin: center bottom;
  transition: transform 0.6s var(--ease-out-cubic);
}
@media (hover: hover) {
  .p-footer__pagetop-link:hover {
    transform: scale(1.06);
  }
}
.p-footer__pagetop-bg {
  display: block;
  position: relative;
}
.p-footer__pagetop-arrow {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.6s var(--ease-out-cubic);
}
@media (hover: hover) {
  .p-footer__pagetop-link:hover .p-footer__pagetop-arrow {
    opacity: 0.6;
  }
}

.p-btn {
  position: relative;
}
.p-btn__link {
  display: block;
  position: relative;
  box-sizing: border-box;
  padding: 1.6rem 2rem 1.7rem;
  border: 0.1rem var(--color-white) solid;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.4s var(--ease-out-quart);
}
@media (hover: hover) {
  .p-btn__link:hover {
    background: rgba(34, 184, 255, 0.4);
  }
}
@media screen and (max-width: 750px) {
  .p-btn__link {
    padding: 1.6rem 2rem 1.9rem;
  }
  .p-streaming__more .p-btn__link {
    padding: 1.4rem 2rem 1.6rem;
  }
}
.p-btn__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1.4rem;
  width: 0.85rem;
  height: 100%;
  background: url(../img/icon_arrow.svg) no-repeat center center/100% auto;
}
@media screen and (max-width: 750px) {
  .p-btn__link::after {
    right: 2rem;
    width: 0.7rem;
  }
  .p-streaming__more .p-btn__link::after {
    right: 1.5rem;
  }
}
.p-btn__text {
  display: block;
  position: relative;
  text-align: center;
  color: var(--color-white);
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
  .p-btn__text {
    font-size: 1.3rem;
  }
}

.m-modal.m-modal.m-modal-custom .m-modal__close-btn {
  width: 4rem;
  height: 4rem;
  display: block;
  position: fixed;
  top: 2rem;
  right: 3rem;
  cursor: pointer;
  z-index: 1;
}
.m-modal.m-modal.m-modal-custom .m-modal__close-btn::before {
  height: 100%;
  transform: translate(-50%, -50%) rotate(75deg);
}
.m-modal.m-modal.m-modal-custom .m-modal__close-btn::after {
  height: 100%;
  transform: translate(-50%, -50%) rotate(-75deg);
}