@charset "UTF-8";
/*=============================================================
 01_base
=============================================================*/
/* --------------------------------------------------
-------------------------------------------------- 関数 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400..700&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;
  }
}
@media only screen and (max-width: 768px) {
  img, svg {
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    will-change: transform;
    border: none;
    outline: none;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  color: #363636;
}

p {
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  p {
    line-height: 1.8;
  }
}

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

.re-image {
  width: 100%;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes rotate2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg); /* 360度回転 */
  }
}
@keyframes rotate2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes rotateCenter {
  0% {
    transform: rotate(0deg) translate(-50%, -50%); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg) translate(-50%, -50%); /* 360度回転 */
  }
}
@keyframes rotateCenter {
  0% {
    transform: rotate(0deg) translate(-50%, -50%); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg) translate(-50%, -50%); /* 360度回転 */
  }
}
@-webkit-keyframes fadeShine {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) skewX(0deg) skewY(0deg);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -50%) skewX(30deg) skewY(10deg);
  }
}
@keyframes fadeShine {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) skewX(0deg) skewY(0deg);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -50%) skewX(30deg) skewY(10deg);
  }
}
@-webkit-keyframes fade {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fade {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
#bnr-ticket {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 210px;
  z-index: 5;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1250px) {
  #bnr-ticket {
    width: 16.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #bnr-ticket {
    bottom: 3.125vw;
    right: 3.125vw;
    width: 25vw;
  }
}
#bnr-ticket .flare {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: hue;
}
#bnr-ticket .flare img {
  -webkit-animation: rotate 15s infinite linear;
          animation: rotate 15s infinite linear;
  transform-origin: 50% 50%;
}
#bnr-ticket .txt {
  position: absolute;
  top: 0;
  left: 0;
}
#bnr-ticket .txt.txt1 {
  -webkit-animation: rotate 100s linear infinite;
          animation: rotate 100s linear infinite;
}
#bnr-ticket .txt.txt2 {
  transition: all 0.4s ease;
}
#bnr-ticket:hover {
  transform: scale(0.9);
}
#bnr-ticket:hover .txt2 {
  transform: scale(0.95);
}

.btn {
  position: relative;
  width: 680px;
  height: 100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50px;
  background-image: linear-gradient(90deg, rgb(139, 168, 1), rgb(185, 214, 47) 54%, rgb(139, 168, 1));
}
@media only screen and (max-width: 1250px) {
  .btn {
    width: 54.4vw;
    height: 8vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn {
    width: 90.625vw;
    height: 15.625vw;
    border-radius: 7.8125vw;
  }
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgb(185, 214, 47), rgb(139, 168, 1) 54%, rgb(185, 214, 47));
  transition: all 0.4s ease;
}
.btn a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 38px;
  line-height: 1;
  font-weight: bold;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
@media only screen and (max-width: 1250px) {
  .btn a {
    font-size: 3.04vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn a {
    font-size: 5.9375vw;
  }
}
.btn a span {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
}
@media only screen and (max-width: 1250px) {
  .btn a span {
    font-size: 1.28vw;
  }
}
@media only screen and (max-width: 1250px) and (max-width: 768px) {
  .btn a span {
    font-size: 2.5vw;
  }
}
.btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  width: 38px;
  height: 45px;
  background: url("../img/parts/arrow_wh.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 1250px) {
  .btn a::after {
    right: 4vw;
    width: 3.04vw;
    height: 3.6vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn a::after {
    right: 7.8125vw;
    width: 5.9375vw;
    height: 7.03125vw;
  }
}
.btn:hover::before {
  opacity: 0;
}
.btn__right a::after {
  right: inherit;
  left: 50px;
  transform: scale(-1, 1) translateY(-50%);
}
.btn__pl {
  background-image: linear-gradient(90deg, rgb(134, 31, 170), rgb(175, 102, 201) 54%, rgb(134, 31, 170));
}
.btn__pl::before {
  background-image: linear-gradient(90deg, rgb(175, 102, 201), rgb(134, 31, 170) 54%, rgb(175, 102, 201));
}
.btn.off {
  pointer-events: none;
  background: #D9D9D9;
  opacity: 0.6;
}
.btn.off::before {
  display: none;
}
.btn.off a {
  color: #363636;
}
.btn.off a::after {
  background-image: url("../img/parts/arrow_bk.svg");
}

.head-logo {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 180px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  .head-logo {
    top: 4.6875vw;
    left: 4.6875vw;
    width: 28.125vw;
  }
}
.head-logo:hover {
  filter: brightness(3);
}
@media only screen and (max-width: 768px) {
  .head-logo:hover {
    filter: brightness(1);
  }
}

#btn-nav {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 178px;
  z-index: 50;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #btn-nav {
    top: -0.78125vw;
    right: 0.78125vw;
    width: 23.4375vw;
  }
}
#btn-nav .bg {
  transition: all 0.5s ease;
}
#btn-nav .bg svg {
  width: 100%;
  height: auto;
}
#btn-nav .line span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  transform-origin: 0 50%;
  background-color: #fff;
  transition: all 0.2s 0.1s ease;
}
@media only screen and (max-width: 768px) {
  #btn-nav .line span {
    width: 6.25vw;
    height: 0.3125vw;
  }
}
#btn-nav .line span:nth-child(1) {
  top: 68px;
}
@media only screen and (max-width: 768px) {
  #btn-nav .line span:nth-child(1) {
    top: 9.375vw;
  }
}
#btn-nav .line span:nth-child(2) {
  top: 78px;
}
@media only screen and (max-width: 768px) {
  #btn-nav .line span:nth-child(2) {
    top: 10.9375vw;
  }
}
#btn-nav p {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 768px) {
  #btn-nav p {
    bottom: 7.8125vw;
    font-size: 2.34375vw;
  }
}
#btn-nav.active .bg {
  transform: rotateY(180deg);
}
#btn-nav.active .bg svg path {
  fill: #B9D62F;
}
#btn-nav.active .line span {
  background-color: #861FAA;
}
#btn-nav.active .line span:nth-child(1) {
  top: 50%;
  transform: rotate(15deg) translateX(-50%);
}
#btn-nav.active .line span:nth-child(2) {
  top: 50%;
  transform: rotate(-15deg) translateX(-50%);
}
#btn-nav.active p {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
}
@media only screen and (max-width: 768px) {
  #btn-nav.active p {
    transform: translateX(-50%) translateY(0.8vw);
  }
}

#header {
  position: fixed;
  top: 0;
  right: -640px;
  display: flex;
  justify-content: right;
  width: 100%;
  height: 100vh;
  z-index: 20;
  transition: all 0.25s ease;
  visibility: hidden;
}
@media only screen and (max-width: 1250px) {
  #header {
    right: -51.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #header {
    width: 100vw;
    right: -100vw;
  }
}
#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50vw;
  width: 150vw;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: all 0.25s ease;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media only screen and (max-width: 768px) {
  #header::before {
    display: none;
  }
}
#header.active {
  right: 0;
  visibility: inherit;
}
#header.active::before {
  opacity: 1;
}
#header nav {
  position: relative;
  display: flex;
  align-items: center;
  width: 640px;
  height: 100%;
  padding-left: 54px;
  box-sizing: border-box;
  background-color: #861FAA;
  opacity: 0.9;
}
@media only screen and (max-width: 1250px) {
  #header nav {
    width: 51.2vw;
    padding-left: 4.32vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav {
    width: 100%;
    padding-left: 8.4375vw;
  }
}
#header nav ul li:not(:last-child) {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1250px) {
  #header nav ul li:not(:last-child) {
    margin-bottom: 4.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li:not(:last-child) {
    margin-bottom: 9.375vw;
  }
}
#header nav ul li a {
  position: relative;
  display: inline-block;
  padding-left: 63px;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1250px) {
  #header nav ul li a {
    padding-left: 5.04vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li a {
    padding: 0 0 0 9.84375vw;
  }
}
#header nav ul li a svg {
  width: 100%;
  height: auto;
}
#header nav ul li a .kira1 {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 43px;
  height: 43px;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1250px) {
  #header nav ul li a .kira1 {
    bottom: -0.8vw;
    width: 3.44vw;
    height: 3.44vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li a .kira1 {
    bottom: -1.5625vw;
    width: 6.71875vw;
    height: 6.71875vw;
  }
}
#header nav ul li a .kira2 {
  position: absolute;
  bottom: -4px;
  left: 6px;
  width: 57px;
  height: 57px;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1250px) {
  #header nav ul li a .kira2 {
    bottom: -0.32vw;
    left: 0.48vw;
    width: 4.56vw;
    height: 4.56vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li a .kira2 {
    bottom: -0.625vw;
    left: 0.9375vw;
    width: 8.90625vw;
    height: 8.90625vw;
  }
}
#header nav ul li a .txt {
  display: inline-block;
}
#header nav ul li a:hover .kira1 {
  transform: translateX(20px);
}
@media only screen and (max-width: 768px) {
  #header nav ul li a:hover .kira1 {
    left: 0;
    transform: translateX(0);
  }
}
#header nav ul li a:hover .kira2 {
  left: 98%;
  transform: translateY(-20px);
}
@media only screen and (max-width: 768px) {
  #header nav ul li a:hover .kira2 {
    left: 0.9375vw;
    transform: translateX(0);
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li:nth-child(1) .txt {
    width: 11.40625vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li:nth-child(2) .txt {
    width: 15.625vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li:nth-child(3) .txt {
    width: 18.90625vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li:nth-child(4) .txt {
    width: 16.875vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li:nth-child(5) .txt {
    width: 19.375vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li:nth-child(6) .txt {
    width: 17.5vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li:nth-child(7) .txt {
    width: 40.46875vw;
  }
}
#header nav ul li.off {
  opacity: 0.6;
  pointer-events: none;
}

#footer {
  position: relative;
  padding: 92px 0 40px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  #footer {
    padding: 14.0625vw 0 10.625vw;
    background-size: 100%;
  }
}
#footer .line {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100.4vw;
  transform-origin: left top;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  #footer .line {
    top: -0.3125vw;
  }
}
#footer .line span {
  position: absolute;
  width: calc(50.2vw - 50px);
  height: 2px;
  background-color: #7D2D99;
  -webkit-clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 95%);
          clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 95%);
}
@media only screen and (max-width: 1250px) {
  #footer .line span {
    width: 46.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #footer .line span {
    height: 0.3125vw;
    width: 42.6875vw;
  }
}
#footer .line span:nth-child(1) {
  top: 0;
  left: 0;
}
#footer .line span:nth-child(2) {
  top: 0;
  right: 0;
}
#footer .line svg {
  width: 100%;
  height: auto;
}
#footer .line .shine {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 67px;
}
@media only screen and (max-width: 768px) {
  #footer .line .shine {
    width: 10.46875vw;
  }
}
#footer .line .shine svg {
  -webkit-animation: rotateWait2 4s ease infinite;
          animation: rotateWait2 4s ease infinite;
}
#footer .line .kira {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33px;
}
@media only screen and (max-width: 768px) {
  #footer .line .kira {
    width: 5.15625vw;
  }
}
#footer .line .kira svg {
  -webkit-animation: rotateWait 4s ease infinite;
          animation: rotateWait 4s ease infinite;
}
#footer .line span {
  width: 0;
  transition: all 0.5s ease;
}
#footer .line .shine, #footer .line .kira {
  opacity: 0;
  transform: scale(0) translate(-50%, -50%);
  transform-origin: 0% 0%;
  transition: all 0.5s 0.4s ease;
}
#footer .line .kira {
  transform: scale(1.4) translate(-50%, -50%);
  transition-delay: 0.5s;
  filter: blur(2px);
}
#footer .line.move-on span {
  width: calc(50.2vw - 50px);
}
@media only screen and (max-width: 768px) {
  #footer .line.move-on span {
    width: 42.6875vw;
  }
}
#footer .line.move-on .shine, #footer .line.move-on .kira {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) translate(-50%, -50%);
}
#footer .share {
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  #footer .share {
    margin-bottom: 3.90625vw;
  }
}
#footer .share p {
  position: relative;
  font-size: 44px;
  line-height: 1;
  text-align: center;
  margin-bottom: 36px;
}
@media only screen and (max-width: 768px) {
  #footer .share p {
    width: 32.5vw;
    font-size: 6.875vw;
    margin: 0 auto 5.3125vw;
  }
}
#footer .share p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 140px);
  width: 1px;
  height: 40px;
  transform: rotate(-45deg);
  background-color: #861FAA;
}
@media only screen and (max-width: 768px) {
  #footer .share p::before {
    left: calc(50% - 18.75vw);
    height: 6.25vw;
  }
}
#footer .share p::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: calc(50% - 140px);
  width: 1px;
  height: 40px;
  transform: rotate(45deg);
  background-color: #861FAA;
}
@media only screen and (max-width: 768px) {
  #footer .share p::after {
    right: calc(50% - 18.75vw);
    height: 6.25vw;
  }
}
@media only screen and (max-width: 768px) {
  #footer .share p svg {
    width: 100%;
    height: auto;
  }
}
#footer .share .btn {
  width: 405px;
  height: 80px;
}
@media only screen and (max-width: 768px) {
  #footer .share .btn {
    width: 63.28125vw;
    height: 12.5vw;
  }
}
#footer .share .btn a {
  flex-direction: row;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  gap: 0 3px;
}
@media only screen and (max-width: 768px) {
  #footer .share .btn a {
    font-size: 3.4375vw;
    min-height: 12.5vw;
  }
}
#footer .share .btn a span {
  margin-bottom: 4px;
}
@media only screen and (max-width: 768px) {
  #footer .share .btn a span {
    margin-bottom: 0.625vw;
  }
}
#footer .share .btn a::after {
  right: 26px;
}
#footer .sns {
  margin-bottom: 42px;
}
@media only screen and (max-width: 768px) {
  #footer .sns {
    margin-bottom: 6.25vw;
  }
}
#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: 42px;
}
@media only screen and (max-width: 768px) {
  #footer .bnr-list {
    width: 65.625vw;
    margin: 0 auto 6.25vw;
  }
}
#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: 80px;
}
@media only screen and (max-width: 768px) {
  #footer .supporter-list {
    width: 78.125vw;
    margin: 0 auto 11.875vw;
  }
}
#footer .supporter-list p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  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;
}
@media only screen and (max-width: 768px) {
  #footer .copy {
    font-size: 2.1875vw;
  }
}

#content .bg-con {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
#content .bg-con span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
#content .bg-con span:nth-child(1) {
  background-color: #fff;
}
#content .bg-con span:nth-child(2) {
  width: 150vw;
  height: 150vw;
  background: url("../img/parts/bg_shine.webp") no-repeat center center;
  background-size: 110vw 110vw;
  opacity: 1;
  -webkit-animation: rotate2 150s 0s infinite linear;
          animation: rotate2 150s 0s infinite linear;
}
@media only screen and (max-width: 768px) {
  #content .bg-con span:nth-child(2) {
    width: 250vw;
    height: 250vw;
    background-size: 250vw 250vw;
    -webkit-animation: unset;
            animation: unset;
  }
}
#content .bg-con span:nth-child(3) {
  mix-blend-mode: color-dodge;
  mix-blend-mode: lighten;
  -webkit-animation: fadeShine 5s infinite ease;
          animation: fadeShine 5s infinite ease;
}
#content .bg-con span:nth-child(3) span {
  background: url("../img/parts/bg_flare.webp") no-repeat center center;
  background-size: 150vw auto;
  -webkit-animation: rotate2 80s infinite linear;
          animation: rotate2 80s infinite linear;
}
#content .deco-kira {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  pointer-events: none;
}
#content .deco-kira span {
  display: block;
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0;
  -webkit-animation: fade 3s infinite ease;
          animation: fade 3s infinite ease;
}
@media only screen and (max-width: 768px) {
  #content .deco-kira span {
    width: 18.75vw;
    height: 18.75vw;
  }
}
#content .deco-kira span:nth-child(1) {
  top: 6%;
  right: 10%;
}
#content .deco-kira span:nth-child(2) {
  top: 10%;
  left: 30%;
  width: 60px;
  height: 60px;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
@media only screen and (max-width: 768px) {
  #content .deco-kira span:nth-child(2) {
    width: 9.375vw;
    height: 9.375vw;
  }
}
#content .deco-kira span:nth-child(3) {
  top: 2%;
  left: 10%;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
#content .deco-kira span:nth-child(4) {
  top: 15%;
  right: 30%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#content .deco-kira span:nth-child(5) {
  top: 50%;
  left: 20%;
  width: 60px;
  height: 60px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@media only screen and (max-width: 768px) {
  #content .deco-kira span:nth-child(5) {
    width: 9.375vw;
    height: 9.375vw;
  }
}
#content .deco-kira span:nth-child(6) {
  top: 70%;
  right: 20%;
  width: 60px;
  height: 60px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@media only screen and (max-width: 768px) {
  #content .deco-kira span:nth-child(6) {
    width: 9.375vw;
    height: 9.375vw;
  }
}
#content .deco-kira span:nth-child(7) {
  top: 80%;
  left: 3%;
  width: 180px;
  height: 180px;
}
@media only screen and (max-width: 768px) {
  #content .deco-kira span:nth-child(7) {
    width: 28.125vw;
    height: 28.125vw;
  }
}

#modal-block {
  background-color: rgba(255, 255, 255, 0.9);
}
#modal-block .modal-content .close {
  top: 30px;
  right: 30px;
  width: 178px;
}