.menu-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.8s ease-in-out;
  z-index: 9900;
}

.closeMenu {
  opacity: 0;
  transition: 0.3s ease;
}

.open .closeMenu {
  opacity: 1;
}

.open.menu-wrap {
  visibility: visible;
  background-color: #151515;
}

.menu-trigger {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 80px;
  height: 80px;
  cursor: pointer;
  background-color: transparent;
  padding: 30px 15px 0 15px;
  transition: 0.3s ease;
  z-index: 9900;
}

.fixed .menu-trigger {
  background-color: rgba(255, 255, 255, 0);
}

.close-trigger {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 9890;
  padding: 35px 15px 0 15px;
}

.fixed .close-trigger {
  background-color: transparent;
  /* background-color: rgba(255, 255, 255, 1); */
}

.close-trigger::before {
  content: "CLOSE";
  color: #fff;
  font-size: 10px;
  top: 56px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  transition: 0.8s ease;
  opacity: 0;
  font-family: 'FunctionsPro', sans-serif;
}

.fixed .close-trigger::before {
  opacity: 1;
}

.menu-trigger::after {
  content: "OPEN";
  color: #fff;
  font-size: 10px;
  top: 56px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  transition: 0.8s ease;
  opacity: 1;
  font-family: 'FunctionsPro', sans-serif;
}

.fixed .menu-trigger::after {
  opacity: 0;
}

.menu-trigger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin-bottom: 1px;
  transform: rotate(-45deg);
  position: relative;
  border-radius: 1px;
}

.menu-trigger-bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0%;
  height: 100%;
  background-color: rgba(235, 83, 87, 1);
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  border-radius: 1px;
}

.menu-trigger-bar.top {
  width: 50%;
}

.menu-trigger-bar.middle:before {
  left: auto;
  right: 0;
}

.menu-trigger-bar.bottom {
  width: 50%;
  margin-left: 50%;
}

.close-trigger-bar {
  display: block;
  width: 60%;
  height: 2px;
  background-color: #fff;
  position: relative;
  border-radius: 1px;
  margin: 0 auto;
}

.close-trigger-bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0%;
  height: 100%;
  background-color: rgba(204, 204, 204, 1);
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  border-radius: 1px;
}

.close-trigger-bar.left {
  transform: translateX(100px) translateY(-100px) rotate(-45deg);
}

.close-trigger-bar.right {
  transform: translateX(-100px) translateY(-100px) rotate(45deg);
  top: -3px;
}

.inner-container {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  text-align: center;
  z-index: 20;
}

.menu {
  display: block;
  position: relative;
  margin: auto;
  user-select: none;
}

.menu-container {
  position: absolute;
  height: 100%;
  width: 100%;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0 auto;
  top: 50%;
  left: 0;
  transform: translate(-0%, -50%);
  z-index: 100;
  background: transparent;
  mix-blend-mode: difference;
}

.menuL {
  width: 100%;
  text-align: center;
  padding: 50px 20px 20px 20px;
}

.menuL ul {
  position: relative;
}

.menuR {
  width: 100%;
  padding: 20px 20px 50px 20px;
  max-width: 320px;
  margin: 0 auto;
  /* background-color: blue; */
}

.menu-logo {
  position: relative;
  max-width: 200px;
  width: 30%;
  margin: 0 auto;
}

.menu-logo .menu-logo-inner {
  display: block;
  position: relative;
}

.menu-logo img {
  width: 100%;
}

.menu li {
  text-align: left;
  display: block;
  padding: 7px 0;
  opacity: 0;
  /* transform: translateY(20px); */
  transform: translateY(20px);

  transition-delay: 0.8s;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  /* overflow: hidden; */
  visibility: hidden;
}

.open .menu li {
  transform: translateY(0);
  visibility: visible;
}

.menu li span {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.open .menu.menuR li span::after {
  content: "";
  display: block;
  background-color: #000;
  width: 110%;
  height: 120%;
  position: absolute;
  bottom: -20%;
  left: -5%;
  opacity: 1;
  animation-name: slideOpen;
  animation-duration: 0.6s;
  animation-delay: 1s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  z-index: 1;
}

/*
.open .menu.menuR li:nth-of-type(1) span::after{
  animation-duration: 0.3s;
  animation-delay: 0.8s;
}

.open .menu.menuR li:nth-of-type(2) span::after{
  animation-duration: 0.3s;
  animation-delay: 0.9s;
}

.open .menu.menuR li:nth-of-type(3) span::after{
  animation-duration: 0.3s;
  animation-delay: 1s;
}

.open .menu.menuR li:nth-of-type(4) span::after{
  animation-duration: 0.3s;
  animation-delay: 1.1s;
}

.open .menu.menuR li:nth-of-type(5) span::after{
  animation-duration: 0.3s;
  animation-delay: 1.2s;
}
*/

@keyframes slideOpen {
  0% {
    transform-origin: center bottom;
    transform: scaleY(1) translateY(0);
  }

  100% {
    transform: scaleY(0) translateY(100%);
    transform-origin: center bottom;
  }
}

.closeMenu.menu-wrap .menu li:nth-of-type(1) {
  opacity: 0;
  transform: translateY(0);
}

.open.menu-wrap .menu.menuR li:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.open.menu-wrap .menu.menuL li:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.closeMenu.menu-wrap .menu li:nth-of-type(2) {
  opacity: 0;
}

.open.menu-wrap .menu.menuR li:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.open.menu-wrap .menu.menuL li:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.closeMenu.menu-wrap .menu li:nth-of-type(3) {
  opacity: 0;
}

.open.menu-wrap .menu.menuR li:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.open.menu-wrap .menu.menuL li:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.closeMenu.menu-wrap .menu li:nth-of-type(4) {
  opacity: 0;
}

.open.menu-wrap .menu li:nth-of-type(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

.closeMenu.menu-wrap .menu li:nth-of-type(5) {
  opacity: 0;
}

.open.menu-wrap .menu li:nth-of-type(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.closeMenu.menu-wrap .menu li:nth-of-type(6) {
  opacity: 0;
}

.open.menu-wrap .menu li:nth-of-type(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.3s;
}

.closeMenu.menu-wrap .menu li:nth-of-type(7) {
  opacity: 0;
}

.open.menu-wrap .menu li:nth-of-type(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}

.closeMenu.menu-wrap .menu li:nth-of-type(8) {
  opacity: 0;
}

.open.menu-wrap .menu li:nth-of-type(8) {
  opacity: 1;
  transform: translateY(0);
  /* transition-delay: 1.5s; */
}

.closeMenu.menu-wrap .menu li:nth-of-type(9) {
  opacity: 0;
}

.open.menu-wrap .menu li:nth-of-type(9) {
  opacity: 1;
  transform: translateY(0);
  /* transition-delay: 1.6s; */
}

.closeMenu.menu-wrap .menu li:nth-of-type(10) {
  opacity: 0;
}

.open.menu-wrap .menu li:nth-of-type(10) {
  opacity: 1;
  transform: translateY(0);
  /* transition-delay: 1.7s; */
}

.menu li.menu-list a {
  padding: 5px 20px 15px 0;
  position: relative;
}

.menu li.menu-list a b.en {
  display: inline-block;
  position: relative;
  font-family: 'Playfair Display', sans-serif;
  font-size: clamp(2.5rem, 2.292rem + 0.69vw, 3.125rem);
  font-style: italic;
  font-weight: 400;
  position: relative;
  opacity: 1;
  transition: 0.4s ease;
  color: #fff;
  z-index: 1;
}

.menu li.menu-list a b.en::after {
  content: "";
  background: #333;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.menu li.menu-list a.active b.en {
  color: #ff0059;
}

.menu li.menu-list a:hover b.en {
  display: inline-block;
  font-family: 'Playfair Display', sans-serif;
  font-size: clamp(2.5rem, 2.292rem + 0.69vw, 3.125rem);
  opacity: 1;
  transform: translateX(10px);
  transform-origin: left center;
  color: #000;
}

.menu li.menu-list a b.ja {
  color: #fff;
  display: inline-block;
  position: absolute;
  font-size: clamp(0.875rem, 0.542rem + 1.11vw, 1.875rem);
  top: 50%;
  left: 100%;
  transform: translate(0%, -50%) skewX(-8deg);
  transform-origin: right center;
  opacity: 0;
  width: 100%;
  transition: 0.4s ease;
  text-align: left;
  font-family: "Noto Serif JP", sans-serif;
  white-space: nowrap;
  letter-spacing: 4px;
  filter: blur(8px);
  display: none;
}

.menu li.menu-list a:hover b.ja {
  opacity: 1;
  filter: blur(0);
  transform: translate(-10%, -50%) skewX(-8deg);
}

.menu li.menu-list a:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.menu li.menu-list a:before {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.menu-bg {
  position: absolute;
  display: block;
  width: 100vw;
  height: 100vh;
  background-size: cover;
}

.menu-bg.middle {
  top: -25vh;
  left: -50vw;
  width: 200vw;
  height: 150vh;
  transform-origin: center center;
  z-index: 0;
  background-color: #151515;
  transform: rotate(-45deg) scaleY(0) translate(0, 0);
}

.menu-bg.top {
  left: -100%;
  top: -100%;
  background-color: #151515;
  transform-origin: center center;
  transform: translate(0%, -0%) rotate(45deg);
  display: none;
}

.menu-bg.bottom {
  transform: translate(0, 0) rotate(45deg);
  top: 100%;
  left: 100%;
  background-color: #151515;
  display: none;
}

.menu li.menu-tel {
  max-width: 280px;
  margin: 20px auto;
}

.menu li.menu-tel a img {
  width: 100%;
}

.menu li.menuB {
  position: relative;
  text-align: center;
}

.menu .menuB ul.menuB-sub {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-items: center;
  margin: -10px 0 0 0;
}

.menu .menuB ul.menuB-sub li.sub-menu {
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  transform: translateY(20px);
  opacity: 0;
  display: inline-block;
  text-align: center;
}

.menu .menuB ul.menuB-sub li.sub-menu span {
  display: block;
  position: relative;
}

.menu .menuB ul.menuB-sub li.sub-menu span a {
  display: block;
  font-family: 'FunctionsPro', sans-serif;
  color: #fff;
  font-size: 14px;
  padding: 0 20px;
  position: relative;
  font-weight: normal;
}

.menu .menuB ul.menuB-sub li.sub-menu span a:hover {
  color: #ff0059;
}

.menu .menuB ul.menuB-sub li.sub-menu span a::after {
  content: "";
  position: absolute;
  width: calc(50% - 30px);
  height: 1px;
  bottom: -10px;
  right: 30px;
  background: #fff;
  border-radius: 1px;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.menu .menuB ul.menuB-sub li.sub-menu span a:hover::after {
  width: calc(50% - 50px);
  background: #ff0059;
}

.open .menu .menuB {
  opacity: 1;
  transition: 0.6s ease;
}

.open .menu .menuB ul.menuB-sub li.sub-menu {
  opacity: 1;
  transition: 0.6s ease;
}

.open .menu .menuB ul.menuB-sub li.sub-menu:nth-child(1) {
  transition-delay: 1s;
}

.open .menu .menuB ul.menuB-sub li.sub-menu:nth-child(2) {
  transition-delay: 1.1s;
}

svg.logoGra {
  display: block;
}

path {
  fill: url(#gradientLogo);
}

#stop1 {
  animation: step1 5s ease-in-out infinite alternate;
}

#stop2 {
  animation: step2 5s ease-in-out infinite alternate;
}

@keyframes step1 {
  0% {
    stop-color: #000;
  }

  50% {
    stop-color: #fff;
  }

  100% {
    stop-color: #000;
  }
}

@keyframes step2 {
  0% {
    stop-color: #fff;
  }

  50% {
    stop-color: #000;

  }

  100% {
    stop-color: #fff;
  }
}