@charset "UTF-8";

#footer {
  background: var(--color-mono-01) url(../../assets/images/layout/footer/bg.png)
    no-repeat top;
  background-attachment: fixed;
  background-size: cover;
  color: #ffffff;
}

#footer .partner-area {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .partner-area ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

#footer .footer-area {
  padding: 3.75rem 0 4rem;
}
#footer .footer-area .center-wrap {
  display: grid;
  grid-template-columns: 6.875rem auto;
  column-gap: 3.75rem;
}
#footer .footer-area .footer-logo {
  grid-row: 1 / 4;
}
#footer .footer-area .fnb ul {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1.25rem;
  font-weight: 400;
  font-size: 1.125rem;
}
#footer .footer-area .fnb li:nth-child(1) {
  font-weight: 700;
}
#footer .footer-area address {
  margin-top: 1.25rem;
  font-weight: 400;
  font-size: 1rem;
}
#footer .footer-area address ul {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0.313rem;
}
#footer .footer-area address ul + ul {
  margin-top: 0.625rem;
}
#footer .footer-area address li:not(:first-child) {
  padding-left: 1.25rem;
  display: flex;
  align-items: center;
}
#footer .footer-area address li:not(:first-child)::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1.125rem;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 1.25rem;
}
#footer .footer-area address ul:nth-child(2) strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
}
#footer .footer-area address ul:nth-child(2) li {
  color: rgba(255, 255, 255, 0.5);
}
#footer .footer-area .copyright {
  font-weight: 400;
  font-size: 0.875rem;
  opacity: 0.5;
  margin-top: 1.25rem;
}

@media screen and (max-width: 1024px) {
  #footer .partner-area {
    padding: 2.5rem 0;
  }
  #footer .partner-area li {
    flex-basis: 40%;
  }

  #footer .footer-area {
    padding: 2.5rem 0;
  }
  #footer .footer-area .center-wrap {
    grid-template-columns: 2.625rem auto;
    column-gap: 1.875rem;
  }
  #footer .footer-area .footer-logo {
    width: 2.625rem;
    grid-row: 1/2;
  }
  #footer .footer-area .fnb ul {
    height: 100%;
    column-gap: 1.875rem;
    font-size: 1rem;
  }
  #footer .footer-area address {
    margin-top: 1.875rem;
    font-size: 0.813rem;
    grid-row: 2 / 3;
    grid-column: 1 / 3;
  }
  #footer .footer-area address ul + ul {
    margin-top: 1.875rem;
  }
  #footer .footer-area address li:not(:first-child) {
    padding-left: 1rem;
  }
  #footer .footer-area address li:not(:first-child)::before {
    height: 0.875rem;
    margin-right: 1rem;
  }
  #footer .footer-area .copyright {
    font-size: 0.813rem;
    margin-top: 1.875rem;
    grid-column: 1 / 3;
  }
}
