@keyframes steam {
  0% {
    bottom: -8%;
    filter: blur(6px);
    transform: rotateY(0deg);
    transform: scale(0.6, 1);
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  30% {
    transform: rotateY(40deg);
    transform: scale(1, 1.4);
    opacity: 0.28;
  }
  60% {
    transform: rotateY(10deg);
    transform: scaleY(1.8, 1);
    opacity: 0.36;
  }
  100% {
    bottom: 60%;
    filter: blur(20px);
    transform: rotateY(60deg);
    transform: scaleY(2, 1.8);
    opacity: 0;
  }
}
@keyframes steam2 {
  0% {
    bottom: -10%;
    filter: blur(6px);
    transform: rotateY(0deg);
    transform: scale(0.6, 0.6);
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  30% {
    transform: rotateY(40deg);
    transform: scale(0.8, 1);
    opacity: 0.2;
  }
  60% {
    transform: rotateY(2deg);
    transform: scaleY(1, 1.2);
    opacity: 0.26;
  }
  100% {
    bottom: 56%;
    filter: blur(20px);
    transform: rotateY(50deg);
    transform: scaleY(1.2, 1.4);
    opacity: 0;
  }
}
@layer page {
  .menu-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 5.625rem;
  }
  @media screen and (max-width: 767px) {
    .menu-nav {
      font-size: 3.2vw;
      gap: 2.4vw;
      margin-bottom: 9.3333333333vw;
    }
  }
  .menu-nav a {
    background: #fff;
    border-radius: 6.25rem;
    display: block;
    padding: 0.375rem 1.375rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition-property: color, background;
    transition-duration: 0.25s;
    font-family: var(--serif);
  }
  @media screen and (max-width: 767px) {
    .menu-nav a {
      padding: 1.0666666667vw 4.2666666667vw;
      gap: 1.3333333333vw;
    }
  }
  @media (hover: hover) {
    .menu-nav a:hover {
      background: #000;
      color: #fff;
    }
    .menu-nav a:hover .menu-nav__arrow::after {
      border-color: #fff;
    }
  }
  .menu-nav__arrow {
    width: 0.625rem;
    height: 0.625rem;
    position: relative;
    display: inline-block;
  }
  @media screen and (max-width: 767px) {
    .menu-nav__arrow {
      width: 1.3333333333vw;
      height: 1.3333333333vw;
    }
  }
  .menu-nav__arrow::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    rotate: -45deg;
    transition: 0.25s border;
  }
  @media screen and (max-width: 767px) {
    .menu-nav__arrow::after {
      border-left: 1px solid #000;
      border-bottom: 1px solid #000;
    }
  }
  .menu-bnr {
    margin-top: 2.25rem;
    margin-bottom: 3.75rem;
    margin-left: auto;
    margin-right: auto;
  }
  @media screen and (min-width: 768px) {
    .menu-bnr {
      width: 61.25rem;
    }
  }
  @media screen and (max-width: 767px) {
    .menu-bnr {
      margin-top: 4.8vw;
      margin-bottom: 13.3333333333vw;
    }
  }
  @media (hover: hover) {
    .menu-bnr a {
      transition: 0.25s filter;
    }
    .menu-bnr a:hover {
      filter: brightness(120%);
    }
  }
  .menu-accordions {
    margin-left: auto;
    margin-right: auto;
  }
  @media screen and (min-width: 768px) {
    .menu-accordions {
      width: 61.25rem;
    }
  }
  .menu-accordions__note {
    margin-top: 1.125rem;
    font-size: 0.875rem;
  }
  .menu-accordion {
    margin-top: 4px;
  }
  .menu-accordion[open] .menu-accordion__icon-toggle::before {
    transform: rotate(0);
  }
  .menu-accordion__summary {
    position: relative;
    background: #000000;
    color: #fff;
    font-size: 1.25rem;
    text-align: center;
    padding: 1.5625rem;
    line-height: 1.1;
  }
  @media screen and (max-width: 767px) {
    .menu-accordion__summary {
      padding: 4vw;
    }
  }
  .menu-accordion__icon-toggle {
    display: inline-block;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
  }
  @media screen and (max-width: 767px) {
    .menu-accordion__icon-toggle {
      width: 2.6666666667vw;
      height: 2.6666666667vw;
    }
  }
  .menu-accordion__icon-toggle::before, .menu-accordion__icon-toggle::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 0.625rem;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fff;
    transform: translateY(50%);
    border-radius: 10px;
  }
  @media screen and (max-width: 767px) {
    .menu-accordion__icon-toggle::before, .menu-accordion__icon-toggle::after {
      height: 2px;
    }
  }
  .menu-accordion__icon-toggle::before {
    transition: 0.25s transform;
    transform: rotate(-90deg);
  }
  .menu-accordion__icon-toggle::after {
    transform: rotate(0);
  }
  .menu-accordion__table {
    width: 100%;
    background: #fff;
  }
  .menu-accordion__table tr {
    border-top: 2px solid var(--base);
    border-bottom: 2px solid var(--base);
  }
  .menu-accordion__table td {
    position: relative;
    padding: 0.75rem 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .menu-accordion__table td {
      padding: 1.6vw 2.1333333333vw;
      font-size: 2.9333333333vw;
    }
  }
  .menu-accordion__table td:not(:first-child)::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 1px;
    height: calc(100% - 1.875rem);
    display: block;
    background: #CCCCCC;
  }
  .menu-accordion__table td:last-child {
    text-align: center;
  }
  @media screen and (min-width: 768px) {
    .menu-accordion__table td:last-child {
      width: 13.75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .menu-accordion__table td:last-child {
      width: 30.6666666667vw;
      font-size: 3.2vw;
    }
  }
  .menu-accordion__table td p {
    font-size: 1.25rem;
    font-weight: bold;
  }
  @media screen and (max-width: 767px) {
    .menu-accordion__table td p {
      font-size: 3.7333333333vw;
    }
  }
  .menu-accordion__table td a {
    position: relative;
    color: #E60012;
    text-decoration: underline;
  }
  @media (hover: hover) {
    .menu-accordion__table td a:hover {
      text-decoration: none;
    }
  }
  .menu-accordion__table td a::before {
    content: "MAP";
    border: 1px solid #E60012;
    display: inline-block;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.1;
    padding: 0.125rem 0.5rem 0.25rem 0.5rem;
    margin-right: 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .menu-accordion__table td a::before {
      font-size: 2vw;
    }
  }
  .menu-foot {
    margin-top: 10rem;
  }
  @media screen and (max-width: 767px) {
    .menu-foot {
      margin-top: 13.3333333333vw;
    }
  }
}