@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400&family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&family=Playfair+Display&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

blockquote,
q {
  quotes: none;
}

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

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

a:focus {
  outline: none;
}

html {
  font-size: 62.5%;
}

body {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  body {
    min-width: 1080px;
  }
}

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

img,
svg {
  vertical-align: bottom;
  max-width: 100%;
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUnder {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes fadeInUnder {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fadeFixedCopyLeft {
  0% {
    opacity: 0;
    left: -30px;
  }
  100% {
    opacity: 1;
    left: 8px;
  }
}
@keyframes fadeFixedCopyLeft {
  0% {
    opacity: 0;
    left: -30px;
  }
  100% {
    opacity: 1;
    left: 8px;
  }
}
@-webkit-keyframes fadeFixedCopyRight {
  0% {
    opacity: 0;
    right: -30px;
  }
  100% {
    opacity: 1;
    right: 8px;
  }
}
@keyframes fadeFixedCopyRight {
  0% {
    opacity: 0;
    right: -30px;
  }
  100% {
    opacity: 1;
    right: 8px;
  }
}
@-webkit-keyframes slowSizeUp {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.15;
  }
}
@keyframes slowSizeUp {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.15;
  }
}
@media screen and (min-width: 769px) {
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

body.-fixed {
  position: fixed;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

.item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.item-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.link-arrow {
  color: #ffffff;
  position: relative;
  display: block;
  line-height: 1;
  text-decoration: none;
  outline: none;
}
@media screen and (min-width: 769px) {
  .link-arrow {
    font-size: 16px;
    padding: 16px 100px 16px 0;
  }
}
@media screen and (max-width: 768px) {
  .link-arrow {
    font-size: 3.2vw;
    padding: 4.2666666667vw 26.6666666667vw 4.2666666667vw 0;
  }
}
.link-arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 1px;
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .link-arrow::before {
    width: 14.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .link-arrow::before {
    width: 60px;
  }
}
.link-arrow::after {
  content: "";
  position: absolute;
  height: 1px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .link-arrow::after {
    right: -0.5333333333vw;
    top: calc(50% - 0.8vw);
    width: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .link-arrow::after {
    right: -2px;
    top: calc(50% - 3px);
    width: 10px;
  }
}
@media screen and (max-width: 768px) {
  .link-arrow:hover::before {
    width: 9.6vw;
  }
}
@media screen and (min-width: 769px) {
  .link-arrow:hover::before {
    width: 36px;
  }
}
.link-arrow:hover span::before {
  scale: 0.4;
  background: #ff007a;
  border: none;
}
.link-arrow span {
  position: relative;
}
.link-arrow span::before {
  content: "";
  position: absolute;
  border: solid 1px #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .link-arrow span::before {
    top: -1.0666666667vw;
    right: -14.9333333333vw;
    width: 6.4vw;
    height: 6.4vw;
  }
}
@media screen and (min-width: 769px) {
  .link-arrow span::before {
    top: -4px;
    right: -56px;
    width: 30px;
    height: 30px;
  }
}
.link-button {
  color: #ffffff;
  border: solid 1px #ffffff;
  line-height: 2;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .link-button {
    font-size: 3.7333333333vw;
    padding: 2.6666666667vw 13.3333333333vw;
    letter-spacing: 0.3466666667vw;
  }
}
@media screen and (min-width: 769px) {
  .link-button {
    font-size: 14px;
    padding: 10px 50px;
    letter-spacing: 0.13em;
  }
}
.link-button:hover {
  background: #ffffff;
  color: #151515;
}

.underpage-deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .underpage-deco img {
    width: 10.6666666667vw;
  }
}
.underpage-separator {
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .underpage-separator {
    left: calc(50% - 1.0666666667vw);
  }
}
@media screen and (min-width: 769px) {
  .underpage-separator {
    left: calc(50% - 4px);
  }
}
@media screen and (max-width: 768px) {
  .underpage-separator__inner {
    width: 2.1333333333vw;
    height: 24.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .underpage-separator__inner {
    width: 8px;
    height: 172px;
  }
}
.underpage-separator__inner img {
  position: absolute;
  left: 0;
  max-width: none;
  z-index: -10;
}
@media screen and (max-width: 768px) {
  .underpage-separator__inner img {
    width: 2.1333333333vw;
  }
}
.underpage-separator__item {
  position: absolute;
  left: 0;
  width: 0;
  overflow: hidden;
  -webkit-transition: 0.8s ease-out;
  transition: 0.8s ease-out;
  height: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .underpage-separator.is-show__mask .underpage-separator__item {
    height: 24.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .underpage-separator.is-show__mask .underpage-separator__item {
    height: 172px;
  }
}

.js-under {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
}
@media screen and (max-width: 768px) {
  .js-under-sp {
    opacity: 0;
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
}
@media screen and (max-width: 768px) {
  .js-under-sp.is-show__under-sp {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.js-under.is-show__under {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .js-under.is-show__under-sp {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.fc-primary {
  color: #ff007a;
}

.deco-rhombus {
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .deco-rhombus {
    width: 10.9333333333vw;
    height: 2.1333333333vw;
    margin: 32vw auto 0;
  }
}
@media screen and (min-width: 769px) {
  .deco-rhombus {
    width: 80px;
    height: 16px;
    margin: 160px auto 0;
  }
}

.content-inner {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .content-inner.--sp-pd {
    padding-right: 6.4vw;
    padding-left: 6.4vw;
  }
}
@media screen and (min-width: 769px) {
  .content-inner.--1000 {
    width: 1000px;
  }
}

.text-center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .fs-14 {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fs-14 {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .mt-40 {
    margin-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .mt-40 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .mt-80 {
    margin-top: 21.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .mt-80 {
    margin-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  #page-404 .img-deco {
    width: 27.7333333333vw;
  }
}

@media screen and (max-width: 768px) {
  .c-footer-bm {
    margin-bottom: 48vw;
  }
}
@media screen and (min-width: 769px) {
  .c-footer-bm {
    margin-bottom: 280px;
  }
}

.line-height-2 {
  line-height: 2;
}

main {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 30;
  overflow: hidden;
  background-color: #0f0c0b;
  background-image: url("/assets/images/common/bg-asfalt.png");
  background-size: 466px 349px;
  background-repeat: repeat;
}

@-webkit-keyframes inHeaderBg {
  0% {
    width: 10%;
  }
  100% {
    width: calc(100% - 80px);
  }
}

@keyframes inHeaderBg {
  0% {
    width: 10%;
  }
  100% {
    width: calc(100% - 80px);
  }
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    left: -304px;
  }
  to {
    left: -104px;
  }
}
@keyframes fadeInLeft {
  from {
    left: -304px;
  }
  to {
    left: -104px;
  }
}
@-webkit-keyframes endingSp {
  from {
    width: 300vw;
  }
  to {
    width: 0;
  }
}
@keyframes endingSp {
  from {
    width: 300vw;
  }
  to {
    width: 0;
  }
}
@-webkit-keyframes endingPc {
  from {
    width: calc(100vw + 100vh);
  }
  to {
    width: 0;
  }
}
@keyframes endingPc {
  from {
    width: calc(100vw + 100vh);
  }
  to {
    width: 0;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes filterRemove {
  from {
    -webkit-filter: blur(8px);
    filter: blur(8px);
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes filterRemove {
  from {
    -webkit-filter: blur(8px);
    filter: blur(8px);
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
.loader {
  height: 100%;
  width: 100%;
  display: block;
  z-index: 1000000;
  position: fixed;
  top: 0;
}
.loader:before {
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #ffffff;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .loader:before {
    top: -125vh;
    left: -50vw;
    height: 300vh;
    width: 300vw;
  }
}
@media screen and (min-width: 769px) {
  .loader:before {
    top: calc(-25vh - 50vw);
    bottom: 0;
    right: 0;
    left: calc(-25vw - 25vh);
    height: calc(100vw + 100vh);
    width: calc(100vw + 100vh);
  }
}
.loader.-ending:before {
  width: 0;
}
@media screen and (max-width: 768px) {
  .loader.-ending:before {
    -webkit-animation: endingSp 1.5s ease-in;
    animation: endingSp 1.5s ease-in;
  }
}
@media screen and (min-width: 769px) {
  .loader.-ending:before {
    -webkit-animation: endingPc 1.5s ease-in;
    animation: endingPc 1.5s ease-in;
  }
}
.loader__progress {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.loader__progress-number {
  color: #0f0c0b;
  position: absolute;
  top: calc(50% + 72px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: "Playfair Display";
  letter-spacing: 0.25em;
}
@media screen and (max-width: 768px) {
  .loader__progress-number {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) {
  .loader__progress-number {
    font-size: 28px;
  }
}
.loader__progress-bg {
  content: "";
  position: absolute;
  background-image: url("/assets/images/top/loading-progress.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .loader__progress-bg {
    width: 71.7333333333vw;
    height: 15.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .loader__progress-bg {
    width: 539px;
    height: 92px;
  }
}
.loader__progress-bar {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .loader__progress-bar {
    left: calc(50% + 1.0666666667vw);
    width: 49.6vw;
  }
}
@media screen and (min-width: 769px) {
  .loader__progress-bar {
    left: calc(50% + 8px);
    width: 376px;
  }
}
.loader__progress-bar__image {
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .loader__progress-bar__image {
    width: 1.6vw;
  }
}
@media screen and (min-width: 769px) {
  .loader__progress-bar__image {
    width: 10px;
  }
}

.load-first.-fadeout {
  -webkit-animation: fadeOut 0.6s forwards;
  animation: fadeOut 0.6s forwards;
}
.load-second {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.load-second.-fadein {
  -webkit-animation: fadeIn 0.6s forwards;
  animation: fadeIn 0.6s forwards;
}
.load-second img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .load-second img {
    width: 37.0666666667vw;
  }
}
.load-second img.-ending {
  -webkit-animation: fadeOut 1s;
  animation: fadeOut 1s;
  opacity: 0;
}

#main {
  overflow: hidden;
}
#main.-filter {
  -webkit-filter: blur(6px);
  filter: blur(6px);
}
#main.-filter-remove {
  -webkit-animation: filterRemove 0.4s;
  animation: filterRemove 0.4s;
  -webkit-filter: blur(0);
  filter: blur(0);
  position: relative;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

.footer {
  background: #ff007a;
  position: relative;
  z-index: 200;
  margin-top: auto;
}
.footer::before {
  content: "";
  background-image: url("/assets/images/common/footer-top.png");
  background-position: center;
  background-repeat: repeat-x;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer::before {
    height: 16vw;
    top: -10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer::before {
    height: 60px;
    top: -40px;
  }
}
.footer__wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    padding-right: 6.4vw;
    padding-left: 6.4vw;
    padding-top: 26.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__wrap {
    padding-top: 100px;
  }
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__content {
    padding-bottom: 21.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__content {
    padding-bottom: 80px;
  }
}
.footer__moveto {
  vertical-align: bottom;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__moveto {
    font-size: 5.3333333333vw;
    right: 9.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__moveto {
    font-size: 20px;
    right: 100px;
  }
}
.footer__moveto::after {
  content: "";
  position: absolute;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}
@media screen and (max-width: 768px) {
  .footer__moveto::after {
    top: -4.2666666667vw;
    right: -0.5333333333vw;
    width: 4.2666666667vw;
    height: 30.4vw;
    padding-top: 3.2vw;
    padding-right: 1.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__moveto::after {
    top: -16px;
    right: -2px;
    width: 16px;
    height: 114px;
    padding-top: 12px;
    padding-right: 4px;
  }
}
@media screen and (max-width: 768px) {
  .footer__moveto:hover::after {
    top: -33px;
  }
}
@media screen and (min-width: 769px) {
  .footer__moveto:hover::after {
    top: -33px;
  }
}
@media screen and (max-width: 768px) {
  .footer__moveto img {
    width: 4.8vw;
  }
}
.footer__note {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer__note {
    font-size: 2.6666666667vw;
    max-width: 64vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__note {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footer__icons {
    margin-top: 6.4vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__icons {
    margin-top: 24px;
  }
}
.footer__icons a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .footer__icons a:not(:first-child) {
    margin-left: 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__icons a:not(:first-child) {
    margin-left: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer__icons img {
    height: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__icons img {
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer__icons img:not(:first-child) {
    margin-left: 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__icons img:not(:first-child) {
    margin-left: 16px;
  }
}
.footer__copy {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    padding-bottom: 8.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__copy {
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .footer__copy p {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__copy p {
    font-size: 12px;
  }
}

@keyframes inHeaderBg {
  0% {
    width: 0%;
  }
  100% {
    @media screen and (max-width: 768px) {
      width: calc(100% - 10.6666666667vw);
    }
    @media screen and (min-width: 769px) {
      width: calc(100% - 80px);
    }
  }
}
@-webkit-keyframes outHeaderBg {
  0% {
    right: 0;
  }
  100% {
    right: -100vw;
  }
}
@keyframes outHeaderBg {
  0% {
    right: 0;
  }
  100% {
    right: -100vw;
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
body#page-qa .header__nav .nav-qa, body#page-character .header__nav .nav-character, body#page-music .header__nav .nav-music, body#page-story .header__nav .nav-story, body#page-top .header__nav .nav-top, .header__nav ul li a:hover {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  body#page-qa .header__nav .nav-qa, body#page-character .header__nav .nav-character, body#page-music .header__nav .nav-music, body#page-story .header__nav .nav-story, body#page-top .header__nav .nav-top, .header__nav ul li a:hover {
    padding-left: 9.6vw;
  }
}
@media screen and (min-width: 769px) {
  body#page-qa .header__nav .nav-qa, body#page-character .header__nav .nav-character, body#page-music .header__nav .nav-music, body#page-story .header__nav .nav-story, body#page-top .header__nav .nav-top, .header__nav ul li a:hover {
    padding-left: 76px;
  }
}
body#page-qa .header__nav .nav-qa:before, body#page-character .header__nav .nav-character:before, body#page-music .header__nav .nav-music:before, body#page-story .header__nav .nav-story:before, body#page-top .header__nav .nav-top:before, .header__nav ul li a:hover:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-animation: fadeIn 0.6s ease-in forwards;
  animation: fadeIn 0.6s ease-in forwards;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  body#page-qa .header__nav .nav-qa:before, body#page-character .header__nav .nav-character:before, body#page-music .header__nav .nav-music:before, body#page-story .header__nav .nav-story:before, body#page-top .header__nav .nav-top:before, .header__nav ul li a:hover:before {
    background-image: url("/assets/images/common/nav-select-sp.svg");
    height: 2.1333333333vw;
    width: 13.8666666667vw;
    left: -10.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  body#page-qa .header__nav .nav-qa:before, body#page-character .header__nav .nav-character:before, body#page-music .header__nav .nav-music:before, body#page-story .header__nav .nav-story:before, body#page-top .header__nav .nav-top:before, .header__nav ul li a:hover:before {
    background-image: url("/assets/images/common/nav-select.svg");
    height: 8px;
    width: 132px;
    left: -104px;
  }
}

@-webkit-keyframes fadeOpenButtonRight {
  0% {
    opacity: 0;
    right: -30px;
  }
  100% {
    opacity: 1;
    @media screen and (max-width: 768px) {
      right: 4.2666666667vw;
    }
    @media screen and (min-width: 769px) {
      right: 16px;
    }
  }
}

@keyframes fadeOpenButtonRight {
  0% {
    opacity: 0;
    right: -30px;
  }
  100% {
    opacity: 1;
    @media screen and (max-width: 768px) {
      right: 4.2666666667vw;
    }
    @media screen and (min-width: 769px) {
      right: 16px;
    }
  }
}
.header #menu-open {
  opacity: 0;
  cursor: pointer;
  position: fixed;
  z-index: 1000;
  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;
}
.header #menu-open.-show {
  -webkit-animation: fadeOpenButtonRight 0.6s forwards;
  animation: fadeOpenButtonRight 0.6s forwards;
}
@media screen and (max-width: 768px) {
  .header #menu-open {
    right: 4.2666666667vw;
    top: 4.2666666667vw;
    width: 11.7333333333vw;
    height: 11.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .header #menu-open {
    right: 16px;
    top: 16px;
    width: 44px;
    height: 44px;
  }
}
.header #menu-open span {
  height: 1px;
  background: #ffffff;
  display: block;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
@media screen and (max-width: 768px) {
  .header #menu-open span {
    width: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .header #menu-open span {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .header #menu-open span:first-child {
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .header #menu-open span:first-child {
    margin-bottom: 10px;
  }
}
.header #menu-open:hover span:first-child {
  -webkit-transform: translate(0, -4px);
  transform: translate(0, -4px);
}
.header #menu-open:hover span:last-child {
  -webkit-transform: translate(0, 4px);
  transform: translate(0, 4px);
}
.header #menu-close {
  cursor: pointer;
  position: fixed;
  z-index: 1000;
  right: 0;
  top: 0;
  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;
  -webkit-animation: fadeIn 1s linear;
  animation: fadeIn 1s linear;
}
@media screen and (max-width: 768px) {
  .header #menu-close {
    width: 16vw;
    height: 16vw;
  }
}
@media screen and (min-width: 769px) {
  .header #menu-close {
    width: 80px;
    height: 80px;
  }
}
.header #menu-close span {
  height: 1px;
  background: #ffffff;
  display: block;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
@media screen and (max-width: 768px) {
  .header #menu-close span {
    width: 22.4vw;
  }
}
@media screen and (min-width: 769px) {
  .header #menu-close span {
    width: 112px;
  }
}
.header #menu-close span:first-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header #menu-close span:last-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header #menu-close:hover span {
  width: 60px;
}
.header__content {
  width: 100%;
  height: 100%;
  background: #ff007a;
  position: fixed;
  z-index: 2000;
  right: 0;
  top: 0;
  display: none;
}
.header__content.-active {
  display: block;
  -webkit-animation: inHeaderBg 0.4s ease-in-out forwards;
  animation: inHeaderBg 0.4s ease-in-out forwards;
}
.header__content.-remove {
  -webkit-animation: outHeaderBg 0.4s ease-in-out forwards;
  animation: outHeaderBg 0.4s ease-in-out forwards;
}
.header__inner {
  display: none;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  background-color: #0f0c0b;
  background-image: url("/assets/images/common/bg-asfalt.png");
  background-size: 466px 349px;
  background-repeat: repeat;
  background-position: 0;
}
@media screen and (max-width: 768px) {
  .header__inner {
    width: calc(100% - 10.6666666667vw);
  }
}
@media screen and (min-width: 769px) {
  .header__inner {
    width: calc(100% - 80px);
  }
}
.header__inner.-active {
  display: block;
  -webkit-animation: inHeaderBg 0.4s ease-out forwards;
  animation: inHeaderBg 0.4s ease-out forwards;
}
.header__inner.-remove {
  -webkit-animation: outHeaderBg 0.4s ease-out forwards;
  animation: outHeaderBg 0.4s ease-out forwards;
}
.header__inner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right 0 top 0;
  z-index: 10000;
  pointer-events: none;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}
@media screen and (max-width: 768px) {
  .header__inner:before {
    background-image: url("/assets/images/common/header-inner-bg-sp.png");
    background-size: 74.4vw auto;
  }
}
@media screen and (min-width: 769px) {
  .header__inner:before {
    background-image: url("/assets/images/common/header-inner-bg.png");
    background-size: 824px 1080px;
  }
}
.header__inner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: right 0 bottom 0;
  z-index: 10001;
  pointer-events: none;
  -webkit-animation: fadeIn 0.6s ease-in;
  animation: fadeIn 0.6s ease-in;
}
@media screen and (max-width: 768px) {
  .header__inner:after {
    background-image: url("/assets/images/common/header-inner-splash-sp.png");
    background-size: 67.2vw 54.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .header__inner:after {
    background-image: url("/assets/images/common/header-inner-splash.png");
    background-size: 587px 473px;
  }
}
.header__nav {
  display: none;
  height: 100%;
}
.header__nav.-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .header__nav ul {
    position: relative;
    top: 21.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .header__nav ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.header__nav ul li:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.header__nav ul li:nth-child(2) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.header__nav ul li:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.header__nav ul li:nth-child(4) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.header__nav ul li:nth-child(5) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.header__nav ul li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
  position: relative;
  line-height: 1;
  font-weight: lighter;
}
@media screen and (max-width: 768px) {
  .header__nav ul li {
    margin-left: 8.5333333333vw;
    height: 8.5333333333vw;
    letter-spacing: 0.4266666667vw;
  }
  .header__nav ul li:not(:first-child) {
    margin-top: 10.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .header__nav ul li {
    margin-left: 80px;
    height: 64px;
    letter-spacing: 1.05em;
  }
  .header__nav ul li:not(:first-child) {
    margin-top: 48px;
  }
}
.header__nav ul li a {
  font-family: "Cormorant", serif;
  color: #ffffff;
  overflow: hidden;
  line-height: 1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (max-width: 768px) {
  .header__nav ul li a {
    font-size: 8.5333333333vw;
    height: 8.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .header__nav ul li a {
    height: 64px;
    font-size: 64px;
  }
}
.header__nav ul li a:not([href]) {
  opacity: 0.3;
  pointer-events: none;
}
.header__logo {
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
  z-index: 10000000;
}
@media screen and (max-width: 768px) {
  .header__logo {
    bottom: 5.3333333333vw;
    right: 5.3333333333vw;
    width: 28.2666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .header__logo {
    bottom: 40px;
    right: 40px;
    width: 214px;
    height: 80px;
  }
}
.header-logo {
  position: absolute;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header-logo {
    top: 6.4vw;
    left: 6.4vw;
  }
}
@media screen and (min-width: 769px) {
  .header-logo {
    top: 24px;
    left: 24px;
  }
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 23.2vw;
  }
}
@media screen and (min-width: 769px) {
  .header-logo img {
    width: 108px;
  }
}
.header-logo:hover {
  opacity: 0.5;
}

@media screen and (min-width: 769px) {
  .fixed-copy {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 300;
    height: 214px;
    width: 100%;
    pointer-events: none;
  }
  .fixed-copy.-show::before {
    -webkit-animation: fadeFixedCopyLeft 0.8s;
    animation: fadeFixedCopyLeft 0.8s;
    background-image: url("/assets/images/common/fixed-copy-left.svg");
    left: 8px;
  }
  .fixed-copy.-show::after {
    -webkit-animation: fadeFixedCopyRight 0.8s;
    animation: fadeFixedCopyRight 0.8s;
    background-image: url("/assets/images/common/fixed-copy-right.svg");
    right: 8px;
  }
  .fixed-copy::before, .fixed-copy::after {
    content: "";
    position: absolute;
    width: 37px;
    height: 214px;
  }
}

body#page-top .header__nav .nav-top {
  pointer-events: none;
}
body#page-top .header-logo {
  display: none;
}
body#page-story .header__nav .nav-story {
  pointer-events: none;
}
body#page-music .header__nav .nav-music {
  pointer-events: none;
}
body#page-character .header__nav .nav-character {
  pointer-events: none;
}
body#page-qa .header__nav .nav-qa {
  pointer-events: none;
}

body.is-menu-open {
  overflow: hidden;
}

.title-h1 {
  font-weight: normal;
  text-align: center;
  font-family: "Cormorant", serif;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .title-h1 {
    font-size: 10.6666666667vw;
    margin-top: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  .title-h1 {
    font-size: 64px;
    margin-top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .title-h1 small {
    font-size: 7.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .title-h1 small {
    font-size: 40px;
  }
}