/* =========================
   Footer
========================= */
.footer{
  width: 100%;
  background: var(--c-g3);
  overflow-x: clip;
}

.footer__top{
  background: var(--c-g4);
  border-bottom: 1px solid var(--c-g2);
  overflow: hidden;
}

.footer__top-inner{
  max-width: 1280px;
  height: 100px;
  margin: 0 auto;
  padding: 34px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__links{
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer__link{
  text-decoration: none;
  white-space: nowrap;
}

.footer__gnb{
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__gnb-link{
  text-decoration: none;
  white-space: nowrap;
}

.footer__company-short{
  display: none;
}

.footer__copy-br{
  display: none;
}

.footer__addr-br{
  display: none;
}

.footer__bottom-inner{
  max-width: 1280px;
  height: 409px;
  margin: 0 auto;
  padding: 34px 0 120px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: 255px;
  column-gap: 34px;
}

.footer__logo{
  width: 58px;
  height: 50px;
  display: block;
  align-self: start;
}

.footer__info{
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-self: start;
}

.footer__info-row{
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__info-row--company{
  height: 50px;
}

.footer__pair{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__pair--lg{
  margin-left: 16px;
}

.footer__contact{
  margin: 0;
  display: flex;
  align-items: center;
}

.footer__info-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 92px;
}

.footer__info-grid-left,
.footer__info-grid-right{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__addr{
  margin: 0;
}

.footer__copy{
  margin: 0;
}

@media (max-width: 799px){
  .footer__top-inner{
    padding: 34px 20px;
    justify-content: flex-end;
  }

  .footer__links{
    max-width: 335px;
    gap: 12px;
  }

  .footer__gnb{
    display: none;
  }

  .footer__logo{
    width: 29px;
    height: 25px;
  }

  .footer__bottom-inner{
    height: 548px;
    padding: 34px 20px 120px;
    grid-template-columns: 29px 1fr;
    grid-template-rows: 394px;
  }

  .footer__copy-br{
    display: block;
  }

  .footer__company-full{
    display: none;
  }

  .footer__company-short{
    display: block;
  }

  .footer__info-row--company{
    flex-wrap: wrap;
    height: 58px;
    gap: 12px 24px;
  }

  .footer__info-row--company .footer__pair{
    flex-basis: 100%;
  }

  .footer__info-grid{
    grid-template-columns: 1fr;
    grid-template-rows: 94px 94px;
    row-gap: 24px;
  }

  .footer__addr-br{
    display: block;
  }
}
