@charset "UTF-8";
/*=============================================================
 01_base
=============================================================*/
/*=============================================================
 tools
=============================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Red+Rose:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&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;
}

a,
a:link,
a:visited {
  color: #1d99c1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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 spinStar {
  0% {
    transform: translateY(-50%) rotateY(0deg) scale(1);
  }
  100% {
    transform: translateY(-50%) rotateY(360deg) scale(1.4);
  }
}
@keyframes spinStar {
  0% {
    transform: translateY(-50%) rotateY(0deg) scale(1);
  }
  100% {
    transform: translateY(-50%) rotateY(360deg) scale(1.4);
  }
}
@-webkit-keyframes spinStarPop {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
@keyframes spinStarPop {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
@-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-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-right-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left-center {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left-center {
  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 popFadeIn {
  0% {
    transform: scale(0); /* 初期位置 */
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes popFadeIn {
  0% {
    transform: scale(0); /* 初期位置 */
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes load-shine {
  0% {
    transform: rotateY(0deg);
  }
  30% {
    transform: rotateY(360deg);
  }
  70% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes load-shine {
  0% {
    transform: rotateY(0deg);
  }
  30% {
    transform: rotateY(360deg);
  }
  70% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
body {
  position: relative;
  color: #0B0B0B;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #0B0B0B;
}

.body-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
}
.body-bg span {
  display: block;
  width: 100%;
  height: 100%;
}
.body-bg span:nth-child(1) {
  background-image: linear-gradient(170deg, #f46d3b, #ff895d);
}
.body-bg span:nth-child(2) {
  background-image: linear-gradient(170deg, #2a2350, #31359f);
}

.bg-con {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.bg-con .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}
.bg-con .line img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bg-con .sun {
  position: absolute;
  top: 50%;
  left: -600px;
  transform: translateY(-50%);
  width: 1200px;
}
@media only screen and (max-width: 768px) {
  .bg-con .sun {
    width: 142.1875vw;
    left: -95.3125vw;
  }
}
.bg-con .sun img {
  -webkit-animation: spin-left 80s infinite linear;
          animation: spin-left 80s infinite linear;
}
.bg-con .moon {
  position: absolute;
  top: 50%;
  right: -570px;
  transform: translateY(-50%);
  width: 1140px;
}
@media only screen and (max-width: 768px) {
  .bg-con .moon {
    width: 137.96875vw;
    right: -93.75vw;
  }
}
.bg-con .moon img {
  -webkit-animation: spin-right 80s infinite linear;
          animation: spin-right 80s infinite linear;
}

.whole-frame {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  pointer-events: none;
}
.whole-frame .frame-top {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 217px;
}
@media only screen and (max-width: 768px) {
  .whole-frame .frame-top {
    top: 0.78125vw;
    width: 29.84375vw;
  }
}
.whole-frame .frame-bottom {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 217px;
}
@media only screen and (max-width: 768px) {
  .whole-frame .frame-bottom {
    bottom: 0.78125vw;
    width: 29.84375vw;
  }
}
.whole-frame .frame-left {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 34px;
}
@media only screen and (max-width: 768px) {
  .whole-frame .frame-left {
    width: 4.6875vw;
    left: 0.78125vw;
  }
}
.whole-frame .frame-right {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 32px;
}
@media only screen and (max-width: 768px) {
  .whole-frame .frame-right {
    width: 4.375vw;
    right: 0.78125vw;
  }
}

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

.flex-wrap {
  display: flex;
}

.grid-wrap {
  display: grid;
}

.btn {
  width: 490px;
  height: 126px;
  margin: 0 auto;
  padding: 30px;
  background: url("../img/parts/btn_frame_gl.png") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 2000px) {
  .btn {
    width: 24.5vw;
    height: 6.3vw;
    padding: 1.5vw;
  }
}
@media only screen and (max-width: 1250px) {
  .btn {
    width: 39.2vw;
    height: 10.08vw;
    padding: nase_vw(30);
  }
}
@media only screen and (max-width: 768px) {
  .btn {
    width: 76.5625vw;
    height: 19.6875vw;
    padding: 4.6875vw;
  }
}
.btn svg {
  width: 100%;
  height: auto;
}
.btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.btn a:hover .arrow {
  opacity: 0;
  transform: translateY(-50%) translateX(20px);
}
@media only screen and (max-width: 768px) {
  .btn a:hover .arrow {
    opacity: 1;
    transform: translateY(-50%);
  }
}
.btn a:hover .txt {
  transform: scale(1.05);
}
@media only screen and (max-width: 768px) {
  .btn a:hover .txt {
    transform: scale(1);
  }
}
.btn .txt {
  width: 196px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 2000px) {
  .btn .txt {
    width: 9.8vw;
  }
}
@media only screen and (max-width: 1250px) {
  .btn .txt {
    width: 15.68vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn .txt {
    width: 30.625vw;
  }
}
.btn .arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 63px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 2000px) {
  .btn .arrow {
    right: 1.1vw;
    width: 3.15vw;
  }
}
@media only screen and (max-width: 1250px) {
  .btn .arrow {
    right: 1.76vw;
    width: 5.04vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn .arrow {
    right: 3.4375vw;
    width: 9.84375vw;
  }
}
.btn__back .txt {
  position: relative;
  width: 168px;
  top: 3px;
}
@media only screen and (max-width: 2000px) {
  .btn__back .txt {
    width: 8.4vw;
    top: 0.15vw;
  }
}
@media only screen and (max-width: 1250px) {
  .btn__back .txt {
    width: 13.44vw;
    top: 0.24vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn__back .txt {
    width: 26.25vw;
    top: 0.46875vw;
  }
}
.btn__back .arrow {
  right: inherit;
  left: 22px;
  transform: translateY(-50%) scale(-1, 1);
}
@media only screen and (max-width: 2000px) {
  .btn__back .arrow {
    left: 1.1vw;
  }
}
@media only screen and (max-width: 1250px) {
  .btn__back .arrow {
    left: 1.76vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn__back .arrow {
    left: 3.4375vw;
  }
}
.btn__back a:hover .arrow {
  opacity: 0;
  transform: translateY(-50%) scale(-1, 1) translateX(20px);
}
@media only screen and (max-width: 768px) {
  .btn__back a:hover .arrow {
    opacity: 1;
    transform: translateY(-50%) scale(-1, 1);
  }
}
.btn__bl {
  background-image: url("../img/parts/btn_frame_bl.png");
}
.btn__bl .txt svg path, .btn__bl .arrow svg path {
  fill: #fff;
}
.btn__gl .txt svg path, .btn__gl .arrow svg path {
  fill: #A37941;
}
.btn__purchase .txt {
  position: relative;
  width: 326px;
  top: 2px;
  left: -35px;
}
@media only screen and (max-width: 2000px) {
  .btn__purchase .txt {
    width: 16.3vw;
    top: 0.1vw;
    left: -1.75vw;
  }
}
@media only screen and (max-width: 1250px) {
  .btn__purchase .txt {
    width: 26.08vw;
    top: 0.16vw;
    left: -2.8vw;
  }
}
@media only screen and (max-width: 1250px) {
  .btn__purchase .txt {
    width: 50.9375vw;
    top: 0.3125vw;
    left: -5.46875vw;
  }
}
.btn__purchase a:hover .txt {
  left: 0;
}
@media only screen and (max-width: 768px) {
  .btn__purchase a:hover .txt {
    left: -10.15625vw;
  }
}
.btn.off {
  opacity: 0.5;
  pointer-events: none;
}

#head-logo {
  position: absolute;
  top: 20px;
  left: 27px;
  width: 213px;
}
@media only screen and (max-width: 768px) {
  #head-logo {
    top: 3.125vw;
    left: 3.4375vw;
    width: 33.28125vw;
  }
}
#head-logo img {
  transition: all 0.3s ease;
}
#head-logo .on {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
}
#head-logo:hover .off {
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  #head-logo:hover .off {
    opacity: 1;
  }
}

#bnr-ticket {
  position: fixed;
  bottom: -10px;
  right: -10px;
  width: 326px;
  z-index: 10;
}
@media only screen and (max-width: 2000px) {
  #bnr-ticket {
    bottom: -0.5vw;
    right: -0.5vw;
    width: 16.3vw;
  }
}
@media only screen and (max-width: 1250px) {
  #bnr-ticket {
    bottom: -0.8vw;
    right: -0.8vw;
    width: 26.08vw;
  }
}
@media only screen and (max-width: 768px) {
  #bnr-ticket {
    bottom: -2.1875vw;
    right: -2.1875vw;
    width: 39.0625vw;
  }
}
#bnr-ticket a {
  display: block;
  transition: all 0.4s ease;
}
#bnr-ticket a:hover {
  transform: scale(1.1);
}
@media only screen and (max-width: 768px) {
  #bnr-ticket a:hover {
    transform: scale(1);
  }
}
#bnr-ticket a:hover .base, #bnr-ticket a:hover .motif {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media only screen and (max-width: 768px) {
  #bnr-ticket a:hover .base, #bnr-ticket a:hover .motif {
    -webkit-animation-play-state: inherit;
            animation-play-state: inherit;
  }
}
#bnr-ticket a:hover .txt {
  transform: scale(0.9);
}
@media only screen and (max-width: 768px) {
  #bnr-ticket a:hover .txt {
    transform: scale(1);
  }
}
#bnr-ticket .base {
  -webkit-animation: spin-right 80s infinite linear;
          animation: spin-right 80s infinite linear;
}
#bnr-ticket .motif {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: spin-left 80s infinite linear;
          animation: spin-left 80s infinite linear;
}
#bnr-ticket .txt {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s 0.1s ease;
}

#btn-nav {
  position: fixed;
  top: -30px;
  right: -30px;
  z-index: 20;
  width: 239px;
  height: 202px;
}
@media only screen and (max-width: 1250px) {
  #btn-nav {
    top: -2.4vw;
    right: -2.4vw;
    width: 19.12vw;
    height: 16.16vw;
  }
}
@media only screen and (max-width: 768px) {
  #btn-nav {
    top: -3.90625vw;
    right: -3.90625vw;
    width: 28.125vw;
    height: 23.125vw;
  }
}
#btn-nav .base {
  width: 100%;
  height: 100%;
  background: url("../img/global/nav_btn_off.svg") no-repeat top center;
  background-size: contain;
  transition: all 0.4s ease;
}
#btn-nav span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background-color: #fff;
  transform-origin: 0 0;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1250px) {
  #btn-nav span {
    width: 3.84vw;
    height: 0.16vw;
  }
}
@media only screen and (max-width: 768px) {
  #btn-nav span {
    width: 5.9375vw;
    height: 0.234375vw;
  }
}
#btn-nav span:nth-of-type(1) {
  top: 90px;
}
@media only screen and (max-width: 1250px) {
  #btn-nav span:nth-of-type(1) {
    top: 7.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #btn-nav span:nth-of-type(1) {
    top: 10.15625vw;
  }
}
#btn-nav span:nth-of-type(2) {
  top: 98px;
}
@media only screen and (max-width: 1250px) {
  #btn-nav span:nth-of-type(2) {
    top: 7.84vw;
  }
}
@media only screen and (max-width: 768px) {
  #btn-nav span:nth-of-type(2) {
    top: 10.9375vw;
  }
}
#btn-nav p {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #fff;
  font-family: "Red Rose", serif;
  font-weight: bold;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1250px) {
  #btn-nav p {
    top: 8vw;
    font-size: 1.12vw;
  }
}
@media only screen and (max-width: 768px) {
  #btn-nav p {
    top: 11.09375vw;
    font-size: 1.71875vw;
  }
}
#btn-nav.active .base {
  background-image: url("../img/global/nav_btn_on.svg");
}
#btn-nav.active span:nth-of-type(1) {
  top: 100px;
  transform: rotate(20deg) translateX(-50%);
}
@media only screen and (max-width: 1250px) {
  #btn-nav.active span:nth-of-type(1) {
    top: 8vw;
  }
}
@media only screen and (max-width: 768px) {
  #btn-nav.active span:nth-of-type(1) {
    top: 11.25vw;
  }
}
#btn-nav.active span:nth-of-type(2) {
  top: 100px;
  transform: rotate(-20deg) translateX(-50%);
}
@media only screen and (max-width: 1250px) {
  #btn-nav.active span:nth-of-type(2) {
    top: 8vw;
  }
}
@media only screen and (max-width: 768px) {
  #btn-nav.active span:nth-of-type(2) {
    top: 11.25vw;
  }
}
#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;
  background-color: rgba(11, 11, 11, 0.8);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
#header svg {
  width: 100%;
  height: auto;
}
#header nav {
  width: 500px;
  overflow-y: scroll;
  padding: 25px 0;
  transform: translateX(300px);
  box-sizing: border-box;
  background-color: #A37941;
  opacity: 0;
  transition: all 0.4s 0.1s ease;
}
@media only screen and (max-width: 1250px) {
  #header nav {
    width: 40vw;
    padding: 2vw 0;
    transform: translateX(24vw);
  }
}
@media only screen and (max-width: 768px) {
  #header nav {
    width: 100%;
    padding: 3.90625vw 0 5.46875vw;
    transform: unset;
  }
}
#header nav .deco {
  width: 134px;
  margin: 0 auto;
}
@media only screen and (max-width: 1250px) {
  #header nav .deco {
    width: 10.72vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .deco {
    width: 20.9375vw;
  }
}
#header nav ul {
  margin: 92px 0 135px;
  padding-left: 85px;
}
@media only screen and (max-width: 1250px) {
  #header nav ul {
    margin: 7.36vw 0 10.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul {
    padding: 11.71875vw 0;
    padding-left: 21.875vw;
  }
}
#header nav ul li:not(:last-child) {
  margin-bottom: 74px;
}
@media only screen and (max-width: 1250px) {
  #header nav ul li:not(:last-child) {
    margin-bottom: 5.92vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li:not(:last-child) {
    margin-bottom: 12.5vw;
  }
}
#header nav ul li a {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 40px;
}
@media only screen and (max-width: 1250px) {
  #header nav ul li a {
    padding-left: 3.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li a {
    padding-left: 7.5vw;
  }
}
#header nav ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 31px;
  height: 38px;
  background: url("../img/global/nsv_star.svg") no-repeat top center;
  background-size: contain;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1250px) {
  #header nav ul li a::before {
    width: 2.48vw;
    height: 3.04vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li a::before {
    width: 5.625vw;
    height: 6.875vw;
  }
}
#header nav ul li a:hover::before {
  filter: brightness(10);
  -webkit-animation: spinStar 0.8s ease forwards;
          animation: spinStar 0.8s ease forwards;
}
@media only screen and (max-width: 768px) {
  #header nav ul li a:hover::before {
    filter: brightness(1);
    -webkit-animation: unset;
            animation: unset;
  }
}
#header nav ul li.off {
  opacity: 0.5;
  pointer-events: none;
}
#header nav .top {
  width: 82px;
}
@media only screen and (max-width: 1250px) {
  #header nav .top {
    width: 6.56vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .top {
    width: 14.84375vw;
  }
}
#header nav .news {
  width: 123px;
}
@media only screen and (max-width: 1250px) {
  #header nav .news {
    width: 9.84vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .news {
    width: 22.34375vw;
  }
}
#header nav .ticket {
  width: 138px;
}
@media only screen and (max-width: 1250px) {
  #header nav .ticket {
    width: 11.04vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .ticket {
    width: 25vw;
  }
}
#header nav .music {
  width: 128px;
}
@media only screen and (max-width: 1250px) {
  #header nav .music {
    width: 10.24vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .music {
    width: 23.125vw;
  }
}
#header nav .merch {
  width: 141px;
}
@media only screen and (max-width: 1250px) {
  #header nav .merch {
    width: 11.28vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .merch {
    width: 25.46875vw;
  }
}
#header nav .video {
  width: 126px;
}
@media only screen and (max-width: 1250px) {
  #header nav .video {
    width: 10.08vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .video {
    width: 22.96875vw;
  }
}
#header nav .information {
  width: 277px;
}
@media only screen and (max-width: 1250px) {
  #header nav .information {
    width: 22.16vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .information {
    width: 50.15625vw;
  }
}
#header.active {
  opacity: 1;
  visibility: inherit;
}
#header.active nav {
  transform: translate(0px);
  opacity: 1;
}

#footer {
  position: relative;
  padding: 80px 0 50px;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  #footer {
    padding: 14.0625vw 0 10.625vw;
    background-size: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #footer {
    padding: 4.375vw 0 10.15625vw;
  }
}
#footer .wrap {
  position: relative;
}
#footer .share {
  margin-bottom: 32px;
}
@media only screen and (max-width: 768px) {
  #footer .share {
    margin-bottom: 4.6875vw;
  }
}
#footer .share p {
  width: 136px;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 768px) {
  #footer .share p {
    width: 26.25vw;
    margin-bottom: 4.6875vw;
  }
}
#footer .share p svg {
  width: 100%;
  height: auto;
}
#footer .share .btn {
  width: 435px;
  height: 72px;
  background-image: url("../img/global/bg_share.png");
}
@media only screen and (max-width: 768px) {
  #footer .share .btn {
    width: 78.75vw;
    height: 11.25vw;
    background-image: url("../img/global/bg_share-sp.png");
  }
}
#footer .share .btn .txt {
  width: 244px;
}
@media only screen and (max-width: 768px) {
  #footer .share .btn .txt {
    width: 44.53125vw;
  }
}
#footer .share .btn .arrow {
  right: 26px;
}
@media only screen and (max-width: 768px) {
  #footer .share .btn .arrow {
    right: 4.0625vw;
  }
}
#footer .sns {
  margin-bottom: 42px;
}
@media only screen and (max-width: 768px) {
  #footer .sns {
    margin-bottom: 5.46875vw;
  }
}
#footer .sns ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}
@media only screen and (max-width: 768px) {
  #footer .sns ul {
    gap: 0 2.8125vw;
  }
}
#footer .sns ul li {
  width: 48px;
}
@media only screen and (max-width: 768px) {
  #footer .sns ul li {
    width: 7.5vw;
  }
}
#footer .sns ul li a {
  display: block;
}
#footer .bnr-list {
  margin-bottom: 52px;
}
@media only screen and (max-width: 768px) {
  #footer .bnr-list {
    width: 65.625vw;
    margin: 0 auto 6.5625vw;
  }
}
#footer .bnr-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}
@media only screen and (max-width: 768px) {
  #footer .bnr-list ul {
    gap: 2.1875vw 2.8125vw;
  }
}
#footer .bnr-list ul li {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  #footer .bnr-list ul li {
    width: 31.25vw;
  }
}
#footer .bnr-list ul li a {
  display: block;
}
#footer .supporter-list {
  margin-bottom: 28px;
}
@media only screen and (max-width: 768px) {
  #footer .supporter-list {
    width: 78.125vw;
    margin: 0 auto 7.8125vw;
  }
}
#footer .supporter-list p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #footer .supporter-list p {
    font-size: 2.5vw;
    margin-bottom: 1.5625vw;
  }
}
#footer .supporter-list ul {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
@media only screen and (max-width: 768px) {
  #footer .supporter-list ul {
    gap: 0 2.8125vw;
  }
}
#footer .supporter-list ul li {
  width: 240px;
}
@media only screen and (max-width: 768px) {
  #footer .supporter-list ul li {
    width: 37.5vw;
  }
}
#footer .supporter-list ul li a {
  display: block;
}
#footer .copy {
  font-size: 14px;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #footer .copy {
    font-size: 2.1875vw;
  }
}

#modal-block {
  background-color: rgba(163, 121, 65, 0.8);
}
#modal-block .close {
  position: absolute;
  top: -30px;
  right: 0;
  z-index: 20;
  width: 240px;
  height: 168px;
  overflow: hidden;
}
@media only screen and (max-width: 1250px) {
  #modal-block .close {
    top: -2.4vw;
    right: 0;
    width: 19.2vw;
    height: 13.44vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .close {
    top: -4.21875vw;
    width: 28.125vw;
    height: 23.125vw;
  }
}
#modal-block .close img {
  position: relative;
  right: -30px;
}
@media only screen and (max-width: 1250px) {
  #modal-block .close img {
    right: -2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .close img {
    right: -3.90625vw;
  }
}