/* ============================================================
 * Footer
 * ============================================================ */

#footer-2026 {
  img,
  picture {
    width: 100%;
    height: 100%;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  p {
    margin: 0;
  }

  .footer__container {
    display: flex;
  }

  /* Left Section */
  .footer__left-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: var(--color-white);
    padding: 56px 32px 24px;
    width: 100%;

    @media (min-width: 880px) {
      justify-content: space-between;
      padding: 80px 20px;
      width: 30%;
    }

    @media (min-width: 1300px) {
      width: 35%;
    }
  }

  .footer__logo-link {
    display: block;
    width: 100%;
    max-width: 310px;
    aspect-ratio: 268 / 84;
    margin-bottom: 48px;
    transition: opacity 0.3s ease;

    &:hover {
      opacity: 0.8;
    }

    @media (min-width: 880px) {
      width: 220px;
    }

    @media (min-width: 1300px) {
      width: 286px;
    }
  }

  .footer__yamada-section {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-right: 16px;
  }

  .footer__yamada-logo {
    width: 48px;
    aspect-ratio: 48 / 57;
  }

  .footer__yamada-text {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .footer__yamada-title {
    margin-bottom: 8px;
  }

  .footer__yamada-link {
    display: block;
    transition: opacity 0.3s ease;

    &:hover {
      opacity: 0.8;
    }
  }

  .footer__mobile-links {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--color-gray-secondary);
    width: 100%;

    @media (min-width: 880px) {
      display: none;
    }
  }

  .footer__mobile-link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    color: var(--color-black);
    text-align: center;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .footer__mobile-link {
    display: block;
    transition: opacity 0.3s ease;

    &:hover {
      opacity: 0.8;
    }
  }

  .footer__mobile-copyright {
    font-size: 10px;
    color: var(--color-black);
    text-align: center;
    letter-spacing: 0.1em;
  }

  /* Right Section */
  .footer__right-section {
    display: none;

    @media (min-width: 880px) {
      display: flex;
      justify-content: space-between;
      background-color: var(--color-orange-primary);
      padding: 80px 64px;
      width: 70%;
      flex-shrink: 0;
    }

    @media (min-width: 1300px) {
      width: 65%;
      padding: 80px 110px;
    }
  }

  .footer__sns-groups {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .footer__sns-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
  }

  .footer__sns-icon {
    fill: var(--color-white);
    width: 29px;
    height: 30px;
    flex-shrink: 0;
  }

  .footer__sns-title {
    font-family: var(--font-m-plus, "M PLUS 1", sans-serif);
    font-weight: 700;
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }

  .footer__sns-links {
    color: var(--color-white);
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .footer__sns-link {
    display: block;
    transition: opacity 0.3s ease;

    &:hover {
      opacity: 0.8;
    }
  }

  .footer__links-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .footer__links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    column-gap: 40px;
    color: var(--color-white);
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }

  .footer__links-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 160px;
  }

  .footer__link {
    display: block;
    transition: opacity 0.3s ease;

    &:hover {
      opacity: 0.8;
    }
  }

  .footer__desktop-copyright {
    font-size: 10px;
    color: var(--color-white);
    text-align: right;
    letter-spacing: 0.1em;
  }
}
