@charset "UTF-8";
/* CSS Document */
/*WEB FONTS
font-family: 'Archivo Black', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
*/
/*----------------------
COMMON
----------------------*/
html {
  font-size: 62.5%;
  /*16px×62.5%=10px*/
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  color: #000;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}

img {
  width: 100%;
  height: auto;
}

.br-pc {
  display: block;
}

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

.br-sp {
  display: none;
}

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

.pc-only {
  display: block;
}

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

.sp-only {
  display: none;
}

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

.wrapper {
  padding: 0 64px;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .wrapper {
    max-width: 100%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

/*--------------------
Loading Page
--------------------*/
.loading {
  background: #000;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999999;
  opacity: 1.0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loader_img {
  width: 20%;
  min-height: 0%;
  -webkit-animation: flash .07s infinite;
          animation: flash .07s infinite;
}

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

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

.loader_img img {
  width: 100%;
}

.spinner {
  margin: 16px 0 0 0;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #fff;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

.loading.fadeout {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  opacity: 0;
}

/*----------------------
PC MENU
----------------------*/
.nav_box-pc {
  font-family: 'Archivo Black', sans-serif;
  font-style: italic;
  width: 100%;
  background-color: #000;
  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;
  z-index: 20;
}

.fixed {
  position: fixed;
  top: 0;
  right: 0;
}

#menu_list-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*EFFECT*/
#menu_list-pc li a {
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
  padding: 2px 10px;
  margin: 5px 2.5px;
  border: 2.5px solid #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  outline: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

#menu_list-pc li a::before,
#menu_list-pc li a::after {
  position: absolute;
  top: -2.5px;
  left: -2.5px;
  z-index: 2;
  content: '';
  width: 0;
  height: 0;
  border: 2.5px solid transparent;
}

#menu_list-pc li a:hover {
  color: #FFF;
}

#menu_list-pc li a:hover::before,
#menu_list-pc li a:hover::after {
  width: 100%;
  height: 100%;
}

#menu_list-pc li a:hover::before {
  border-top-color: #FFF;
  border-right-color: #FFF;
  -webkit-transition: width .2s, height .2s .2s;
  transition: width .2s, height .2s .2s;
}

#menu_list-pc li a:hover::after {
  border-bottom-color: #FFF;
  border-left-color: #FFF;
  -webkit-transition: height .2s, width .2s .2s;
  transition: height .2s, width .2s .2s;
}

.current {
  border: solid 2.5px #FFF !important;
  -webkit-animation: flash .07s infinite;
          animation: flash .07s infinite;
}

.constr {
  color: #333 !important;
}

#nav_box-sp {
  display: none;
}

.section_title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  font-style: italic;
  margin: 0 auto 64px auto;
  padding: 80px 0 0 0;
  max-width: 1100px;
  width: 96%;
  font-size: 5rem;
  color: #000;
  border-bottom: solid 2px #000;
  line-height: 1.5;
  text-transform: lowercase;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .section_title {
    font-size: 2.5rem;
    width: 80%;
    padding: 40px 0 0 0;
  }
}

.section_footer {
  height: 0;
  line-height: 0;
}

/*
TRAILER
*/
/*----------------------
TRAILER窓
----------------------*/
.trailer {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  opacity: 0;
  display: none;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.trailer.on {
  opacity: 1;
}

.trailer_overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  opacity: 1;
  z-index: 999997;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.close_btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 999999;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  opacity: 0;
  cursor: pointer;
}

.trailer.on .close_btn {
  opacity: 1;
}

.close_btn::before,
.close_btn::after {
  position: absolute;
  top: calc(50% - 1px);
  left: -1px;
  content: "";
  display: block;
  width: 48px;
  border-top: 3px solid #fff;
}

.close_btn::before {
  -webkit-transform: skewY(-45deg);
          transform: skewY(-45deg);
}

.close_btn::after {
  -webkit-transform: skewY(45deg);
          transform: skewY(45deg);
}

.close_btn:hover {
  opacity: 0.5 !important;
}

.trailer.on .trailer_overlay {
  opacity: 1;
}

.trailer .trailer_inner {
  position: absolute;
  top: calc(50% - 30px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.9, 0.9);
          transform: translate(-50%, -50%) scale(0.9, 0.9);
  width: 80%;
  padding-bottom: 45%;
  height: 1;
  z-index: 999998;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.trailer.on .trailer_inner {
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
          transform: translate(-50%, -50%) scale(1, 1);
}

#youtube1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  opacity: 1;
}

.trailer.on #youtube1 {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
}

/* 
NOTIFICATION
 */
.notification {
  opacity: 0;
}

.notification_inner {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60%;
  max-width: 1000px;
  color: #000;
  z-index: 99998;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffb4), to(#feffe0));
  background: linear-gradient(#ffffb4 0%, #feffe0 100%);
  padding: 100px 80px 50px;
  -webkit-box-shadow: 1px 1px 5px rgba(255, 255, 255, 0.9);
          box-shadow: 1px 1px 5px rgba(255, 255, 255, 0.9);
  overflow-y: auto;
}

.notification_header {
  font-size: 2.4rem;
  text-align: center;
  font-family: serif;
  font-weight: bold;
  padding-bottom: 60px;
}

.notification_main {
  font-size: 1.6rem;
  padding-bottom: 50px;
}

.notification_footer {
  font-size: 1.6rem;
  text-align: right;
}

.notification_overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  z-index: 99997;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.notification_close_btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 99999;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  opacity: 1;
  cursor: pointer;
}

.notification_close_btn::before,
.notification_close_btn::after {
  position: absolute;
  top: calc(50% - 1px);
  left: -1px;
  content: "";
  display: block;
  width: 48px;
  border-top: 3px solid #fff;
}

.notification_close_btn::before {
  -webkit-transform: skewY(-45deg);
          transform: skewY(-45deg);
}

.notification_close_btn::after {
  -webkit-transform: skewY(45deg);
          transform: skewY(45deg);
}

.notification_close_btn:hover {
  opacity: 0.5 !important;
}

/*
WIDGETS
*/
.spotify_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 2px;
  right: 2px;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 5px;
  padding: 5px;
  color: #fff;
  z-index: 10;
  -webkit-transition: 2s;
  transition: 2s;
}

.spotify_box_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*background-color: #fff;*/
  color: #fff;
}

.spotify_txt {
  padding: 0 0 5px 0;
}

.spotify_icon::before {
  font-family: 'Font Awesome 5 Free';
  content: "\f00d";
  font-weight: 700;
  padding: 10px;
  font-size: 2rem;
}

.spotify_icon:hover {
  cursor: pointer;
}

.spotify_icon.spotify_icon_off {
  -webkit-animation: swing .5s alternate infinite;
          animation: swing .5s alternate infinite;
}

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

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

.spotify_icon.spotify_icon_off::before {
  font-family: 'Font Awesome 5 Free';
  content: '\f001';
  font-weight: 700;
  font-size: 2rem;
}

.spotify_icon.spotify_icon_off:hover {
  cursor: pointer;
}

.spotify_box_left {
  padding: 0 0 10px 20px;
}

.spotify_txt {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
}

.spotify_txt span {
  font-size: 2rem;
  font-weight: 700;
}

.spotify_player {
  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;
}

.spotify_sp {
  display: none;
}

/*
TOP
*/
.top_outer {
  position: relative;
  width: 100%;
  background-image: url("../img/bg.jpg");
  background-repeat: repeat;
  background-size: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: noise_anima 1s steps(10) infinite;
          animation: noise_anima 1s steps(10) infinite;
}

@media screen and (max-width: 767px) {
  .top_outer {
    height: 90vh;
  }
}

@-webkit-keyframes noise_anima {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 123px 456px;
  }
}

@keyframes noise_anima {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 123px 456px;
  }
}

.ticket_banner_pc {
  z-index: 2;
  position: absolute;
  width: 50%;
  max-width: 500px;
  bottom: 24px;
  right: 2%;
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ticket_banner_pc div {
  width: 48%;
  -webkit-box-shadow: 0px 0px 10px 3px rgba(255, 255, 255, 0.1);
          box-shadow: 0px 0px 10px 3px rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
  margin-right: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ticket_banner_pc div:hover {
  opacity: 0.7;
  -webkit-transition: .4s;
  transition: .4s;
}

.ticket_banner_pc div.first {
  width: 58%;
}

.ticket_banner_pc div.filmarks2 {
  width: 38%;
}

@media screen and (max-width: 767px) {
  .ticket_banner_pc {
    display: none;
  }
}

.top_left {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0px 24px 32px 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top_left_inner {
  width: 100%;
}

.copy_kareha {
  opacity: 0;
}

.copy_kareha_sp {
  display: none;
}

.title {
  width: 100%;
  padding: 16px 0 16px 0;
  opacity: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*	animation: flash .01s infinite;*/
}

.title img {
  width: 100%;
}

.copy_densetsu {
  width: 90%;
  padding: 0 0 16px 0;
  opacity: 0;
}

.copy_densetsu img {
  width: 100%;
}

.img_copy_densetsu_sp {
  display: none;
}

.release {
  width: 80%;
  padding: 10px 0 10px 0;
  opacity: 0;
}

.release .release_release {
  padding-bottom: 6px;
}

.release .theater_btn {
  width: 70%;
}

@media screen and (max-width: 767px) {
  .release .theater_btn {
    width: 80%;
    margin: 0 auto;
  }
}

.release .theater_btn:hover {
  opacity: 0.7;
  -webkit-transition: .4s;
  transition: .4s;
}

.release img {
  width: 100%;
}

.billing_en {
  width: 90%;
  padding: 0 0 10px 0;
  opacity: 0;
}

.billing_en img {
  width: 100%;
}

.ticket_banner_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  padding: 0 0 10px 0;
  opacity: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ticket_banner {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ticket_banner:first-of-type {
  padding: 0 5px 0 0;
}

.ticket_banner:last-of-type {
  padding: 0 0 0 5px;
}

.ticket_banner a:hover {
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 0.7;
}

.ticket_banner img {
  width: 100%;
}

.bnr_list {
  opacity: 0;
}

.bnr_list li {
  padding-bottom: 8px;
  width: 50%;
  cursor: pointer;
  /* filter: drop-shadow(3px 3px 1px rgba(255,255,255,0.5)); */
}

.share_btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1;
  opacity: 0;
}

.share_btn_item {
  padding: 3px;
}

.share_btn_item:first-of-type {
  padding: 3px 3px 3px 0;
}

.fb_iframe_widget > span {
  vertical-align: baseline !important;
}

.top_center {
  width: 35%;
  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;
  padding: 0 0 48px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.copy_kareha {
  width: 3%;
}

.copy_kareha img {
  width: 100%;
}

.top_right {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
  padding: 16px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 auto;
  position: relative;
}

.liam {
  line-height: 0;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  margin: 0 0 0 auto;
}

.liam img {
  height: 100%;
  width: auto;
}

.header_lower_sp {
  display: none;
}

/*
TRAILER
*/
#trailer_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  #trailer_sp {
    display: block;
    background-image: url("../img/bg_d.png");
    background-repeat: repeat;
  }
  #trailer_sp .section_title {
    color: #000;
    margin: 0 auto 40px auto;
  }
  #trailer_sp .trailer-sp {
    width: 60%;
    margin: 0 auto;
    padding-bottom: 64px;
  }
  #trailer_sp .youtube-sp {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }
  #trailer_sp .youtube-sp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/*
INTRODUCTION
*/
#introduction .section_title {
  color: #fff;
  border-bottom: solid 2px #FFF;
}

#introduction .content_block_1 {
  background-image: url("../img/bg_intro.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

@media screen and (max-width: 1024px) {
  #introduction .content_block_1 {
    background-attachment: inherit;
  }
}

@media screen and (max-width: 767px) {
  #introduction .content_block_1 {
    background-position: 17% center;
    background-attachment: inherit;
  }
}

#introduction .content_block_1_inner {
  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;
  padding: 0 0 100px 0;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  #introduction .content_block_1_inner {
    display: block;
  }
}

.content_block_1 .left_box {
  width: 45%;
  padding: 0 32px;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  .content_block_1 .left_box {
    padding: 0;
  }
}

.line_stage {
  width: 100%;
  margin: 0 auto;
  -webkit-animation: flash .1s infinite;
          animation: flash .1s infinite;
}

@media screen and (max-width: 767px) {
  .line_stage {
    width: 100%;
    padding: 0 0 24px 0;
  }
}

.img_line_stageno_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .img_line_stageno_sp {
    width: 100%;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .img_line_stageno_pc {
    display: none;
  }
}

.content_block_1 .right_box {
  width: 55%;
  padding: 0 24px;
}

@media screen and (max-width: 767px) {
  .content_block_1 .right_box {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .content_block_1 .left_box {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.copy_hajimete {
  width: 100%;
  padding: 0 0 24px 0;
}

@media screen and (max-width: 767px) {
  .copy_hajimete {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 0 16px 0;
  }
}

.intro_txt_1 {
  color: #fff;
}

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

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

.sakaime {
  line-height: 0;
}

#introduction .content_block_2 {
  background-image: url("../img/bg2.jpg");
  background-size: cover;
  background-color: #000;
  background-repeat: no-repeat;
}

#introduction .content_block_2_inner {
  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;
  padding: 64px 0;
}

@media screen and (max-width: 767px) {
  #introduction .content_block_2_inner {
    display: block;
    padding: 40px 0 64px 0;
  }
}

.content_block_2 .left_box {
  width: 65%;
  padding: 0 24px;
}

@media screen and (max-width: 767px) {
  .content_block_2 .left_box {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
  }
}

.content_block_2 .right_box {
  width: 35%;
  padding: 0 24px;
}

@media screen and (max-width: 767px) {
  .content_block_2 .right_box {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
  }
}

.copy_anataha {
  padding: 0 0 24px 0;
}

.img_copy_anataha_pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .img_copy_anataha_pc {
    display: none;
  }
}

.img_copy_anataha_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .img_copy_anataha_sp {
    display: block;
  }
}

.intro_txt_2 {
  color: #fff;
  width: 90%;
  margin: 0 auto 0 0;
}

@media screen and (max-width: 767px) {
  .intro_txt_2 {
    width: 100%;
    padding: 0 0 32px 0;
  }
}

#profile {
  background-image: url("../img/bg_profile.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

@media screen and (max-width: 1024px) {
  #profile {
    background-attachment: inherit;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  #profile {
    background-attachment: inherit;
    background-size: cover;
  }
}

#profile .section_title {
  color: #fff;
  border-bottom: solid 2px #FFF;
}

#profile .container {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  #profile .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#profile .container .left {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 65%;
}

@media screen and (max-width: 767px) {
  #profile .container .left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}

#profile .container .left .name_liam {
  width: 40%;
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  #profile .container .left .name_liam {
    width: 80%;
  }
}

#profile .container .left .txt_liam {
  color: #fff;
  padding-bottom: 40px;
}

#profile .container .right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 35%;
  padding-left: 40px;
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  #profile .container .right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 70%;
    padding-left: 0;
    margin: 0 auto;
  }
}

#profile .chart {
  margin-top: 16px;
  padding-bottom: 80px;
}

#profile .chart .scroll {
  color: #fff;
  font-weight: bold;
}

#profile .chart .chart_inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  overflow-x: auto;
}

#profile .chart .chart_inner .inner {
  margin: 0 auto;
  max-width: 70%;
  min-width: 600px;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  padding: 40px;
  border: solid 3px #fff;
}

@media screen and (max-width: 767px) {
  #profile .chart .chart_inner .inner {
    padding: 16px;
  }
}

#staff {
  background-image: url("../img/bg2.jpg");
  background-size: 100% 100%;
  background-color: #000;
  color: #fff;
  padding-bottom: 40px;
}

#staff .section_title {
  color: #fff;
  border-bottom: solid 2px #FFF;
}

#staff .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 24px;
}

@media screen and (max-width: 767px) {
  #staff .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 32px;
  }
}

#staff .block :last-of-type {
  padding-bottom: 0;
}

#staff .block .left {
  width: 50%;
  margin: 0 40px 32px 0;
}

@media screen and (max-width: 767px) {
  #staff .block .left {
    width: 100%;
    margin: 0 0 32px 0;
  }
}

#staff .block .left .staff_name {
  width: 60%;
  padding-bottom: 8px;
}

@media screen and (max-width: 767px) {
  #staff .block .left .staff_name {
    width: 90%;
  }
}

#staff .block .left .staff_txt {
  font-size: 1.3rem;
}

#staff .block .right {
  width: 50%;
  background-color: rgba(255, 0, 0, 0.15);
  margin: 0 auto 33px auto;
  padding: 16px 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  #staff .block .right {
    width: 100%;
  }
}

#staff .block .right .comment {
  width: 15%;
}

@media screen and (max-width: 767px) {
  #staff .block .right .comment {
    width: 30%;
    margin: 0 auto;
  }
}

#staff .block .right .comment_txt {
  font-size: 1rem;
}

#comment {
  background-image: url("../img/bgc.jpg");
  background-attachment: fixed;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media screen and (max-width: 767px) {
  #comment {
    background-attachment: inherit;
  }
}

#comment .section_title {
  color: #fff;
  border-bottom: solid 2px #FFF;
}

#comment .telop {
  width: 60%;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #comment .telop {
    width: 85%;
    margin: 0px auto;
  }
}

.comments {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (max-width: 767px) {
  .comments {
    display: block;
    padding-top: 24px;
    padding-bottom: 80px;
  }
}

.comments .box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 12px 0;
  border: solid 4px rgba(0, 0, 0, 0.6);
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .comments .box {
    width: 100%;
    margin: 12px 0px;
  }
}

.comments .box .inner {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 24px 10px 19px;
  border: solid 1px #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-transition: .4s;
  transition: .4s;
}

.comments .box .inner:hover {
  border: solid 1px #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.comments .box .inner .upper {
  color: #fff;
  width: 90%;
  margin: 0 auto;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .comments .box .inner .upper {
    font-size: 1.1rem;
  }
}

.comments .box .inner .upper p {
  padding-bottom: 6px;
}

.comments .box .inner .upper .big {
  font-size: 1.8rem;
  font-weight: 700;
  font-style: serif;
  line-height: 1.6;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(255, 247, 0, 0.2)));
  background: linear-gradient(transparent 60%, rgba(255, 247, 0, 0.2) 60%);
}

@media screen and (max-width: 767px) {
  .comments .box .inner .upper .big {
    font-size: 1.4rem;
  }
}

.comments .box .inner .lower {
  text-align: right;
  color: #FFF100;
  width: 90%;
  margin: 0 auto;
  line-height: 1.4;
  font-style: italic;
}

.comments .box .inner .lower hr {
  height: 1px;
  border: 0;
  background-color: #333;
  margin: 16px 0;
}

.comments .box .inner .lower .name {
  font-weight: 700;
  font-size: 2.1rem;
  padding-bottom: 2px;
}

@media screen and (max-width: 767px) {
  .comments .box .inner .lower .name {
    font-size: 1.6rem;
  }
}

.comments .box .inner .lower .post {
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .comments .box .inner .lower .post {
    font-size: 1rem;
  }
}

.comments .box.trans {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .comments .box.trans {
    display: none;
  }
}

.img_section_big {
  background-image: url("../img/img_b1.jpg");
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  height: 70vh;
  z-index: 1;
  line-height: 0;
}

@media screen and (max-width: 1024px) {
  .img_section_big {
    height: 40vh;
    background-attachment: inherit;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .img_section_big {
    background-attachment: inherit;
    height: 50vh;
  }
}

.img_section_big2 {
  background-image: url("../img/imgs2_Ver-1.0.1.jpg");
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  height: 70vh;
  z-index: 1;
  line-height: 0;
}

@media screen and (max-width: 1024px) {
  .img_section_big2 {
    background-position: center right;
    background-attachment: inherit;
    background-size: cover;
    height: 40vh;
  }
}

@media screen and (max-width: 767px) {
  .img_section_big2 {
    background-attachment: inherit;
    background-position: center center;
    height: 15vh;
  }
}

.img_section_big4 {
  background-image: url("../img/img_b3.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  height: 70vh;
  z-index: 1;
  line-height: 0;
}

@media screen and (max-width: 1024px) {
  .img_section_big4 {
    height: 40vh;
    background-attachment: inherit;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .img_section_big4 {
    background-attachment: inherit;
    height: 30vh;
  }
}

.img_section_big3 {
  background-image: url("../img/img_b4.jpg");
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  height: 70vh;
  z-index: 1;
  line-height: 0;
}

@media screen and (max-width: 1024px) {
  .img_section_big3 {
    height: 40vh;
    background-attachment: inherit;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .img_section_big3 {
    background-attachment: inherit;
    height: 30vh;
    background-position: top left;
  }
}

.img_section_big5 {
  z-index: 1;
  line-height: 0;
  width: 100%;
}

.img_section_big_overlay {
  background-image: url("../img/bg_t.png");
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: 2;
  -webkit-animation: noise_anima 1s steps(10) infinite, none;
          animation: noise_anima 1s steps(10) infinite, none;
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .img_section_big_overlay {
    background-size: 320%;
  }
}

.img_section_title {
  opacity: 0.1;
  width: 40%;
  margin-bottom: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.img_section_title img {
  width: 100%;
}

.imgs {
  width: 100%;
  line-height: 0;
}

/*
FOOTER
*/
.footer {
  background-color: #000;
  padding: 0 0 32px 0;
}

.billing_jp {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 0 0 0;
}

.footer .share_btn_list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1024px) {
  .loader_img {
    width: 40%;
  }
  .top_left {
    width: 40%;
  }
  .top_center {
    width: 10%;
  }
  .copy_kareha {
    width: 18%;
  }
  .top_right {
    width: 50%;
  }
  .ticket_banner_pc {
    position: absolute;
    width: 40%;
    max-width: 250px;
    bottom: 16px;
    right: 2%;
    line-height: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ticket_banner_pc div {
    -webkit-box-shadow: 0px 0px 10px 3px rgba(255, 255, 255, 0.1);
            box-shadow: 0px 0px 10px 3px rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
  }
  .ticket_banner_pc div:hover {
    opacity: 0.7;
    -webkit-transition: .4s;
    transition: .4s;
  }
}

@media screen and (max-width: 767px) {
  .hm_btn {
    display: block;
  }
  .nav_box-pc {
    display: none;
  }
  #nav_box-sp {
    display: block;
  }
  .drawer-nav {
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    width: 100%;
    height: 100%;
    background-color: #000;
    position: fixed;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    z-index: 99;
    overflow-y: scroll;
    background-image: url("../img/bg.jpg");
    background-size: 320%;
    -webkit-animation: noise_anima 1s steps(10) infinite;
            animation: noise_anima 1s steps(10) infinite;
  }
  .drawer-menu {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 50px;
  }
  .menu_item {
    margin: 10px 15px;
    border: solid 2.5px #FFF;
  }
  .menu_item > a {
    font-size: 2.4rem;
    color: #FFF;
  }
  /*
	TOP
	*/
  .top_outer {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-size: 320%;
  }
  .top_left {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    padding: 50px 0 0 0;
  }
  .top_left_inner_upper {
    position: absolute;
    width: 100%;
    z-index: 2;
    bottom: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px;
  }
  .top_left_inner_lower {
    display: none;
  }
  .top_center {
    display: none;
  }
  .top_right {
    position: absolute;
    width: 80%;
    top: 0px;
    right: 0px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 30px 0 0 0;
  }
  .copy_kareha_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 48px 0 32px 10%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    opacity: 0;
  }
  .copy_kareha_sp img {
    width: 3.5%;
    height: auto;
  }
  .title {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .copy_densetsu {
    margin: 0 auto;
    padding: 0;
  }
  .img_copy_densetsu_sp {
    display: block;
  }
  .img_copy_densetsu_pc {
    display: none;
  }
  .header_lower_sp {
    display: block;
    background-color: #000;
    padding: 24px 0;
  }
  .release {
    margin: 0 auto;
  }
  .billing_en {
    width: 90%;
    margin: 0 auto;
  }
  .ticket_banner_box {
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }
  .banner_com {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .ticket_banner_com_pc {
    display: none;
  }
  .bnr_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .bnr_list li {
    width: 65%;
    max-width: 400px;
  }
  .share_btn_list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .spotify_pc {
    display: none;
  }
  .spotify_sp {
    display: block;
  }
  /* 
	NOTIFICATION
	*/
  .notification_inner {
    top: 0;
    width: 90%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    margin: 16px 0;
    padding: 80px 16px;
    max-height: 100vh;
  }
  .notification_header {
    font-size: 1.8rem;
    padding-bottom: 32px;
  }
  .notification_main {
    font-size: 1.4rem;
  }
  .notification_close_btn,
  .notification_close_btn::before,
  .notification_close_btn::after {
    border-color: #000;
  }
}
/*# sourceMappingURL=style.css.map */