@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap");
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
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, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  vertical-align: baseline;
  margin: 0;
  outline: 0;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 100%;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #cccccc;
  padding: 0;
  height: 1px;
}

input, select {
  vertical-align: middle;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

*::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  background: #000;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  font-family: 'Noto Serif JP', "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  letter-spacing: 0.85px;
  letter-spacing: .085rem;
}

body.is-to-main {
  overflow-y: auto;
}

a {
  color: #fff;
  text-decoration: none;
}

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

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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;
}

ol, ul {
  list-style: none;
}

.is-narrow {
  display: none !important;
}

.is-narrow-inline {
  display: none !important;
}

img {
  display: block;
  vertical-align: middle;
  width: 100%;
  height: auto !important;
}

img::-moz-selection {
  background: none;
}

img::selection {
  background: none;
}

[data-prefix]::before {
  content: attr(data-prefix);
}

[data-suffix]::after {
  content: attr(data-suffix);
}

canvas {
  pointer-events: none !important;
}

/* ====================
Layout
 ==================== */
.l-wrap {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.l-wrap__loader {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 25;
  -webkit-transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 60px;
  width: 6rem;
  height: 60px;
  height: 6rem;
  pointer-events: none;
}

.is-load .l-wrap__loader {
  opacity: 0;
}

.is-load-active .l-wrap__loader {
  display: none;
}

.l-wrap__loader::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  -webkit-animation: spinner1 .6s linear infinite;
  animation: spinner1 .6s linear infinite;
  border: 1px solid #000;
  border-top: 2px solid #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
}

@-webkit-keyframes spinner1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.l-wrap__bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  background: url("../img/common/bg.gif") repeat center top;
  background-size: 230px auto;
  width: 100%;
  height: 100%;
}

.is-ready .l-wrap__bg {
  opacity: 1;
  -webkit-transition: opacity 4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: opacity 4s cubic-bezier(0.87, 0, 0.13, 1);
}

.l-wrap__container {
  position: relative;
  width: 100%;
}

.is-to-main .l-wrap__container {
  height: auto !important;
}

.l-main {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  pointer-events: none;
}

.is-to-main .l-main {
  opacity: 1;
}

.is-menu-open .l-main, .is-mv-modal-open .l-main, .is-chara-modal-open .l-main, .is-game-modal-open .l-main {
  opacity: 0;
}

.is-main-active .l-main {
  pointer-events: auto;
}

.l-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  z-index: 10;
  -webkit-transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.is-menu-show .l-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.is-menu-open .l-nav {
  opacity: 1;
  -webkit-transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
  pointer-events: auto;
}

.l-nav__bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-nav__container {
  position: relative;
  margin: 0 auto;
  width: 78.571%;
  max-width: 1300px;
  height: 100%;
}

.l-nav__shadow {
  position: absolute;
  width: 34.545%;
  max-width: 382px;
}

.l-nav__shadow-img {
  width: 100%;
}

.l-nav__in {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.l-nav__logo {
  display: block;
  position: relative;
  width: 366px;
}

.l-nav__inner {
  position: relative;
}

.l-footer {
  position: relative;
  opacity: 0;
  margin: 0 auto;
  width: 100%;
  pointer-events: none;
}

.is-to-main .l-footer {
  opacity: 1;
  pointer-events: auto;
}

.is-menu-open .l-footer, .is-mv-modal-open .l-footer, .is-chara-modal-open .l-footer, .is-game-modal-open .l-footer {
  opacity: 0;
  pointer-events: none;
}

.l-footer__container {
  position: relative;
  padding-bottom: 80px;
  width: 100%;
}

.l-footer__header {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.l-footer__inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.l-footer__share {
  position: relative;
  margin: 0 auto 40px;
  width: 100%;
}

.l-footer__brand {
  position: relative;
  margin: 0 auto;
  width: 71.429%;
  max-width: 1000px;
}

.l-footer__copy {
  position: relative;
  margin: 42px auto 0;
  width: 105px;
}

.l-footer_bnr {
  display: block;
  position: relative;
  z-index: 0;
}

.l-footer_bnr__container {
  display: block;
  position: relative;
}

.l-footer_bnr__header {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
  width: 38%;
}

.l-footer_bnr__cap {
  display: block;
  position: relative;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-ua="pc"] .l-footer_bnr:hover .l-footer_bnr__cap {
  -webkit-transform: translate(-8%, 0);
  transform: translate(-8%, 0);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.l-footer_bnr__inner {
  position: relative;
  z-index: 0;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.l-footer_bnr__inner::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .5;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: #000;
  width: 100%;
  height: 100%;
  content: "";
}

[data-ua="pc"] .l-footer_bnr:hover .l-footer_bnr__inner::after {
  opacity: 0;
}

.l-footer_bnr__thumb {
  display: block;
  position: relative;
}

.l-footer_bnr__thumb-img {
  display: block;
  position: relative;
}

.l-footer_bnr__cover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0s linear 0.4s;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0s linear 0.4s;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0s linear 0.4s;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0s linear 0.4s, -webkit-transform 0s linear 0.4s;
  width: 100%;
}

[data-ua="pc"] .l-footer_bnr:hover .l-footer_bnr__cover {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 4s cubic-bezier(0.25, 1, 0.5, 1);
}

.l-footer_bnr__cover-img {
  display: block;
  position: relative;
}

/* ====================
Project
 ==================== */
.p-menu {
  display: block;
  position: fixed;
  top: 32px;
  left: 30px;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
  width: 28px;
  height: 18px;
  pointer-events: none;
  content: "";
}

.is-to-main .p-menu {
  opacity: 1;
  pointer-events: auto;
}

.is-mv-modal-open .p-menu, .is-chara-modal-open .p-menu, .is-game-modal-open .p-menu {
  opacity: 0;
  pointer-events: none;
}

.p-menu__inner {
  position: relative;
  z-index: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.p-menu__inner::before {
  display: block;
  position: absolute;
  top: -32px;
  left: -30px;
  opacity: 1;
  z-index: -1;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: url("../img/common/menu/bg_menu-icon.png") no-repeat left bottom;
  background-size: cover;
  width: 145px;
  height: 145px;
  pointer-events: none;
}

.p-menu__inner::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  content: "";
}

.p-menu__open {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.is-menu-open .p-menu__open {
  z-index: 1;
}

.p-menu__open::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 200%;
  height: 300%;
  content: "";
}

.p-menu__open-item {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 100%;
  height: 2px;
}

.p-menu__open-item.-item1 {
  top: 0;
}

.p-menu__open-item.-item2 {
  top: 50%;
}

.p-menu__open-item.-item3 {
  top: 100%;
}

.p-menu__open-deco {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  width: 100%;
  height: 100%;
  content: "";
}

.p-menu__open-deco::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  content: "";
}

.is-hero-movie-action:not(.is-scroll) .p-menu__open-deco::before {
  background: #ff0000;
}

.p-menu__open-deco::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  content: "";
}

.is-hero-movie-action:not(.is-scroll) .p-menu__open-deco::after {
  background: #ff0000;
}

.is-menu-open .-item1 .p-menu__open-deco::before {
  width: 0;
}

.is-menu-open .-item1 .p-menu__open-deco::after {
  width: 0;
}

.is-menu-open .-item2 .p-menu__open-deco::before {
  width: 0;
}

.is-menu-open .-item2 .p-menu__open-deco::after {
  width: 0;
}

.is-menu-open .-item3 .p-menu__open-deco::before {
  width: 0;
}

.is-menu-open .-item3 .p-menu__open-deco::after {
  width: 0;
}

.p-menu__close {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.is-menu-open .p-menu__close {
  z-index: 0;
}

.p-menu__close::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 200%;
  height: 300%;
  content: "";
}

.p-menu__close-item {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 2px;
}

.p-menu__close-item.-item1 {
  -webkit-transform: translate(-50%, -50%) rotate(27deg);
  transform: translate(-50%, -50%) rotate(27deg);
}

.p-menu__close-item.-item2 {
  -webkit-transform: translate(-50%, -50%) rotate(-27deg);
  transform: translate(-50%, -50%) rotate(-27deg);
}

.p-menu__close-deco {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.p-menu__close-deco::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  width: 0;
  height: 100%;
  content: "";
}

.p-menu__close-deco::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  width: 0;
  height: 100%;
  content: "";
}

.is-menu-open .-item1 .p-menu__close-deco {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.is-menu-open .-item1 .p-menu__close-deco::before {
  width: 100%;
}

.is-menu-open .-item1 .p-menu__close-deco::after {
  width: 100%;
}

.is-menu-open .-item2 .p-menu__close-deco {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.is-menu-open .-item2 .p-menu__close-deco::before {
  width: 100%;
}

.is-menu-open .-item2 .p-menu__close-deco::after {
  width: 100%;
}

.p-gnav {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-gnav__list {
  display: block;
  position: relative;
  width: 195px;
}

.p-gnav__list-item {
  display: block;
  position: relative;
}

.p-gnav__list-item + .p-gnav__list-item {
  margin-top: 48px;
}

.p-gnav__list-item::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  opacity: 0;
  background: #fff;
  width: 100vw;
  height: 1px;
}

.is-menu-open .p-gnav__list-item::before {
  opacity: 1;
}

[data-area="hero"] .p-gnav__list-item.-hero::before {
  content: "";
}

[data-area="concept"] .p-gnav__list-item.-concept::before {
  content: "";
}

[data-area="story"] .p-gnav__list-item.-story::before {
  content: "";
}

[data-area="character"] .p-gnav__list-item.-character::before {
  content: "";
}

[data-area="event"] .p-gnav__list-item.-event::before {
  content: "";
}

[data-area="gallery"] .p-gnav__list-item.-gallery::before {
  content: "";
}

.p-gnav__link {
  display: block;
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  padding-right: 60px;
}

.-character .p-gnav__link {
  padding-right: 44px;
}

[data-ua="pc"] .p-gnav__link:hover {
  opacity: .4;
}

.p-gnav__link-img {
  display: block;
  position: relative;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.is-menu-open .p-gnav__link-img {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-transition: -webkit-clip-path 0.6s steps(10);
  transition: -webkit-clip-path 0.6s steps(10);
  transition: clip-path 0.6s steps(10);
  transition: clip-path 0.6s steps(10), -webkit-clip-path 0.6s steps(10);
}

.is-menu-open .p-gnav__list-item:nth-child(1) .p-gnav__link-img {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-menu-open .p-gnav__list-item:nth-child(2) .p-gnav__link-img {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.is-menu-open .p-gnav__list-item:nth-child(3) .p-gnav__link-img {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.is-menu-open .p-gnav__list-item:nth-child(4) .p-gnav__link-img {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.is-menu-open .p-gnav__list-item:nth-child(5) .p-gnav__link-img {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.is-menu-open .p-gnav__list-item:nth-child(6) .p-gnav__link-img {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}

.is-menu-open .p-gnav__list-item:nth-child(7) .p-gnav__link-img {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.is-menu-open .p-gnav__list-item:nth-child(8) .p-gnav__link-img {
  -webkit-transition-delay: 1.05s;
  transition-delay: 1.05s;
}

.is-menu-open .p-gnav__list-item:nth-child(9) .p-gnav__link-img {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.is-menu-open .p-gnav__list-item:nth-child(10) .p-gnav__link-img {
  -webkit-transition-delay: 1.35s;
  transition-delay: 1.35s;
}

.p-gnav__series {
  position: relative;
  margin: 102px auto 0;
  width: 100%;
}

.p-gnav__series-item {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-gnav__series-item + .p-gnav__series-item {
  margin-top: 15px;
}

.p-gnav__series-link {
  display: block;
  position: relative;
  opacity: 1;
  z-index: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 10px 40px;
}

[data-ua="pc"] .p-gnav__series-item:hover .p-gnav__series-link {
  opacity: .8;
}

.p-gnav__series-link::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url("/assets/img/common/menu/bg_menu-series.png") repeat left top;
  background-size: 2px auto;
  width: 100vw;
  height: 100%;
  content: "";
}

.p-gnav__series-img {
  display: block;
  position: relative;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 225px;
}

[data-ua="pc"] .p-gnav__series-item:hover .p-gnav__series-img {
  -webkit-transform: translate(10px, 0);
  transform: translate(10px, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-sound {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  width: 35px;
  pointer-events: none;
}

.is-to-main .p-sound {
  opacity: 1;
  pointer-events: auto;
}

.p-sound__cap {
  position: relative;
  margin: 0 auto 12px;
  width: 100%;
}

.p-sound__cap::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: url("../img/common/cap_sound_blood.png") no-repeat center/contain;
  width: 100%;
  height: 100%;
  content: "";
}

.is-hero-movie-action:not(.is-scroll) .p-sound__cap::after {
  opacity: 1;
}

.p-sound__cap img,
.p-sound__cap canvas {
  opacity: 1;
}

.is-hero-movie-action:not(.is-scroll) .p-sound__cap img, .is-hero-movie-action:not(.is-scroll)
.p-sound__cap canvas {
  opacity: 0 !important;
}

.p-sound__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  cursor: pointer;
  margin: 0 auto;
  width: 30px;
  height: 24px;
}

.p-sound__line-item {
  display: block;
  position: relative;
  width: 2px;
  height: 2px;
}

.is-bgm-play .p-sound__line-item.-line1 {
  height: 60%;
}

.is-bgm-play .p-sound__line-item.-line2 {
  height: 70%;
}

.is-bgm-play .p-sound__line-item.-line3 {
  height: 100%;
}

.is-bgm-play .p-sound__line-item.-line4 {
  height: 55%;
}

.is-bgm-play .p-sound__line-item.-line5 {
  height: 100%;
}

.is-bgm-play .p-sound__line-item.-line6 {
  height: 30%;
}

.p-sound__line-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  content: "";
}

.is-hero-movie-action:not(.is-scroll) .p-sound__line-item::before {
  background: #ff0000;
}

.is-bgm-play .p-sound__line-item.-line1::before {
  -webkit-animation: audio-visualizer-1 2s linear infinite;
  animation: audio-visualizer-1 2s linear infinite;
}

.is-bgm-play .p-sound__line-item.-line2::before {
  -webkit-animation: audio-visualizer-2 2s linear infinite;
  animation: audio-visualizer-2 2s linear infinite;
}

.is-bgm-play .p-sound__line-item.-line3::before {
  -webkit-animation: audio-visualizer-3 2s linear infinite alternate;
  animation: audio-visualizer-3 2s linear infinite alternate;
}

.is-bgm-play .p-sound__line-item.-line4::before {
  animation: audio-visualizer-2 2s linear infinite reverse;
}

.is-bgm-play .p-sound__line-item.-line5::before {
  animation: audio-visualizer-1 2s linear infinite reverse;
}

.is-bgm-play .p-sound__line-item.-line6::before {
  animation: audio-visualizer-3 2s linear infinite alternate-reverse;
}

@-webkit-keyframes audio-visualizer-1 {
  0% {
    height: 100%;
  }
  20% {
    height: 30%;
  }
  40% {
    height: 70%;
  }
  60% {
    height: 30%;
  }
  80% {
    height: 40%;
  }
  100% {
    height: 100%;
  }
}

@keyframes audio-visualizer-1 {
  0% {
    height: 100%;
  }
  20% {
    height: 30%;
  }
  40% {
    height: 70%;
  }
  60% {
    height: 30%;
  }
  80% {
    height: 40%;
  }
  100% {
    height: 100%;
  }
}

@-webkit-keyframes audio-visualizer-2 {
  0% {
    height: 100%;
  }
  20% {
    height: 80%;
  }
  40% {
    height: 50%;
  }
  60% {
    height: 100%;
  }
  80% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes audio-visualizer-2 {
  0% {
    height: 100%;
  }
  20% {
    height: 80%;
  }
  40% {
    height: 50%;
  }
  60% {
    height: 100%;
  }
  80% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@-webkit-keyframes audio-visualizer-3 {
  0% {
    height: 100%;
  }
  20% {
    height: 60%;
  }
  40% {
    height: 80%;
  }
  60% {
    height: 50%;
  }
  80% {
    height: 90%;
  }
  100% {
    height: 100%;
  }
}

@keyframes audio-visualizer-3 {
  0% {
    height: 100%;
  }
  20% {
    height: 60%;
  }
  40% {
    height: 80%;
  }
  60% {
    height: 50%;
  }
  80% {
    height: 90%;
  }
  100% {
    height: 100%;
  }
}

.p-brand {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-brand__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-brand__list-item {
  display: block;
  position: relative;
  max-width: 320px;
}

.p-brand__link {
  display: block;
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-ua="pc"] .p-brand__link:hover {
  opacity: .4;
}

.p-share {
  position: relative;
  width: 35px;
}

.p-share.-footer {
  margin: 0 auto;
  width: 100%;
}

.p-share__cap {
  position: relative;
  margin: 0 auto 12px;
  width: 100%;
}

.p-share__cap::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: url("../img/common/share/cap_share_blood.png") no-repeat center/contain;
  width: 100%;
  height: 100%;
  content: "";
}

.is-hero-movie-action:not(.is-scroll) .p-share__cap::after {
  opacity: 1;
}

.p-share__cap img,
.p-share__cap canvas {
  opacity: 1;
}

.is-hero-movie-action:not(.is-scroll) .p-share__cap img, .is-hero-movie-action:not(.is-scroll)
.p-share__cap canvas {
  opacity: 0 !important;
}

.p-share__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-share__list-item {
  display: block;
  position: relative;
}

.p-share__link {
  display: block;
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 6px;
}

[data-ua="pc"] .p-share__link:hover {
  opacity: .4;
}

.p-share__link-img {
  display: block;
  position: relative;
}

.p-share__link-img::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.p-share__list-item:nth-child(1) .p-share__link-img::after {
  background: url("../img/common/share/btn_share-twitter_blood.png") no-repeat center/contain;
}

.p-share__list-item:nth-child(2) .p-share__link-img::after {
  background: url("../img/common/share/btn_share-facebook_blood.png") no-repeat center/contain;
}

.p-share__list-item:nth-child(3) .p-share__link-img::after {
  background: url("../img/common/share/btn_share-line_blood.png") no-repeat center/contain;
}

.is-hero-movie-action:not(.is-scroll) .p-share__link-img::after {
  opacity: 1;
}

.p-share__link-img img,
.p-share__link-img canvas {
  opacity: 1;
}

.is-hero-movie-action:not(.is-scroll) .p-share__link-img img, .is-hero-movie-action:not(.is-scroll)
.p-share__link-img canvas {
  opacity: 0 !important;
}

.p-scroll {
  position: fixed;
  bottom: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  width: 25px;
  pointer-events: none;
}

.is-to-main .p-scroll {
  opacity: 1;
  pointer-events: auto;
}

.is-menu-open .p-scroll, .is-mv-modal-open .p-scroll, .is-chara-modal-open .p-scroll, .is-game-modal-open .p-scroll {
  opacity: 0;
  pointer-events: none;
}

.p-scroll__inner {
  position: relative;
  z-index: 0;
  padding-left: 12px;
  width: 100%;
  overflow: hidden;
}

.p-scroll__cap {
  position: relative;
  width: 100%;
}

.p-scroll__cap-text {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.2s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.2s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.p-scroll__cap-text::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 200%;
  height: 100%;
  content: "";
}

.p-scroll__cap-text.-down {
  position: relative;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  z-index: 1;
}

.p-scroll__cap-text.-down::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: url("../img/common/text_scroll_blood.png") no-repeat center/contain;
  width: 100%;
  height: 100%;
  content: "";
}

.is-hero-movie-action:not(.is-scroll) .p-scroll__cap-text.-down::after {
  opacity: 1;
}

.p-scroll__cap-text.-down img,
.p-scroll__cap-text.-down canvas {
  opacity: 1;
}

.is-hero-movie-action:not(.is-scroll) .p-scroll__cap-text.-down img, .is-hero-movie-action:not(.is-scroll)
.p-scroll__cap-text.-down canvas {
  opacity: 0 !important;
}

.is-scroll .p-scroll__cap-text.-down {
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
  z-index: 0;
}

.p-scroll__cap-text.-up {
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  opacity: 0;
  z-index: 0;
}

.is-scroll .p-scroll__cap-text.-up {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  z-index: 1;
}

.p-scroll__bar {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100%;
}

.p-scroll__bar::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  content: "";
}

.is-hero-movie-action:not(.is-scroll) .p-scroll__bar::before {
  background: #ff0000;
}

/* ====================
COMPONENT
 ==================== */
@-webkit-keyframes intro-glitch {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 25%, 0 25%);
    clip-path: polygon(0 20%, 100% 20%, 100% 25%, 0 25%);
  }
  1.25% {
    -webkit-transform: translateX(-15%);
    transform: translateX(-15%);
    -webkit-clip-path: polygon(0 50%, 75% 50%, 75% 55%, 0 55%);
    clip-path: polygon(0 50%, 75% 50%, 75% 55%, 0 55%);
  }
  2.5% {
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
    -webkit-clip-path: polygon(5% 10%, 80% 10%, 80% 35%, 5% 35%);
    clip-path: polygon(5% 10%, 80% 10%, 80% 35%, 5% 35%);
  }
  3.75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
    clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
  }
  5% {
    -webkit-transform: translateX(15%);
    transform: translateX(15%);
    -webkit-clip-path: polygon(30% 70%, 100% 70%, 100% 75%, 30% 75%);
    clip-path: polygon(30% 70%, 100% 70%, 100% 75%, 30% 75%);
  }
  6.25% {
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 65%, 0 65%);
    clip-path: polygon(0 50%, 100% 50%, 100% 65%, 0 65%);
  }
  7.5% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 15%, 0 15%);
    clip-path: polygon(0 10%, 100% 10%, 100% 15%, 0 15%);
  }
  8.75% {
    -webkit-transform: translateX(15%);
    transform: translateX(15%);
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
    clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
  }
  10% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 45%, 0 45%);
    clip-path: polygon(0 40%, 100% 40%, 100% 45%, 0 45%);
  }
  11.25% {
    -webkit-transform: translateX(-35%);
    transform: translateX(-35%);
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
  }
  11.25% {
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
  }
  12.5% {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
    -webkit-clip-path: polygon(40% 20%, 100% 20%, 100% 45%, 40% 45%);
    clip-path: polygon(40% 20%, 100% 20%, 100% 45%, 40% 45%);
  }
  13.75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%);
    clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%);
  }
  15% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%);
    clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%);
  }
  16.25% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
    clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
  }
  17.5% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  18.75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
    clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
  }
  20% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
    clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
  }
  21.25% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
    clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
  }
  22.5% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
  }
  23.75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 45%, 0 45%);
    clip-path: polygon(0 10%, 100% 10%, 100% 45%, 0 45%);
  }
  25% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
    clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
  }
  26.25% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}
@keyframes intro-glitch {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 25%, 0 25%);
    clip-path: polygon(0 20%, 100% 20%, 100% 25%, 0 25%);
  }
  1.25% {
    -webkit-transform: translateX(-15%);
    transform: translateX(-15%);
    -webkit-clip-path: polygon(0 50%, 75% 50%, 75% 55%, 0 55%);
    clip-path: polygon(0 50%, 75% 50%, 75% 55%, 0 55%);
  }
  2.5% {
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
    -webkit-clip-path: polygon(5% 10%, 80% 10%, 80% 35%, 5% 35%);
    clip-path: polygon(5% 10%, 80% 10%, 80% 35%, 5% 35%);
  }
  3.75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
    clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
  }
  5% {
    -webkit-transform: translateX(15%);
    transform: translateX(15%);
    -webkit-clip-path: polygon(30% 70%, 100% 70%, 100% 75%, 30% 75%);
    clip-path: polygon(30% 70%, 100% 70%, 100% 75%, 30% 75%);
  }
  6.25% {
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 65%, 0 65%);
    clip-path: polygon(0 50%, 100% 50%, 100% 65%, 0 65%);
  }
  7.5% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 15%, 0 15%);
    clip-path: polygon(0 10%, 100% 10%, 100% 15%, 0 15%);
  }
  8.75% {
    -webkit-transform: translateX(15%);
    transform: translateX(15%);
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
    clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
  }
  10% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 45%, 0 45%);
    clip-path: polygon(0 40%, 100% 40%, 100% 45%, 0 45%);
  }
  11.25% {
    -webkit-transform: translateX(-35%);
    transform: translateX(-35%);
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
  }
  11.25% {
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
  }
  12.5% {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
    -webkit-clip-path: polygon(40% 20%, 100% 20%, 100% 45%, 40% 45%);
    clip-path: polygon(40% 20%, 100% 20%, 100% 45%, 40% 45%);
  }
  13.75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%);
    clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%);
  }
  15% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%);
    clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%);
  }
  16.25% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
    clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
  }
  17.5% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  18.75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
    clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
  }
  20% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
    clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
  }
  21.25% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
    clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
  }
  22.5% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
  }
  23.75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 45%, 0 45%);
    clip-path: polygon(0 10%, 100% 10%, 100% 45%, 0 45%);
  }
  25% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
    clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
  }
  26.25% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}

@-webkit-keyframes chara-word-glitch {
  0% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 25%, 0 25%);
    clip-path: polygon(0 20%, 100% 20%, 100% 25%, 0 25%);
  }
  1.25% {
    -webkit-clip-path: polygon(0 50%, 75% 50%, 75% 55%, 0 55%);
    clip-path: polygon(0 50%, 75% 50%, 75% 55%, 0 55%);
  }
  2.5% {
    -webkit-clip-path: polygon(5% 10%, 80% 10%, 80% 35%, 5% 35%);
    clip-path: polygon(5% 10%, 80% 10%, 80% 35%, 5% 35%);
  }
  3.75% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
    clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
  }
  5% {
    -webkit-clip-path: polygon(30% 70%, 100% 70%, 100% 75%, 30% 75%);
    clip-path: polygon(30% 70%, 100% 70%, 100% 75%, 30% 75%);
  }
  6.25% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 65%, 0 65%);
    clip-path: polygon(0 50%, 100% 50%, 100% 65%, 0 65%);
  }
  7.5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 15%, 0 15%);
    clip-path: polygon(0 10%, 100% 10%, 100% 15%, 0 15%);
  }
  8.75% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
    clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
  }
  10% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 45%, 0 45%);
    clip-path: polygon(0 40%, 100% 40%, 100% 45%, 0 45%);
  }
  11.25% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
  }
  11.25% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
  }
  12.5% {
    -webkit-clip-path: polygon(40% 20%, 100% 20%, 100% 45%, 40% 45%);
    clip-path: polygon(40% 20%, 100% 20%, 100% 45%, 40% 45%);
  }
  13.75% {
    -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%);
    clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%);
  }
  15% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%);
    clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%);
  }
  16.25% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
    clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
  }
  17.5% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  18.75% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
    clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
  }
  20% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
    clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
  }
  21.25% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
    clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
  }
  22.5% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
  }
  23.75% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 45%, 0 45%);
    clip-path: polygon(0 10%, 100% 10%, 100% 45%, 0 45%);
  }
  25% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
    clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
  }
  26.25% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}

@keyframes chara-word-glitch {
  0% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 25%, 0 25%);
    clip-path: polygon(0 20%, 100% 20%, 100% 25%, 0 25%);
  }
  1.25% {
    -webkit-clip-path: polygon(0 50%, 75% 50%, 75% 55%, 0 55%);
    clip-path: polygon(0 50%, 75% 50%, 75% 55%, 0 55%);
  }
  2.5% {
    -webkit-clip-path: polygon(5% 10%, 80% 10%, 80% 35%, 5% 35%);
    clip-path: polygon(5% 10%, 80% 10%, 80% 35%, 5% 35%);
  }
  3.75% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
    clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
  }
  5% {
    -webkit-clip-path: polygon(30% 70%, 100% 70%, 100% 75%, 30% 75%);
    clip-path: polygon(30% 70%, 100% 70%, 100% 75%, 30% 75%);
  }
  6.25% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 65%, 0 65%);
    clip-path: polygon(0 50%, 100% 50%, 100% 65%, 0 65%);
  }
  7.5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 15%, 0 15%);
    clip-path: polygon(0 10%, 100% 10%, 100% 15%, 0 15%);
  }
  8.75% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
    clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
  }
  10% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 45%, 0 45%);
    clip-path: polygon(0 40%, 100% 40%, 100% 45%, 0 45%);
  }
  11.25% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
  }
  11.25% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
  }
  12.5% {
    -webkit-clip-path: polygon(40% 20%, 100% 20%, 100% 45%, 40% 45%);
    clip-path: polygon(40% 20%, 100% 20%, 100% 45%, 40% 45%);
  }
  13.75% {
    -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%);
    clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%);
  }
  15% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%);
    clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%);
  }
  16.25% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
    clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
  }
  17.5% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  18.75% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
    clip-path: polygon(0 30%, 100% 30%, 100% 35%, 0 35%);
  }
  20% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
    clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
  }
  21.25% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
    clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
  }
  22.5% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
  }
  23.75% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 45%, 0 45%);
    clip-path: polygon(0 10%, 100% 10%, 100% 45%, 0 45%);
  }
  25% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
    clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
  }
  26.25% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}

@-webkit-keyframes deco_flash_1 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  55% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  85% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes deco_flash_1 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  55% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  85% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes deco_flash_2 {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  55% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  85% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes deco_flash_2 {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  55% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  85% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes deco_flash_3 {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  85% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes deco_flash_3 {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  85% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.l-in {
  position: relative;
  opacity: 0;
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
}

.is-load .l-in {
  opacity: 1;
  -webkit-transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.l-in__container {
  position: relative;
  margin: 0 auto;
  padding: 70px 0;
  width: 90%;
  max-width: 1080px;
}

.l-in__header {
  position: relative;
  margin: 0 auto 58px;
  width: 100%;
}

.l-in__brand {
  position: relative;
  margin: 0 auto 42px;
  width: 224px;
}

.l-in__brand-link {
  display: block;
  position: relative;
}

.l-in__title {
  display: block;
  position: relative;
  font-size: 32px;
  letter-spacing: 3px;
  text-align: center;
}

.l-in__inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.l-in__footer {
  position: relative;
  margin: 82px auto 0;
  width: 100%;
}

.l-in__back {
  position: relative;
  margin: 0 auto;
  width: 570px;
}

.l-in__btn {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.l-in__btn-text {
  display: block;
  position: relative;
  -webkit-transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  padding: 32px 50px;
  font-size: 20px;
  letter-spacing: 2px;
  text-align: center;
}

.l-in__btn-text small {
  font-size: 16px;
}

[data-ua="pc"] .l-in__btn:hover .l-in__btn-text {
  background: #fff;
  color: #000;
}

.l-in__btn-text::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
  -webkit-transition: border-bottom-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: border-bottom-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border-bottom: 1px solid #fff;
  width: 60px;
  height: 1.5px;
  content: "";
}

[data-ua="pc"] .l-in__btn:hover .l-in__btn-text::before {
  border-bottom-color: #000;
}

.l-in__btn-text::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  content: "";
}

.p-info {
  position: relative;
  padding: 58px 0;
  width: 100%;
}

.p-info + .p-info {
  margin-top: 0;
}

.p-info::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 5px solid #fff;
  border-left: 5px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 1px;
  pointer-events: none;
  content: "";
}

.p-info:last-child::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-right: 5px solid #fff;
  border-left: 5px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 1px;
  pointer-events: none;
  content: "";
}

.p-info__header {
  position: relative;
  margin: 0 auto 28px;
  width: 100%;
}

.p-info__date {
  display: block;
  position: relative;
  margin-bottom: 12px;
  font-size: 15px;
  letter-spacing: 1.5px;
}

.p-info__title {
  position: relative;
  width: 100%;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 2px;
}

.p-info__inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-info__text {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
}

.p-info__text img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  height: auto !important;
}

.p-info__text iframe {
  max-width: 100%;
}

.p-info__text a {
  text-decoration: underline;
}

.p-info__text a:hover {
  text-decoration: none;
}

@media screen and (max-width: 960px) and (min-width: 561px){
  html {
    font-size: 78.125%;
  }
}

@media screen and (max-width: 960px){
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .is-pc {
    display: none !important;
  }
  .is-pc-inline {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .pc-inline {
    display: none !important;
  }
  .l-wrap__bg {
    background: url("../img/common/bg.gif") repeat center top;
    background-size: 165px auto;
  }
  .l-header__sound {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 15;
  }
  [data-os="mac"] .l-header__sound {
    bottom: 5%;
  }
  .l-header__share {
    display: none;
  }
  .l-nav__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 82.667%;
  }
  .l-nav__shadow {
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    width: 58.065%;
  }
  .l-nav__in {
    padding-bottom: 30px;
  }
  .l-nav__logo {
    margin: 0 auto 40px;
    width: 67.742%;
  }
  .l-nav__inner {
    margin: 0 auto;
    width: 100%;
  }
  .l-footer__container {
    padding-bottom: 30px;
  }
  .l-footer__header {
    margin-bottom: 45px;
  }
  .l-footer__brand {
    width: 100%;
  }
  .l-footer__copy {
    margin-top: 52px;
    width: 80px;
  }
  .p-menu {
    top: 28px;
    left: 0;
    width: 25px;
    height: 18px;
  }
  .p-menu__open-item {
    height: 1.5px;
  }
  .p-menu__close-item {
    height: 1.5px;
  }
  .p-gnav__list {
    width: 46.774%;
  }
  .p-gnav__list-item + .p-gnav__list-item {
    margin-top: 38px;
  }
  .p-gnav__link {
    padding-right: 31.034%;
  }
  .-character .p-gnav__link {
    padding-right: 23.448%;
  }
  .p-gnav__series {
    margin-top: 62px;
  }
  .p-gnav__series-link {
    padding: 0;
  }
  .p-gnav__series-link::before {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 100vw;
  }
  .p-gnav__series-img {
    width: 61.29%;
  }
  .p-sound {
    width: 28px;
  }
  .p-sound__cap {
    margin-bottom: 10px;
  }
  .p-sound__cap::after {
    background: url("../img/common/cap_sound_sp_blood.png") no-repeat center/contain;
  }
  .p-sound__line {
    width: 28px;
    height: 20px;
  }
  .p-brand {
    width: 64%;
    max-width: 320px;
  }
  .p-brand__list-item {
    width: 100%;
  }
  .p-brand__list-item + .p-brand__list-item {
    margin-top: 15px;
  }
  .p-share__cap::after {
    background: url("../img/common/share/cap_share_sp_blood.png") no-repeat center/contain;
  }
  .p-scroll {
    left: 10px;
    width: 18px;
  }
  .p-scroll__inner {
    padding-left: 8px;
  }
  .p-scroll__cap-text.-down::after {
    background: url("../img/common/text_scroll_sp_blood.png") no-repeat center/contain;
  }
  .is-scroll .p-scroll__cap-text.-down {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  .p-scroll__cap-text.-up {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  .p-scroll__bar {
    width: 1px;
  }
  .l-in__container {
    padding: 38px 0;
  }
  .l-in__header {
    margin-bottom: 34px;
  }
  .l-in__brand {
    margin-bottom: 24px;
    width: 110px;
  }
  .l-in__title {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .l-in__footer {
    margin-top: 52px;
  }
  .l-in__back {
    width: 84%;
    max-width: 570px;
  }
  .l-in__btn-text {
    padding: 18px 20px;
    font-size: 11px;
  }
  .l-in__btn-text small {
    font-size: 10px;
  }
  .l-in__btn-text::before {
    left: 15px;
    width: 26px;
    height: 1px;
  }
  .p-info {
    margin-top: 20px;
    padding: 28px 0;
  }
  .p-info__header {
    margin-bottom: 18px;
    width: 90%;
  }
  .p-info__date {
    margin-bottom: 8px;
    font-size: 10px;
  }
  .p-info__title {
    font-size: 15px;
    letter-spacing: 1.4px;
  }
  .p-info__inner {
    width: 90%;
  }
  .p-info__text {
    font-size: 12px;
    line-height: 1.95;
  }
}

@media screen and (min-width: 961px){
  .is-sp {
    display: none !important;
  }
  .is-sp-hl {
    display: none !important;
  }
  .is-sp-inline {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .sp-inline {
    display: none !important;
  }
  .l-header__side {
    position: fixed;
    top: 50%;
    right: 20px;
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    opacity: 0;
    z-index: 5;
    -webkit-transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
  }
  .is-to-main .l-header__side {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 1;
    pointer-events: auto;
  }
  .is-menu-open .l-header__side, .is-mv-modal-open .l-header__side, .is-chara-modal-open .l-header__side, .is-game-modal-open .l-header__side {
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    opacity: 0;
    pointer-events: none;
  }
  .l-header__sound {
    position: relative;
    margin: 0 auto 74px;
    width: 100%;
  }
  .l-nav__shadow {
    top: 50%;
    left: 180px;
    -webkit-transform: translate(-50%, -31%);
    transform: translate(-50%, -31%);
  }
  .l-nav__in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }
  .l-nav__logo {
    margin-right: 125px;
  }
  .l-nav__inner {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
  }
  .l-footer__sound {
    position: relative;
    margin: 0 auto 74px;
    width: 100%;
  }
  .l-footer__share {
    border-top: 1px solid #353535;
    border-bottom: 1px solid #353535;
    background: rgba(57, 57, 57, 0.6);
    padding: 34px 0 28px;
  }
  .p-menu__inner::before {
    content: "";
  }
  .p-brand__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-brand__list-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .p-brand__list-item + .p-brand__list-item {
    margin-left: 20px;
  }
  .-footer .p-share__cap {
    width: 48px;
  }
  .-footer .p-share__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .-side .p-share__list-item + .p-share__list-item {
    margin-top: 12px;
  }
  .-footer .p-share__list-item + .p-share__list-item {
    margin-left: 32px;
  }
  .-footer .p-share__list-item {
    width: 42px;
  }
  .p-scroll {
    right: 20px;
  }
  .l-footer__share {
    display: none;
  }
}

@media screen and (max-width: 960px) and (orientation: portrait){
  .is-pc-hl {
    display: none !important;
  }
  .p-share {
    margin: 0 auto;
    width: 100%;
  }
  .p-share__cap {
    width: 10.4%;
  }
  .p-share__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-share__list-item + .p-share__list-item {
    margin-left: 35px;
  }
  .p-share__list-item {
    width: 40px;
  }
}

@media screen and (max-width: 960px) and (orientation: landscape){
  .is-sp-hl {
    display: none !important;
  }
  .l-nav {
    overflow-y: scroll;
  }
  .l-nav__container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 40%;
  }
  .p-share {
    width: 30px;
  }
  .p-share__cap {
    width: 48px;
  }
  .-footer .p-share__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-share__list-item + .p-share__list-item {
    margin-left: 12px;
  }
  .p-share__list-item {
    width: 42px;
  }
}

@media screen and (orientation: landscape){
  .is-port {
    display: none !important;
  }
}

@media screen and (orientation: portrait){
  .is-land {
    display: none !important;
  }
}

@media screen and (min-width: 751px){
  .is-tab {
    display: none !important;
  }
}

@media screen and (min-width: 561px){
  .is-wide {
    display: none !important;
  }
}

@media screen and (max-width: 374px){
  .is-narrow {
    display: block !important;
  }
  .is-narrow-inline {
    display: inline-block !important;
  }
  .is-non-narrow {
    display: none !important;
  }
  .is-non-narrow-inline {
    display: none !important;
  }
}

@media screen and (max-width: 960px) and (max-width: 960px) and (min-width: 560px) and (orientation: portrait){
  .p-scroll {
    width: 25px;
  }
}
