@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritance in all browsers (opinionated).
  */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
  * 1. Use the default cursor in all browsers (opinionated).
  * 2. Change the line height in all browsers (opinionated).
  * 3. Use a 4-space tab width in all browsers (opinionated).
  * 4. Remove the grey highlight on links in iOS (opinionated).
  * 5. Prevent adjustments of font size after orientation changes in
  *    IE on Windows Phone and in iOS.
  * 6. Breaks words to prevent overflow in all browsers (opinionated).
  */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
  * ========================================================================== */
/**
  * Remove the margin in all browsers (opinionated).
  */
body {
  margin: 0;
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
  * ========================================================================== */
/**
  * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
  */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
  * Remove the margin on nested lists in Edge 18- and IE.
  */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
  * 1. Correct the inheritance of border color in Firefox.
  * 2. Add the correct box sizing in Firefox.
  * 3. Show the overflow in Edge 18- and IE.
  */
hr {
  color: inherit; /* 1 */
  height: 0; /* 2 */
  overflow: visible; /* 3 */
}

/**
  * Add the correct display in IE.
  */
main {
  display: block;
}

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
  * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
  */
nav li::before {
  content: "​";
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  * 3. Prevent overflow of the container in all browsers (opinionated).
  */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
  -ms-overflow-style: scrollbar; /* 3 */
}

/* Text-level semantics
  * ========================================================================== */
/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
}

/**
  * Add the correct text decoration in Edge 18-, IE, and Safari.
  */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
b,
strong {
  font-weight: bolder;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 80%;
}

/* Embedded content
  * ========================================================================== */
/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
  * Add the correct display in IE 9-.
  */
audio,
video {
  display: inline-block;
}

/**
  * Add the correct display in iOS 4-7.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
iframe {
  border-style: none;
}

/**
  * Remove the border on images within links in IE 10-.
  */
img {
  border-style: none;
}

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
svg:not([fill]) {
  fill: currentColor;
}

/**
  * Hide the overflow in IE.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
  * ========================================================================== */
/**
  * 1. Collapse border spacing in all browsers (opinionated).
  * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
  * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
  */
table {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
  * ========================================================================== */
/**
  * Remove the margin on controls in Safari.
  */
button,
input,
select {
  margin: 0;
}

/**
  * 1. Show the overflow in IE.
  * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
  */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
  * 1. Change the inconsistent appearance in all browsers (opinionated).
  * 2. Correct the padding in Firefox.
  */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
  * Show the overflow in Edge 18- and IE.
  */
input {
  overflow: visible;
}

/**
  * 1. Correct the text wrapping in Edge 18- and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
  * 1. Add the correct display in Edge 18- and IE.
  * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
  * Remove the inheritance of text transform in Firefox.
  */
select {
  text-transform: none;
}

/**
  * 1. Remove the margin in Firefox and Safari.
  * 2. Remove the default vertical scrollbar in IE.
  * 3. Change the resize direction in all browsers (opinionated).
  */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
  resize: block; /* 3 */
}

/**
  * Remove the padding in IE 10-.
  */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
  * Correct the cursor style of increment and decrement buttons in Safari.
  */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
  * Correct the text style of placeholders in Chrome, Edge, and Safari.
  */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
  * Remove the inner padding in Chrome, Edge, and Safari on macOS.
  */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style upload buttons in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
  * Remove the inner border and padding of focus outlines in Firefox.
  */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
  * Restore the focus outline styles unset by the previous rule in Firefox.
  */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
  * Remove the additional :invalid styles in Firefox.
  */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
  * ========================================================================== */
/*
  * Add the correct display in Edge 18- and IE.
  */
details {
  display: block;
}

/*
  * Add the correct styles in Edge 18-, IE, and Safari.
  */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}

/* Scripting
  * ========================================================================== */
/**
  * Add the correct display in IE 9-.
  */
canvas {
  display: inline-block;
}

/**
  * Add the correct display in IE.
  */
template {
  display: none;
}

/* User interaction
  * ========================================================================== */
/*
  * Remove the tapping delay in IE 10.
  */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
}

/**
  * Add the correct display in IE 10-.
  */
[hidden] {
  display: none;
}

/* Accessibility
  * ========================================================================== */
/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
[aria-busy=true] {
  cursor: progress;
}

/*
  * Change the cursor on control elements in all browsers (opinionated).
  */
[aria-controls] {
  cursor: pointer;
}

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

html {
  scrollbar-gutter: stable;
  /* @include MQ_WIDE {
      font-size: clamp(
          6400 div 580px,
          // 最小値
          16 div 58000vw,
          // 可変部分
          16px // 最大値
      );
  } */
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: YakuHanJP, "Noto Sans JP", serif;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
[lang=en] body {
  font-family: "Inter", sans-serif;
}

html,
body {
  overscroll-behavior-y: none;
}

img {
  width: 100%;
}

button {
  cursor: pointer;
  display: block;
  outline: none;
  padding: 0;
}

iframe[name=google_conversion_frame] {
  height: 0;
  position: absolute;
}

a {
  cursor: pointer;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
  scrollbar-gutter: stable;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* sanitize overwrite */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dd,
dt {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ol,
ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

a:focus {
  outline: none;
}

main {
  display: block;
}

button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  font-family: initial;
}

nav li:before {
  content: "";
  display: none;
}

.l-contents {
  overflow: clip;
}

.l-contents-bg {
  position: relative;
}

.l-contents-bg__cable {
  transform: translateX(-50%);
  z-index: 1;
  position: absolute;
  width: 112.6vw;
  height: 703vw;
  position: absolute;
  top: -22vw;
  left: calc(50% - 11.5vw);
}
[lang=en] .l-contents-bg__cable {
  position: absolute;
  top: -33.5vw;
  left: calc(50% - 7.4vw);
}
.l-contents-bg__cable path {
  fill: none;
  stroke: #000;
  stroke-miter-limit: 10;
  stroke-width: 2px;
}

.l-footer {
  background: #000;
  text-align: center;
  color: #afff00;
  position: relative;
}

.l-footer__inner {
  position: relative;
  text-align: center;
}

.l-footer__navs__list {
  display: flex;
}

.l-footer__navs__item {
  border-left: 1px solid #afff00;
  color: #afff00;
  line-height: 1;
}
.l-footer__navs__item:first-of-type {
  border-left: none;
}
.l-footer__navs__item a {
  text-decoration: none;
}

.l-footer__navs__aniplex {
  display: inline-block;
  margin: 0 auto;
  width: 26.2vw;
}

.l-footer__attcopyright {
  font-weight: 500;
}

.l-header {
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}
.-load .l-header {
  animation: pointerFadeIn 0.5s 3s ease-out forwards;
}
.-skipIntro .l-header {
  animation: pointerFadeIn 0.5s 2.3s ease-out forwards;
}

.l-header__language {
  display: flex;
  background-color: #afff00;
  border-radius: 100px;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
}

.l-header__language__list {
  display: flex;
  position: relative;
  justify-content: space-between;
  margin: 0 auto;
}

.l-header__language__item {
  display: flex;
  position: relative;
  align-items: center;
  z-index: 1;
  background-color: #000;
  border-radius: 100px;
  pointer-events: none;
}
[data-selected=jp] .l-header__language__item.-en {
  background-color: transparent;
  pointer-events: all;
}
[data-selected=en] .l-header__language__item.-jp {
  background-color: transparent;
  pointer-events: all;
}

.l-header__language__txt {
  font-weight: 700;
  color: #000;
  text-align: center;
  width: 100%;
  z-index: 1;
}
[data-selected=jp] .-jp .l-header__language__txt {
  color: #afff00;
}
[data-selected=en] .-en .l-header__language__txt {
  color: #afff00;
}

.l-main {
  overflow-x: hidden;
  background: #afff00;
  position: relative;
}
.l-main:before {
  position: fixed;
  top: 0;
  left: 0;
  animation: spliteMove 2s steps(4) infinite;
  content: "";
  background: url(/assets/img/common/bg/ph_bg_nrw.png) 0 0/100% 865.6vw no-repeat;
  width: 100%;
  height: 100%;
}

.l-submain:before {
  position: fixed;
  top: 0;
  left: 0;
  animation: spliteMove 2s steps(4) infinite;
  content: "";
  background: url(/assets/img/common/bg/ph_bg_nrw.png) 0 0/100% 865.6vw no-repeat;
  width: 100%;
  height: 100%;
}

@keyframes ItemFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ItemFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes itemInBT {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes itemInTB {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tapeInLeft {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  99% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  100% {
    clip-path: none;
    opacity: 1;
  }
}
@keyframes tapeInRight {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  99% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  100% {
    clip-path: none;
    opacity: 1;
  }
}
@keyframes tapeInTop {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  99% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  100% {
    clip-path: none;
    opacity: 1;
  }
}
@keyframes tapeInBottom {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  99% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  100% {
    clip-path: none;
    opacity: 1;
  }
}
@keyframes tapeOutRight {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 100% 0 0);
  }
}
@keyframes itemInScaleX {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes itemInScaleCenter {
  0% {
    transform: translateX(-50%) scale(0);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}
@keyframes itemInScale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes itemOutScaleX {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes ImgGrayIn {
  0% {
    filter: grayscale(1);
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1);
  }
}
.c-tape-on {
  clip-path: inset(0 100% 0 0);
  position: relative;
}
.-reveal .c-tape-on {
  animation: tapeInLeft 0.5s 0s forwards;
}
.c-tape-on::after {
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  content: "";
  height: 100%;
  transform-origin: right;
  width: 100%;
}
.-reveal .c-tape-on::after {
  animation: itemOutScaleX 0.5s 0.5s forwards;
}

@keyframes pointerFadeIn {
  0% {
    opacity: 0;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: all;
  }
}
@keyframes ItemUp {
  0% {
    transform: translateY(110%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes spliteMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes spliteMoveBT {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}
.c-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
}
.-load .c-banner[data-state=active] {
  animation: pointerFadeIn 0.5s 3s ease-out forwards;
}
.-skipIntro .c-banner[data-state=active] {
  animation: pointerFadeIn 0.5s 2.3s ease-out forwards;
}
.c-banner[data-state=inactive] {
  animation: ItemFadeOut 0.3s 0s ease-out forwards;
  pointer-events: none;
}

.c-banner__cont {
  aspect-ratio: 1548/302;
  position: relative;
  display: block;
  cursor: pointer;
}
.c-banner__cont::before {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26.6vw;
  height: 6.1vw;
  background: linear-gradient(0deg, rgb(0, 0, 0) 22.52%, rgba(0, 0, 0, 0) 100%);
  cursor: pointer;
}
.c-banner__cont::after {
  content: "";
  width: 19.1vw;
  aspect-ratio: 303/420;
  background: url(/assets/img/common/banner/ph_comic.webp) 0 0/cover no-repeat;
  position: absolute;
  bottom: 0;
  right: 2.5vw;
  cursor: pointer;
}

.c-banner__close {
  cursor: pointer;
  text-align: center;
  width: 6.4vw;
  height: 100%;
  display: flex;
}

.c-banner__close__ico {
  position: relative;
  display: inline-block;
  width: 6.4vw;
  height: 6.4vw;
  top: 0.1vw;
}
.c-banner__close__ico::before, .c-banner__close__ico::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
}
.c-banner .c-banner__close__ico::before, .c-banner .c-banner__close__ico::after {
  background: #000;
}
.c-banner__close__ico::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-banner__close__ico::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-banner__note {
  color: #fff;
  font-size: 2.1vw;
  position: absolute;
  bottom: 2vw;
  right: 2vw;
  font-weight: 500;
  z-index: 1;
}

.c-closebtn {
  position: fixed;
  top: 12px;
  right: 12px;
  height: 35px;
  width: 35px;
  transition: transform 0.3s ease-out;
}
.news .c-closebtn {
  z-index: 2;
}
.c-closebtn .c-closebtn__inner {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}

.c-closebtn__line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 6px;
  margin: 0;
  transform-origin: center;
  width: 50px;
}
.c-closebtn__line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-closebtn__line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-closebtn__line::before {
  background: #000;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}
.c-modal .c-closebtn__line::before {
  background: #fff;
}

.c-pagebackbtn {
  font-size: 0.625rem;
  opacity: 0;
  margin: 70px 0 0 18px;
}
.-load .c-pagebackbtn {
  animation: ItemFadeIn 0.3s 0.8s forwards;
}
.c-pagebackbtn a {
  display: inline-block;
  position: relative;
  padding-left: 46px;
}
[data-time=light] .c-pagebackbtn a {
  color: #000;
}
[data-time=dark] .c-pagebackbtn a {
  color: #fff;
}
.c-pagebackbtn a .c-arw {
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 1;
  content: "";
  display: block;
  transform: rotate(180deg);
  width: 35px;
}

@keyframes burstPlayCont1 {
  to {
    background-position: -1035px 0;
  }
}
@keyframes burstPlayCont2 {
  to {
    background-position: -1035px 0;
  }
}
@keyframes burstPlayCont3 {
  to {
    background-position: -3000px 0;
  }
}
@keyframes burstPlayCont4 {
  to {
    background-position: -2280px 0;
  }
}
@keyframes burstPlayCont5 {
  to {
    background-position: -1500px 0;
  }
}
@keyframes burstPlayCont6 {
  to {
    background-position: -325px 0;
  }
}
@keyframes burstPlayCont1Nrw {
  to {
    background-position: -132.7vw 0;
  }
}
@keyframes burstPlayCont2Nrw {
  to {
    background-position: -132.7vw 0;
  }
}
@keyframes burstPlayCont3Nrw {
  to {
    background-position: -384.7vw 0;
  }
}
@keyframes burstPlayCont4Nrw {
  to {
    background-position: -292.4vw 0;
  }
}
@keyframes burstPlayCont5Nrw {
  to {
    background-position: -192.4vw 0;
  }
}
@keyframes burstPlayCont6Nrw {
  to {
    background-position: -41.7vw 0;
  }
}
@keyframes mvEffectIn {
  0% {
    opacity: 0;
    translate: 0 5%;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
.c-effect {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.-load .c-effect {
  animation: ItemFadeIn 0.5s 2.5s ease-out forwards;
}

.c-effect__cont {
  transform: translateX(-50%);
}
.c-effect__cont.-e1 {
  animation: burstPlayCont1 0.79s steps(5) infinite;
}
.c-effect__cont.-e2 {
  animation: burstPlayCont2 0.79s steps(5) infinite;
}
.c-effect__cont.-e3 {
  animation: burstPlayCont3 0.79s steps(10) infinite;
}
.c-effect__cont.-e4 {
  animation: burstPlayCont4 0.79s steps(10) infinite;
}
.c-effect__cont.-e5 {
  animation: burstPlayCont5 0.79s steps(10) infinite;
}
.c-effect__cont.-e6 {
  animation: burstPlayCont6 0.79s steps(5) infinite;
}
.c-effect__cont:nth-of-type(1) {
  position: fixed;
  top: -5%;
  left: 40%;
  transform: translateX(-50%) scale(0.35);
  background: url(/assets/img/common/contents/ph_effect_1.png) no-repeat 0 0;
  background-size: 132.6vw 39.7vw;
  width: 26.5vw;
  height: 39.7vw;
  animation-duration: 1.3s !important;
}
.c-effect__cont:nth-of-type(2) {
  position: fixed;
  top: 72%;
  left: 27%;
  background: url(/assets/img/common/contents/ph_effect_2.png) no-repeat 0 0;
  background-size: 132.6vw 19.4vw;
  transform: scale(0.5);
  width: 26.5vw;
  height: 19.4vw;
  animation-duration: 1.4s !important;
}
.c-effect__cont:nth-of-type(3) {
  position: fixed;
  top: 80%;
  left: 11%;
  transform: translateX(-50%) scale(0.3);
  background: url(/assets/img/common/contents/ph_effect_3.png) 0 0/3000px 189px no-repeat;
  width: 38.4vw;
  height: 24.2vw;
  animation-duration: 1.5s !important;
}
.c-effect__cont:nth-of-type(4) {
  position: fixed;
  top: 38%;
  left: 91%;
  transform: translateX(-50%) scale(0.4) rotate(0deg);
  background: url(/assets/img/common/contents/ph_effect_4.png) no-repeat 0 0;
  background-size: 292.3vw 23vw;
  width: 29.2vw;
  height: 23vw;
  animation-duration: 1.8s !important;
}
.c-effect__cont:nth-of-type(5) {
  position: fixed;
  top: 18%;
  left: 12%;
  transform: translateX(-50%) scale(0.75);
  background: url(/assets/img/common/contents/ph_effect_5.png) no-repeat 0 0;
  background-size: 192.3vw 19.2vw;
  width: 19.2vw;
  height: 19.2vw;
  animation-duration: 2.5s !important;
}
.c-effect__cont:nth-of-type(6) {
  position: fixed;
  top: 58%;
  left: 94%;
  transform: translateX(-50%) rotate(13deg) scale(0.6);
  background: url(/assets/img/common/contents/ph_effect_6.png) no-repeat 0 0;
  background-size: 41.6vw 5.5vw;
  width: 8.3vw;
  height: 5.5vw;
  animation-duration: 1.2s !important;
}
.c-effect__cont:nth-of-type(7) {
  position: fixed;
  top: 95%;
  left: 82%;
  transform: translateX(-50%) rotate(13deg) scale(0.5);
  background: url(/assets/img/common/contents/ph_effect_6.png) 0 0/325px 43px no-repeat;
  width: 8.3vw;
  height: 5.5vw;
  animation: burstPlayCont6 0.8s steps(5) infinite;
}

.c-font-inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.c-hover_op {
  transition: opacity 0.3s 0s ease-out;
}

.c-hover_bl {
  transition: opacity 0.3s 0s ease;
}

.c-hover_br {
  transition: filter 0.3s 0s ease;
}

.c-hover_scale {
  transition: transform 0.3s 0s ease;
}

.c-arw {
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  display: block;
}
.c-arw::after {
  position: absolute;
  top: -0.5px;
  right: 0.05px;
  content: "";
  height: 1px;
  transform-origin: right;
  transform: rotate(-45deg);
  width: 140%;
}
.c-arw.l-footer__btn__top {
  border-color: #fff;
}
.c-arw.l-footer__btn__top::after {
  background: #fff;
  width: 160%;
}
.l-footer__share__item .c-arw {
  border-color: #fff;
}
.l-footer__share__item .c-arw::after {
  background: #fff;
}

.moviemodal__iframe {
  position: relative;
  width: 100%;
}
.moviemodal__iframe:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.moviemodal__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
}

.moviemodal__nav {
  display: flex;
  flex-wrap: wrap;
  margin: 16px -4px;
  padding: 0 24px;
}

.moviemodal__nav__item {
  background: #aabec8;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  margin: 4px;
  padding: 6px;
  text-align: center;
  transition: 0.3s 0s ease;
  width: calc(50% - 8px);
  font-size: 0.75rem;
}
.moviemodal__nav__item.-active, .moviemodal__nav__item:hover {
  background: #77c8c9;
}

body.-inmodal {
  height: 100%;
  overflow: hidden;
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  height: 100%;
  opacity: 0;
  overflow: auto;
  transition: all 0.5s 0s ease;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}
.c-modal.-active {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

@keyframes openModal {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.c-modal__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.js-moviemodal .c-modal__inner {
  align-items: center;
  display: flex;
  height: 100%;
}

.c-modal__close {
  aspect-ratio: 2/1;
  cursor: pointer;
  transition: all 0.3s 0s ease;
}
.c-modal__close:before, .c-modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 100%;
}
.c-modal__close:before {
  transform: translate(-50%, -50%) rotate(15deg);
}
.c-modal__close:after {
  transform: translate(-50%, -50%) rotate(-15deg);
}
.c-paging {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.c-paging__item {
  font-size: 0.9375rem;
  line-height: 1;
}
.c-paging__item.-prev, .c-paging__item.-next {
  aspect-ratio: 1/1;
  position: relative;
  width: 22px;
}
.c-paging__item.-prev a, .c-paging__item.-next a {
  display: block;
  height: 100%;
  position: relative;
}
.c-paging__item.-prev a::after, .c-paging__item.-next a::after {
  aspect-ratio: 1/1;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}
.c-paging__item.-back {
  font-size: 0.625rem;
  min-width: 150px;
  text-align: center;
}
.c-paging__item.-num {
  margin: 0 0.25em;
  position: relative;
  text-align: center;
  width: 12px;
}
.c-paging__item.-num::after {
  content: "";
  height: 1px;
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -6px;
}
[data-time=asa] .c-paging__item.-num::after {
  background: #000;
}
[data-time=yoru] .c-paging__item.-num::after {
  background-color: #fff;
}
.c-paging__item.-num.-active:after {
  opacity: 1;
  width: 100%;
}
.c-paging__item.-disable {
  opacity: 0.1;
  pointer-events: none;
}

.c-paging__numwrap {
  align-items: center;
  display: flex;
  justify-content: center;
  min-width: 150px;
}

@keyframes scrollMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0);
  }
}
.c-scroll {
  position: relative;
  pointer-events: none;
  display: none;
  opacity: 0;
  z-index: 4;
}
.-load .c-scroll {
  animation: ItemFadeIn 0.5s 3s ease-out forwards;
}
.-skipIntro .c-scroll {
  animation: ItemFadeIn 0.5s 2.3s ease-out forwards;
}

.c-scroll__cont {
  transition: opacity 0.3s ease-out;
  z-index: 2;
  pointer-events: none;
}
.-load .c-scroll__cont img {
  animation: scrollMove 3s 3s cubic-bezier(0.86, 0, 0.07, 1) infinite;
}
.-skipIntro .c-scroll__cont img {
  animation: scrollMove 3s 2.3s cubic-bezier(0.86, 0, 0.07, 1) infinite;
}
.-is-hide .c-scroll__cont {
  opacity: 0;
}
[data-scroll=inactive] .c-scroll__cont {
  opacity: 0;
}

.c-sns {
  aspect-ratio: 333/280;
  transform-origin: left;
  width: 45.8vw;
  transform: translateX(-50%);
  z-index: 2;
}

@keyframes snsScaleDown {
  0% {
    opacity: 0;
    transform: scale(2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes snsShake {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(3%, 0);
  }
  50% {
    transform: translate(3%, -3%);
  }
  75% {
    transform: translate(-3%, -3%);
  }
  75% {
    transform: translate(-3%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.c-sns__wrapper {
  aspect-ratio: 333/280;
  width: 45.8vw;
  opacity: 0;
  position: relative;
}
.-reveal .c-sns__wrapper {
  animation: snsScaleDown 0.5s 0.5s cubic-bezier(1, 0, 0, 1) forwards;
}

.c-sns__burst {
  aspect-ratio: 333/280;
  position: absolute;
  top: 0;
  left: 0;
  width: 50.2vw;
  background: url(/assets/img/common/sns/ph_burst.svg) 0 0/100% auto no-repeat;
}

.c-sns__inner {
  position: relative;
  display: block;
  transform-origin: center;
}

.c-sns__ttl {
  margin: 0 auto;
  width: 12.1vw;
  display: flex;
}

.c-sns__list__link {
  display: block;
  transition: transform 0.3s 0s ease-out;
}

.c-visible_nrw {
  display: block;
}

.c-visible_light {
  display: none;
}
body[data-time=light] .c-visible_light {
  display: block;
}

.c-visible_dark {
  display: none;
}
body[data-time=dark] .c-visible_dark {
  display: block;
}
@media (max-width: 780px){
  [lang=en] .l-contents-bg__cable {
    width: 118.4vw;
    height: 668.9vw;
  }
  .l-footer {
    padding: 7.4vw 7.1vw 30.7vw;
  }
  .l-footer__navs {
    display: flex;
    flex-direction: column;
    margin-top: 4.1vw;
  }
  .l-footer__navs__list {
    justify-content: center;
    margin-top: 2.5vw;
  }
  .l-footer__navs__item {
    font-size: 3vw;
    padding: 0 2.4vw;
    height: 3.5vw;
  }
  .l-footer__attcopyright {
    font-size: 2.8vw;
    line-height: 1.8181818182;
    margin-top: 7.6vw;
  }
  .c-effect__cont.-e1 {
    animation: burstPlayCont1Nrw 0.79s steps(5) infinite;
  }
  .c-effect__cont.-e2 {
    animation: burstPlayCont2Nrw 0.79s steps(5) infinite;
  }
  .c-effect__cont.-e3 {
    animation: burstPlayCont3Nrw 0.79s steps(10) infinite;
  }
  .c-effect__cont.-e4 {
    animation: burstPlayCont4Nrw 0.79s steps(10) infinite;
  }
  .c-effect__cont.-e5 {
    animation: burstPlayCont5Nrw 0.79s steps(10) infinite;
  }
  .c-effect__cont.-e6 {
    animation: burstPlayCont6Nrw 0.79s steps(5) infinite;
  }
  .c-effect__cont:nth-of-type(3) {
    display: none;
  }
  .c-effect__cont:nth-of-type(7) {
    display: none;
  }
  .c-modal__inner {
    padding: 12.5vw;
  }
  .js-moviemodal .c-modal__inner {
    padding: 12.5vw 0;
  }
  .c-modal__close {
    position: fixed;
    top: 7.6vw;
    right: 5.1vw;
    width: 10.2vw;
  }
  .c-modal__close:before, .c-modal__close:after {
    height: 0.3vw;
  }
  .c-sns {
    position: absolute;
    top: 50.8vw;
    left: calc(50% - 14.8vw);
    width: 50.2vw;
  }
  .c-sns__inner {
    width: 23vw;
    margin: 0 auto;
    padding: 15.7vw 0 0 2.4vw;
  }
  .c-sns__ttl {
    width: 16.5vw;
    display: flex;
  }
  .c-sns__list__link {
    width: 6.5vw;
    margin: 2.3vw auto 0;
  }
  .c-visible_wide {
    display: none;
  }
}
@media (min-width: 781px){
  .l-contents-bg__cable {
    width: 597px;
    height: 2762px;
    position: absolute;
    top: -127px;
    left: calc(50% - 17px);
  }
  [lang=en] .l-contents-bg__cable {
    position: absolute;
    top: -114px;
    left: calc(50% - 13px);
  }
  .l-footer {
    margin-top: -15px;
    padding: 90px 0 80px;
  }
  .l-footer__navs {
    display: inline-block;
  }
  .l-footer__navs__list {
    margin-top: 20px;
  }
  .l-footer__navs__item {
    font-size: 0.875rem;
    padding: 0 16px;
    height: 17px;
  }
  .l-footer__navs__aniplex {
    width: 141px;
  }
  .l-footer__attcopyright {
    font-size: 0.75rem;
    line-height: 1.6;
    margin-top: 27px;
  }
  .l-header__language:hover {
    opacity: 0.6;
  }
  .l-main:before {
    animation: spliteMove 2s steps(4) infinite;
    background: url(/assets/img/common/bg/ph_bg.png) 0 0/100% 225vw no-repeat;
  }
  .l-submain:before {
    animation: spliteMove 2s steps(4) infinite;
    background: url(/assets/img/common/bg/ph_bg.png) 0 0/100% 225vw no-repeat;
  }
  .c-closebtn:hover {
    transform: scale(0.8);
  }
  .c-closebtn {
    right: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
  }
  .c-closebtn__line {
    width: 85px;
  }
  .c-pagebackbtn {
    font-size: 0.8125rem;
    margin: 140px 0 0 0;
  }
  .c-effect__cont:nth-of-type(1) {
    background: url(/assets/img/common/contents/ph_effect_1.png) 0 0/1035px 310px no-repeat;
    transform: translateX(-50%) scale(0.24);
    position: fixed;
    top: 54%;
    left: 88%;
    width: 207px;
    height: 310px;
  }
  .c-effect__cont:nth-of-type(2) {
    background: url(/assets/img/common/contents/ph_effect_2.png) 0 0/1035px 152px no-repeat;
    position: fixed;
    top: 54%;
    left: 25%;
    width: 207px;
    height: 152px;
    transform: scale(0.4);
  }
  .c-effect__cont:nth-of-type(3) {
    width: 300px;
    height: 189px;
    transform: translateX(-50%) scale(0.24);
  }
  .c-effect__cont:nth-of-type(4) {
    background: url(/assets/img/common/contents/ph_effect_4.png) 0 0/2280px 180px no-repeat;
    position: fixed;
    top: 19%;
    left: 75%;
    width: 228px;
    height: 180px;
    transform: translateX(-50%) scale(0.32) rotate(0deg);
  }
  .c-effect__cont:nth-of-type(5) {
    background: url(/assets/img/common/contents/ph_effect_5.png) 0 0/1500px 150px no-repeat;
    transform: translateX(-50%) scale(0.7);
    position: fixed;
    top: 24%;
    left: 9%;
    width: 150px;
    height: 150px;
  }
  .c-effect__cont:nth-of-type(6) {
    background: url(/assets/img/common/contents/ph_effect_6.png) 0 0/325px 43px no-repeat;
    transform: translateX(-50%) rotate(13deg) scale(0.32);
    position: fixed;
    top: 14%;
    left: 82%;
    width: 65px;
    height: 43px;
  }
  .c-effect__cont:nth-of-type(7) {
    width: 65px;
    height: 43px;
    transform: translateX(-50%) rotate(13deg) scale(0.4);
  }
  .c-hover_op:hover {
    opacity: 0.6;
  }
  .c-hover_bl:hover {
    filter: blur(1px);
    opacity: 0.75;
  }
  .c-hover_br:hover {
    filter: brightness(1.5);
  }
  .c-hover_scale:hover {
    transform: scale(0.8);
  }
  .moviemodal__nav {
    margin: 24px -4px;
    padding: 0;
  }
  .moviemodal__nav__item {
    font-size: 0.9375rem;
  }
  .c-modal__inner {
    padding: 160px 60px 160px;
    max-width: 960px;
  }
  .js-moviemodal .c-modal__inner {
    padding: 160px 0 160px;
  }
  .c-modal__close {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 50px;
  }
  .c-modal__close:before, .c-modal__close:after {
    height: 2px;
  }
  .c-paging {
    margin-top: 56px;
  }
  .c-paging__item {
    font-size: 1.25rem;
  }
  .c-paging__item.-prev, .c-paging__item.-next {
    margin: 0 40px;
    width: 32px;
  }
  .c-paging__item.-back {
    font-size: 0.8125rem;
    letter-spacing: 0.03em;
    min-width: 160px;
  }
  .c-paging__item.-back:hover {
    text-decoration: underline;
  }
  .c-paging__item.-num {
    width: 16px;
  }
  .c-paging__item.-num::after {
    position: absolute;
    left: 0;
    bottom: -9px;
  }
  .c-paging__item.-num:hover::after {
    opacity: 1;
    width: 120%;
  }
  .c-paging__numwrap {
    min-width: 160px;
  }
  .c-sns {
    width: 330px;
    position: absolute;
    top: 324px;
    left: calc(50% + 95px);
  }
  .c-sns__wrapper {
    width: 330px;
    padding: 108px 0 0 120px;
  }
  .c-sns__burst {
    width: 330px;
  }
  .c-sns__inner {
    width: 78px;
  }
  .c-sns__ttl {
    width: 78px;
  }
  .c-sns__list__link {
    width: 38px;
    margin: 11px auto 0;
  }
  .c-sns__list__link:hover {
    transform: scale(0.85);
  }
  .c-visible_nrw {
    display: none;
  }
}
@media (min-width: 781px) and (max-width: 1399px){
  .l-contents-bg__cable {
    width: 42.6vw;
    height: 197.4vw;
    position: absolute;
    top: -9.1vw;
    left: calc(50% - 1.2vw);
  }
  [lang=en] .l-contents-bg__cable {
    position: absolute;
    top: -8.2vw;
    left: calc(50% - 0.9vw);
  }
  .c-sns {
    width: 23.5vw;
    position: absolute;
    top: 23.1vw;
    left: calc(50% + 6.7vw);
  }
  .c-sns__wrapper {
    width: 23.5vw;
    padding: 7.7vw 0 0 8.5vw;
  }
  .c-sns__burst {
    width: 23.5vw;
  }
  .c-sns__inner {
    width: 5.5vw;
  }
  .c-sns__ttl {
    width: 5.5vw;
  }
  .c-sns__list__link {
    width: 2.7vw;
    margin: 0.7vw auto 0;
  }
}
@media (max-width: 1024px){
  .l-header {
    position: absolute;
    top: 2.5vw;
    right: 2.5vw;
    width: 17vw;
  }
  .l-header__language {
    width: 17vw;
    height: 9.7vw;
    border: solid 0.6vw;
  }
  .l-header__language__list {
    width: 14.8vw;
  }
  .l-header__language__item {
    width: 7.4vw;
    height: 7.4vw;
  }
  .l-header__language__txt {
    font-size: 3vw;
  }
  .c-banner .c-banner__close__ico::before, .c-banner .c-banner__close__ico::after {
    height: 3px;
    width: 8.9vw;
  }
}
@media (min-width: 1025px){
  .l-header {
    position: absolute;
    top: min(1.6666666667vw, 32px);
    right: min(1.6666666667vw, 32px);
    width: min(4.1666666667vw, 80px);
  }
  .l-header__language {
    width: min(4.1666666667vw, 80px);
    height: min(2.3958333333vw, 46px);
    border: solid min(0.1041666667vw, 2px);
  }
  .l-header__language__list {
    width: min(3.6458333333vw, 70px);
  }
  .l-header__language__item {
    width: min(1.8229166667vw, 35px);
    height: min(1.8229166667vw, 35px);
  }
  .l-header__language__txt {
    font-size: min(0.7291666667vw, 14px);
  }
  .c-banner {
    width: min(26.40625vw, 507px);
  }
  .c-banner__cont::before {
    width: min(6.9791666667vw, 134px);
    height: min(1.6145833333vw, 31px);
  }
  .c-banner__cont::after {
    width: min(5vw, 96px);
    position: absolute;
    bottom: 0;
    right: min(0.78125vw, 15px);
  }
  .c-banner__close {
    width: min(2.0833333333vw, 40px);
  }
  .c-banner__close__ico {
    width: min(2.0833333333vw, 40px);
    height: min(2.0833333333vw, 40px);
    top: 0;
  }
  .c-banner .c-banner__close__ico::before, .c-banner .c-banner__close__ico::after {
    height: min(0.15625vw, 3px);
    width: min(2.8125vw, 54px);
  }
  .c-banner__note {
    font-size: min(0.5729166667vw, 11px);
    position: absolute;
    bottom: min(0.2604166667vw, 5px);
    right: min(0.5208333333vw, 10px);
  }
  .c-scroll {
    height: 100svh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }
  .c-scroll__cont {
    position: absolute;
    bottom: min(2.34375vw, 45px);
    right: min(2.0833333333vw, 40px);
    width: min(6.25vw, 120px);
  }
}
@media (min-width: 768px) and (max-width: 1024px){
  .l-header {
    position: absolute;
    top: 2.6vw;
    right: 2.6vw;
    width: 8.7vw;
  }
  .l-header__language {
    width: 8.7vw;
    height: 4.9vw;
    border: solid 0.2vw;
  }
  .l-header__language__list {
    width: 7.5vw;
  }
  .l-header__language__item {
    width: 3.7vw;
    height: 3.7vw;
  }
  .l-header__language__txt {
    font-size: 1.5vw;
  }
  .c-banner {
    width: 50.7vw;
  }
  .c-banner__cont::before {
    width: 13.5vw;
    height: 3.1vw;
  }
  .c-banner__cont::after {
    width: 9.7vw;
    position: absolute;
    bottom: 0;
    right: 1.3vw;
  }
  .c-banner__close {
    width: 4.5vw;
  }
  .c-banner__close__ico {
    width: 4.5vw;
    height: 4.5vw;
    top: 0;
  }
  .c-banner .c-banner__close__ico::before, .c-banner .c-banner__close__ico::after {
    height: 2px !important;
    width: 6.5vw !important;
  }
  .c-banner__note {
    font-size: 1.1vw;
    position: absolute;
    bottom: 1vw;
    right: 1vw;
  }
}