@charset "UTF-8";
/* ===============================================
#擬似要素中央配置 mixin
=============================================== */
/* ===============================================
# navigation
=============================================== */
:root {
  --key_color: #CE4171;
  --light_pink: #CB5C87;
  --button-color:#000;
  --button-text-color:#fff;
  --flex-gap:30px;
  --bg_color:#391020;
  --black:#220000;
  --light_c:#E2D1B6;
  --gold:#FFC881;
  --gold02:#996C4D;
  --font01:"Noto Sans JP", sans-serif;
  --font_en:"Josefin Sans","Noto Sans JP", sans-serif;
  --txt_color:#000;
}

/* ===============================================
# SNSカラー
=============================================== */
.live_page {
  color: var(--main_c);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  background: #014d89;
}

@media screen and (max-width: 768px) {
  .live_page {
    font-size: 14px;
  }
}
a {
  color: #E34267;
}

.sec_inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.sec_inner_1000 {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

.inner_deco {
  position: relative;
}
.inner_deco::before {
  position: absolute;
  content: "";
  background-image: url(../images/coin/coin_03.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(20vw, 200px);
  height: min(20vw, 200px);
  top: max(-18vw, -180px);
  right: max(-12vw, -180px);
  pointer-events: none;
  -webkit-animation: hor_swing_c01 4s linear infinite;
          animation: hor_swing_c01 4s linear infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
          animation-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}
.inner_deco::after {
  position: absolute;
  content: "";
  background-image: url(../images/coin/coin_01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(24vw, 240px);
  height: min(24vw, 240px);
  bottom: max(-8vw, -80px);
  left: max(-12vw, -180px);
  pointer-events: none;
  -webkit-animation: hor_swing_c02 6s linear infinite;
          animation: hor_swing_c02 6s linear infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
          animation-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

@-webkit-keyframes hor_swing_c01 {
  0% {
    transform: translateY(10%) rotate(-65deg);
  }
  50% {
    transform: translateY(0) rotate(-65deg);
  }
  100% {
    transform: translateY(10%) rotate(-65deg);
  }
}

@keyframes hor_swing_c01 {
  0% {
    transform: translateY(10%) rotate(-65deg);
  }
  50% {
    transform: translateY(0) rotate(-65deg);
  }
  100% {
    transform: translateY(10%) rotate(-65deg);
  }
}
@-webkit-keyframes hor_swing_c02 {
  0% {
    transform: translateY(10%) rotate(-82deg);
  }
  50% {
    transform: translateY(0) rotate(-82deg);
  }
  100% {
    transform: translateY(10%) rotate(-82deg);
  }
}
@keyframes hor_swing_c02 {
  0% {
    transform: translateY(10%) rotate(-82deg);
  }
  50% {
    transform: translateY(0) rotate(-82deg);
  }
  100% {
    transform: translateY(10%) rotate(-82deg);
  }
}
@media screen and (max-width: 768px) {
  .inner_deco::before {
    display: none;
  }
  .inner_deco::after {
    display: none;
  }
}
.footer {
  text-align: center;
  padding: 0px 0 100px;
  position: relative;
  color: #fff;
}
.footer .share {
  margin-bottom: 50px;
}
.footer .share .share_box .title {
  max-width: 369px;
  margin: 0 auto 60px;
}
.footer .share .share_box .tweet_btn {
  max-width: 500px;
  margin: 0 auto 50px;
  display: block;
  width: 90%;
}
.footer .share .share_box .sns_flex {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.footer .share .share_box .sns_flex a {
  display: inline-block;
  margin: 0 1%;
  width: 60px;
}
.footer .links_outer {
  margin-bottom: 80px;
}
.footer .links_outer .link_flex {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
  align-items: center;
}
.footer .links_outer .link_flex a {
  display: inline-block;
  width: min(200px, 30%);
  margin: 0 0.5%;
}
.footer .links_outer .sponsor p {
  font-weight: bold;
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 0.6em;
}
.footer .links_outer .sponsor .link_flex {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 60px 0 60px;
  }
  .footer:before {
    width: 20px;
    height: 20px;
    top: -10px;
  }
  .footer:after {
    width: 20px;
    height: 20px;
    top: -10px;
  }
  .footer .share .share_box .title {
    max-width: 170px;
  }
  .footer .links_outer {
    margin-bottom: 50px;
  }
  .footer .links_outer .link_flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .links_outer .link_flex a {
    width: min(200px, 44%);
    margin: 0 2% 4%;
  }
}
.fix_bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -2;
}
.fix_bg .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.fix_bg .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 80%;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: 0.8s;
}
.fix_bg .circle img {
  -webkit-animation: rotate_r 60s infinite linear;
          animation: rotate_r 60s infinite linear;
}
.fix_bg .circle.active {
  opacity: 0.1;
  transform: translate(-50%, -50%) scale(1);
  transition: 0.8s;
}
.fix_bg #canvas {
  display: block;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.34) rotate(10deg);
}

@media screen and (max-width: 768px) {
  .fix_bg .bg {
    top: 0;
    left: 0;
    transform: inherit;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .fix_bg #canvas {
    transform: scale(1.44) rotate(10deg);
  }
}
.sec_tit_box {
  position: relative;
  width: 100%;
  padding-left: min(4vw, 80px);
  margin-bottom: 80px;
  z-index: 1;
}
.sec_tit_box .sec_tit {
  position: relative;
  display: inline-block;
}
.sec_tit_box .sec_tit img {
  width: auto;
  height: min(8vw, 120px);
  position: relative;
}
.sec_tit_box .sec_tit.deco {
  position: relative;
}
.sec_tit_box .sec_tit.deco::before {
  position: absolute;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(20vw, 300px);
  height: min(20vw, 300px);
  top: -84%;
  left: max(-8.5vw, -130px);
  z-index: 0;
  -webkit-animation: rotation 60s linear infinite;
          animation: rotation 60s linear infinite;
  pointer-events: none;
}
.sec_tit_box .sec_tit.deco.d_01::before {
  background-image: url(../images/tit/deco_01.webp);
}
.sec_tit_box .sec_tit.deco.d_02::before {
  background-image: url(../images/tit/deco_02.webp);
}
.sec_tit_box .sec_tit.deco.d_03::before {
  background-image: url(../images/tit/deco_03.webp);
}
.sec_tit_box .sec_tit.deco::after {
  position: absolute;
  content: "";
  background-image: url(../images/tit/deco_end.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(4vw, 60px);
  height: min(4vw, 60px);
  top: min(5vw, 30px);
  right: min(-4vw, -40px);
}
.sec_tit_box .kana {
  position: relative;
  display: block;
  font-size: min(1.8vw, 22px);
  top: min(-1vw, -16px);
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .sec_tit_box {
    padding-left: 8vw;
    margin-bottom: 6vw;
  }
  .sec_tit_box .sec_tit img {
    height: 12vw;
  }
  .sec_tit_box .sec_tit.deco::before {
    width: 24vw;
    height: 24vw;
    top: -60%;
    left: -10vw;
  }
  .sec_tit_box .sec_tit.deco::after {
    width: 6vw;
    height: 6vw;
    right: -7vw;
  }
  .sec_tit_box .kana {
    font-size: 3.2vw;
  }
}
.frame_deco {
  position: relative;
}
.frame_deco::before, .frame_deco::after {
  position: absolute;
  content: "";
  background-image: url(../images/frame_deco.png);
  width: 220px;
  height: 27px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.frame_deco::after {
  top: inherit;
  bottom: -27px;
  transform: translateX(-50%) scale(-1);
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .frame_deco {
    position: relative;
  }
  .frame_deco::before, .frame_deco::after {
    width: 120px;
    height: 15px;
    top: -15px;
  }
  .frame_deco::after {
    top: inherit;
    bottom: -15px;
  }
}
.btn_box a img {
  transition: 0.2s;
}
.btn_box a:hover {
  opacity: 1;
}
.btn_box a:hover img {
  opacity: 1;
  transform: translateY(-3px);
  transition: 0.2s;
}

#fv {
  position: relative;
  overflow: hidden;
}
#fv::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
  transform: perspective(200px) rotateX(40deg);
  transform-origin: center top;
  transition: opacity 1s linear;
  mix-blend-mode: overlay;
  -webkit-animation: fv_effect 5s cubic-bezier(0.87, 0, 0.13, 1) infinite alternate;
  animation: fv_effect 5s cubic-bezier(0.87, 0, 0.13, 1) infinite alternate;
  z-index: 1;
  opacity: 0.6;
}
#fv .main_tit {
  position: absolute;
  width: 40%;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  z-index: 10;
}
#fv .kv_area {
  display: flex;
}
#fv .kv_area .day1 {
  width: 50%;
}
#fv .kv_area .day2 {
  width: 50%;
}
@-webkit-keyframes fv_effect {
  0% {
    transform: perspective(200px) rotateX(40deg) translateX(-100%);
  }
  100% {
    transform: perspective(200px) rotateX(40deg) translateX(100%);
  }
}
@keyframes fv_effect {
  0% {
    transform: perspective(200px) rotateX(40deg) translateX(-100%);
  }
  100% {
    transform: perspective(200px) rotateX(40deg) translateX(100%);
  }
}
@media screen and (max-width: 768px) {
  #fv .main_tit {
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    bottom: inherit;
  }
  #fv .kv_area {
    flex-direction: column;
  }
  #fv .kv_area .day1 {
    width: 100%;
  }
  #fv .kv_area .day2 {
    width: 100%;
  }
}
#date {
  position: relative;
  padding: min(8vw, 100px) 0;
}
#date .date_tit {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
#date .bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#date .bg_box .txt_slide {
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#date .bg_box .txt_slide img {
  -webkit-animation: hor_move_r 60s linear infinite;
          animation: hor_move_r 60s linear infinite;
}
#date .bg_coin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
#date .bg_coin .deco_01 {
  position: absolute;
  width: min(14vw, 250px);
  top: min(5vw, 80px);
  left: min(-1vw, -60px);
  transition: 0.1s ease;
}

@media screen and (max-width: 768px) {
  #date {
    padding: 14vw 0;
  }
  #date .date_tit {
    width: 80%;
  }
  #date .bg_box .top {
    width: 200%;
  }
  #date .bg_box .coin {
    display: none;
  }
  #date .bg_box .txt_slide img {
    width: 200%;
  }
}
#intro {
  position: relative;
  padding: min(12vw, 140px) 0;
  background-image: url(../images/intro/bg.webp);
  height: 180vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
#intro .intro_anime_area {
  position: absolute;
  top: 1px;
}
#intro .intro_anime_area .top_box {
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: min(30vw, 360px);
  padding-bottom: 14vw;
  width: 100vw;
}
#intro .intro_anime_area .top_box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/intro/intoro_bg.webp);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
#intro .intro_anime_area .top_box .left {
  width: 50%;
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-left: 4%;
}
#intro .intro_anime_area .top_box .left .tit {
  display: block;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 2.6vw;
  position: relative;
  z-index: 1;
}
#intro .intro_anime_area .top_box .left .txt {
  display: block;
  margin: 0 auto;
  margin-bottom: 2.6vw;
  position: relative;
  z-index: 1;
}
#intro .intro_anime_area .top_box .left .txt.t01 {
  width: 40%;
}
#intro .intro_anime_area .top_box .left .txt.t02 {
  width: 40%;
  margin-bottom: 1vw;
}
#intro .intro_anime_area .top_box .left .txt.t03 {
  width: 38%;
  margin-bottom: -1.1vw;
}
#intro .intro_anime_area .top_box .left .txt.t04 {
  width: 70%;
  margin-bottom: 2vw;
}
#intro .intro_anime_area .top_box .left .txt.t05 {
  width: 36%;
  margin-bottom: 1.4vw;
}
#intro .intro_anime_area .top_box .left .txt.t06 {
  width: 60%;
}
#intro .intro_anime_area .top_box .left .bg_area {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#intro .intro_anime_area .top_box .left .bg_area .deco_01 {
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translateY(-50%);
  width: 50vw;
}
#intro .intro_anime_area .top_box .left .bg_area .deco_01 img {
  -webkit-animation: rotation 60s linear infinite;
          animation: rotation 60s linear infinite;
}
#intro .intro_anime_area .top_box .left .bg_area .deco_chara {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 46vw;
}
#intro .intro_anime_area .top_box .right {
  width: 50%;
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-right: 4%;
}
#intro .intro_anime_area .top_box .right .tit {
  display: block;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 2.6vw;
  position: relative;
  z-index: 1;
}
#intro .intro_anime_area .top_box .right .txt {
  display: block;
  margin: 0 auto;
  margin-bottom: 2.6vw;
  position: relative;
  z-index: 1;
}
#intro .intro_anime_area .top_box .right .txt.t01 {
  width: 40%;
}
#intro .intro_anime_area .top_box .right .txt.t02 {
  width: 50%;
}
#intro .intro_anime_area .top_box .right .txt.t03 {
  width: 50%;
  margin-bottom: 2vw;
}
#intro .intro_anime_area .top_box .right .txt.t04 {
  width: 50%;
}
#intro .intro_anime_area .top_box .right .txt.t05 {
  width: 50%;
}
#intro .intro_anime_area .top_box .right .txt.t06 {
  width: 60%;
}
#intro .intro_anime_area .top_box .right .bg_area {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#intro .intro_anime_area .top_box .right .bg_area .deco_01 {
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translateY(-50%);
  width: 50vw;
}
#intro .intro_anime_area .top_box .right .bg_area .deco_01 img {
  -webkit-animation: rotation_r 60s linear infinite;
          animation: rotation_r 60s linear infinite;
}
#intro .intro_anime_area .top_box .right .bg_area .deco_chara {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 46vw;
}
#intro .intro_anime_area .middle_box {
  width: 20%;
  margin: -10vw auto 0;
  position: relative;
  z-index: 1;
}
#intro .intro_anime_area .last_box {
  margin: -8vw auto 0;
  position: relative;
}
#intro .intro_anime_area .last_box .main_last {
  width: 50%;
  margin: 0 auto;
}
#intro .intro_anime_area .last_box .left_coin {
  position: absolute;
  width: 26vw;
  top: 22vw;
  left: 2vw;
  z-index: -1;
}
#intro .intro_anime_area .last_box .right_coin {
  position: absolute;
  width: 26vw;
  top: 4vw;
  right: 7vw;
  z-index: -1;
}
#intro .bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-top: 1px solid var(--main_c);
  border-bottom: 1px solid var(--main_c);
  pointer-events: none;
}
#intro .bg_box .deco_01 {
  position: absolute;
  width: min(30vw, 400px);
  bottom: 4vw;
  right: 4vw;
  -webkit-animation: hor_swing 6s linear infinite;
          animation: hor_swing 6s linear infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
          animation-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media screen and (max-width: 768px) {
  #intro {
    padding: 14vw 0;
    height: 610vw;
  }
  #intro .sec_tit_box .sec_tit img {
    height: 10vw;
  }
  #intro .sec_tit_box .sec_tit.deco::before {
    top: -80%;
  }
  #intro .intro_anime_area .top_box {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
  }
  #intro .intro_anime_area .top_box::before {
    display: none;
  }
  #intro .intro_anime_area .top_box .left {
    width: 100%;
    padding: 40vw 0 8vw;
  }
  #intro .intro_anime_area .top_box .left::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/intro/day1/bg_sp.webp);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #intro .intro_anime_area .top_box .left .tit {
    margin-bottom: 6.5vw;
  }
  #intro .intro_anime_area .top_box .left .txt {
    margin-bottom: 2.6vw;
  }
  #intro .intro_anime_area .top_box .left .txt.t01 {
    width: 80%;
  }
  #intro .intro_anime_area .top_box .left .txt.t02 {
    width: 80%;
    margin-bottom: 6vw;
  }
  #intro .intro_anime_area .top_box .left .txt.t03 {
    width: 50%;
    margin-bottom: -1.1vw;
  }
  #intro .intro_anime_area .top_box .left .txt.t04 {
    width: 80%;
    margin-bottom: 6vw;
  }
  #intro .intro_anime_area .top_box .left .txt.t05 {
    width: 50%;
    margin-bottom: 6vw;
  }
  #intro .intro_anime_area .top_box .left .txt.t06 {
    width: 86%;
  }
  #intro .intro_anime_area .top_box .left .bg_area .deco_01 {
    transform: translateX(-50%);
    top: -70vw;
    left: 50%;
    width: 110vw;
  }
  #intro .intro_anime_area .top_box .left .bg_area .deco_chara {
    left: 42%;
    top: 60%;
    width: 140vw;
    transform: translate(-50%, -50%);
  }
  #intro .intro_anime_area .top_box .right {
    width: 100%;
    padding: 40vw 0 26vw;
    margin-top: -12vw;
    z-index: -1;
  }
  #intro .intro_anime_area .top_box .right::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/intro/day2/bg_sp.webp);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #intro .intro_anime_area .top_box .right .tit {
    margin-bottom: 6.5vw;
  }
  #intro .intro_anime_area .top_box .right .txt {
    margin-bottom: 2.6vw;
  }
  #intro .intro_anime_area .top_box .right .txt.t01 {
    width: 60%;
    margin-bottom: 6vw;
  }
  #intro .intro_anime_area .top_box .right .txt.t02 {
    width: 80%;
    margin-bottom: 6vw;
  }
  #intro .intro_anime_area .top_box .right .txt.t03 {
    width: 76%;
    margin-bottom: 4vw;
  }
  #intro .intro_anime_area .top_box .right .txt.t04 {
    width: 76%;
    margin-bottom: 6vw;
  }
  #intro .intro_anime_area .top_box .right .txt.t05 {
    width: 76%;
    margin-bottom: 6vw;
  }
  #intro .intro_anime_area .top_box .right .txt.t06 {
    width: 86%;
  }
  #intro .intro_anime_area .top_box .right .bg_area .deco_01 {
    transform: translateX(50%);
    top: -70vw;
    right: 50%;
    width: 110vw;
  }
  #intro .intro_anime_area .top_box .right .bg_area .deco_chara {
    left: 60%;
    top: 64%;
    width: 160vw;
    transform: translate(-50%, -50%);
  }
  #intro .intro_anime_area .middle_box {
    width: 40%;
    margin: -20vw auto 0;
  }
  #intro .intro_anime_area .last_box {
    margin: -10vw auto 0;
  }
  #intro .intro_anime_area .last_box .main_last {
    width: 70%;
  }
  #intro .intro_anime_area .last_box .left_coin {
    width: 36vw;
    top: 24vw;
    left: -14vw;
  }
  #intro .intro_anime_area .last_box .right_coin {
    width: 30vw;
    top: 4vw;
    right: -6vw;
  }
}
#news {
  position: relative;
  padding: min(12vw, 140px) 0;
}
#news::before {
  position: absolute;
  content: "";
  background-image: url(../images/news/top_deco.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100vw;
  height: 8vw;
  top: 0;
  z-index: -1;
  pointer-events: none;
}
#news .sec_tit_box {
  max-width: 1400px;
  margin: 0 auto 80px;
}
#news .news_list {
  margin-bottom: 60px;
}
#news .news_list li {
  margin-bottom: 34px;
}
#news .news_list li a {
  color: var(--main_c);
  display: flex;
  align-items: center;
  padding: 1.5em 0;
  border-top: 2px solid var(--main_c);
  border-bottom: 2px solid var(--main_c);
  position: relative;
  font-size: 14px;
  line-height: 1.8em;
}
#news .news_list li a::before {
  position: absolute;
  content: "";
  border-top: 1px solid var(--main_c);
  border-bottom: 1px solid var(--main_c);
  width: 100%;
  height: calc(100% - 10px);
  top: 4px;
}
#news .news_list li a::after {
  position: absolute;
  content: "";
  background-image: url(../images/news/link_deco.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 5em;
  height: 5em;
  bottom: -20px;
  right: -2em;
  transition: 0.4s;
  z-index: 1;
}
#news .news_list li a:hover {
  opacity: 1;
  background-color: rgba(233, 226, 150, 0.1215686275);
}
#news .news_list li a:hover::after {
  transform: rotate(360deg);
  transition: 0.6s;
}
#news .news_list li a .date {
  width: 9em;
  font-size: 1.4em;
  font-weight: bold;
  display: flex;
  align-items: center;
}
#news .news_list li a .date .yy {
  font-size: 1em;
  line-height: 1em;
  position: relative;
  top: 0.1em;
}
#news .news_list li a .date .mmdd {
  font-size: 1.5em;
  line-height: 1em;
  padding-left: 0.3em;
}
#news .news_list li a .title {
  width: calc(100% - 9em);
  padding-right: 4em;
}
#news .btn_box {
  text-align: center;
}
#news .btn_box a {
  display: inline-block;
  width: 30%;
}
#news .bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#news .bg_box::before {
  position: absolute;
  content: "";
  background-image: url(../images/news/bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
#news .bg_coin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
#news .bg_coin .deco_01 {
  position: absolute;
  width: min(18vw, 200px);
  bottom: 2vw;
  left: 1vw;
  transition: 0.1s ease;
}
#news .bg_coin .deco_02 {
  position: absolute;
  width: min(20vw, 260px);
  top: 4vw;
  right: -2vw;
  transform: rotate(-85deg);
  transition: 0.1s ease;
}

.single_wrap .news {
  padding: 50px;
  background: #fff;
  color: #000;
  position: relative;
  border: 2px solid var(--main_c);
}
.single_wrap .news:not(:last-of-type) {
  margin-bottom: 50px;
}
.single_wrap .news .date_block {
  font-size: 18px;
  line-height: 1.6em;
  color: #ce4171;
}
.single_wrap .news .news_title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4em;
  padding-bottom: 20px;
  border-bottom: 1px solid #ce4171;
  margin-bottom: 20px;
  color: #ce4171;
}
.single_wrap .news .news_content p:not(:last-of-type) {
  margin-bottom: 1em;
}
.single_wrap .news .news_content a {
  color: var(--key_color);
  text-decoration: underline;
}
.single_wrap .news .news_content img {
  max-width: 100%;
  margin-bottom: 1em;
}
.single_wrap .news .news_content h3 {
  font-size: 18px;
  line-height: 1.4em;
  margin-bottom: 0.6em;
}
.single_wrap .news .news_content blockquote {
  padding: 20px;
  background: rgba(161, 161, 161, 0.2862745098);
  margin-bottom: 10px;
}
.single_wrap .news .news_content iframe {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  #news {
    padding: 14vw 0;
  }
  #news::before {
    background-image: url(../images/news/top_deco_sp.png);
    width: 100%;
    height: 18vw;
  }
  #news .sec_tit_box {
    margin: 0 auto 6vw;
  }
  #news .news_list {
    margin-bottom: 40px;
  }
  #news .news_list li {
    margin-bottom: 20px;
  }
  #news .news_list li a {
    flex-direction: column;
    padding: 1em;
  }
  #news .news_list li a::before {
    height: calc(100% - 8px);
    top: 3px;
  }
  #news .news_list li a::after {
    width: 4em;
    height: 4em;
    bottom: -4vw;
    right: -2.5vw;
  }
  #news .news_list li a .date {
    width: 100%;
    font-size: 1em;
    margin-bottom: 0.4em;
  }
  #news .news_list li a .title {
    width: 100%;
    padding-right: 2em;
  }
  #news .btn_box a {
    width: 80%;
  }
  #news .bg_box::before {
    background-image: url(../images/news/bg_sp.webp);
  }
  .single_wrap .news {
    padding: 30px 20px;
  }
  .single_wrap .news .news_title {
    font-size: 18px;
    line-height: 1.6em;
  }
  .single_wrap .news .news_content h3 {
    font-size: 16px;
    line-height: 1.4em;
  }
  .single_wrap .news .news_content p {
    font-size: 14px;
    line-height: 1.6em;
  }
}
#album {
  position: relative;
  padding: min(12vw, 140px) 0;
  border-top: 1px solid var(--main_c);
  border-bottom: 1px solid var(--main_c);
}
#album .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-top: -2vw;
}
#album .flex .left {
  width: 46%;
}
#album .flex .left .stit {
  width: 90%;
  margin: 0 auto 40px;
}
#album .flex .left .txt_area {
  margin-bottom: 40px;
}
#album .flex .left .txt_area p {
  margin-bottom: 1em;
}
#album .flex .left .txt_area p:last-of-type {
  margin-bottom: 0;
}
#album .flex .left .btn_box {
  text-align: center;
}
#album .flex .left .btn_box a {
  display: inline-block;
  width: 80%;
}
#album .flex .right {
  width: 50%;
}
#album .bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#album .bg_box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/album_bg.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
#album .bg_coin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#album .bg_coin .deco_01 {
  position: absolute;
  width: min(22vw, 360px);
  bottom: 5vw;
  left: -8vw;
  transition: 0.1s ease;
}
#album .bg_coin .deco_02 {
  position: absolute;
  width: min(24vw, 300px);
  top: -5vw;
  right: -2vw;
  transition: 0.1s ease;
}

@media screen and (max-width: 768px) {
  #album {
    padding: 14vw 0;
  }
  #album .flex {
    flex-direction: column-reverse;
  }
  #album .flex .left {
    width: 100%;
  }
  #album .flex .left .stit {
    margin: 0 auto 6vw;
  }
  #album .flex .left .txt_area {
    margin-bottom: 8vw;
  }
  #album .flex .left .txt_area p:last-of-type {
    margin-bottom: 0;
  }
  #album .flex .right {
    width: 100%;
    margin-bottom: 6vw;
  }
}
#dm {
  position: relative;
  padding: min(12vw, 140px) 0 min(20vw, 200px);
  -webkit-mask-image: url(../images/dm/bg_mask.webp);
  mask-image: url(../images/dm/bg_mask.webp);
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: cover;
  -webkit-mask-position: bottom;
  mask-position: bottom;
  background-color: #296aee;
  background-image: url(../images/dm/bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10;
}
#dm::before {
  position: absolute;
  content: "";
  background-image: url(../images/dm/bg_outline.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}
#dm .sec_tit_box .sec_tit img {
  height: min(14vw, 220px);
}
#dm .sec_tit_box .sec_tit.deco::before {
  top: -28%;
}
#dm .sec_tit_box .sec_tit.deco::after {
  top: min(8vw, 140px);
}
#dm .dm_box {
  margin-bottom: 80px;
  position: relative;
}
#dm .dm_box::before {
  position: absolute;
  content: "";
  background-image: url(../images/dm/deco_01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 180%;
  height: 180%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}
#dm .dm_box .dm_bnr {
  position: relative;
  z-index: 1;
  transition: 0.2s;
  cursor: pointer;
  display: block;
}
#dm .dm_box .dm_bnr:hover {
  transform: scale(1.01);
  transition: 0.2s;
  opacity: 1;
}
#dm .dm_box .dm_bnr:hover img {
  opacity: 1;
}
#dm .dm_box .frame_box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
#dm .dm_box .frame_box .kado {
  position: absolute;
  width: 100px;
}
#dm .dm_box .frame_box .kado.d_01 {
  bottom: -34px;
  left: -50px;
  transform: scale(-1, -1);
}
#dm .dm_box .frame_box .kado.d_02 {
  top: -34px;
  right: -50px;
  transform: scale(1, 1);
}
#dm .btn_box {
  text-align: center;
}
#dm .btn_box a {
  display: inline-block;
  width: 30%;
}
#dm .bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
#dm .bg_coin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#dm .bg_coin .deco_01 {
  position: absolute;
  width: min(24vw, 340px);
  bottom: 12vw;
  left: -8vw;
  transition: 0.1s ease;
}
#dm .bg_coin .deco_02 {
  position: absolute;
  width: min(20vw, 220px);
  top: 2vw;
  right: 0vw;
  transition: 0.1s ease;
}

@media screen and (max-width: 768px) {
  #dm {
    padding: 14vw 0 24vw;
  }
  #dm .sec_tit_box .sec_tit img {
    height: 16vw;
  }
  #dm .sec_inner_1000 {
    width: 84%;
  }
  #dm .dm_box {
    margin-bottom: 40px;
  }
  #dm .dm_box::before {
    background-image: url(../images/dm/deco_01_sp.webp);
  }
  #dm .dm_box .frame_box .kado {
    width: 40px;
  }
  #dm .dm_box .frame_box .kado.d_01 {
    left: -18px;
    bottom: -14px;
  }
  #dm .dm_box .frame_box .kado.d_02 {
    right: -18px;
    top: -14px;
  }
  #dm .btn_box a {
    width: 80%;
  }
  #dm .bg_coin {
    display: none;
  }
}
#merch {
  position: relative;
  padding: min(12vw, 140px) 0;
}
#merch .merch_box {
  margin-bottom: 80px;
  position: relative;
}
#merch .merch_box .merch_bnr {
  position: relative;
  z-index: 1;
  transition: 0.2s;
  cursor: pointer;
  display: block;
}
#merch .merch_box .merch_bnr:hover {
  transform: scale(1.01);
  transition: 0.2s;
  opacity: 1;
}
#merch .merch_box .merch_bnr:hover img {
  opacity: 1;
}
#merch .merch_box .frame_box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
#merch .merch_box .frame_box .kado {
  position: absolute;
  width: 100px;
}
#merch .merch_box .frame_box .kado.d_01 {
  top: -30px;
  left: -30px;
}
#merch .merch_box .frame_box .kado.d_02 {
  bottom: -30px;
  left: -30px;
  transform: scale(1, -1);
}
#merch .merch_box .frame_box .kado.d_03 {
  top: -30px;
  right: -30px;
  transform: scale(-1, 1);
}
#merch .merch_box .frame_box .kado.d_05 {
  bottom: -30px;
  right: -30px;
  transform: scale(-1, -1);
}
#merch .merch_box .frame_box .d_04 {
  position: absolute;
  width: 300px;
  bottom: -140px;
  right: -140px;
}
#merch .merch_box .frame_box .d_04 img {
  -webkit-animation: rotation 60s linear infinite;
          animation: rotation 60s linear infinite;
}
#merch .btn_box {
  text-align: center;
}
#merch .btn_box a {
  display: inline-block;
  width: 30%;
}
#merch .bg_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  z-index: -1;
}
#merch .bg_box::before {
  position: absolute;
  content: "";
  background-image: url(../images/merch/bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#merch .bg_coin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#merch .bg_coin .deco_01 {
  position: absolute;
  width: min(24vw, 340px);
  bottom: 2vw;
  left: -7vw;
  transition: 0.1s ease;
}
#merch .bg_coin .deco_02 {
  position: absolute;
  width: min(20vw, 220px);
  top: 2vw;
  right: 0vw;
  transition: 0.1s ease;
}

@media screen and (max-width: 768px) {
  #merch {
    padding: 14vw 0;
  }
  #merch .sec_inner_1000 {
    width: 84%;
  }
  #merch .merch_box {
    margin-bottom: 40px;
  }
  #merch .merch_box .frame_box .kado {
    width: 40px;
  }
  #merch .merch_box .frame_box .kado.d_01 {
    top: -14px;
    left: -14px;
  }
  #merch .merch_box .frame_box .kado.d_02 {
    bottom: -14px;
    left: -14px;
  }
  #merch .merch_box .frame_box .kado.d_03 {
    top: -14px;
    right: -14px;
  }
  #merch .merch_box .frame_box .kado.d_05 {
    bottom: -14px;
    right: -14px;
  }
  #merch .merch_box .frame_box .d_04 {
    width: 30vw;
    bottom: -15vw;
    right: -15vw;
  }
  #merch .btn_box a {
    width: 80%;
  }
  #merch .bg_box::before {
    background-image: url(../images/merch/bg_sp.webp);
  }
  #merch .bg_coin {
    display: none;
  }
}
#videos {
  position: relative;
  padding: min(12vw, 140px) 0;
  background-color: #00223C;
  border-top: 1px solid var(--main_c);
  border-bottom: 1px solid var(--main_c);
}
#videos .movie_block {
  margin-bottom: 100px;
}
#videos .movie_block .movie {
  position: relative;
  cursor: pointer;
}
#videos .movie_block .movie .movie_thumb {
  position: relative;
  aspect-ratio: 16/9;
  z-index: 2;
}
#videos .movie_block .movie .movie_thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: url(../images/videos/movie_mask.svg);
          mask-image: url(../images/videos/movie_mask.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  -webkit-mask-position: top;
          mask-position: top;
}
#videos .movie_block .movie .play_button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: 0.3s;
  z-index: 3;
  width: min(480px, 50vw);
  height: 90%;
}
#videos .movie_block .movie .play_button img {
  position: absolute;
  width: min(480px, 50vw);
  top: 50%;
  left: 50%;
  -webkit-animation: rotate_r02 infinite both linear 18s;
          animation: rotate_r02 infinite both linear 18s;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-mask-image: inherit;
          mask-image: inherit;
}
#videos .movie_block .movie .play_button:before {
  position: absolute;
  content: "PLAY";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: var(--main_c);
  text-shadow: 0 0 10px var(--key_color);
  font-size: min(3vw, 24px);
}
#videos .movie_block .movie .frame_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  background-image: url(../images/videos/movie_mask_02.svg);
  z-index: -1;
  background-position: center;
  background-size: contain;
  transform: scale(1.008);
}
#videos .movie_block .movie .frame_layer span {
  position: absolute;
  width: clamp(11px, 2.5vw, 30px);
  height: clamp(11px, 2.5vw, 30px);
}
#videos .movie_block .movie .frame_layer span::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/frame_deco_02.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#videos .movie_block .movie .frame_layer span:nth-of-type(1) {
  top: -1px;
  left: -1px;
}
#videos .movie_block .movie .frame_layer span:nth-of-type(2) {
  top: -1px;
  right: -1px;
  transform: rotateZ(90deg);
}
#videos .movie_block .movie .frame_layer span:nth-of-type(3) {
  bottom: -1px;
  right: -1px;
  transform: rotateZ(180deg);
}
#videos .movie_block .movie .frame_layer span:nth-of-type(4) {
  bottom: -1px;
  left: -1px;
  transform: rotateZ(270deg);
}
#videos .movie_block .movie:hover .play_button {
  transform: translate(-50%, -50%) scale(1.1);
  transition: 0.3s;
}
#videos .movie_block .swiper-slide .movie .play_button {
  opacity: 0;
  transition: 0.3s;
}
#videos .movie_block .swiper-slide-active .movie .play_button {
  opacity: 1;
  transition: 0.3s;
}
#videos .swiper-button-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
}
#videos .swiper-button-wrap_inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
#videos .swiper-button-wrap_inner .swiper-button {
  cursor: pointer;
  transition: 0.2s;
  position: absolute;
}
#videos .swiper-button-wrap_inner .swiper-button:hover {
  transition: 0.2s;
}
#videos .swiper-button-wrap_inner .swiper-button img {
  width: 80px;
  display: inline-block;
  line-height: 0;
  transform: translateY(2px);
}
#videos .swiper-button-wrap_inner .button-prev {
  left: 0;
}
#videos .swiper-button-wrap_inner .button-prev img {
  transform: translateY(2px);
}
#videos .swiper-button-wrap_inner .button-prev:hover {
  transform: translateX(-10px);
}
#videos .swiper-button-wrap_inner .button-next {
  right: 0;
}
#videos .swiper-button-wrap_inner .button-next img {
  transform: scale(-1, 1);
}
#videos .swiper-button-wrap_inner .button-next:hover {
  transform: translateX(10px);
}
#videos .btn_box {
  text-align: center;
}
#videos .btn_box a {
  display: inline-block;
  width: 30%;
}
#videos .bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
#videos .bg_box .deco_01 {
  position: absolute;
  left: 50%;
  top: 105%;
  transform: translate(-50%, -50%);
  width: max(2200px, 150%);
}
#videos .bg_box .deco_01 img {
  -webkit-animation: rotation 160s linear infinite;
          animation: rotation 160s linear infinite;
}
#videos .bg_coin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#videos .bg_coin .deco_01 {
  position: absolute;
  width: min(24vw, 500px);
  top: -13vw;
  right: -12vw;
  transition: 0.1s ease;
}

.swiper-container.movie_slider {
  overflow: visible;
}
.swiper-container.movie_slider .swiper-slide {
  transform: scale(0.8);
  transition: 0.3s;
}
.swiper-container.movie_slider .swiper-slide-active {
  transform: scale(1);
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  #videos {
    padding: 14vw 0;
  }
  #videos .movie_block {
    margin-bottom: 40px;
  }
  #videos .movie_block .movie .play_button img {
    width: 50vw;
  }
  #videos .swiper-button-wrap_inner .swiper-button img {
    width: 12vw;
  }
  #videos .swiper-button-wrap_inner .button-prev {
    left: 0;
  }
  #videos .swiper-button-wrap_inner .button-prev img {
    transform: translateY(2px);
  }
  #videos .swiper-button-wrap_inner .button-prev:hover {
    transform: translateX(-10px);
  }
  #videos .swiper-button-wrap_inner .button-next {
    right: 0;
  }
  #videos .swiper-button-wrap_inner .button-next img {
    transform: scale(-1, 1);
  }
  #videos .swiper-button-wrap_inner .button-next:hover {
    transform: translateX(10px);
  }
  #videos .btn_box a {
    width: 80%;
  }
  #videos .bg_box .deco_01 {
    width: 280%;
  }
  #videos .bg_coin .deco_02 {
    width: 30vw;
    top: -20vw;
  }
}
/* ---- modal layer ---- */
.modal_layer {
  --modal_btn_size: clamp(50px , 5vw , 70px);
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 110000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s;
}
.modal_layer .modal_bg {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 34, 60, 0.8705882353);
}
.modal_layer .modal_inner {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: left;
}
.modal_layer .modal_inner img {
  width: auto;
  height: auto;
  max-width: min(1400px, 94vw);
  max-height: 75vh;
}
.modal_layer .modal_inner .yt_video_box {
  width: min(1200px, 94vw);
  padding-top: min(90vh, 56.25%);
}
.modal_layer .modal_inner .yt_video_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal_layer .modal_inner .yt_video_box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal_layer .modal_inner .modal_textbox {
  width: min(1000px, 94vw);
  height: 75vh;
  background-color: #fff;
  padding: clamp(12px, 4vw, 50px);
  text-align: left;
  overflow: hidden;
  font-size: clamp(13px, 2vw, 16px);
}
.modal_layer .modal_inner .modal_textbox.scrollable {
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
}
.modal_layer .modal_close_btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: var(--modal_btn_size);
  height: var(--modal_btn_size);
  background: no-repeat center url(../images/modal_close.svg);
  background-size: contain;
  cursor: pointer;
}
.modal_layer.op_modal {
  display: none;
}
.modal_layer.op_modal.is_active {
  display: block;
}
.modal_layer.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide_modal .modal_inner.slide_modal_content_box .slide_modal_content {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  pointer-events: none;
}
.slide_modal .modal_inner.slide_modal_content_box .slide_modal_content.slide_visible {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.slide_modal .modal_prev_btn, .slide_modal .modal_next_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 50vh;
  width: min(200px, 40vw);
  background: no-repeat center url(../images/icon_arrow_slidemodal.svg);
  background-size: 24% auto;
  cursor: pointer;
  transition: 0.2s;
  background-position: right center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.slide_modal .modal_prev_btn.disactive, .slide_modal .modal_next_btn.disactive {
  opacity: 0.2;
  pointer-events: none;
}
.slide_modal .modal_prev_btn:focus, .slide_modal .modal_next_btn:focus {
  outline: none;
}
.slide_modal .modal_prev_btn {
  left: 3vw;
  transform: translateY(-50%) scale(-1, 1);
}
.slide_modal .modal_prev_btn:hover {
  transform: translateY(-50%) translateX(-4px) scale(-1, 1);
}
.slide_modal .modal_next_btn {
  right: 3vw;
}
.slide_modal .modal_next_btn:hover {
  transform: translateY(-50%) translateX(4px);
}

@media only screen and (max-width: 768px) {
  .slide_modal .modal_prev_btn, .slide_modal .modal_next_btn {
    width: 15%;
    height: 20vh;
    background-size: 30% auto;
  }
  .slide_modal .modal_prev_btn {
    left: 1vw;
  }
  .slide_modal .modal_next_btn {
    right: 1vw;
  }
}
/* ---- modal layer ---- */
#profile {
  position: relative;
  padding: min(20vw, 200px) 0;
  margin-bottom: 24vw;
}
#profile .sec_inner {
  display: flex;
  justify-content: space-between;
  width: 90%;
}
#profile .sec_inner .left {
  width: 40%;
  position: relative;
  right: -5%;
  z-index: 1;
}
#profile .sec_inner .left .sec_tit_box {
  padding-left: 0;
  margin-bottom: 20px;
  z-index: 0;
}
#profile .sec_inner .left .sec_tit_box .sec_tit.deco::before {
  top: -44%;
}
#profile .sec_inner .left .sec_tit_box .sec_tit.deco::after {
  top: 50%;
}
#profile .sec_inner .left .sec_tit_box .sec_tit span {
  font-size: min(7vw, 100px);
  line-height: 1.5em;
  position: relative;
  white-space: nowrap;
}
#profile .sec_inner .left .sec_tit_box .kana {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 2em;
  letter-spacing: 0.2em;
}
#profile .sec_inner .left .sns_area {
  margin-bottom: 40px;
  position: relative;
}
#profile .sec_inner .left .sns_area ul {
  display: flex;
  gap: 10px;
}
#profile .sec_inner .left .sns_area ul li a {
  background: var(--main_c);
  display: inline-block;
  border-radius: 20px;
  padding: 6px 20px 2px;
  line-height: 1.4em;
  color: #004D89;
  font-weight: bold;
}
#profile .sec_inner .left .text_area {
  margin-bottom: 30px;
}
#profile .sec_inner .left .text_area p {
  font-size: clamp(11px, 1.1vw, 18px);
  line-height: 1.8em;
}
#profile .sec_inner .left .profile_area dl {
  display: flex;
  align-items: center;
  margin-bottom: min(1.6vw, 16px);
}
#profile .sec_inner .left .profile_area dl:last-of-type {
  margin-bottom: 0;
}
#profile .sec_inner .left .profile_area dl dt {
  width: min(40%, 200px);
  background: var(--main_c);
  text-align: center;
  border-radius: 30px;
  color: #004D89;
  font-weight: bold;
  margin-right: 30px;
  padding: min(0.8vw, 10px);
  font-size: clamp(10px, 1.1vw, 14px);
  line-height: 1.3em;
}
#profile .sec_inner .left .profile_area dl dd {
  font-size: clamp(10px, 1.3vw, 18px);
  line-height: 1.6em;
}
#profile .sec_inner .right {
  width: 70%;
  position: absolute;
  top: 22%;
  right: -12%;
}
#profile .sec_inner .right::before {
  position: absolute;
  content: "";
  background-image: url(../images/profile/deco_02.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 220%;
  height: 60%;
  z-index: -1;
  top: 8%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#profile .bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
#profile .bg_box::before {
  position: absolute;
  content: "";
  background-image: url(../images/profile/deco_01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 130vw;
  height: 65vw;
  z-index: -1;
  top: 82%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  #profile {
    margin-bottom: 0;
  }
  #profile .sec_inner {
    flex-direction: column-reverse;
  }
  #profile .sec_inner .left {
    width: 100%;
    right: 0;
    position: inherit;
  }
  #profile .sec_inner .left .sec_tit_box {
    position: absolute;
    top: 12vw;
  }
  #profile .sec_inner .left .sec_tit_box .sec_tit.deco::before {
    top: -10%;
  }
  #profile .sec_inner .left .sec_tit_box .sec_tit span {
    font-size: 12vw;
  }
  #profile .sec_inner .left .sec_tit_box .kana {
    font-size: 0.7em;
    line-height: 3.5em;
  }
  #profile .sec_inner .left .sns_area {
    margin-bottom: 20px;
  }
  #profile .sec_inner .left .text_area p {
    font-size: 16px;
  }
  #profile .sec_inner .left .profile_area dl {
    margin-bottom: 12px;
  }
  #profile .sec_inner .left .profile_area dl:last-of-type {
    margin-bottom: 0;
  }
  #profile .sec_inner .left .profile_area dl dt {
    font-size: 14px;
    line-height: 1.4em;
    width: 45%;
    padding: 10px;
  }
  #profile .sec_inner .left .profile_area dl dd {
    font-size: 16px;
    line-height: 1.4em;
  }
  #profile .sec_inner .right {
    width: 200vw;
    margin-top: 14vw;
    margin-bottom: 6vw;
    position: relative;
    right: inherit;
    left: -50vw;
  }
  #profile .sec_inner .right figure {
    width: 100%;
    margin: 0 auto;
  }
  #profile .sec_inner .right::before {
    width: 150%;
    height: 43%;
  }
  #profile .bg_box::before {
    top: 40%;
    width: 200vw;
    height: 80vw;
  }
}
.share_box .sec_tit_box {
  margin-bottom: 100px;
  padding-left: 0;
}

@media screen and (max-width: 768px) {
  .share_box .sec_tit_box {
    margin-bottom: 40px;
  }
}
.white_box {
  background-color: #00223c;
  border: 1px solid var(--main_c);
  padding: clamp(40px, 5vw, 40px) clamp(20px, 6vw, 60px) clamp(30px, 5vw, 40px);
  position: relative;
  text-align: left;
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.6em;
  margin-bottom: 40px;
}
.white_box:last-of-type {
  margin-bottom: 0;
}
.white_box .title {
  font-size: 1.4em;
  line-height: 1.5em;
  padding-bottom: 0.8em;
  margin-bottom: 1em;
  border-bottom: 1px dashed var(--main_c);
}
.white_box .title::before {
  position: relative;
  content: "";
  background-image: url(../images/tit/deco_end.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: min(5vw, 40px);
  height: min(5vw, 40px);
  top: min(1vw, 8px);
  transform: scale(-1, 1);
  margin-right: 2px;
}
.white_box p {
  line-height: 2em;
  margin-bottom: 2em;
}
.white_box a {
  text-decoration: underline;
}
.white_box strong {
  font-weight: 900;
}
.white_box iframe {
  width: 100%;
}
.white_box ul {
  margin-bottom: 1em;
}
.white_box ul li {
  position: relative;
  display: block;
  margin-bottom: 0.5em;
  padding-left: 1.2em;
}
.white_box ul li::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  transform: translateY(0.3em) scale(0.4);
  background-color: #ce4171;
  border-radius: 9999px;
}
.white_box hr {
  border: none;
  width: 100%;
  height: 1px;
  background-color: var(--main_c);
}
.white_box h4 {
  position: relative;
  display: block;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: bold;
  margin-bottom: 0.7em;
  margin-top: 2em;
  line-height: 1.5em;
  padding-left: 0.7em;
  border-left: 3px solid var(--main_c);
  color: var(--main_c);
}
.white_box h5 {
  position: relative;
  display: block;
  margin-top: 1.2em;
  margin-bottom: 0.2em;
  line-height: 1.4em;
  font-weight: bold;
  font-size: 1.1em;
  color: #ce4171;
  padding-left: 1.2em;
}
.white_box h5::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0.3em;
  width: 0.8em;
  height: 0.8em;
  background-color: #ce4171;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.white_box small {
  font-size: smaller;
}
.white_box .bg_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.white_box .bg_area .deco {
  position: absolute;
  background-image: url(../images/frame_deco_02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
}
.white_box .bg_area .deco.d_01 {
  top: 6px;
  left: 6px;
}
.white_box .bg_area .deco.d_02 {
  bottom: 6px;
  left: 6px;
  transform: scale(1, -1);
}
.white_box .bg_area .deco.d_03 {
  bottom: 6px;
  right: 6px;
  transform: scale(-1, -1);
}
.white_box .bg_area .deco.d_04 {
  top: 6px;
  right: 6px;
  transform: scale(-1, 1);
}

@media screen and (max-width: 768px) {
  .white_box {
    margin-bottom: 20px;
  }
  .white_box .title {
    padding-bottom: 0.4em;
    margin-bottom: 0.8em;
  }
  .white_box .bg_area .deco {
    width: 16px;
    height: 16px;
  }
}
/* ===============================================
# 下層
=============================================== */
.body_in .lang-box {
  display: flex;
  margin-bottom: 40px;
  flex-direction: row-reverse;
}
.body_in .lang {
  display: flex;
  font-family: var(--font-noto);
}
.body_in .lang a {
  display: inline-block;
  background: #00223c;
  color: var(--main_c);
  font-weight: bold;
  font-size: 16px;
  line-height: 1em;
  padding: 0.5em;
  text-align: center;
  margin: 0;
  border-radius: 50px;
  border: 1px solid var(--main_c);
  width: 5em;
}
.body_in .lang a:not(:last-of-type) {
  margin-right: 6px;
}
.body_in .lang a:hover {
  opacity: 1;
  background: var(--main_c);
  color: #00223c;
}
.body_in .lang a.active {
  background: var(--main_c);
  color: #00223c;
}
.body_in #news {
  padding: min(20vw, 200px) 0 min(20vw, 240px);
}
.body_in #news::before {
  display: none;
}
.body_in #news .sec_tit_box {
  max-width: inherit;
  margin-bottom: 80px;
}
.body_in #videos {
  background-color: transparent;
  border: none;
  padding: min(20vw, 200px) 0 min(20vw, 240px);
}
.body_in #videos:before {
  display: none;
}
.body_in #videos .sec_inner {
  max-width: 1200px;
}
.body_in #videos .sec_inner .flex-box {
  margin-bottom: 100px;
}
.body_in #videos .btn_box a {
  max-width: 300px;
}
.body_in #videos .video_box {
  cursor: pointer;
}
.body_in #videos .video_box .thumbnail {
  margin-bottom: 10px;
  position: relative;
  aspect-ratio: 16/9;
  border: 2px solid var(--main_c);
}
.body_in #videos .video_box .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.body_in #videos .video_box .thumbnail:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.03);
  border: 4px solid var(--main_c);
  opacity: 0;
  transition: 0.3s;
}
.body_in #videos .video_box .thumbnail .play_button img {
  width: 130px;
  height: 130px;
  filter: drop-shadow(0px 0px 8px var(--key_color));
  transition: 0.3s;
}
.body_in #videos .video_box .title {
  color: var(--main_c);
  font-size: 14px;
  line-height: 1.6em;
}
.body_in #videos .video_box:hover .thumbnail:before {
  opacity: 1;
  transition: 0.3s;
  transform: translate(-50%, -50%) scale(1);
}
.body_in #videos .video_box:hover .thumbnail .play_button img {
  width: 140px;
  height: 140px;
  transition: 0.3s;
}
.body_in #tickets {
  padding: min(20vw, 200px) 0 min(20vw, 240px);
}
.body_in #tickets .btn_box {
  text-align: center;
}
.body_in #tickets .btn_box a {
  max-width: 300px;
  display: inline-block;
  width: 30%;
}
.body_in #tickets .tickets_box_outer {
  margin-bottom: 100px;
}
.body_in #tickets .tickets_box {
  border: 1px solid var(--main_c);
  margin-bottom: 80px;
  padding: clamp(40px, 5vw, 60px) clamp(20px, 6vw, 60px) clamp(60px, 5vw, 80px);
}
.body_in #tickets .tickets_box:last-of-type {
  margin-bottom: 0;
}
.body_in #tickets .tickets_box .title {
  font-size: 1.8em;
  padding-bottom: 0.6em;
}
.body_in #tickets .tickets_box p {
  margin-bottom: 1.5em;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 2em;
}
.body_in #tickets .tickets_box img {
  margin-bottom: 1em;
}
.body_in #tickets .tickets_box .price_area ul li {
  margin-bottom: 40px;
  padding-left: 0;
}
.body_in #tickets .tickets_box .price_area ul li::before {
  display: none;
}
.body_in #tickets .tickets_box .price_area ul li .p_tit {
  font-size: 1.4em;
  line-height: 1.7em;
  margin-bottom: 0.5em;
}
.body_in #tickets .tickets_box .price_area ul li .p_tit::before {
  display: none;
}
.body_in #tickets .tickets_box .price_area ul li .p_name {
  margin-bottom: 0.5em;
  font-size: 1.5em;
  line-height: 1.5em;
}
.body_in #tickets .tickets_box .price_area ul li .p_name .tag {
  display: inline-block;
  background-color: var(--main_c);
  color: #00223c;
  font-size: 0.7em;
  line-height: 1.5em;
  padding: 0.1em 1em;
  border-radius: 50px;
  position: relative;
  top: -2px;
  margin-right: 0.6em;
}
.body_in #tickets .tickets_box .price_area ul li .p_name .small {
  font-size: 0.7em;
  padding-left: 0.6em;
}
.body_in #tickets .tickets_box .img_area {
  margin-bottom: 60px;
}
.body_in #tickets .tickets_box .tickets_link {
  margin-bottom: 60px;
}
.body_in #tickets .tickets_box .tickets_link ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--main_c);
}
.body_in #tickets .tickets_box .tickets_link ul li:first-of-type {
  border-top: 1px solid var(--main_c);
}
.body_in #tickets .tickets_box .tickets_link ul li::before {
  display: none;
}
.body_in #tickets .tickets_box .tickets_link ul li .t_name {
  font-size: 1.5em;
  line-height: 1.2em;
  margin: 0;
}
.body_in #tickets .tickets_box .tickets_link ul li a {
  width: 40%;
}
.body_in #tickets .tickets_box .tickets_link ul li a img {
  margin: 0;
  transition: 0.2s;
}
.body_in #tickets .tickets_box .tickets_link ul li a.disactive {
  pointer-events: none;
}
.body_in #tickets .tickets_box .tickets_link ul li a.disactive img {
  opacity: 0.5;
}
.body_in #tickets .tickets_box .tickets_link ul li a:hover {
  opacity: 1;
}
.body_in #tickets .tickets_box .tickets_link ul li a:hover img {
  transform: translateY(-3px);
  transition: 0.2s;
}
.body_in #tickets .tickets_box .note_box {
  font-weight: 400;
  line-height: 2em;
}
.body_in #tickets .tickets_box .note_box h3 {
  position: relative;
  font-size: 1.2em;
  line-height: 1.5em;
  margin-bottom: 0.5em;
  padding-top: 1em;
  border-bottom: 1px dashed var(--main_c);
  padding-bottom: 0.3em;
}
.body_in #tickets .tickets_box .note_box h3::before {
  position: relative;
  content: "●";
  margin-right: 0.5em;
  font-size: 0.8em;
}
.body_in #tickets .tickets_box .bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.body_in #tickets .tickets_box .bg_box .deco {
  position: absolute;
  background-image: url(../images/frame_deco_02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
}
.body_in #tickets .tickets_box .bg_box .deco.d_01 {
  top: 6px;
  left: 6px;
}
.body_in #tickets .tickets_box .bg_box .deco.d_02 {
  bottom: 6px;
  left: 6px;
  transform: scale(1, -1);
}
.body_in #tickets .tickets_box .bg_box .deco.d_03 {
  bottom: 6px;
  right: 6px;
  transform: scale(-1, -1);
}
.body_in #tickets .tickets_box .bg_box .deco.d_04 {
  top: 6px;
  right: 6px;
  transform: scale(-1, 1);
}
.body_in #merch {
  padding: min(20vw, 200px) 0 min(20vw, 240px);
}
.body_in #merch .sales_period_box {
  position: relative;
  display: block;
  height: auto;
  padding: 60px 12px;
  margin-bottom: 120px;
  border-top: 2px solid var(--main_c);
  border-bottom: 2px solid var(--main_c);
  text-align: center;
}
.body_in #merch .sales_period_box .title {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.2em;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.body_in #merch .sales_period_box .period {
  position: relative;
  display: block;
  margin: 0 auto 0.2em;
  font-size: min(34px, 4.8vw);
  line-height: 1em;
  text-align: center;
  white-space: nowrap;
  font-weight: 800;
  margin-bottom: 1em;
}
.body_in #merch .sales_period_box .period span {
  font-size: 0.6em;
}
.body_in #merch .sales_period_box .sales_btn {
  width: min(300px, 40%);
  margin: 0 auto;
}
.body_in #merch .sales_period_box .sales_btn.en {
  width: min(400px, 40%);
}
.body_in #merch .sales_period_box .sales_btn a img {
  transition: 0.2s;
}
.body_in #merch .sales_period_box .sales_btn a:hover {
  opacity: 1;
}
.body_in #merch .sales_period_box .sales_btn a:hover img {
  transform: translateY(-3px);
  transition: 0.2s;
}
.body_in #merch .merch_list {
  margin-bottom: 120px;
}
.body_in #merch .white_box_area {
  margin-bottom: 100px;
}
.body_in #info {
  padding: min(20vw, 200px) 0 min(20vw, 240px);
}
.body_in #info .btn_box {
  text-align: center;
}
.body_in #info .btn_box a {
  max-width: 300px;
  display: inline-block;
  width: 30%;
}
.body_in #info .logo_area {
  margin-bottom: 60px;
}
.body_in #info .logo_area .logo {
  width: 80%;
  margin: 0 auto;
}
.body_in #info .date_area {
  margin-bottom: 120px;
}
.body_in #info .date_area .date_logo {
  margin-bottom: 60px;
}
.body_in #info .date_area .credits_box {
  text-align: center;
}
.body_in #info .date_area .credits_box ul li {
  margin-bottom: 20px;
}
.body_in #info .date_area .credits_box ul li .h {
  display: inline-block;
  color: var(--main_c);
  font-weight: bold;
  margin-bottom: 0.5em;
  padding: 0.1em 1.2em 0.2em;
  border: 1px solid var(--main_c);
  border-radius: 9999px;
}
.body_in #info .date_area .credits_box ul li p {
  margin-bottom: 0;
}
.body_in #info .white_box_area {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .body_in .lang a {
    font-size: 0.8em;
  }
  .body_in #news {
    padding: min(24vw, 140px) 0 0;
  }
  .body_in #news .sec_tit_box {
    margin-bottom: 6vw;
  }
  .body_in #videos {
    padding: min(24vw, 140px) 0 0;
  }
  .body_in #videos .flex-box {
    --flex-gap:10px;
    margin-bottom: 40px !important;
  }
  .body_in #videos .video_box .thumbnail .play_button img {
    width: 80px;
    height: 80px;
  }
  .body_in #tickets {
    padding: min(24vw, 140px) 0 0;
  }
  .body_in #tickets .lang-box {
    margin-bottom: 20px;
  }
  .body_in #tickets .btn_box a {
    width: 80%;
  }
  .body_in #tickets .tickets_box_outer {
    margin-bottom: 40px;
  }
  .body_in #tickets .tickets_box {
    margin-bottom: 40px;
  }
  .body_in #tickets .tickets_box .title {
    font-size: 1.4em;
  }
  .body_in #tickets .tickets_box .price_area ul li {
    margin-bottom: 20px;
  }
  .body_in #tickets .tickets_box .price_area ul li .p_tit {
    font-size: 1.2em;
    padding-bottom: 0.4em;
    margin-bottom: 0.4em;
  }
  .body_in #tickets .tickets_box .price_area ul li .p_name {
    margin-bottom: 0;
    font-size: 1.4em;
  }
  .body_in #tickets .tickets_box .price_area ul li .p_name .price {
    display: block;
    padding-left: 8px;
  }
  .body_in #tickets .tickets_box .price_area ul li .p_name.en:not(:last-of-type) {
    margin-bottom: 16px;
  }
  .body_in #tickets .tickets_box .img_area {
    margin-bottom: 30px;
  }
  .body_in #tickets .tickets_box .tickets_link {
    margin-bottom: 20px;
  }
  .body_in #tickets .tickets_box .tickets_link ul li {
    flex-direction: column;
    padding: 20px 0;
  }
  .body_in #tickets .tickets_box .tickets_link ul li .t_name {
    margin-right: auto;
    margin-bottom: 16px;
    font-size: 1.2em;
  }
  .body_in #tickets .tickets_box .tickets_link ul li a {
    width: 100%;
  }
  .body_in #tickets .tickets_box .bg_box .deco {
    width: 16px;
    height: 16px;
  }
  .body_in #merch {
    padding: min(24vw, 140px) 0 0;
  }
  .body_in #merch .sales_period_box {
    padding: 30px 0;
    margin-bottom: 60px;
  }
  .body_in #merch .sales_period_box .sales_btn {
    width: 100%;
  }
  .body_in #merch .sales_period_box .sales_btn.en {
    width: 100%;
  }
  .body_in #merch .merch_list {
    margin-bottom: 60px;
  }
  .body_in #merch .merch_list .merch_bnr {
    margin-bottom: 40px;
  }
  .body_in #merch .white_box_area {
    margin-bottom: 40px;
  }
  .body_in #info {
    padding: min(24vw, 140px) 0 0;
  }
  .body_in #info .sec_tit_box .sec_tit img {
    height: 8vw;
  }
  .body_in #info .sec_tit_box .sec_tit.deco::before {
    top: -116%;
  }
  .body_in #info .btn_box a {
    width: 80%;
  }
  .body_in #info .logo_area {
    margin-bottom: 20px;
  }
  .body_in #info .logo_area .logo {
    width: 100%;
  }
  .body_in #info .date_area {
    margin-bottom: 46px;
  }
  .body_in #info .date_area .date_logo {
    margin-bottom: 30px;
  }
  .body_in #info .date_area .credits_box ul li .h {
    font-size: 0.8em;
  }
  .body_in #info .white_box_area {
    margin-bottom: 40px;
  }
  .body_in .fix_bg:before {
    display: none;
  }
}
/* ===============================================
# アニメーション
=============================================== */
@-webkit-keyframes ver_swing_r {
  0% {
    transform: translateY(-1.5%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-1.5%);
  }
}
@keyframes ver_swing_r {
  0% {
    transform: translateY(-1.5%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-1.5%);
  }
}
@-webkit-keyframes ver_swing_r02 {
  0% {
    transform: translateY(-3%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-3%);
  }
}
@keyframes ver_swing_r02 {
  0% {
    transform: translateY(-3%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-3%);
  }
}
@-webkit-keyframes slide_l {
  0% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slide_l {
  0% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slide_r {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slide_r {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes rotate_r {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate_r {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate_r02 {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotate_r02 {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes text_jump {
  0% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes text_jump {
  0% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
@-webkit-keyframes brightness {
  0% {
    filter: drop-shadow(1);
  }
  60% {
    filter: brightness(1.4);
  }
  100% {
    filter: brightness(1);
  }
}
@keyframes brightness {
  0% {
    filter: drop-shadow(1);
  }
  60% {
    filter: brightness(1.4);
  }
  100% {
    filter: brightness(1);
  }
}
.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 10000;
}
.loader .bg_anime {
  transition: 0.8s;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/loading/loading_bg.jpg) repeat center;
  background-size: cover;
  -webkit-animation: bgSlide 26s linear infinite;
          animation: bgSlide 26s linear infinite;
  opacity: 1;
}
.loader .left_deco {
  position: absolute;
  top: 50%;
  left: -12vw;
  transform: translateY(-50%);
  width: 40vw;
  transition: 0.8s;
}
.loader .left_deco img {
  -webkit-animation: rotation 60s linear infinite;
          animation: rotation 60s linear infinite;
}
.loader .right_deco {
  position: absolute;
  top: 50%;
  right: -12vw;
  transform: translateY(-50%);
  width: 40vw;
  transition: 0.8s;
}
.loader .right_deco img {
  -webkit-animation: rotation_r 60s linear infinite;
          animation: rotation_r 60s linear infinite;
}
.loader .center_deco {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  z-index: -1;
}
.loader .center_deco img {
  -webkit-animation: hor_move_r 60s linear infinite;
          animation: hor_move_r 60s linear infinite;
}
.loader .center {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.loader .logo {
  -webkit-animation: hor_swing 2.5s linear infinite;
          animation: hor_swing 2.5s linear infinite;
  max-width: 180px;
  margin: 0 auto 3%;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
          animation-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}
.loader .text {
  color: var(--main_c);
  text-align: center;
  font-family: var(--font_en);
  font-size: 24px;
  line-height: 1.2em;
  font-weight: bold;
  letter-spacing: -1px;
}
.loader .text span {
  display: inline-block;
  -webkit-animation: text_jump 1.2s both infinite cubic-bezier(0.65, 0.05, 0.7, 1);
          animation: text_jump 1.2s both infinite cubic-bezier(0.65, 0.05, 0.7, 1);
}
.loader .text span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.loader .text span:nth-of-type(2) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.loader .text span:nth-of-type(3) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.loader .text span:nth-of-type(4) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.loader .text span:nth-of-type(5) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.loader .text span:nth-of-type(6) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.loader .text span:nth-of-type(7) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.loader .text span:nth-of-type(8) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.loader .text span:nth-of-type(9) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.loader .text span:nth-of-type(10) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.loader.off {
  pointer-events: none;
  visibility: hidden;
  transition: 0.3s;
}
.loader.off .bg_anime {
  opacity: 0;
}
.loader.off .left_deco {
  left: -30vw;
}
.loader.off .right_deco {
  right: -30vw;
}
.loader.is_loaded {
  display: none;
}

@media screen and (max-width: 768px) {
  .loader .left_deco {
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    max-width: 500px;
  }
  .loader .right_deco {
    top: 100%;
    left: 50%;
    right: inherit;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    max-width: 500px;
  }
  .loader .center_deco img {
    width: 300%;
  }
  .loader .center {
    top: 50%;
  }
  .loader .logo {
    max-width: 120px;
    margin: 0 auto 10%;
  }
  .loader.off .left_deco {
    left: inherit;
    top: -20%;
  }
  .loader.off .right_deco {
    right: inherit;
    top: 120%;
  }
}
.body_top #fv .main_tit img {
  opacity: 0;
  transform: scale(1.5);
  filter: blur(20px);
}
.body_top #fv .kv_area .day1 {
  opacity: 0;
  transform: translateY(-20vw);
  filter: blur(100px);
}
.body_top #fv .kv_area .day2 {
  opacity: 0;
  transform: translateY(20vw);
  filter: blur(100px);
}
.body_top .fix_bnr {
  bottom: max(-20vw, -200px);
}
.body_top.intro_on #fv .main_tit img {
  transform: scale(1);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 0.4s;
}
.body_top.intro_on #fv .kv_area .day1 {
  transform: translateY(0);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
}
.body_top.intro_on #fv .kv_area .day2 {
  transform: translateY(0);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
}
.body_top.intro_on .fix_bnr {
  bottom: 20px;
  transition-delay: 1s;
}

@media screen and (max-width: 768px) {
  .body_top #fv .kv_area .day1 {
    transform: translateX(-50vw);
  }
  .body_top #fv .kv_area .day2 {
    transform: translateX(50vw);
  }
  .body_top.intro_on #fv .kv_area .day1 {
    transform: translateX(0);
  }
  .body_top.intro_on #fv .kv_area .day2 {
    transform: translateX(0);
  }
}
.body_top.live_page .sec_tit_box.anime {
  opacity: 0;
  transform: translateX(-5%);
  filter: blur(20px);
}
.body_top.live_page .sec_tit_box.js-play {
  transform: translateX(0%);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  transition-delay: 0.2s;
  filter: blur(0);
}
.body_top.live_page .bg_coin.anime {
  transform: scale(0) rotate(360deg);
  opacity: 0;
  filter: blur(20px);
}
.body_top.live_page .bg_coin.js-play {
  transform: scale(1) rotate(0deg);
  opacity: 1;
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  filter: blur(0);
}
.body_top.live_page #date.anime {
  opacity: 0;
  transform: translateY(10%);
  filter: blur(20px);
}
.body_top.live_page #date.anime .bg_box .top {
  opacity: 0;
  transform: translateY(-10%);
  filter: blur(20px);
}
.body_top.live_page #date.js-play {
  transform: translateY(0%);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
}
.body_top.live_page #date.js-play .bg_box .top {
  transform: translateY(0%);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 0.4s;
}
.body_top.live_page #intro.anime {
  opacity: 0;
  transform: translateY(10%);
  filter: blur(20px);
}
.body_top.live_page #intro.js-play {
  transform: translateY(0%);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
}
.body_top.live_page #news.anime {
  opacity: 0;
  transform: translateY(10%);
  filter: blur(20px);
}
.body_top.live_page #news.js-play {
  transform: translateY(0%);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
}
.body_top.live_page #album.anime {
  opacity: 0;
  transform: translateY(10%);
  filter: blur(20px);
}
.body_top.live_page #album.anime .right {
  transition: 0.6s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  filter: blur(20px);
}
.body_top.live_page #album.js-play {
  transform: translateY(0%);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
}
.body_top.live_page #album.js-play .right {
  filter: blur(0px);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition-delay: 0.4s;
}
.body_top.live_page #dm.anime {
  opacity: 0;
  transform: translateY(10%);
  filter: blur(20px);
}
.body_top.live_page #dm.anime .right {
  transition: 0.6s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  filter: blur(20px);
}
.body_top.live_page #dm.js-play {
  transform: translateY(0%);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
}
.body_top.live_page #dm.js-play .right {
  filter: blur(0px);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition-delay: 0.4s;
}
.body_top.live_page #merch.anime {
  opacity: 0;
  transform: translateY(10%);
  filter: blur(20px);
}
.body_top.live_page #merch.anime .bg_box::before {
  width: 0;
  height: 0;
  transition: 1s;
}
.body_top.live_page #merch.js-play {
  transform: translateY(0%);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
}
.body_top.live_page #merch.js-play .bg_box::before {
  width: 100%;
  height: 100%;
  transition-delay: 0.2s;
}
.body_top.live_page #videos.anime {
  opacity: 0;
  transform: translateY(10%);
  filter: blur(20px);
}
.body_top.live_page #videos.js-play {
  transform: translateY(0%);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
}
.body_top.live_page #profile.anime {
  opacity: 0;
  transform: translateY(10%);
  filter: blur(20px);
}
.body_top.live_page #profile.anime .left_anime {
  opacity: 0;
  transform: translateX(-10%);
  filter: blur(20px);
  transition-delay: 0.2s;
}
.body_top.live_page #profile.anime .right {
  opacity: 0;
  transform: translateX(-10%);
  filter: blur(20px);
  transition-delay: 0.6s;
}
.body_top.live_page #profile.anime .bg_box::before {
  transition: 1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  filter: blur(10px);
}
.body_top.live_page #profile.js-play {
  transform: translateY(0%);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
}
.body_top.live_page #profile.js-play .left_anime {
  transform: translateX(0%);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
}
.body_top.live_page #profile.js-play .right {
  transform: translateX(0%);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
}
.body_top.live_page #profile.js-play .bg_box::before {
  filter: blur(0px);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition-delay: 1.1s;
}

.body_in.live_page .sec_tit_box.anime {
  opacity: 0;
  transform: translateX(-5%);
  filter: blur(20px);
}
.body_in.live_page .sec_tit_box.js-play {
  transform: translateX(0%);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  transition-delay: 0.2s;
  filter: blur(0);
  transition-delay: 0.8s;
}
.intro_anime_area .top_box .left .tit.anime img {
  opacity: 0;
  transform: translateX(-20%);
  filter: blur(10px);
}
.intro_anime_area .top_box .left .tit.js-play img {
  transform: translateX(0%);
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 0.1s;
}
.intro_anime_area .top_box .left .txt.anime img {
  opacity: 0;
  transform: translateX(-20%);
  filter: blur(10px);
}
.intro_anime_area .top_box .left .txt.js-play img {
  transform: translateX(0%);
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 0.1s;
}
.intro_anime_area .top_box .left .txt.t06.anime img {
  opacity: 0;
  transform: translateY(-10%) scale(1.5);
  filter: blur(10px);
}
.intro_anime_area .top_box .left .txt.t06.js-play img {
  transform: translateY(0%) scale(1);
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 0.1s;
}
.intro_anime_area .top_box .left .bg_area.anime .deco_01 img {
  opacity: 0;
  filter: blur(10px);
}
.intro_anime_area .top_box .left .bg_area.anime .deco_chara img {
  opacity: 0;
  transform: translateX(-10%);
  filter: blur(10px);
}
.intro_anime_area .top_box .left .bg_area.js-play .deco_01 img {
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 1.4s;
}
.intro_anime_area .top_box .left .bg_area.js-play .deco_chara img {
  transform: translateX(0%);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 1.2s;
}
.intro_anime_area .top_box .right .tit.anime img {
  opacity: 0;
  transform: translateX(20%);
  filter: blur(10px);
}
.intro_anime_area .top_box .right .tit.js-play img {
  transform: translateX(0%);
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 0.1s;
}
.intro_anime_area .top_box .right .txt.anime img {
  opacity: 0;
  transform: translateX(20%);
  filter: blur(10px);
}
.intro_anime_area .top_box .right .txt.js-play img {
  transform: translateX(0%);
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 0.1s;
}
.intro_anime_area .top_box .right .txt.t06.anime img {
  opacity: 0;
  transform: translateY(-10%) scale(1.5);
  filter: blur(10px);
}
.intro_anime_area .top_box .right .txt.t06.js-play img {
  transform: translateY(0%) scale(1);
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 0.5s;
}
.intro_anime_area .top_box .right .bg_area.anime .deco_01 img {
  opacity: 0;
  filter: blur(10px);
}
.intro_anime_area .top_box .right .bg_area.anime .deco_chara img {
  opacity: 0;
  transform: translateX(10%);
  filter: blur(10px);
}
.intro_anime_area .top_box .right .bg_area.js-play .deco_01 img {
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 1.4s;
}
.intro_anime_area .top_box .right .bg_area.js-play .deco_chara img {
  transform: translateX(0%);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 1.2s;
}
.intro_anime_area .middle_box.anime img {
  opacity: 0;
  transform: translateY(20%);
  filter: blur(10px);
}
.intro_anime_area .middle_box.js-play img {
  transform: translateY(0%);
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 0.1s;
}
.intro_anime_area .last_box.anime .main_last img {
  opacity: 0;
  transform: scale(1.8);
  filter: blur(10px);
}
.intro_anime_area .last_box.anime .left_coin img {
  opacity: 0;
  transform: scale(1.5);
  filter: blur(10px);
}
.intro_anime_area .last_box.anime .right_coin img {
  opacity: 0;
  transform: scale(1.5);
  filter: blur(10px);
}
.intro_anime_area .last_box.js-play .main_last img {
  transform: scale(1);
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 1s;
}
.intro_anime_area .last_box.js-play .left_coin img {
  transform: scale(1);
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 1.2s;
}
.intro_anime_area .last_box.js-play .right_coin img {
  transform: scale(1);
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 1.3s;
}
/*# sourceMappingURL=live.css.map */