/**
FOOTER
**/
#footer .footer {
  padding: 120px 0 60px;
}
#footer .footer .footer_inner {
  width: calc(100% - 60px);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
}
#footer .footer .footer_inner .logo img {
  display: block;
}
#footer .footer .footer_inner .menu {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 2em;
  column-gap: 2em;
}
#footer .footer .footer_inner .menu li a {
  font-size: 600;
}
#footer .footer_copy {
  background-color: var(--color_main);
}
#footer .footer_copy .footer_copy_inner {
  width: calc(100% - 60px);
  max-width: 1100px;
  height: 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: space-between;
}
#footer .footer_copy .footer_copy_inner .menu {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
#footer .footer_copy .footer_copy_inner .menu li a {
  color: #FFFFFF;
}
#footer .footer_copy .footer_copy_inner .copyright {
  font-size: 1.2rem;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  #footer .footer .footer_inner {
    width: calc(100% - 50px);
    grid-template-columns: 100px 1fr;
  }
  #footer .footer .footer_inner .menu {
    font-size: 1.5rem;
    -moz-column-gap: 1.5em;
    column-gap: 1.5em;
  }
  #footer .footer_copy .footer_copy_inner {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 768px) {
  #footer .footer {
    padding: 75px 0;
  }
  #footer .footer .footer_inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    justify-items: center;
    grid-row-gap: 50px;
  }
  #footer .footer .footer_inner .logo img {
    width: 130px;
  }
  #footer .footer .footer_inner .menu {
    display: grid;
    justify-items: center;
    align-content: start;
    grid-row-gap: 1.5em;
  }
  #footer .footer_copy .footer_copy_inner {
    width: calc(100% - 40px);
    padding: 20px 0;
    height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    grid-row-gap: 20px;
  }
  #footer .footer_copy .footer_copy_inner .copyright {
    font-size: 1rem;
  }
}