@charset "UTF-8";
body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
}

img {
  width: 100%;
}

ul li {
  list-style: none;
}

table {
  border-spacing: 0;
}

body * {
  color: #000;
  line-height: 1;
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  text-decoration: none;
  vertical-align: baseline;
  display: block;
}

a:hover, button:hover {
  opacity: 0.8;
}

.sp_item {
  display: none;
}
@media screen and (max-width: 750px) {
  .sp_item {
    display: block;
  }
}

.pc_item {
  display: block;
}
@media screen and (max-width: 750px) {
  .pc_item {
    display: none;
  }
}

.lp_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 2000px;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp_wrap {
    width: 100vw;
  }
}

.inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .inner {
    width: 100vw;
  }
}

.btn {
  width: 540px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 750px) {
  .btn {
    width: 72vw;
  }
}

.tody_txt {
  width: 652px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .tody_txt {
    width: 86.93vw;
  }
}

/* ========================================
  ファーストビュー
======================================== */
.fv_area {
  position: relative;
  margin: 0 auto;
}
.fv_area h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 300px;
  width: 750px;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .fv_area h1 {
    top: 40vw;
    width: 100vw;
  }
}
.fv_area .fv_marque {
  overflow: hidden;
  width: 100%;
}
.fv_area .fv_marque_in {
  display: flex;
  width: fit-content;
}
.fv_area .fv_marque_in_l {
  animation: marque_l 80s linear infinite;
}
.fv_area .fv_marque_in_r {
  animation: marque_r 80s linear infinite;
}
.fv_area .marque_item {
  flex: 0 0 auto;
}
.fv_area .marque_item img {
  height: 540px;
  width: auto;
}
@media screen and (max-width: 750px) {
  .fv_area .marque_item img {
    height: 72vw;
  }
}
@keyframes marque_l {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / 2));
  }
}
@keyframes marque_r {
  from {
    transform: translateX(calc(-100% / 2));
  }
  to {
    transform: translateX(0);
  }
}
/*./fv*/
/* ========================================
  date_area
======================================== */
.date_area {
  background: #df002d;
  padding-bottom: 110px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 750px) {
  .date_area {
    padding-bottom: 14.67vw;
  }
}

/*./date_area*/
/*固定背景*/
.background-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/contents_bg.jpg") no-repeat center center;
  background-size: 2000px 1029px;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .background-fixed {
    display: none;
  }
}

.contents_wrap {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 750px) {
  .contents_wrap {
    width: 100vw;
  }
}

/*吸着左*/
.l_menu {
  position: fixed;
  left: calc(50% - 1000px);
  top: 190px;
  width: 625px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
@media screen and (max-width: 2000px) {
  .l_menu {
    left: 0;
    top: 9.5vw;
    width: calc((100vw - 750px)/2);
  }
}
.l_menu.on {
  visibility: visible;
  opacity: 1;
}
.l_menu .left_qr {
  width: 330px;
  margin: 0 auto;
  padding-left: 69px;
}
@media screen and (max-width: 2000px) {
  .l_menu .left_qr {
    width: 16.5vw;
    padding-left: 3.45vw;
  }
}
@media screen and (max-width: 1300px) {
  .l_menu .left_qr {
    display: none;
  }
}
.l_menu .left_bnr {
  position: absolute;
  top: 106px;
  width: 70px;
  margin: 0 auto;
}
@media screen and (max-width: 2000px) {
  .l_menu .left_bnr {
    top: 5.3vw;
    width: 3.5vw;
  }
}
@media screen and (max-width: 1300px) {
  .l_menu .left_bnr {
    width: 70px;
  }
}
@media screen and (max-width: 980px) {
  .l_menu .left_bnr {
    display: none;
  }
}

/*吸着右*/
.r_menu {
  position: fixed;
  right: -625px;
  top: 50%;
  transform: translateY(-50%);
  width: 625px;
  height: 100%;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 2000px) {
  .r_menu {
    width: calc((100vw - 750px)/2);
  }
}
.r_menu.on {
  right: calc(50% - 1000px);
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 2000px) {
  .r_menu.on {
    right: 0;
  }
}
.r_menu .r_tit {
  position: absolute;
  top: 27px;
  right: 0;
  width: 210px;
}
@media screen and (max-width: 2000px) {
  .r_menu .r_tit {
    top: 1.35vw;
    width: 10.5vw;
  }
}
@media screen and (max-width: 1580px) {
  .r_menu .r_tit {
    display: none;
  }
}
.r_menu ul {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 59px;
}
@media screen and (max-width: 2000px) {
  .r_menu ul {
    margin-left: 2.95vw;
  }
}
@media screen and (max-width: 1450px) {
  .r_menu ul {
    margin-left: 2vw;
  }
}
.r_menu ul li a {
  width: 210px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .r_menu ul li a {
    display: none;
  }
}

.contents_area {
  width: 750px;
}
@media screen and (max-width: 750px) {
  .contents_area {
    width: 100vw;
  }
}

/* ========================================
  about_area
======================================== */
.about_area {
  background: #000;
}

/*./about_area*/
/* ========================================
  movie_area
======================================== */
.movie_area {
  background: url("../images/movie_bg.jpg") no-repeat top center;
  height: 880px;
}
@media screen and (max-width: 750px) {
  .movie_area {
    height: 117.33vw;
  }
}
.movie_area .movie_contents {
  padding-top: 76px;
}
@media screen and (max-width: 750px) {
  .movie_area .movie_contents {
    padding-top: 10.13vw;
  }
}
.movie_area .movie_img {
  width: 672px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .movie_area .movie_img {
    width: 89.6vw;
  }
}
.movie_area .movie {
  width: 672px;
  height: 378px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .movie_area .movie {
    width: 89.6vw;
    height: 50.4vw;
  }
}
.movie_area .movie iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.movie_area .movie_sns_list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  gap: 0 50px;
}
@media screen and (max-width: 750px) {
  .movie_area .movie_sns_list {
    margin-top: 8vw;
    gap: 0 6.67vw;
  }
}
.movie_area .movie_sns_list li a {
  width: 90px;
}
@media screen and (max-width: 750px) {
  .movie_area .movie_sns_list li a {
    width: 12vw;
  }
}

/*./movie_area*/
/* ========================================
  profile_area
======================================== */
.profile_area {
  background: #000;
  padding-bottom: 133px;
}
@media screen and (max-width: 750px) {
  .profile_area {
    padding-bottom: 17.73vw;
  }
}
.profile_area .profile_hp {
  margin-top: 41px;
}
@media screen and (max-width: 750px) {
  .profile_area .profile_hp {
    margin-top: 5.47vw;
  }
}
.profile_area .profile_insta {
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .profile_area .profile_insta {
    margin-top: 6.67vw;
  }
}
.profile_area .profile_x {
  margin-top: 38px;
}
@media screen and (max-width: 750px) {
  .profile_area .profile_x {
    margin-top: 5.07vw;
  }
}

/*./profile_area*/
/* ========================================
  highlights_area
======================================== */
.highlights_area {
  overflow-x: hidden;
}
.highlights_area .highlights_tit_area {
  position: relative;
}
.highlights_area .highlights_marque {
  position: absolute;
  left: 90px;
  top: 310px;
}
@media screen and (max-width: 750px) {
  .highlights_area .highlights_marque {
    left: 12vw;
    top: 41.33vw;
  }
}
.highlights_area .highlights_marque_r {
  left: 0;
  top: 700px;
}
@media screen and (max-width: 750px) {
  .highlights_area .highlights_marque_r {
    top: 93.33vw;
  }
}
.highlights_area .highlights_marque_r::after {
  content: "";
  display: block;
  width: 90px;
  height: 390px;
  background: #fff;
  position: absolute;
  left: 660px;
  top: 0px;
}
@media screen and (max-width: 750px) {
  .highlights_area .highlights_marque_r::after {
    width: 12vw;
    height: 52.53vw;
    left: 88vw;
    top: -0.27vw;
  }
}
.highlights_area .highlights_marque_wrap {
  overflow: hidden;
  width: 100%;
}
.highlights_area .highlights_marque_in {
  display: flex;
  width: fit-content;
}
.highlights_area .highlights_marque_in_l {
  animation: marque_l 80s linear infinite;
}
.highlights_area .highlights_marque_in_r {
  margin-top: 10px;
  margin-left: 0;
  animation: marque_r 80s linear infinite;
}
@media screen and (max-width: 750px) {
  .highlights_area .highlights_marque_in_r {
    margin-top: 1.33vw;
  }
}
.highlights_area .marque_item {
  flex: 0 0 auto;
}
.highlights_area .marque_item img {
  height: 380px;
  width: auto;
}
@media screen and (max-width: 750px) {
  .highlights_area .marque_item img {
    height: 50.67vw;
  }
}

/*./highlights_area*/
/* ========================================
  ticket_area
======================================== */
.ticket_area {
  background-color: #df002d;
  padding-bottom: 160px;
}
@media screen and (max-width: 750px) {
  .ticket_area {
    padding-bottom: 21.33vw;
  }
}

/*./ticket_area*/
/* ========================================
  event_area
======================================== */
.event_area {
  background-color: #fff;
}
.event_area .event_btn {
  width: 430px;
  margin-left: 70px;
  margin-bottom: 100px;
}
@media screen and (max-width: 750px) {
  .event_area .event_btn {
    width: 57.33vw;
    margin-left: 9.33vw;
    margin-bottom: 13.33vw;
  }
}
.event_area .event_btn.event_02_btn {
  margin-bottom: 71px;
}
@media screen and (max-width: 750px) {
  .event_area .event_btn.event_02_btn {
    margin-bottom: 9.47vw;
  }
}
.event_area .event_btn.event_03_btn {
  margin-bottom: 0;
}

/*./event_area*/
/* ========================================
  footer
======================================== */
footer {
  background: #df002d;
}
footer .footer_map {
  position: relative;
}
footer .footer_map a {
  position: absolute;
  top: 180px;
  left: 70px;
  width: 320px;
}
@media screen and (max-width: 750px) {
  footer .footer_map a {
    top: 24vw;
    left: 9.33vw;
    width: 42.67vw;
  }
}

/*./footer*/

/*# sourceMappingURL=style.css.map */
