@charset "UTF-8";
/* Eric Meyer's Reset CSS v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/*theme--------------------------*/
/*-------------------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  min-height: 100vh;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  body {
    background-size: 100%;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img, picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

h2 {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 1.5em;
  color: #FFF000;
}

/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .shares {
    flex-direction: column;
  }
}

.share_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  box-sizing: border-box;
}
.share_btns li {
  height: 22px;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 2px 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_btns li img {
  height: 20px;
  width: auto;
}

.share_btns-square {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .share_btns-square {
    margin-bottom: 10px;
  }
}
.share_btns-square::before {
  content: "Share:";
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 6.5px;
  color: #FFF;
}
.share_btns-square li {
  cursor: pointer;
  margin: 0 10px 0px;
  width: 24px;
}
@media screen and (max-width: 768px) {
  .share_btns-square li {
    margin: 0 10px 10px;
  }
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
@keyframes flash {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
/*-inview------------------------*/
.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
/*nav----------------------------*/
.nav_btn {
  display: none;
  z-index: 104;
  position: fixed;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    display: unset;
    top: 0px;
    right: 0px;
    background-image: url(img/nav_icon.svg);
    background-size: 100%, 100%;
    width: 50px;
    height: 50px;
    transition: 1s;
    opacity: 0;
    pointer-events: none;
  }
}
.nav_btn.show {
  background-image: url(img/nav_icon-close.svg);
  opacity: 1;
  pointer-events: all;
}
.nav_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .nav_btn.active {
    pointer-events: all;
    opacity: 1;
  }
}

.gnav {
  z-index: 100;
  letter-spacing: 0.1em;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  height: 50px;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .gnav {
    z-index: 103;
    position: fixed;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    background-color: rgba(0, 0, 0, 0.95);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .gnav.show {
    left: 0;
    opacity: 1;
  }
}
.gnav.active {
  opacity: 1;
}
.gnav .gnav_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    background-image: none;
    padding-right: 0px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }
}
.gnav .gnav_list li a {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5em;
  font-size: 1.1em;
  color: #FFF000;
  transition: 0.2s;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    font-size: 1.43em;
    margin-bottom: 5px;
    padding: 10px 0;
  }
}
.gnav .gnav_list li a:hover {
  opacity: 0.6;
  transform: translateY(2px);
}
.gnav .gnav_list li a img {
  width: 22px;
}

.nav_top {
  z-index: 99;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transform: scale(1, 0.6);
  color: #FFF000;
  cursor: pointer;
}
.nav_top:hover {
  transform: scale(1, 0.6) translateY(2px);
}
.nav_top.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .nav_top.active {
    opacity: 1;
  }
}

/*-------------------------------*/
/*fixed_bg------------------------*/
.fixed_bg {
  z-index: -10;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background-image: url(img/bg_skul.jpg);
  background-size: content;
  background-position: left center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  opacity: 0.2;
}

/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loading_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loading .loading_inner .loader {
  animation: flash 1s infinite;
  max-width: 300px;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  mix-blend-mode: hard-light;
}
.loading .loading_inner .loader img {
  opacity: 0.2;
}

/*-------------------------------*/
.footer {
  background: #0C2835;
  width: 100%;
  padding: 80px 50px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }
}
.footer .title {
  width: 50%;
  max-width: 400px;
  margin: 0 auto;
}

#top {
  position: relative;
  background-color: #000;
}
#top .main {
  position: relative;
  width: 37.92%;
  top: 0%;
  left: 0%;
}
@media screen and (max-width: 768px) {
  #top .main {
    width: 100%;
    top: 0%;
    left: 0%;
  }
}
#top .copy_tate2 {
  position: absolute;
  width: 1.72%;
  top: 23.96%;
  left: 33.23%;
}
@media screen and (max-width: 768px) {
  #top .copy_tate2 {
    width: 3.47%;
    top: 22%;
    left: 50.93%;
  }
}
#top .obi_upper {
  position: absolute;
  width: 38.85%;
  top: 13.24%;
  left: 41.15%;
}
@media screen and (max-width: 768px) {
  #top .obi_upper {
    width: 89.33%;
    top: 2%;
    left: 5.33%;
  }
}
#top .obi_lower {
  position: absolute;
  width: 38.85%;
  top: 70.62%;
  left: 41.15%;
}
@media screen and (max-width: 768px) {
  #top .obi_lower {
    width: 89.33%;
    top: 69.52%;
    left: 5.33%;
  }
}
#top .titles {
  position: absolute;
  width: 16.88%;
  top: 25.05%;
  left: 45.32%;
}
@media screen and (max-width: 768px) {
  #top .titles {
    width: 38.13%;
    top: 33.03%;
    left: 3.73%;
  }
}
#top .release {
  position: absolute;
  width: 24.04%;
  top: 76.59%;
  left: 45.32%;
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 91.73%;
    top: 89.56%;
    left: 4.27%;
  }
}
#top .copy_tate {
  position: absolute;
  width: 2.08%;
  top: 13.68%;
  left: 87.14%;
}
@media screen and (max-width: 768px) {
  #top .copy_tate {
    display: none;
  }
}
@keyframes alienf {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
#top .alien {
  animation: alienf 4s ease-in-out infinite;
  position: absolute;
  top: 47%;
  left: 24%;
  width: 5.89%;
}
@media screen and (max-width: 768px) {
  #top .alien {
    top: 39%;
    left: 62%;
    width: 15.47%;
  }
}

#info {
  padding: 40px 50px 60px;
  width: 100%;
  margin: 0 0 0 auto;
  background: rgba(46, 167, 224, 0.2);
}
@media screen and (max-width: 768px) {
  #info {
    padding: 30px 20px 30px;
  }
}
#info .kouen {
  font-size: 0.8em;
  text-align: center;
  margin-bottom: 30px;
}
#info .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#info .btns div {
  margin: 0 10px 10px;
  position: relative;
  max-width: 180px;
  width: 100%;
}
#info .btns div a {
  overflow: hidden;
  position: relative;
  margin: 0 auto 0px;
  display: block;
  max-width: 180px;
  width: 100%;
  transition: 0.3s;
}
#info .btns div a:hover {
  opacity: 0.7;
}
#info .bnr-c {
  max-width: 220px;
  margin: 0 auto 10px;
  width: 50%;
  display: block;
  transition: 0.3s;
}
#info .bnr-c:hover {
  opacity: 0.7;
}

.mvtk {
  width: 100%;
}
.mvtk #mvtk-widgets-container {
  margin: 20px auto;
}

.sns_btns {
  display: flex;
  justify-content: center;
  margin: 0 auto 30px;
}
.sns_btns a {
  width: 160px;
  display: block;
  margin: 0 5px;
}
.sns_btns a:hover {
  opacity: 0.7;
}

.bnrs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bnrs .bnr {
  width: calc(50% - 10px);
  margin: 0 5px 10px;
  max-width: 200px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .bnrs .bnr {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
    max-width: unset;
  }
}
.bnrs .bnr a {
  display: block;
  transition: 0.3s;
}
.bnrs .bnr a:hover {
  filter: brightness(120%);
}
.bnrs .bnr img {
  border-radius: 5px;
}

.mvtk {
  width: 100%;
  margin: 0 auto 30px;
}
.mvtk div {
  margin: 0 auto;
}

.tkt {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.tkt li {
  width: calc(50% - 5px);
  max-width: 320px;
}
@media screen and (max-width: 768px) {
  .tkt li {
    width: 100%;
  }
}
.tkt li a {
  display: block;
  transition: 0.3s;
}
.tkt li a:hover {
  filter: brightness(120%);
}

/*trailer------------------------*/
#trailer h2 {
  text-align: center;
  margin-bottom: 10px;
}
#trailer .section_inner {
  max-width: 900px;
  margin: 30px auto 40px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
    margin-bottom: 20px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: solid 1px rgba(13, 20, 49, 0.4);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner .section_main .youtube_embed {
    border-radius: 5px;
  }
}
#trailer .section_inner .section_main .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#trailer .trailer_tabs {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2px;
}
#trailer .trailer_tabs li {
  cursor: pointer;
  border-radius: 10px;
  width: calc(50% - 1px);
  margin: 0;
  height: 3em;
  display: block;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D1431;
  color: #FFF;
  background-color: #3D3000;
  font-weight: 700;
  font-size: 0.9em;
  transition: 0.4s;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  #trailer .trailer_tabs li {
    border-radius: 5px;
    height: 3em;
  }
}
#trailer .trailer_tabs li:hover {
  opacity: 0.8;
}
#trailer .trailer_tabs .tab.active {
  color: #333;
  background-color: #0D1431;
  pointer-events: none;
}
#trailer .trailer_tabs .tab.active::before {
  content: "● ";
}

/*-------------------------------*/
#intro {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #intro {
    padding: 80px 0;
  }
}
#intro h2 {
  margin-bottom: 40px;
  background-color: #000;
  display: inline-block;
}
#intro .section_inner {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner {
    padding: 0 30px;
  }
}
#intro .section_inner .section_main {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main {
    max-width: 500px;
  }
}
#intro .section_inner .section_main h3 {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 580px;
  margin-bottom: 20px;
  background-color: #000;
}
#intro .section_inner .section_main p {
  line-height: 2;
  margin-bottom: 1em;
  text-align: justify;
  background-color: #000;
}
#intro .section_inner .section_main p:last-of-type {
  margin-bottom: 0;
}

#lineup {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 768px) {
  #lineup {
    padding: 80px 0;
  }
}
#lineup .section_inner {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #lineup .section_inner {
    padding: 0 20px;
  }
}
#lineup .section_inner .section_main {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #lineup .section_inner .section_main {
    max-width: 500px;
  }
}
#lineup .section_inner .section_main h2 {
  text-align: center;
  margin-bottom: 40px;
}
#lineup .section_inner .section_main h3 {
  text-align: center;
  max-width: 400px;
  width: 70%;
  margin: 0 auto 40px;
  border-bottom: solid 1px #007DC9;
}
#lineup .section_inner .section_main .lineup_items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#lineup .section_inner .section_main .lineup_items .lineup_item {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #lineup .section_inner .section_main .lineup_items .lineup_item {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }
}
#lineup .section_inner .section_main .lineup_items .lineup_item .lineup_img {
  width: 100%;
  max-width: 350px;
}
#lineup .section_inner .section_main .lineup_items .lineup_item .lineup_texts {
  flex: 1;
}
#lineup .section_inner .section_main .lineup_items .lineup_item .lineup_texts .title {
  color: #2EA7E0;
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #lineup .section_inner .section_main .lineup_items .lineup_item .lineup_texts .title {
    font-size: 1.5em;
  }
}
#lineup .section_inner .section_main .lineup_items .lineup_item .lineup_texts .sub-title {
  color: #94926A;
  letter-spacing: 0.2em;
  font-size: 0.8em;
  margin-bottom: 0.5em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #lineup .section_inner .section_main .lineup_items .lineup_item .lineup_texts .sub-title {
    font-size: 0.8em;
    letter-spacing: 0;
  }
}
#lineup .section_inner .section_main .lineup_items .lineup_item .lineup_texts .spec {
  font-size: 0.9em;
  margin-bottom: 0.5em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #lineup .section_inner .section_main .lineup_items .lineup_item .lineup_texts .spec {
    font-size: 0.8em;
  }
}
#lineup .section_inner .section_main .lineup_items .lineup_item .lineup_texts .ppl {
  margin-bottom: 1em;
  border-bottom: solid 1px #94926A;
  padding-bottom: 1em;
  line-height: 1.6;
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  #lineup .section_inner .section_main .lineup_items .lineup_item .lineup_texts .ppl {
    font-size: 0.8em;
  }
}
#lineup .section_inner .section_main .lineup_items .lineup_item .lineup_texts .ppl p span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #lineup .section_inner .section_main .lineup_items .lineup_item .lineup_texts .ppl p span {
    display: inline;
  }
}
#lineup .section_inner .section_main .lineup_items .lineup_item .lineup_texts .text_body p {
  line-height: 1.8;
  text-align: justify;
}

#comment {
  background-color: rgba(255, 255, 255, 0.5);
}
#comment .section_inner {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #comment .section_inner {
    padding: 80px 0;
  }
}
#comment .section_inner .section_main {
  max-width: 1000px;
  padding: 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main {
    max-width: 500px;
    padding: 0 20px;
  }
}
#comment .section_inner .section_main h2 {
  color: #FFF000;
  opacity: 1;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main h2 {
    margin-bottom: 40px;
  }
}
#comment .section_inner .section_main .comment_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 30px;
  max-width: 700px;
  width: 90%;
}
#comment .section_inner .section_main .comment_list li {
  padding: 0.5em;
}
#comment .section_inner .section_main .comment_list li a {
  color: #FFF000;
  transition: 0.4s;
}
#comment .section_inner .section_main .comment_list li a:hover {
  opacity: 0.6;
}
#comment .section_inner .section_main .comment-cau {
  text-align: center;
  font-size: 0.9em;
  margin-bottom: 60px;
}
#comment .section_inner .section_main .comment_items .comment_item {
  border: solid 1px #ffece3;
  margin-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .comment_items .comment_item {
    margin-bottom: 40px;
  }
}
#comment .section_inner .section_main .comment_items .comment_item:last-of-type {
  margin-bottom: 0;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_names {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .comment_items .comment_item .comment_names {
    flex-direction: column;
  }
}
#comment .section_inner .section_main .comment_items .comment_item .comment_names .comment_name {
  font-size: 1.3em;
  color: #0D1431;
  text-align: right;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_names .comment_role {
  opacity: 0.8;
  font-size: 0.8em;
  text-align: right;
  color: #0D1431;
  opacity: 0.7;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_body {
  border-top: solid 1px #FFF000;
  padding-top: 10px;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_body p.for {
  text-align: center;
  margin-bottom: 0.25em;
  color: #0D1431;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_body p {
  color: #0D1431;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0.6em;
  opacity: 0.9;
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .comment_items .comment_item .comment_body p {
    margin-bottom: 0.4em;
  }
}
#comment .section_inner .section_main .comment_items .comment_item .comment_body p:last-of-type {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */