@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-size: 16px;
  color: #3B2055;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
@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-size: 1.4em;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

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

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

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

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

/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #fff;
  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;
}
.loading .loader {
  max-width: 200px;
  width: 60%;
  opacity: 0.32;
}
@media screen and (max-width: 768px) {
  .loading .loader {
    max-width: 100px;
  }
}

/*-------------------------------*/
/*nav----------------------------*/
/*-------------------------------*/
/*sharebtn-----------------------*/
/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
}
@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;
  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;
  padding-right: 5px;
  font-size: 0.9em;
  text-transform: uppercase;
}
.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;
  }
}
.share_btns-square li img {
  transition: 0.2s;
}
.share_btns-square li img:hover {
  opacity: 0.5;
}

/*-------------------------------*/
/*-------------------------------*/
/*noiseOverlay-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-inview------------------------*/
.fadeIn {
  opacity: 0;
  transition: 0.5s;
}
.fadeIn.is-inview {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transition: 1.2s;
  transform: translateY(5px);
  filter: blur(5px);
}
.fadeInUp.is-inview {
  filter: blur(0px);
  transform: translateY(0);
  opacity: 1;
}

.fadeFromLeft {
  opacity: 0;
  transition: 1s;
  transform: translateX(-20px);
}
.fadeFromLeft.is-inview {
  transform: translateX(0);
  opacity: 1;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
/*nav----------------------------*/
.top_btn {
  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: 14px;
  transform: scale(1, 0.6);
  color: #3B2055;
  cursor: pointer;
}
.top_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top_btn.active {
    opacity: 1;
  }
}
.top_btn:hover {
  transform: scale(1, 0.6) translateY(2px);
  opacity: 0.5;
}

/*-------------------------------*/
footer .footer {
  transition: 1s;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 50px 20px;
  }
}
footer .copyright {
  text-align: center;
  font-size: 0.8em;
}

#top {
  width: 100%;
  height: 49vw;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top {
    height: 185vw;
  }
}
#top .main_img {
  position: absolute;
  width: 68.49%;
  top: 0%;
  left: 0%;
  overflow: hidden;
  border-bottom-right-radius: 50px;
  opacity: 0;
  transition: 1s;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top .main_img {
    width: 94.67%;
    top: 1.44%;
    left: 2.67%;
    border-radius: 10px;
  }
}
#top .main_img img {
  transition: 4s;
  filter: blur(10px) brightness(200%);
  transform: scale(1.1);
}
#top .main_img.active {
  opacity: 1;
}
#top .main_img.active img {
  filter: blur(0px) brightness(100%);
  transform: scale(1);
}
#top .title {
  position: absolute;
  width: 21.16%;
  top: 13.9%;
  left: 73.08%;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(5px);
  transition: 2s;
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 39.29%;
    top: 11.75%;
    left: 32.35%;
  }
}
#top .title.active {
  transform: translateY(0px);
  filter: blur(0px);
  opacity: 1;
}
#top .release {
  position: absolute;
  width: 9.98%;
  top: 63.82%;
  left: 83.74%;
  opacity: 0;
  filter: blur(5px);
  transition: 1s;
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 28.27%;
    top: 68.09%;
    left: 38.53%;
  }
}
#top .release.active {
  filter: blur(0px);
  opacity: 1;
}
#top .credit {
  position: absolute;
  width: 15.84%;
  top: 75.19%;
  left: 77.91%;
  opacity: 0;
  filter: blur(5px);
  transition: 1s;
}
@media screen and (max-width: 768px) {
  #top .credit {
    width: 55.25%;
    top: 84.97%;
    left: 22.2%;
  }
}
#top .credit.active {
  filter: blur(0px);
  opacity: 1;
}
#top .copy1 {
  position: absolute;
  width: 12.34%;
  top: 25.61%;
  left: 39.33%;
  opacity: 0;
  filter: blur(10px);
  transition: 1s;
  transform: translateY(5px);
}
@media screen and (max-width: 768px) {
  #top .copy1 {
    width: 39.29%;
    top: 7.75%;
    left: 33.35%;
  }
}
#top .copy1.active {
  filter: blur(0px);
  opacity: 1;
  transform: translateY(0px);
}
#top .copy2 {
  position: absolute;
  width: 49.45%;
  top: 94.17%;
  left: 44.28%;
  opacity: 0;
  filter: blur(5px);
  transition: 1s;
}
@media screen and (max-width: 768px) {
  #top .copy2 {
    width: 90.96%;
    top: 76.19%;
    left: 4.59%;
  }
}
#top .copy2.active {
  filter: blur(0px);
  opacity: 1;
}

#info {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 20px 20px 30px;
  }
}
#info .btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
#info .btns li {
  max-width: 120px;
  position: relative;
  width: calc(50% - 10px);
}
#info .btns li a .base {
  position: relative;
  transform: rotate(0deg);
  transition: 0.4s;
}
#info .btns li a .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#info .btns li a:hover .base {
  transform: rotate(15deg);
}
#info .mvtk #mvtk-widgets-container {
  margin: 0 auto 30px;
}

/*trailer------------------------*/
#trailer .section_inner {
  max-width: 900px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
    padding: 0 20px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner .section_main {
    flex-direction: column;
  }
}
#trailer .section_inner .section_main h2 {
  writing-mode: sideways-rl;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner .section_main h2 {
    writing-mode: horizontal-tb;
    text-align: center;
    margin-left: 0;
    margin-bottom: 5px;
  }
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner .section_main .youtube_embed {
    border-radius: 10px;
  }
}
#trailer .section_inner .section_main .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trailer_tab {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trailer_tab li {
  width: 50%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .trailer_tab li {
    width: 100%;
  }
}
.trailer_tab li a {
  height: 3em;
  width: 100%;
  display: block;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background-color: #3a3a3a;
  color: #FEFEFE;
}
@media screen and (max-width: 768px) {
  .trailer_tab li a {
    height: 3em;
  }
}
.trailer_tab .tab.active a {
  background-color: #002007;
  pointer-events: none;
}
.trailer_tab .tab.active a::before {
  content: "● ";
}
.trailer_tab .tab.active a:hover {
  transition: 0.4s;
}

/*-------------------------------*/
#comment .section_inner {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner {
    padding: 0 20px;
  }
}
#comment .section_inner .section_main {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main {
    max-width: 500px;
  }
}
#comment .section_inner .section_main h2 {
  text-align: center;
  margin-bottom: 40px;
}
#comment .section_inner .section_main .comment_items .comment_item {
  margin-bottom: 60px;
}
#comment .section_inner .section_main .comment_items .comment_item:last-of-type {
  margin-bottom: 0;
}
#comment .section_inner .section_main .comment_items .comment_item hr {
  border: 0;
  width: 50%;
  height: 1px;
  margin-bottom: 0.75em;
  margin-top: 0.75em;
  border-top: 1px dashed #333;
}
#comment .section_inner .section_main .comment_items .comment_item .names {
  display: flex;
  gap: 1em;
  align-items: flex-end;
  margin-bottom: 0.5em;
  line-height: 1;
}
#comment .section_inner .section_main .comment_items .comment_item .names .name {
  font-size: 2em;
  letter-spacing: 0.2em;
}
#comment .section_inner .section_main .comment_items .comment_item .names .role {
  letter-spacing: 0.2em;
  font-size: 1.2em;
}
#comment .section_inner .section_main .comment_items .comment_item .names .role span {
  font-size: 0.8em;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_body p {
  margin-bottom: 0.5em;
  text-align: justify;
  line-height: 1.8;
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .comment_items .comment_item .comment_body p {
    font-size: 1em;
  }
}/*# sourceMappingURL=style.css.map */