@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: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  background-color: #000;
}
@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/jinja_main.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .fixed_bg {
    background-image: url(img/jinja_main-sp.jpg);
  }
}

/*-------------------------------*/
/*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;
}
.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-------------------*/
@keyframes noise {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px 800px;
  }
}
.noise_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg_l.webp);
  background-repeat: repeat;
  background-size: 200px;
  animation: noise 2s steps(10) infinite;
  line-height: 0;
  opacity: 0.4;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .noise_overlay {
    background-size: 200px;
  }
}

/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-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: #000;
  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 {
  max-width: 380px;
  width: 100%;
  margin: 12vw auto 0px;
}
@media screen and (max-width: 768px) {
  #top {
    margin: 38vw auto 0px;
  }
}
#top .title {
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 45%;
    margin-bottom: 50px;
  }
}
#top .release {
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 70%;
    margin-bottom: 30px;
  }
}
#top .billing {
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 768px) {
  #top .billing {
    width: 80%;
  }
}

#info {
  padding: 80px 50px;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 60px 20px;
  }
}
#info .link-x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  margin: 0 auto 40px;
  background-color: rgba(0, 0, 0, 0.32);
  padding-left: 2em;
  transition: 0.2s;
}
#info .link-x::after {
  content: "Official X";
  color: #FFF;
  letter-spacing: 0.2em;
  margin-left: 1em;
  padding: 0 2em 0 1em;
  border-left: dotted 1px rgba(255, 255, 255, 0.5);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#info .link-x img {
  width: 24px;
}
#info .link-x:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
#info .link-theater {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  margin: 0 auto 30px;
  background-color: rgba(0, 0, 0, 0.32);
  padding-left: 2em;
  transition: 0.2s;
}
#info .link-theater::after {
  content: "劇場情報";
  color: #FFF;
  letter-spacing: 0.2em;
  margin-left: 1em;
  padding: 0 2em 0 1em;
  border-left: dotted 1px rgba(255, 255, 255, 0.5);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#info .link-theater img {
  width: 24px;
}
#info .link-theater:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
#info .tkts {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #info .tkts {
    gap: 10px;
  }
}
#info .tkts li {
  max-width: 200px;
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  #info .tkts li {
    width: calc(50% - 5px);
  }
}
#info .tkts li a {
  display: block;
  transition: 0.2s;
}
#info .tkts li a:hover {
  filter: brightness(80%);
}
#info .mvtk {
  margin: 0 auto;
}
#info .mvtk #mvtk-widgets-container {
  margin: 0 auto;
}

#news-top .section_inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #news-top .section_inner {
    max-width: 500px;
  }
}
#news-top .section_inner .section_main {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main {
    padding: 0 20px;
  }
}
#news-top .section_inner .section_main h2 {
  text-align: center;
  text-transform: uppercase;
}
#news-top .section_inner .section_main .news-item {
  background-color: rgba(0, 0, 0, 0.7);
  border: solid 1px rgba(255, 255, 255, 0.32);
  padding: 30px 50px;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main .news-item {
    padding: 30px 20px;
  }
}
#news-top .section_inner .section_main .news-item a {
  color: #ffcece;
  transition: 0.2s;
}
#news-top .section_inner .section_main .news-item a:hover {
  color: #FFF;
}
#news-top .section_inner .section_main .news-item .news-date {
  margin-bottom: 1em;
  letter-spacing: 0.1em;
}
#news-top .section_inner .section_main .news-item .news-title {
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.2em;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: solid 1px rgba(255, 255, 255, 0.32);
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main .news-item .news-title {
    font-size: 1.1em;
  }
}
#news-top .section_inner .section_main .news-item p {
  line-height: 1.8;
  margin-bottom: 1em;
}
#news-top .section_inner .section_main .news-item .news-img {
  margin: 1em auto;
  display: block;
  width: 100%;
  max-width: 600px;
}
#news-top .section_inner .section_main .news-item .news-img .img_01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#news-top .section_inner .section_main .news-item .news-img .img_01 div {
  filter: drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.4));
}
#news-top .section_inner .section_main .news-item .news-img .img_01 div:first-of-type {
  width: 62%;
}
#news-top .section_inner .section_main .news-item .news-img .img_01 div:last-of-type {
  width: 32%;
  margin-top: 5px;
  transform: rotate(3deg);
}/*# sourceMappingURL=style.css.map */