@charset "UTF-8";
/*=============================================================
 01_base
=============================================================*/
/*=============================================================
 tools
=============================================================*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Antique&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DotGothic16&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Wallpoet&display=swap");
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style-type: none;
}

/*-----------------------------------------------
 root
-----------------------------------------------*/
html {
  overflow-y: scroll;
}

body {
  overflow: hidden;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

/*-----------------------------------------------
 font
-----------------------------------------------*/
html {
  overflow-x: hidden;
  font-size: medium;
}

body {
  font-size: 62.5%; /* 16px -> 10px */
}

div {
  line-height: 0;
  box-sizing: border-box;
}

dt, dd, li,
caption, th, td,
input, button, textarea, select,
h1, h2, h3, h4, h5, h6, address {
  line-height: 0;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

p {
  line-height: 1.5;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

h1 *, h2 *, h3 *, h4 *, h5 *, h6 *,
p input, p button, p select,
li h1, li h2, li h3, li h4, li h5, li h6, li p, li dt, li dd, li li, li th, li td, li input, li button, li textarea, li select,
dd h1, dd h2, dd h3, dd h4, dd h5, dd h6, dd p, dd dt, dd dd, dd li, dd th, dd td, dd input, dd button, dd textarea, dd select,
tr h1, tr h2, tr h3, tr h4, tr h5, tr h6, tr p, tr dt, tr dd, tr li, tr input, tr button, tr textarea, tr select {
  font-size: 100%;
}

input, button, select, option, textarea {
  font-size: 14px;
}

figure {
  margin: 0;
}

section {
  position: relative;
  box-sizing: border-box;
}

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

/*-----------------------------------------------
 cf 
-----------------------------------------------*/
.clearfix {
  min-height: 1px;
}
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

/*-----------------------------------------------
 hover
-----------------------------------------------*/
.hover :hover {
  opacity: 0.8;
  animation: btn 0.5s;
  -webkit-animation: btn 0.5s;
  -moz-animation: btn 0.5s;
}
@media only screen and (max-width: 768px) {
  .hover :hover {
    animation: unset;
    -webkit-animation: unset;
    -moz-animation: unset;
  }
}

@keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes spin-right {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-right-center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes arrow-fade {
  0% {
    fill: rgba(255, 255, 255, 0); /* 初期位置 */
  }
  40% {
    fill: #B100FF;
  }
  80% {
    fill: #fff;
  }
  100% {
    fill: #fff;
  }
}
@keyframes arrow-fade {
  0% {
    fill: rgba(255, 255, 255, 0); /* 初期位置 */
  }
  40% {
    fill: #B100FF;
  }
  80% {
    fill: #fff;
  }
  100% {
    fill: #fff;
  }
}
@-webkit-keyframes scaleFit {
  0% {
    transform: scale(0.5); /* 初期位置 */
  }
  75% {
    transform: scale(1.03); /* 初期位置 */
  }
  100% {
    transform: scale(1); /* 初期位置 */
  }
}
@keyframes scaleFit {
  0% {
    transform: scale(0.5); /* 初期位置 */
  }
  75% {
    transform: scale(1.03); /* 初期位置 */
  }
  100% {
    transform: scale(1); /* 初期位置 */
  }
}
@-webkit-keyframes poemSlide {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes poemSlide {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0px);
  }
}
@-webkit-keyframes fontChange {
  0% {
    font-family: "DotGothic16", sans-serif;
  }
  80% {
    font-family: "Zen Old Mincho", serif;
    transform: skewY(5deg) scale(1.2);
  }
  100% {
    font-family: "Shippori Antique", sans-serif;
    transform: skewY(0deg);
    font-weight: normal;
  }
}
@keyframes fontChange {
  0% {
    font-family: "DotGothic16", sans-serif;
  }
  80% {
    font-family: "Zen Old Mincho", serif;
    transform: skewY(5deg) scale(1.2);
  }
  100% {
    font-family: "Shippori Antique", sans-serif;
    transform: skewY(0deg);
    font-weight: normal;
  }
}
@-webkit-keyframes albumAnime {
  0% {
    background: #fff;
  }
  20% {
    background: #8337E6;
  }
  40% {
    background: #831550;
  }
  60% {
    background: #FB33BF;
  }
  80% {
    background: #61C3BB;
  }
  100% {
    background: #fff;
  }
}
@keyframes albumAnime {
  0% {
    background: #fff;
  }
  20% {
    background: #8337E6;
  }
  40% {
    background: #831550;
  }
  60% {
    background: #FB33BF;
  }
  80% {
    background: #61C3BB;
  }
  100% {
    background: #fff;
  }
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #000;
}

.re-image {
  width: 100%;
  height: auto;
}

.bg__con {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  background: url("../img/parts/bg-pc.webp") no-repeat top center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .bg__con {
    background: url("../img/parts/bg-sp.webp") no-repeat bottom center;
    background-size: cover;
  }
}

.bnr__ticket {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 257px;
  height: 257px;
  z-index: 5;
}
@media only screen and (max-width: 1350px) {
  .bnr__ticket {
    width: 19.037037037vw;
    height: 19.037037037vw;
  }
}
@media only screen and (max-width: 768px) {
  .bnr__ticket {
    bottom: 12.5vw;
    right: 3.125vw;
    width: 28.59375vw;
    height: 28.59375vw;
  }
}
.bnr__ticket__deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 193px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1350px) {
  .bnr__ticket__deco {
    width: 14.2962962963vw;
  }
}
@media only screen and (max-width: 768px) {
  .bnr__ticket__deco {
    width: 21.5625vw;
  }
}
.bnr__ticket__deco svg {
  width: 100%;
  height: auto;
}
.bnr__ticket__deco svg path {
  transition: all 0.3s ease;
}
.bnr__ticket__base {
  position: relative;
  transition: all 0.3s 0.1s ease-out;
}
.bnr__ticket__base img {
  -webkit-animation: spin-right 40s infinite linear;
          animation: spin-right 40s infinite linear;
}
.bnr__ticket__text {
  position: absolute;
  top: 0;
  left: 0;
}
.bnr__ticket__arrow {
  position: absolute;
  bottom: 82px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  transition: all 0.3s 0.1s ease;
}
@media only screen and (max-width: 1350px) {
  .bnr__ticket__arrow {
    bottom: 6.0740740741vw;
  }
}
@media only screen and (max-width: 768px) {
  .bnr__ticket__arrow {
    bottom: 8.75vw;
  }
}
.bnr__ticket__arrow svg {
  width: 18px;
  height: auto;
  margin-left: -4px;
}
@media only screen and (max-width: 1350px) {
  .bnr__ticket__arrow svg {
    width: 1.3333333333vw;
    margin-left: -0.2962962963vw;
  }
}
@media only screen and (max-width: 768px) {
  .bnr__ticket__arrow svg {
    width: 2.03125vw;
    margin-left: -0.3125vw;
  }
}
.bnr__ticket__arrow svg path {
  -webkit-animation: arrow-fade 1.5s ease infinite;
          animation: arrow-fade 1.5s ease infinite;
}
.bnr__ticket__arrow svg:nth-child(2) path {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.bnr__ticket__arrow svg:nth-child(3) path {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.bnr__ticket:hover .bnr__ticket__base {
  transform: scale(0.95);
}
@media only screen and (max-width: 768px) {
  .bnr__ticket:hover .bnr__ticket__base {
    transform: scale(1);
  }
}
.bnr__ticket:hover .bnr__ticket__deco {
  transform: translate(-50%, -50%) scale(1.1);
}
@media only screen and (max-width: 768px) {
  .bnr__ticket:hover .bnr__ticket__deco {
    transform: translate(-50%, -50%);
  }
}
.bnr__ticket:hover .bnr__ticket__deco svg path {
  fill: #B100FF;
}
@media only screen and (max-width: 768px) {
  .bnr__ticket:hover .bnr__ticket__deco svg path {
    fill: rgba(255, 255, 255, 0);
  }
}
.bnr__ticket:hover .bnr__ticket__arrow {
  transform: translateX(-50%) scale(1.3);
}
@media only screen and (max-width: 768px) {
  .bnr__ticket:hover .bnr__ticket__arrow {
    transform: translateX(-50%);
  }
}
.bnr__ticket:hover .bnr__ticket__arrow svg path {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
@media only screen and (max-width: 768px) {
  .bnr__ticket:hover .bnr__ticket__arrow svg path {
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
}

.head__logo {
  position: absolute;
  top: 50px;
  left: 40px;
  width: 150px;
  z-index: 3;
}
@media only screen and (max-width: 1450px) {
  .head__logo {
    left: calc(50% - 685px);
  }
}
@media only screen and (max-width: 768px) {
  .head__logo {
    top: 5.625vw;
    width: 22.65625vw;
    left: 2.5vw;
  }
}
.head__logo a {
  display: block;
  height: 100%;
  transition: all 0.3s ease-out;
}
.head__logo a:hover {
  transform: scale(1.1);
}

.whole__frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 5;
}
.whole__frame__line1 {
  position: absolute;
  top: 18px;
  right: 0;
  width: calc(100% - 170px);
  height: 1px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .whole__frame__line1 {
    top: 2.8125vw;
    width: calc(100% - 26.5625vw);
  }
}
.whole__frame__line2 {
  position: absolute;
  top: 0;
  right: 18px;
  width: 1px;
  height: calc(100% - 510px);
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .whole__frame__line2 {
    right: 2.8125vw;
    height: calc(100% - 70.3125vw);
  }
}
.whole__frame__line3 {
  position: absolute;
  bottom: 18px;
  right: 273px;
  width: calc(100% - 293px);
  height: 1px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .whole__frame__line3 {
    bottom: 2.8125vw;
    right: 11.5625vw;
    width: calc(100% - 14.6875vw);
  }
}
.whole__frame__line4 {
  position: absolute;
  bottom: 18.5px;
  right: 273px;
  width: 1px;
  height: 19px;
  transform: rotate(51.5deg);
  transform-origin: bottom center;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .whole__frame__line4 {
    bottom: 2.890625vw;
    right: 11.40625vw;
    height: 2.96875vw;
  }
}
.whole__frame__deco1 {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 134px;
}
@media only screen and (max-width: 768px) {
  .whole__frame__deco1 {
    top: 2.65625vw;
    left: 2.34375vw;
    width: 20.9375vw;
  }
}
.whole__frame__deco2 {
  position: absolute;
  top: 18px;
  right: 42px;
  width: 90px;
}
@media only screen and (max-width: 768px) {
  .whole__frame__deco2 {
    top: 2.8125vw;
    right: 2.96875vw;
    width: 14.0625vw;
  }
}
.whole__frame__deco3 {
  position: absolute;
  top: calc(100% - 470px);
  right: 14px;
  width: 9px;
}
@media only screen and (max-width: 768px) {
  .whole__frame__deco3 {
    top: calc(100% - 65.625vw);
    right: 2.1875vw;
    width: 1.40625vw;
  }
}
.whole__frame__deco4 {
  position: absolute;
  bottom: 15px;
  left: 14px;
  width: 50px;
}
@media only screen and (max-width: 768px) {
  .whole__frame__deco4 {
    bottom: 2.34375vw;
    left: 2.1875vw;
    width: 7.8125vw;
  }
}
.whole__frame__count {
  position: absolute;
  bottom: 40px;
  right: 27px;
  width: 760px;
}
@media only screen and (max-width: 768px) {
  .whole__frame__count {
    bottom: 6.25vw;
    right: 3.4375vw;
    width: 80.3125vw;
  }
}
.whole__frame__count p {
  position: absolute;
  top: 50%;
  left: 325px;
  transform: translateY(-50%);
  font-size: 34px;
  font-family: "Wallpoet", sans-serif;
  color: #FFEB55;
}
@media only screen and (max-width: 768px) {
  .whole__frame__count p {
    left: 33.75vw;
    font-size: 3.75vw;
  }
}

.frame__base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(15px 0px, calc(100% - 15px) 0px, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0px calc(100% - 15px), 0px 15px);
          clip-path: polygon(15px 0px, calc(100% - 15px) 0px, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0px calc(100% - 15px), 0px 15px);
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
}
@media only screen and (max-width: 768px) {
  .frame__base {
    -webkit-clip-path: polygon(2.34375vw 0px, calc(100% - 2.34375vw) 0px, 100% 2.34375vw, 100% calc(100% - 2.34375vw), calc(100% - 2.34375vw) 100%, 2.34375vw 100%, 0px calc(100% - 2.34375vw), 0px 2.34375vw);
            clip-path: polygon(2.34375vw 0px, calc(100% - 2.34375vw) 0px, 100% 2.34375vw, 100% calc(100% - 2.34375vw), calc(100% - 2.34375vw) 100%, 2.34375vw 100%, 0px calc(100% - 2.34375vw), 0px 2.34375vw);
  }
}
.frame__base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  z-index: 2;
}
.frame__base::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 100%;
  height: calc(100% - 28px);
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .frame__base::after {
    top: 2.1875vw;
    height: calc(100% - 4.375vw);
  }
}
.frame__base span:nth-child(1)::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  transform: rotate(45deg);
  display: block;
  width: 1px;
  height: 21px;
  background-color: #fff;
  transform-origin: bottom right;
}
@media only screen and (max-width: 768px) {
  .frame__base span:nth-child(1)::before {
    top: -0.9375vw;
    height: 3.28125vw;
  }
}
.frame__base span:nth-child(1)::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 0;
  transform: rotate(-45deg);
  display: block;
  width: 1px;
  height: 21px;
  background-color: #fff;
  transform-origin: bottom left;
}
@media only screen and (max-width: 768px) {
  .frame__base span:nth-child(1)::after {
    top: -0.9375vw;
    height: 3.28125vw;
  }
}
.frame__base span:nth-child(2)::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  transform: rotate(-45deg);
  display: block;
  width: 1px;
  height: 21px;
  background-color: #fff;
  transform-origin: top left;
}
@media only screen and (max-width: 768px) {
  .frame__base span:nth-child(2)::before {
    bottom: -0.9375vw;
    height: 3.28125vw;
  }
}
.frame__base span:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  transform: rotate(45deg);
  display: block;
  width: 1px;
  height: 21px;
  background-color: #fff;
  transform-origin: top right;
}
@media only screen and (max-width: 768px) {
  .frame__base span:nth-child(2)::after {
    bottom: -0.9375vw;
    height: 3.28125vw;
  }
}

.btn {
  position: relative;
  width: 440px;
  height: 60px;
  margin: 0 auto;
}
@media only screen and (max-width: 1350px) {
  .btn {
    width: 32.5925925926vw;
    height: 4.4444444444vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn {
    width: 68.75vw;
    height: 9.375vw;
  }
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% - 1px);
  display: block;
  width: 30px;
  height: 100%;
  -webkit-clip-path: polygon(0 50%, 97% 0, 100% 103%);
          clip-path: polygon(0 50%, 97% 0, 100% 103%);
  background-color: #fff;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 1350px) {
  .btn::before {
    width: 2.2222222222vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn::before {
    width: 4.6875vw;
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - 1px);
  display: block;
  width: 30px;
  height: 100%;
  -webkit-clip-path: polygon(0 -3%, 100% 50%, 0 103%);
          clip-path: polygon(0 -3%, 100% 50%, 0 103%);
  background-color: #fff;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 1350px) {
  .btn::after {
    width: 2.2222222222vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn::after {
    width: 4.6875vw;
  }
}
.btn__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 24px;
  color: #B100FF;
  font-family: "Dela Gothic One", sans-serif;
  background-color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 1350px) {
  .btn__link {
    font-size: 1.7777777778vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn__link {
    font-size: 3.75vw;
  }
}
.btn__arrow {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  z-index: 2;
  width: 120px;
}
@media only screen and (max-width: 1350px) {
  .btn__arrow {
    width: 8.8888888889vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn__arrow {
    width: 18.75vw;
  }
}
.btn__arrow svg {
  width: 100%;
  height: auto;
}
.btn__arrow svg path {
  transition: all 0.25s ease;
}
.btn:hover::before, .btn:hover::after {
  background-color: #B100FF;
}
@media only screen and (max-width: 768px) {
  .btn:hover::before, .btn:hover::after {
    background-color: #fff;
  }
}
.btn:hover .btn__link {
  color: #fff;
  font-size: 20px;
  background-color: #B100FF;
}
@media only screen and (max-width: 1350px) {
  .btn:hover .btn__link {
    font-size: 1.4814814815vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn:hover .btn__link {
    font-size: 3.75vw;
    color: #B100FF;
    background-color: #fff;
  }
}
.btn:hover .btn__arrow {
  transform: translateY(-50%) translateX(15px) scale(0.8);
}
@media only screen and (max-width: 1350px) {
  .btn:hover .btn__arrow {
    transform: translateY(-50%) translateX(1.1111111111vw) scale(0.8);
  }
}
@media only screen and (max-width: 768px) {
  .btn:hover .btn__arrow {
    transform: translateY(-50%);
  }
}
.btn:hover .btn__arrow svg path {
  fill: #fff;
}
@media only screen and (max-width: 768px) {
  .btn:hover .btn__arrow svg path {
    fill: #B100FF;
  }
}
.btn__back .btn__arrow {
  right: inherit;
  left: 0;
}
.btn__back:hover .btn__arrow {
  transform: translateY(-50%) translateX(-15px) scale(0.8);
}
@media only screen and (max-width: 1350px) {
  .btn__back:hover .btn__arrow {
    transform: translateY(-50%) translateX(-1.1111111111vw) scale(0.8);
  }
}
@media only screen and (max-width: 768px) {
  .btn__back:hover .btn__arrow {
    transform: translateY(-50%);
  }
}
.btn.off {
  opacity: 0.5;
  pointer-events: none;
}
.btn.off .btn__link {
  color: #fff;
  background-color: #000;
  box-sizing: border-box;
  border-top: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
}
.btn.off .btn__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% - 2.5px);
  display: block;
  width: 30px;
  height: 100%;
  -webkit-clip-path: polygon(0 50%, 97% 0, 100% 103%);
          clip-path: polygon(0 50%, 97% 0, 100% 103%);
  background-color: #000;
  transition: all 0.25s ease;
  z-index: 2;
}
@media only screen and (max-width: 1350px) {
  .btn.off .btn__link::before {
    width: 2.2222222222vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn.off .btn__link::before {
    width: 4.6875vw;
  }
}
.btn.off .btn__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - 2.5px);
  display: block;
  width: 30px;
  height: 100%;
  -webkit-clip-path: polygon(0 -3%, 100% 50%, 0 103%);
          clip-path: polygon(0 -3%, 100% 50%, 0 103%);
  background-color: #000;
  transition: all 0.25s ease;
  z-index: 2;
}
@media only screen and (max-width: 1350px) {
  .btn.off .btn__link::after {
    width: 2.2222222222vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn.off .btn__link::after {
    width: 4.6875vw;
  }
}
.btn.off .btn__arrow svg path {
  fill: #fff;
}
.btn.off:hover::before, .btn.off:hover::after {
  background-color: #fff;
}
.btn.off:hover .btn__link {
  color: #B100FF;
  background-color: #000;
}
.btn.off:hover .btn__arrow {
  transform: translateY(-50%);
}
.btn.off:hover .btn__arrow svg path {
  fill: #fff;
}

#btn-nav {
  position: fixed;
  top: 38px;
  right: 38px;
  z-index: 20;
  width: 64px;
  height: 64px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #btn-nav {
    top: 5.9375vw;
    right: 5.9375vw;
    width: 10vw;
    height: 10vw;
  }
}
#btn-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background-color: #fff;
  opacity: 0;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  #btn-nav::before {
    border-radius: 2.8125vw;
  }
}
#btn-nav .base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/global/btn_nav_off.png") no-repeat top center;
  background-size: contain;
}
#btn-nav span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: #fff;
  transform-origin: 0 0;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  #btn-nav span {
    width: 4.6875vw;
    height: 0.3125vw;
  }
}
#btn-nav span:nth-of-type(1) {
  top: 22px;
}
@media only screen and (max-width: 768px) {
  #btn-nav span:nth-of-type(1) {
    top: 3.4375vw;
  }
}
#btn-nav span:nth-of-type(2) {
  top: 32px;
}
@media only screen and (max-width: 768px) {
  #btn-nav span:nth-of-type(2) {
    top: 5vw;
  }
}
#btn-nav span:nth-of-type(3) {
  top: 42px;
}
@media only screen and (max-width: 768px) {
  #btn-nav span:nth-of-type(3) {
    top: 6.5625vw;
  }
}
#btn-nav.active::before {
  opacity: 1;
}
#btn-nav.active .base {
  background-image: url("../img/global/btn_nav_on.png");
}
#btn-nav.active span {
  background-color: #B100FF;
}
#btn-nav.active span:nth-of-type(1) {
  top: 32px;
  transform: rotate(45deg) translateX(-50%);
}
@media only screen and (max-width: 768px) {
  #btn-nav.active span:nth-of-type(1) {
    top: 5vw;
  }
}
#btn-nav.active span:nth-of-type(2) {
  opacity: 0;
}
#btn-nav.active span:nth-of-type(3) {
  top: 32px;
  transform: rotate(-45deg) translateX(-50%);
}
@media only screen and (max-width: 768px) {
  #btn-nav.active span:nth-of-type(3) {
    top: 5vw;
  }
}
#btn-nav.active p {
  opacity: 0;
  transform: translateY(10px) translateX(-50%);
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: right;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50vw;
  width: 150vw;
  height: 100%;
  background-color: rgba(177, 0, 255, 0.6);
  opacity: 0;
  transition: all 0.25s ease;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
#header svg {
  width: 100%;
  height: auto;
}
#header .header__con {
  width: 500px;
  overflow-y: scroll;
  padding: 180px 35px 0;
  transform: translateX(300px);
  box-sizing: border-box;
  background-color: #fff;
  opacity: 0;
  transition: all 0.4s 0.1s ease;
}
@media only screen and (max-width: 768px) {
  #header .header__con {
    width: 100%;
    padding: 28.125vw 5.46875vw 0;
    transform: unset;
  }
}
#header .header__con__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#header .header__con__list__item:not(:last-child) {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  #header .header__con__list__item:not(:last-child) {
    margin-bottom: 9.375vw;
  }
}
#header .header__con__list__item a {
  position: relative;
  display: grid;
  grid-template-columns: 26px auto 1fr 60px;
  align-items: center;
  gap: 0 8px;
  width: 100%;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  #header .header__con__list__item a {
    grid-template-columns: 4.0625vw auto 1fr 9.375vw;
    gap: 0 1.25vw;
  }
}
#header .header__con__list__item a .deco svg {
  width: 100%;
  height: auto;
}
#header .header__con__list__item a .deco svg path {
  stroke: #B100FF;
  transition: all 0.3s ease;
}
#header .header__con__list__item a p {
  font-size: 34px;
  line-height: 1;
  color: #B100FF;
  font-family: "Dela Gothic One", sans-serif;
}
@media only screen and (max-width: 768px) {
  #header .header__con__list__item a p {
    font-size: 5.3125vw;
  }
}
#header .header__con__list__item a .line {
  border-top: 1px solid #B100FF;
  background-color: #B100FF;
}
#header .header__con__list__item a .arrow svg {
  width: 23px;
  height: auto;
  margin-right: -8px;
}
@media only screen and (max-width: 768px) {
  #header .header__con__list__item a .arrow svg {
    width: 3.59375vw;
    margin-right: -1.25vw;
  }
}
#header .header__con__list__item a .arrow svg path {
  transition: all 0.3s linear;
}
#header .header__con__list__item a .arrow svg:nth-child(3) path {
  transition-delay: 0.1s;
}
#header .header__con__list__item a:hover .deco svg path {
  fill: #B100FF;
}
@media only screen and (max-width: 768px) {
  #header .header__con__list__item a:hover .deco svg path {
    fill: #fff;
    stroke: #B100FF;
  }
}
#header .header__con__list__item a:hover .arrow svg:nth-child(2) path, #header .header__con__list__item a:hover .arrow svg:nth-child(3) path {
  fill: #B100FF;
}
@media only screen and (max-width: 768px) {
  #header .header__con__list__item a:hover .arrow svg:nth-child(2) path, #header .header__con__list__item a:hover .arrow svg:nth-child(3) path {
    fill: #fff;
  }
}
#header .header__con__list__item.off {
  opacity: 0.5;
  pointer-events: none;
}
#header .header__con__official {
  margin-top: 30px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  #header .header__con__official {
    margin-top: 4.6875vw;
    padding-bottom: 14.0625vw;
  }
}
#header .header__con__official__text {
  font-size: 16px;
  font-weight: bold;
  color: #B100FF;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #B100FF;
}
@media only screen and (max-width: 768px) {
  #header .header__con__official__text {
    font-size: 2.5vw;
    padding-bottom: 1.875vw;
    margin-bottom: 3.125vw;
  }
}
#header .header__con__official__list {
  display: grid;
  grid-template-columns: 38px 24px;
  gap: 0 30px;
}
@media only screen and (max-width: 768px) {
  #header .header__con__official__list {
    grid-template-columns: 5.9375vw 3.75vw;
    gap: 0 4.6875vw;
  }
}
#header.active {
  opacity: 1;
  visibility: inherit;
}
#header.active::before {
  opacity: 1;
}
#header.active .header__con {
  transform: translate(0px);
  opacity: 1;
}

#footer {
  position: relative;
  padding: 610px 0 55px;
  background: url("../img/global/bg_mosaic-pc.png") no-repeat top 72px center, url("../img/global/bg_footer-pc.png") repeat-x top center;
  background-size: 100% auto;
  z-index: 2;
}
@media only screen and (max-width: 2000px) {
  #footer {
    background-size: 2000px auto;
  }
}
@media only screen and (max-width: 768px) {
  #footer {
    padding: 52.34375vw 0 13.28125vw;
    background-image: url("../img/global/bg_mosaic-sp.png"), url("../img/global/bg_footer-sp.png");
    background-position: top 21.875vw center, top center;
    background-size: 100vw auto;
  }
}
#footer .footer__deco__box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#footer .footer__deco__box__shine {
  position: absolute;
  top: 260px;
  left: 50%;
  transform: translateX(-50%);
  width: 1201px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__deco__box__shine {
    top: 21.875vw;
    width: 106.09375vw;
  }
}
#footer .footer__deco__box__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 610px);
  background-image: linear-gradient(0deg, rgb(0, 0, 0) 34%, rgb(144, 9, 203));
}
@media only screen and (max-width: 768px) {
  #footer .footer__deco__box__bg {
    height: calc(100% - 52.34375vw);
  }
}
#footer .footer__deco__box__illust {
  position: absolute;
  top: 332px;
  left: 50%;
  transform: translateX(-50%);
  width: 1438px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__deco__box__illust {
    top: 27.8125vw;
    width: 127.03125vw;
  }
}
#footer .footer__share {
  position: relative;
  margin: 95px 0 25px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__share {
    margin: 14.84375vw 0 3.90625vw;
  }
}
#footer .footer__share__text {
  width: 181px;
  margin: 0 auto 35px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__share__text {
    width: 28.4375vw;
    margin-bottom: 5.46875vw;
  }
}
#footer .footer__share__text svg {
  width: 100%;
  height: auto;
}
#footer .footer__share__btn {
  width: 404px;
  height: 60px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__share__btn {
    width: 64.6875vw;
    height: 9.375vw;
  }
}
#footer .footer__share__btn .btn__link {
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #footer .footer__share__btn .btn__link {
    font-size: 3.4375vw;
  }
}
#footer .footer__share__btn:hover::before, #footer .footer__share__btn:hover::after {
  background-color: #000;
}
@media only screen and (max-width: 768px) {
  #footer .footer__share__btn:hover::before, #footer .footer__share__btn:hover::after {
    background-color: #fff;
  }
}
#footer .footer__share__btn:hover .btn__link {
  font-size: 14px;
  color: #B100FF;
  background-color: #000;
}
@media only screen and (max-width: 768px) {
  #footer .footer__share__btn:hover .btn__link {
    font-size: 3.4375vw;
    background-color: #fff;
  }
}
#footer .footer__sns {
  position: relative;
  margin-bottom: 42px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__sns {
    margin-bottom: 6.5625vw;
  }
}
#footer .footer__sns__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__sns__list {
    gap: 0 2.8125vw;
  }
}
#footer .footer__sns__list__item {
  width: 48px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__sns__list__item {
    width: 7.5vw;
  }
}
#footer .footer__sns__list__item a {
  display: block;
}
#footer .footer__official {
  position: relative;
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__official {
    margin-bottom: 5.46875vw;
  }
}
#footer .footer__official__text {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}
#footer .footer__official__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__official__list {
    gap: 0 2.8125vw;
  }
}
#footer .footer__official__list__item {
  width: 29px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__official__list__item {
    width: 4.53125vw;
  }
}
#footer .footer__official__list__item a {
  display: block;
}
#footer .footer__bnr {
  position: relative;
  margin-bottom: 52px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__bnr {
    width: 65.625vw;
    margin: 0 auto 6.5625vw;
  }
}
#footer .footer__bnr__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 20px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__bnr__list {
    gap: 2.1875vw 2.8125vw;
  }
}
#footer .footer__bnr__list__item {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__bnr__list__item {
    width: 31.25vw;
  }
}
#footer .footer__bnr__list__item a {
  display: block;
}
#footer .footer__supporter {
  position: relative;
  margin-bottom: 28px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__supporter {
    width: 78.125vw;
    margin: 0 auto 7.8125vw;
  }
}
#footer .footer__supporter p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #footer .footer__supporter p {
    font-size: 2.5vw;
    margin-bottom: 1.5625vw;
  }
}
#footer .footer__supporter__list {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__supporter__list {
    gap: 0 2.8125vw;
  }
}
#footer .footer__supporter__list__item {
  width: 240px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__supporter__list__item {
    width: 37.5vw;
  }
}
#footer .footer__supporter__list__item a {
  display: block;
}
#footer .footer__copy {
  position: relative;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #footer .footer__copy {
    font-size: 2.1875vw;
  }
}
#footer .footer__deco__box__shine {
  opacity: 0;
  filter: blur(10px);
  transition: all 0.6s 0.5s ease;
}
#footer .footer__deco__box__illust {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  transition: all 0.8s 1s ease;
}
#footer.move-on .footer__deco__box__shine {
  opacity: 1;
  filter: blur(0px);
}
#footer.move-on .footer__deco__box__illust {
  transform: translateX(-50%) translateY(0px);
  opacity: 1;
}

#modal-block {
  background-color: rgba(177, 0, 255, 0.8);
}
#modal-block .close {
  position: absolute;
  top: 38px;
  right: 38px;
  z-index: 20;
  width: 64px;
  height: 64px;
  background: url("../img/parts/modal_close.png") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #modal-block .close {
    top: 5.9375vw;
    right: 5.9375vw;
    width: 10vw;
    height: 10vw;
  }
}