.footer-menu.footer__menu-nav {
  max-width: 80.6rem;
  padding: 4.8rem 0;
  width: 100%;
  gap: 2.4rem;
  display: flex;
  flex-direction: column;
  @media (max-width: 768px) {
    padding: 2.4rem;
    gap: 0rem;
  }
  .footer-menu__area {
    width: 100%;

    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    @media (max-width: 768px) {
      flex-direction: column;
      gap: 0rem;
    }
  }
  .footer-menu__list {
    max-width: 57.6rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__menu-nav-title {
    flex: 1;
    font-family: var(--font-sans-semibold);
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 23.4px */
    letter-spacing: 1.3px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    border: none;
    @media (max-width: 768px) {
      text-align: left;
      padding: 3.2rem 0 1.6rem 0;
      border-top: 1px solid var(--line-color, #efe1d1);
    }
  }
  .menu__bar {
    padding: 1.6rem 4.2rem 1.6rem 1.2rem;
    background: var(--color-white);
    border-radius: 4px;
    width: 100%;
    font-style: normal;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 180%; /* 23.4px */
    letter-spacing: 1.3px;

    &:after {
      width: 1.6rem;
      height: 0.2rem;
      right: 1.7rem;
    }
    &:before {
      width: 0.2rem;
      height: 1.6rem;
      right: 2.4rem;
      transition: all 0.3s ease;
    }
    &.js__active {
      &:before {
        height: 0;
      }
    }
    @media (max-width: 768px) {
      padding: 1.2rem 3.6rem 1.2rem 1.2rem;
      &:after {
        right: 1.3rem;
      }
      &:before {
        right: 2rem;
      }
    }
  }
  .menu__list {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 0.8rem;
    letter-spacing: 0.1em;
    &:last-child {
      margin-bottom: 2.4rem;
    }
    @media (max-width: 768px) {
      gap: 0.8rem;
    }
    &.js__active {
      padding-bottom: 2.4rem;
    }
    li {
      padding: 0;
    }
    li a {
      font-size: 1.3rem;
      padding: 1.2rem;
      color: var(--color-text);
      font-family: var(--font-sans-semibold);
      text-decoration: none;
      border-bottom: 1px solid var(--line-color, #efe1d1);
      height: 100%;
      display: flex;
      align-items: center;
      &:hover,
      &:focus,
      &:visited {
        color: var(--color-text);
      }
      @media (max-width: 768px) {
        font-size: 1.1rem;
        padding: 0.8rem;
      }
    }
  }
  .menu__iist-inner-title {
    margin-top: 2.4rem;
    margin-bottom: 0;
    padding: 0.8rem 1.6rem;
    background: #fbe8d5;
    border-radius: 4px;
  }
  .menu__iist-inner-title-b {
    background: var(--color-white);
    margin-top: 2.4rem;
    border-radius: 4px;
    padding: 0.8rem 1.6rem;
    font-size: 1.2rem;
  }
}
