@charset "UTF-8";

/*=============
Default
===============*/

:root {
  /*背景*/
  --color_bg: #00441b;

  /*カラー*/
  --color_main: #ffffff;

  /*アクセントカラー*/
  --color_accent: #278447;

  /*ボタン背景(1)*/
  --bg_btn: #ed1c24;

  /*ボタンカラー(1)*/
  --color_btn: #278447;

  /*ボタン背景(2)*/
  --bg_btn2: #242424;

  /*ボタンカラー(2)*/
  --color_btn2: #ffffff;

  /*ボーダー*/
  --color_border: #e0e0e0;
}

html,
body {
  font-size: 100%;
  font-family: "Noto Sans JP", "Yu Gothic", "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  background: var(--color_bg);
  color: var(--color_main);
  overflow-x: hidden;
}

@media screen and (max-width: 1400px) {
  html,
  body {
    font-size: 90%;
  }
}

@media screen and (max-width: 1200px) {
  html,
  body {
    font-size: 86%;
  }
}

@media screen and (max-width: 767px) {
  html,
  body {
    font-size: 100%;
  }
}

a {
  transition-duration: 0.3s;
}

svg,
img,
video {
  width: 100%;
  height: auto;
  vertical-align: top;
}

/*=============
Animation
===============*/

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes shake {
  0% {
    transform: translate(-2%, -1%);
  }

  10% {
    transform: translate(0%, 0%);
  }

  20% {
    transform: translate(2%, 1%);
  }

  30% {
    transform: translate(0%, 0%);
  }

  40% {
    transform: translate(-2%, -1%);
  }

  to {
    transform: translate(0%, 0%);
  }
}

@keyframes lightning {
  0% {
    background-position: 0 0;
  }

  to {
    background-position: 100% 0;
  }
}

@keyframes flash1 {
  0% {
    filter: brightness(3);
  }

  18% {
    filter: brightness(1);
  }

  20% {
    filter: brightness(3);
  }

  24% {
    filter: brightness(2);
  }

  40% {
    filter: brightness(1);
  }

  60% {
    filter: brightness(3);
  }

  to {
    filter: brightness(1);
  }
}

@keyframes flash2 {
  0% {
    filter: brightness(1);
  }

  18% {
    filter: brightness(8);
  }

  20% {
    filter: brightness(1);
  }

  24% {
    filter: brightness(6);
  }

  40% {
    filter: brightness(4);
  }

  60% {
    filter: brightness(1);
  }

  to {
    filter: brightness(1);
  }
}

@keyframes flash3 {
  0% {
    filter: brightness(2);
  }

  18% {
    filter: brightness(1);
  }

  20% {
    filter: brightness(6);
  }

  24% {
    filter: brightness(1);
  }

  40% {
    filter: brightness(4);
  }

  60% {
    filter: brightness(3);
  }

  to {
    filter: brightness(1);
  }
}

/*=============
JS
===============*/

.swiper {
  overflow: inherit;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.c-lightning {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(0deg) scale(1);
  background: url(../img/sprite-thunder2.png) no-repeat;
  background-size: cover;
  opacity: 0;
}

.c-lightning.is-lightning {
  opacity: 1;
  animation: lightning 0.8s steps(12) forwards;
  animation-delay: 0.5s;
}

.c-lightning2.is-lightning {
  animation-delay: 0.8s;
}

.c-lightning3.is-lightning {
  animation-delay: 1.2s;
}

.p-deco .deco {
  opacity: 0;
  transition-duration: 0.1s;
}

.p-deco.is-active .deco {
  opacity: 1;
}

.p-deco .deco1 {
  transition-delay: 1s;
}

.p-deco .deco2 {
  transition-delay: 1.4s;
}

.p-deco .deco3 {
  transition-delay: 1.8s;
}

.p-deco.is-active .deco1 {
  animation: flash1 0.8s;
  animation-delay: 1.2s;
}

.p-deco.is-active .deco2 {
  animation: flash2 0.6s;
  animation-delay: 1.6s;
}

.p-deco.is-active .deco3 {
  animation: flash3 0.8s;
  animation-delay: 2s;
}

.c-origin {
  transition: transform 1.2s;
  transform: rotateX(5deg) rotateY(-5deg) rotateZ(-2.5deg) scale(1.1);
}

.c-origin.is-active {
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.c-origin.is-active img {
  animation: shake 0.8s;
}

/*=============
Layout
===============*/

.l-aside {
  position: fixed;
  left: 45px;
  bottom: 45px;
  z-index: 4;
  opacity: 0;
  /*mix-blend-mode: difference;*/
}

@media screen and (max-width: 767px) {
  .l-aside {
    display: none;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    /*mix-blend-mode: inherit;*/
    opacity: 1;
  }
  .l-aside:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 0;
    background: #02441b;
    z-index: 0;
    transition-duration: 0.5s;
  }
  .l-aside.is-active:after {
    height: 100%;
  }
  .l-aside .p-aside li {
    opacity: 0;
    transform: translateY(12px);
    transition-duration: 0.3s;
    transition-delay: 0.6s;
  }
  .l-aside.is-active .p-aside li {
    opacity: 1;
    transform: translateY(0);
  }
}

/*=============
Project
===============*/

.p-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
}

.p-modal__inner {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .p-modal__inner {
    padding: 0;
  }
}

.p-modal figure {
  position: relative;
}

.p-modal figure.is-small {
  padding: 0 100px;
}

@media only screen and (max-width: 767px) {
  .p-modal figure.is-small {
    padding: 0 12vw;
  }
}

.p-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 68, 27, 0.92);
}

.p-modal__item {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: min(50vw, 550px);
}

@media only screen and (max-width: 767px) {
  .p-modal__item {
    max-width: 100%;
    width: 92vw;
    padding: 6vw 0;
  }
}

.p-modal__txt {
  margin-top: 16px;
}

@media only screen and (max-width: 767px) {
  .p-modal__txt {
    margin-top: 4vw;
  }
}

.p-modal__info {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .p-modal__info {
  }
}

.p-modal__info h5 {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .p-modal__info h5 {
    font-size: 4.8vw;
  }
}

.p-modal__info h5 small {
  font-size: 1.25rem;
}

.p-modal__cat {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.4;
  color: #bfa666;
}

@media only screen and (max-width: 767px) {
  .p-modal__cat {
    font-size: 4.8vw;
  }
}

.p-modal__txt h4 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .p-modal__txt h4 {
    margin-top: 1.2vw;
    font-size: 4.2vw;
  }
}

.p-modal__txt p {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.6;
  /* 2023/12/12 追加 */
  overflow-y: scroll;
  height: 10em;
}
.p-modal__txt p::-webkit-scrollbar {
  width: 10px;
}
.p-modal__txt p::-webkit-scrollbar-thumb {
  background: #5f5f5f;
  border-radius: 20px;
}
.p-modal__txt p::-webkit-scrollbar-track {
  border-radius: 20px;
}
/* 2023/12/12 追加ここまで */

@media only screen and (max-width: 767px) {
  .p-modal__txt p {
    margin-top: 2vw;
    font-size: 3.8vw;
  }
}

.p-modal__close {
  position: absolute;
  top: -2px;
  right: -84px;
  width: 52px;
  height: 31px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .p-modal__close {
    top: -32px;
    right: 0;
    width: 10vw;
    height: 6vw;
  }
}

.p-modal__close:before,
.p-modal__close:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: var(--color_main);
  transition-duration: 0.3s;
}

.p-modal__close:before {
  top: 14px;
  transform: rotate(25deg);
}

.p-modal__close:after {
  top: 14px;
  transform: rotate(-25deg);
}

.p-modal__info dt:after {
  content: ":";
  display: inline-block;
  margin-left: 6px;
}

@media only screen and (max-width: 767px) {
  .p-modal__info dt:after {
    display: none;
  }
}

.p-modal__name {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .p-modal__name {
    margin-bottom: 2.4vw;
  }
}

.p-logo {
  position: fixed;
  top: 45px;
  left: 45px;
  width: 92px;
  z-index: 5;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .p-logo {
    top: 16px;
    left: 12px;
    z-index: 5;
    width: 66px;
  }
}

.p-mainv {
  position: relative;
  width: 100%;
  /*height: 100vh;*/
  background: var(--color_bg);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-mainv {
    overflow: hidden;
  }
}

.p-mainv__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: color-dodge;
}

.p-mainv__deco * {
  position: absolute;
  transition-duration: 0.3s;
}

.p-mainv__deco .deco1 {
  top: -18%;
  left: 20%;
  transform: translate(-38%, 0) rotate(45deg);
  width: 20%;
  height: 60%;
}

@media screen and (max-width: 767px) {
  .p-mainv__deco .deco1 {
    top: -12%;
    left: 20%;
    width: 40%;
    height: 60%;
  }
}

.p-mainv__deco .deco2 {
  top: 15%;
  right: -25%;
  width: 60%;
  height: 80%;
}

@media screen and (max-width: 767px) {
  .p-mainv__deco .deco2 {
    width: 80%;
    height: 100%;
  }
}

.p-mainv__deco .deco3 {
  top: 0;
  left: -25%;
  width: 60%;
  height: 80%;
}

@media screen and (max-width: 767px) {
  .p-mainv__deco .deco2 {
    top: 12%;
    width: 80%;
    height: 100%;
  }
}

.p-mainv__main,
.p-mainv figure,
.p-mainv picture {
  width: 100%;
  /*height: 100%;*/
}

@media screen and (max-width: 767px) {
  .p-mainv__main,
  .p-mainv figure,
  .p-mainv picture {
  }
}

.p-mainv__main {
  opacity: 1;
}

.p-mainv__main .p-mainv__img {
  transition: transform 1.2s;
  transition-delay: 2.4s;
  transition-duration: 0.3s;
  transform: rotateX(5deg) rotateY(-5deg) rotateZ(-2.5deg) scale(1.1);
  opacity: 0;
}

.p-mainv__main.is-active .c-lightning {
  opacity: 1;
  animation: lightning 0.8s steps(17);
  animation-delay: 2.4s;
  z-index: 2;
}

.p-mainv__main.is-active .p-mainv__img {
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  opacity: 1;
}

.p-mainv__main.is-active .p-mainv__img img {
  animation: shake 0.8s;
  animation-delay: 2.4s;
}

.p-mainv__btn {
  display: flex;
  gap: 20px;
  position: fixed;
  bottom: 46px;
  right: 20px;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-mainv__btn {
    gap: 0;
    bottom: 0;
    right: 0;
    width: 100%;
  }
}

.p-mainv__btn i {
  display: block;
  width: 72px;
  padding: 12px 0;
  background: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-mainv__btn i {
    width: 14vw;
    padding: 4vw 0 4.5vw;
    background: inherit;
  }
}

.p-mainv__btn i img {
  width: 30px;
  margin: 0 auto;
  transform: skewX(15deg);
}

@media screen and (max-width: 767px) {
  .p-mainv__btn i img {
    margin: 0 auto;
    width: 8vw;
    transform: skewX(0deg);
  }
}

.p-mainv__btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  transform: skewX(15deg);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-mainv__btn span {
    width: calc(100% - 14vw);
    padding: 0;
    font-size: 3.8vw;
    transform: skewX(0deg);
    position: relative;
    left: -2vw;
  }
}

@media screen and (max-width: 767px) {
  .p-mainv__btn--g {
    min-width: 52.5%;
    clip-path: polygon(0 0%, 100% 0%, 92% 100%, 0% 100%);
  }
}

.p-mainv__btn--g a {
  display: flex;
  align-items: center;
  max-width: 305px;
  width: 100%;
  background-color: #278447;
  transform: skewX(-15deg);
}

@media screen and (max-width: 767px) {
  .p-mainv__btn--g a {
    max-width: 100%;
    transform: skewX(0deg);
  }
  .p-mainv__btn--g span {
    position: relative;
    left: -2.6vw;
  }
}

.p-mainv__btn--g a:hover {
  background-color: #469b63;
}

.p-mainv__btn--g a:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  background-image: url(../img/btn-bg.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right;
  mix-blend-mode: color-burn;
}

@media screen and (max-width: 767px) {
  .p-mainv__btn--g a:after {
  }
}

@media screen and (max-width: 767px) {
  .p-mainv__btn--b {
    position: relative;
    min-width: 55%;
    left: -6%;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.p-mainv__btn--b a {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 305px;
  width: 100%;
  background-color: #242424;
  transform: skewX(-15deg);
  z-index: 1;
  transition-duration: 0.3s;
}

.p-mainv__btn--b a:hover {
  background-color: #383838;
}

@media screen and (max-width: 767px) {
  .p-mainv__btn--b a {
    max-width: 100%;
    transform: skewX(0deg);
  }
}

.p-mainv__btn--b a:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  background-image: url(../img/btn-bg.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right;
  mix-blend-mode: color-burn;
}

@media screen and (max-width: 767px) {
  .p-mainv__btn--b a:after {
  }
}

@media screen and (max-width: 767px) {
  .p-mainv__btn--b i {
    position: relative;
    left: 2.6vw;
  }
}

.p-hamburger {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-hamburger {
    display: flex;
    z-index: 5;
    position: fixed;
    right: 18px;
    top: 12px;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 50px;
    cursor: pointer;
    mix-blend-mode: difference;
  }
  .p-hamburger.is-active {
    mix-blend-mode: inherit;
  }
}

@media screen and (max-width: 767px) {
  .p-hamburger .p-hamburger__inner {
    position: relative;
    width: 100%;
    height: 22px;
  }
}

.p-hamburger .p-hamburger__inner span {
  /*&:nth-child(2) {
    top: 50%;
  }*/
}
@media screen and (max-width: 767px) {
  .p-hamburger .p-hamburger__inner span {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 1px;
    transform: translate(-50%, -50%);
    background: var(--color_main);
    transition: all 0.4s;
  }
}
@media screen and (max-width: 767px) {
  .p-hamburger .p-hamburger__inner span:nth-child(1) {
    top: 4px;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 767px) {
  .p-hamburger .p-hamburger__inner span:nth-child(2) {
    bottom: 4px;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 767px) {
  .p-hamburger.is-active span:nth-of-type(1) {
    top: 10px;
    transform: translate(-50%, 0) rotate(-35deg);
  }
}
@media screen and (max-width: 767px) {
  .p-hamburger.is-active span:nth-of-type(2) {
    top: 10px;
    transform: translate(-50%, 0) rotate(35deg);
  }
}

.p-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 32px;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .p-aside {
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5vw;
    gap: 3.8vw;
    font-size: 7.8vw;
    z-index: 1;
    text-align: center;
  }
}

.p-aside:before {
  position: absolute;
  bottom: -19px;
  left: 0;
  content: "";
  width: 1px;
  height: 93%;
  background: var(--color_accent);
}

@media screen and (max-width: 767px) {
  .p-aside:before {
    display: none;
  }
}

.p-aside:after {
  position: absolute;
  top: 20px;
  left: -14px;
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/icon-navi.svg);
  background-size: 100%;
  transition-duration: 0.5s;
}

@media screen and (max-width: 767px) {
  .p-aside:after {
    display: none;
  }
}

.p-aside[data-active="1"]:after {
  top: 20px;
}

.p-aside[data-active="2"]:after {
  top: 64px;
}

.p-aside[data-active="3"]:after {
  top: 108px;
}

.p-aside[data-active="4"]:after {
  top: 152px;
}

.p-aside[data-active="5"]:after {
  top: 192px;
}

.p-aside[data-active="6"]:after {
  top: 232px;
}

.p-aside[data-active="7"]:after {
  top: 272px;
}

.p-aside[data-active="8"]:after {
  top: 327px;
}

.p-aside li {
  transform: rotate(-18deg);
  transition-duration: 0.3s;
  text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 767px) {
  .p-aside li {
    transform: rotate(0deg);
    text-shadow: inherit;
  }
}

.p-aside li:hover {
  color: var(--color_accent);
}

@media screen and (max-width: 767px) {
  .p-aside li:hover {
    color: var(--color_main);
  }
}

.p-aside li.is-current {
  color: var(--color_accent);
}

@media screen and (max-width: 767px) {
  .p-aside li.is-current {
    color: var(--color_main);
  }
}

.p-game {
  position: relative;
  z-index: 1;
  padding: 80px 80px;
  background: #00441b;
  overflow: hidden;
  border-top: 20px solid var(--color_accent);
}

@media screen and (max-width: 767px) {
  .p-game {
    padding: 14vw 4vw;
    border-top: 4vw solid var(--color_accent);
  }
  .p-game .c-sec__ttl {
    text-align: center;
    font-size: 12.8vw;
  }
}

.p-game:after {
  position: absolute;
  top: -7px;
  left: -300px;
  width: 896px;
  height: 896px;
  content: "";
  background-image: url(../img/bg-game.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .p-game:after {
    top: -7px;
    left: -12vw;
    width: 122vw;
    height: 130vw;
  }
}

.p-game__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: color-dodge;
}

.p-game__deco * {
  position: absolute;
  transition-duration: 0.3s;
}

.p-game__deco.is-active {
  animation: flash 0.8s;
}

.p-game__deco .deco1 {
  top: 0;
  left: 50%;
  transform: translate(-38%, 0);
  width: 20%;
  height: 60%;
}

@media screen and (max-width: 767px) {
  .p-game__deco .deco1 {
    width: 48%;
    height: 80%;
  }
}

.p-game__deco .deco2 {
  top: 15%;
  right: -25%;
  width: 68%;
  height: 80%;
}

.p-game__deco .deco2 .c-lightning {
  left: 20%;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .p-game__deco .deco2 {
    display: none;
    top: 80%;
    width: 120%;
    height: 100%;
  }
}

.p-game__deco .deco3 {
  top: 0;
  left: -25%;
  width: 60%;
  height: 120%;
}

.p-game__deco .deco3 .c-lightning {
  left: -20%;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .p-game__deco .deco3 {
    top: 22%;
    width: 120%;
    height: 100%;
  }
}

.p-game__top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-game__logo {
  max-width: 220px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-game__logo {
    max-width: 33vw;
  }
}

.p-game__logo img {
  max-width: 200px;
}

.p-game__logo span {
  display: block;
  margin: 12px 0 0;
  font-size: 0.9375rem;
}

@media screen and (max-width: 767px) {
  .p-game__logo span {
    margin: 1.2vw 0 0;
    font-size: 2.8vw;
  }
}

.p-game__vs {
  display: block;
  max-width: 73px;
  margin: 0 60px;
}

@media screen and (max-width: 767px) {
  .p-game__vs {
    display: block;
    max-width: 16vw;
    margin: 0 4vw;
  }
}

/* 2023/12/18 コメントアウト */
.p-game__date {
  display: block;
  /* max-width: 473px; */
  margin: 40px auto 0;
  text-align: center;
}
/* 2023/12/18 コメントアウトここまで */

@media screen and (max-width: 767px) {
  .p-game__date {
    max-width: 100%;
    margin: 12vw auto 0;
  }
}

/* 2023/12/18 追加 */
.p-game__date--row {
  font-size: 73px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-game__date--row {
    font-size: 16.3vw;
  }
}
.p-game__date--row > span {
  font-style: italic;
  font-weight: bold;
  font-family: "dharma-gothic-e", sans-serif;
}
.p-game__date--row span.year {
  font-size: 1.33em;
}
@media screen and (max-width: 767px) {
  .p-game__date--row span.year {
    display: none;
  }
}
.p-game__date--row span.date {
  font-size: 1.33em;
  margin: 0 0.15em 0 0;
}
@media screen and (max-width: 767px) {
  .p-game__date--row span.date {
    font-size: 1.31em;
    margin: 0 0.6em 0 0.35em;
  }
}
@media screen and (max-width: 767px) {
  .p-game__date--row span.kick-time {
    display: block;
  }
}
.p-game__date--row span.kick-time span {
  margin-left: 0.15em;
}
@media screen and (max-width: 767px) {
  .p-game__date--row span.kick-time span {
    margin-left: 0.3em;
  }
}
.p-game__date--row span.open-time {
  color: transparent;
  font-size: 0.8em;
  -webkit-text-stroke: 0.015em rgb(255, 255, 255);
  text-stroke: 0.015em rgb(255, 255, 255);
  margin: -0.1em 0 0 0.15em;
}
@media screen and (max-width: 767px) {
  .p-game__date--row span.open-time {
    font-size: 0.71em;
    display: block;
  }
}
.p-game__date--row span.open-time span {
  margin-left: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-game__date--row span.open-time span {
    margin-left: 0.4em;
  }
}
/* 2023/12/18 追加ここまで */

/* 2023/12/18 コメントアウト */
/* @media screen and (max-width: 767px) {
  .p-game__date picture {
    display: block;
    width: 66vw;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .p-game__date picture img {
    width: 100%;
  }
} */
/* 2023/12/18 コメントアウトここまで */

/* 2023/12/18 数値変更 */
.p-game__date--row + .p-game__place {
  margin-top: 10px;
}
.p-game__place {
  font-size: 0.875rem;
  display: block;
  margin-top: 20px;
}
/* 2023/12/18 数値変更ここまで */

@media screen and (max-width: 767px) {
  .p-game__place {
    display: block;
    font-size: 3.4vw;
  }
}

.p-game__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px auto 0;
  gap: 45px;
}

@media screen and (max-width: 767px) {
  .p-game__btn {
    flex-direction: column;
    margin: 16vw auto 0;
    padding: 0 6vw;
    gap: 6.8vw;
  }
}

@media screen and (max-width: 767px) {
  .p-game__btn--g,
  .p-game__btn--b {
    width: 100%;
  }
}

.p-game__btn--g a,
.p-game__btn--b a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 280px;
  padding: 16px 20px;
}

@media screen and (max-width: 767px) {
  .p-game__btn a {
    gap: 3.2vw;
    width: 100%;
    padding: 4vw 4vw;
  }
}

.p-game__btn--g a {
  border: 1px solid var(--color_accent);
}

.p-game__btn--b a {
  background: #000;
  border: 1px solid #000;
}

.p-game__btn--g a:after,
.p-game__btn--b a:after {
  position: absolute;
  bottom: -8px;
  right: -8px;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  transition-duration: 0.3s;
}

.p-game__btn--g a:after {
  border: 1px solid var(--color_accent);
}

.p-game__btn--b a:after {
  border: 1px solid #000;
}

.p-game__btn--g a:hover:after,
.p-game__btn--b a:hover:after {
  bottom: 0px;
  right: 0px;
}

.p-game__btn--g i,
.p-game__btn--b i {
  display: block;
  max-width: 30px;
}

@media screen and (max-width: 767px) {
  .p-game__btn--g i,
  .p-game__btn--b i {
    max-width: 6vw;
  }
}

.p-game__btn--g a {
  background: var(--color_accent);
}

.p-events {
  position: relative;
  z-index: 1;
  padding: 80px 80px;
  overflow: hidden;
  /*background: linear-gradient(0deg, var(--color_main) 0 200px, var(--color_bg) calc(100% - 200px) 100%);*/
  /*background: #00441B;*/
}

@media screen and (max-width: 767px) {
  .p-events {
    padding: 8vw 4vw 14vw;
    /* background: linear-gradient(0deg, var(--color_main) 0 20%, var(--color_bg) 90% 100%); */
  }
}

.p-events__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p-events__deco * {
  position: absolute;
  transition-duration: 0.3s;
}

.p-events__deco.is-active {
  animation: flash 0.8s;
}

.p-events__deco .deco1 {
  display: none;
  top: -5%;
  right: -52%;
  width: 140%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .p-events__deco .deco1 {
    display: block;
  }
}

.p-events__top {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

@media screen and (max-width: 767px) {
  .p-events__top {
    flex-direction: column;
    gap: 8vw;
    margin-bottom: 8vw;
    padding-bottom: 8vw;
  }
}

.p-events__btm {
  position: relative;
}

.p-events__btm .swiper-button-prev {
  width: 30px;
  left: -17px;
  margin-top: -50px;
}

@media screen and (max-width: 767px) {
  .p-events__btm .swiper-button-prev {
    width: 7vw;
    left: -2vw;
    margin-top: -10vw;
  }
}

.p-events__btm .swiper-button-next {
  width: 30px;
  right: -17px;
  margin-top: -50px;
}

@media screen and (max-width: 767px) {
  .p-events__btm .swiper-button-next {
    width: 7vw;
    right: -2vw;
    margin-top: -12vw;
  }
}

.p-events__art {
  position: relative;
  cursor: pointer;
}

.p-events__art figure {
  position: relative;
  transition-duration: 0.3s;
  overflow: hidden;
}

.p-events__art:hover figure {
  border-radius: 50px;
}

.p-events__cat {
  position: absolute;
  top: 20px;
  left: 0;
  padding: 2px 16px 1px 12px;
  font-size: 1.625rem;
  background: var(--color_accent);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

@media screen and (max-width: 767px) {
  .p-events__cat {
    top: 2vw;
    padding: 0.2vw 4vw 0 2.8vw;
    font-size: 6.2vw;
  }
}

.p-events__art p {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--color_main);
}

@media screen and (max-width: 767px) {
  .p-events__art p {
    margin-top: 2.8vw;
    font-size: 3.2vw;
  }
}

.p-gourmet {
  position: relative;
  z-index: 1;
  padding: 80px 80px;
  background-color: var(--color_accent);
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-gourmet {
    padding: 14vw 4vw;
  }
}

.p-gourmet__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: color-dodge;
}

.p-gourmet__deco * {
  position: absolute;
  transition-duration: 0.3s;
}

.p-gourmet__deco.is-active {
  animation: flash 0.8s;
}

.p-gourmet__deco .deco1 {
  top: 0%;
  left: -10%;
  /* transform: translate(-38%,0); */
  width: 40%;
  height: 60%;
}

@media screen and (max-width: 767px) {
  .p-gourmet__deco .deco1 {
    top: -8%;
    left: -30%;
    width: 120%;
    height: 100%;
  }
}

.p-gourmet:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 760px;
  height: 760px;
  content: "";
  background-image: url(../img/bg-gourmet.png);
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .p-gourmet:before {
    width: 128vw;
    height: 128vw;
  }
}

.p-gourmet__list {
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-gourmet__list {
  }
}

.p-gourmet__list .swiper-button-prev {
  width: 30px;
  left: -24px;
  margin-top: -120px;
}

@media screen and (max-width: 767px) {
  .p-gourmet__list .swiper-button-prev {
    width: 7vw;
    left: -2vw;
    margin-top: -20vw;
  }
}

.p-gourmet__list .swiper-button-next {
  width: 30px;
  right: -24px;
  margin-top: -5vw;
}

@media screen and (max-width: 767px) {
  .p-gourmet__list .swiper-button-next {
    width: 7vw;
    right: -2vw;
    margin-top: -23vw;
  }
}

.p-gourmet__item {
  font-size: 1rem;
  color: var(--color_bg);
}

@media screen and (max-width: 767px) {
  .p-gourmet__item {
    font-size: 3.4vw;
    color: var(--color_bg);
  }
}

.p-gourmet__item figure {
  position: relative;
}

.p-gourmet__item figure span {
  display: block;
  overflow: hidden;
  transition-duration: 0.3s;
}

.p-gourmet__item figure:after {
  position: absolute;
  bottom: -16px;
  right: -16px;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  transition-duration: 0.3s;
  border: 1px solid var(--color_main);
}

.p-gourmet__item:hover figure span {
  border-radius: 50px;
}

.p-gourmet__item:hover figure:after {
  border-radius: 50px;
}

.p-gourmet__txt {
  margin: 40px 0 0;
  color: var(--color_main);
}

@media screen and (max-width: 767px) {
  .p-gourmet__txt {
    margin: 8vw 0 0;
  }
}

.p-gourmet__name {
  position: relative;
  padding-left: 34px;
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-gourmet__name {
    padding-left: 8vw;
    font-size: 4.2vw;
  }
}

.p-gourmet__name:after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 21px;
  height: 14px;
  transform: translate(0, -50%);
  background: url(../img/icon-triangle.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .p-gourmet__name:after {
    top: 53%;
    width: 5vw;
    height: 4.2vw;
  }
}

.p-gourmet__shop {
  display: block;
  margin: 12px 0 4px;
  font-size: 0.875rem;
  opacity: 0.56;
}

@media screen and (max-width: 767px) {
  .p-gourmet__shop {
    margin: 2.8vw 0 0.8vw;
    font-size: 3.2vw;
  }
}

.p-gourmet__price {
  font-size: 1.625rem;
}

@media screen and (max-width: 767px) {
  .p-gourmet__price {
    font-size: 4.8vw;
  }
}

.p-gourmet__price small {
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-gourmet__price small {
    font-size: 4.2vw;
  }
}
.p-player {
  position: relative;
  z-index: 1;
  padding: 80px 80px 0;
  background-color: var(--color_bg);
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-player {
    padding: 14vw 4vw;
  }
}

.p-player__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  mix-blend-mode: color-dodge;
}

@media screen and (max-width: 767px) {
  .p-player__deco {
    mix-blend-mode: lighten;
  }
}

.p-player__deco * {
  position: absolute;
  transition-duration: 0.3s;
}

.p-player__deco.is-active {
  animation: flash 0.8s;
}

.p-player__deco .deco1 {
  top: -28%;
  right: -18%;
  width: 38%;
  height: 60%;
}

@media screen and (max-width: 767px) {
  .p-player__deco .deco1 {
    top: -8%;
    right: -46%;
    width: 120%;
    height: 100%;
  }
  .p-player__deco .deco1 .c-lightning {
    display: none;
  }
}

.p-player__deco .deco2 {
  top: 42%;
  left: 49%;
  width: 52%;
  height: 60%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .p-player__deco .deco2 {
    top: 78%;
    left: 42%;
    width: 180%;
    height: 100%;
  }
  .p-player__deco .deco2 .c-lightning {
    display: none;
  }
}

.p-player__deco .deco3 {
  top: 42%;
  left: 52%;
  width: 52%;
  height: 60%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .p-player__deco .deco3 {
    top: 70%;
    left: 40%;
    width: 146%;
    height: 100%;
    transform: translate(-50%, -50%);
  }
  .p-player__deco .deco3 .c-lightning {
    display: none;
  }
}

.p-player:after {
  position: absolute;
  top: -7px;
  right: -300px;
  width: 896px;
  height: 896px;
  content: "";
  background-image: url(../img/bg-player.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .p-player:after {
    top: -7px;
    right: -12vw;
    width: 122vw;
    height: 130vw;
  }
}

.p-player__main {
  padding: 0 40px 60px;
  border-bottom: 1px solid var(--color_main);
}

@media screen and (max-width: 767px) {
  .p-player__main {
    padding: 0 0 13vw;
  }
}

.p-player__list {
  display: flex;
  gap: 70px;
}

@media screen and (max-width: 767px) {
  .p-player__list {
    flex-direction: column;
    gap: 10vw;
  }
}

.p-player__item figure {
  position: relative;
  transition-duration: 0.3s;
  transition-delay: 1.8s;
  transition: transform 1.2s;
  transform: rotateX(5deg) rotateY(-5deg) rotateZ(-2.5deg) scale(1.1);
  opacity: 0;
}

.p-player__item.is-active figure {
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  opacity: 1;
}

.p-player__item.is-active figure img {
  animation: shake 0.8s;
  animation-delay: 0.1s;
}

.p-player__item figure span {
  display: block;
  overflow: hidden;
  transition-duration: 0.3s;
}

.p-player__item figure:after {
  position: absolute;
  bottom: -12px;
  right: -12px;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--color_accent);
  transition-duration: 0.3s;
}

@media screen and (max-width: 767px) {
  .p-player__item figure:after {
    bottom: -1.2vw;
    right: -1.2vw;
  }
}

/*.p-player__item:hover figure span {
  border-radius: 50px;
}

.p-player__item:hover figure:after {
  border-radius: 50px;
}*/

.p-player__item:nth-child(2n) {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .p-player__item:nth-child(2n) {
    margin-top: 0;
  }
}

.p-player__txt {
  margin: 40px 0 0;
}

@media screen and (max-width: 767px) {
  .p-player__txt {
    margin: 8vw 0 0;
  }
}

.p-player__info {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .p-player__info {
    gap: 4vw;
  }
}

.p-player__logo {
  display: block;
  width: 70px;
}

@media screen and (max-width: 767px) {
  .p-player__logo {
    width: 18vw;
  }
}

.p-player__name {
  display: block;
  width: calc(100% - 100px);
}

@media screen and (max-width: 767px) {
  .p-player__name {
    width: calc(100% - 18vw);
  }
}

.p-player__name h3 {
  margin-bottom: 4px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .p-player__name h3 {
    margin-bottom: 0.2vw;
    font-size: 5.2vw;
  }
}

.p-player__name h3 small {
  margin-left: 12px;
  font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
  .p-player__name h3 small {
    margin-left: 2vw;
    font-size: 3.2vw;
  }
}

.p-player__name h4 {
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-player__name h4 {
    font-size: 4.8vw;
  }
}

.p-player__name h4 span {
  margin-left: 20px;
}

.p-player__desc {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .p-player__desc {
    margin-top: 5vw;
    font-size: 3.8vw;
  }
}

.p-schedule {
  padding: 80px 80px 0;
  background: url(../img/bg-schedule.png);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-schedule {
    padding: 0 4vw 14vw;
  }
}

.p-schedule__cont {
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .p-schedule__cont {
    display: block;
    gap: 0;
  }
}

.p-schedule__main {
  padding: 0 0 80px;
  border-bottom: 1px solid var(--color_main);
}

.p-schedule__list {
  width: calc((100% - 40px) / 2);
}

.p-schedule__cont {
  justify-content: center;
}

.p-schedule__list[column="1"] {
  width: 100%;
  max-width: 70%;
}

@media screen and (max-width: 767px) {
  .p-schedule__list[column="1"] {
    width: 100%;
    max-width: 100%;
  }
}

.p-schedule__item {
  padding: 20px 0;
  border-top: 1px solid #386d49;
}

@media screen and (max-width: 767px) {
  .p-schedule__item {
    padding: 4.2vw 0;
  }
}

.p-schedule__item:last-child {
  border-bottom: 1px solid #386d49;
}

@media screen and (max-width: 767px) {
  .p-schedule__item:last-child {
    border-bottom: 1px solid #386d49;
  }
}

.p-schedule__data {
  display: flex;
  align-items: center;
  gap: 36px;
}

@media screen and (max-width: 767px) {
  .p-schedule__data {
    gap: 5vw;
  }
}

.p-schedule__data dt {
  font-size: 1.5rem;
  font-weight: 600;
  color: #bfa666;
}

@media screen and (max-width: 767px) {
  .p-schedule__data dt {
    font-size: 4.8vw;
  }
}

.p-schedule__data dd {
  font-size: 1rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-schedule__data dd {
    font-size: 3.8vw;
  }
}

.p-beginner {
  padding: 80px 0 80px 80px;
  background: var(--color_main);
  color: var(--color_bg);
}

@media screen and (max-width: 767px) {
  .p-beginner {
    padding: 18vw 0;
  }
}

.p-beginner__main {
  display: flex;
  gap: 160px;
}

@media screen and (max-width: 767px) {
  .p-beginner__main {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-beginner__info {
    margin-bottom: 8vw;
    padding: 0 8vw;
  }
}

.p-beginner__info p {
  font-size: 0.875rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .p-beginner__info p {
    font-size: 3.8vw;
  }
}

.p-beginner__btn {
  /*display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;*/
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .p-beginner__btn {
    margin: 12vw auto 0;
    padding: 0 10vw;
  }
}

.p-beginner__btn--g a,
.p-beginner__btn--b a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 280px;
  padding: 16px 20px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-beginner__btn--g a,
  .p-beginner__btn--b a {
    gap: 3.2vw;
    width: 100%;
    padding: 4vw 4vw;
  }
}

.p-beginner__btn--g a {
  border: 1px solid var(--color_accent);
}

.p-beginner__btn--b a {
  color: var(--color_main);
  background: var(--color_bg);
  border: 1px solid var(--color_bg);
}

.p-beginner__btn--g a:after,
.p-beginner__btn--b a:after {
  position: absolute;
  bottom: -8px;
  right: -8px;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  transition-duration: 0.3s;
}

.p-beginner__btn--g a:after {
  border: 1px solid var(--color_accent);
}

.p-beginner__btn--b a:after {
  border: 1px solid var(--color_bg);
}

.p-beginner__btn--g a:hover:after,
.p-beginner__btn--b a:hover:after {
  bottom: 0px;
  right: 0px;
}

.p-beginner__btn--g i,
.p-beginner__btn--b i {
  display: block;
  max-width: 30px;
}

.p-beginner__btn--g a {
  background: var(--color_accent);
}

.p-beginner__scroll {
  overflow-y: auto;
}

.p-beginner__list {
  display: flex;
  gap: 32px;
}

@media screen and (max-width: 767px) {
  .p-beginner__list {
    gap: 8vw;
  }
}

.p-beginner__item {
  min-width: 250px;
}

@media screen and (max-width: 767px) {
  .p-beginner__item {
    min-width: 62vw;
  }
  .p-beginner__item:first-child {
    margin-left: 20vw;
  }
  .p-beginner__item:last-child {
    margin-right: 20vw;
  }
}

.p-beginner__item h4 {
  margin-bottom: 10px;
  font-size: 2.625rem;
  font-weight: 600;
  font-style: italic;
  text-align: center;
}

.p-ticket {
  position: relative;
  padding: 80px;
  background-color: var(--color_bg);
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-ticket {
    padding: 14vw 4vw;
  }
}

.p-ticket:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 760px;
  height: 760px;
  content: "";
  background-image: url(../img/bg-ticket01.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .p-ticket:before {
    width: 128vw;
    height: 128vw;
  }
}

.p-ticket:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 760px;
  height: 760px;
  content: "";
  background-image: url(../img/bg-ticket02.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .p-ticket:after {
    width: 128vw;
    height: 128vw;
  }
}

.p-ticket__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-ticket__cont {
  max-width: 800px;
  margin: 0 auto;
}

.p-ticket__cont h4 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-ticket__cont h4 {
    margin-bottom: 5vw;
    font-size: 4.8vw;
  }
}

.p-access {
  position: relative;
  padding: 80px 0;
  color: #000;
  background-color: var(--color_main);
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-access {
    padding: 14vw 0;
  }
}

.p-access__info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  font-size: 0.875rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .p-access__info {
    margin-bottom: 8vw;
    padding: 0 4vw;
    font-size: 3.8vw;
  }
}

.p-access__map iframe {
  width: 100vw;
  height: 42vw;
}

@media screen and (max-width: 767px) {
  .p-access__map iframe {
    width: 100vw;
    height: 139vw;
  }
}

.p-access__txt {
  display: flex;
  margin: 0 auto;
  padding: 40px 80px 0;
}

@media screen and (max-width: 767px) {
  .p-access__txt {
    flex-direction: column;
    gap: 4vw;
    margin-top: 5vw;
    padding: 4vw 4vw 0;
  }
}

.p-access__address {
  width: 50%;
  font-size: 0.875rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-access__address {
    width: 100%;
    font-size: 4.2vw;
  }
}

.p-access__address p {
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-access__address p {
    margin-top: 4vw;
    font-size: 3.8vw;
  }
}

.p-access__desc {
  width: 50%;
  font-size: 0.875rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .p-access__desc {
    width: 100%;
    font-size: 3.8vw;
  }
}

.p-footer {
  position: relative;
  padding: 80px 80px 32px;
  z-index: 1;
  overflow: hidden;
  background: var(--color_bg);
}

@media screen and (max-width: 767px) {
  .p-footer {
    padding: 18vw 4vw 20vw;
  }
}

.p-footer__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: color-dodge;
}

.p-footer__deco * {
  position: absolute;
  transition-duration: 0.3s;
}

.p-footer__deco.is-active {
  animation: flash 0.8s;
}

.p-footer__deco .deco1 {
  top: -15%;
  left: 56%;
  transform: translate(-38%, 0);
  width: 22%;
  height: 60%;
}

@media screen and (max-width: 767px) {
  .p-footer__deco .deco1 {
    top: -15%;
    left: 42%;
    transform: translate(-38%, 0);
    width: 78%;
    height: 100%;
  }
}

.p-footer__deco .deco2 {
  top: -12%;
  left: -8%;
  width: 32%;
  height: 40%;
}

@media screen and (max-width: 767px) {
  .p-footer__deco .deco2 {
    top: 20%;
    left: -26%;
    width: 68%;
    height: 100%;
  }
}

.p-footer__deco .deco3 {
  top: 8%;
  right: -2%;
  width: 42%;
  height: 40%;
}

@media screen and (max-width: 767px) {
  .p-footer__deco .deco3 {
    top: 42%;
    right: -12%;
    width: 82%;
    height: 100%;
  }
}

.p-footer__logo {
  max-width: 310px;
  margin: 0 auto 70px;
}

@media screen and (max-width: 767px) {
  .p-footer__logo {
    max-width: 70vw;
    margin: 0 auto 14vw;
  }
}

.p-footer__ttl {
  font-size: 1.25rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-footer__ttl {
    font-size: 5vw;
  }
}

.p-footer__ttl span {
  margin: 0 4px;
  font-size: 1.6rem;
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .p-footer__ttl span {
    margin: 0 0.8vw;
    font-size: 6.4vw;
  }
}

.p-footer__share {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .p-footer__share {
    margin-bottom: 12vw;
  }
}

.p-footer__shareList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-footer__shareList {
    gap: 6.2vw;
    margin-top: 4vw;
  }
}

.p-footer__shareList li {
  width: 80px;
}

@media screen and (max-width: 767px) {
  .p-footer__shareList li {
    width: 12vw;
  }
}

.p-footer__followList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-footer__followList {
    gap: 12vw;
    margin-top: 4vw;
  }
}

.p-footer__followList li {
  width: 28px;
}

@media screen and (max-width: 767px) {
  .p-footer__followList li {
    width: 8vw;
  }
}

.p-footer__copy {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  margin-top: 70px;
  text-align: center;
  font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
  .p-footer__copy {
    gap: 2.8vw;
    margin-top: 8vw;
    font-size: 3.2vw;
  }
}

/*=============
Component
===============*/

.c-sec__ttl {
  margin-bottom: 40px;
  font-size: 6.25rem;
  line-height: 0.85;
  letter-spacing: 0em !important;
  font-weight: 600;
  font-style: italic;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media screen and (max-width: 767px) {
  .c-sec__ttl {
    margin-bottom: 8vw;
    font-size: 20.8vw;
    line-height: 0.8;
  }
}

.is-active .c-sec__ttl {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}

@media screen and (max-width: 767px) {
  .c-sec__ttl--sp {
  }
}

.c-sec__ttl--w {
  color: var(--color_main);
}

.c-sec__ttl--g {
  color: var(--color_accent);
}

.c-sec__ttl--b {
  color: var(--color_bg);
}

.c-sec__ttl--center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-buyBtn {
  }
}

/*=============
Utility
===============*/

.u-font__en {
  font-family: "dharma-gothic-e", sans-serif;
  letter-spacing: 0.02em;
}

.u-pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.u-pc__flex {
  display: flex !important;
}

@media screen and (max-width: 767px) {
  .u-pc__flex {
    display: none !important;
  }
}
