#site-footer .footer-wrapper {
  max-width: calc(100% - 80px);
  margin: 0 auto;
  width: 100%;
}

#site-footer .footer-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#site-footer .footer-columns > .footer-column {

}

#site-footer .footer-columns > .footer-column .site-logo img {
  aspect-ratio: 300 / 36;
  width: 250px;
}

#site-footer .address {
  font-family: var(--font-NotoSansJP)!important;
  font-weight: 400;
  font-size: 12pt;
  letter-spacing: 10%;
  color: var(--color-darkblue);
  color: white;
  /* margin-left: 1em; */
  margin-bottom: 0;
  margin-top: 8px;
}

#site-footer .footer-column__menu {
  display: flex;
  flex-direction: row;
}

#site-footer .footer-column__menu li {
  list-style: none;
  margin: 0;
  border-left: 1px solid white;
}

#site-footer .footer-column__menu li:last-child {
  border-right: 1px solid white;
}

#site-footer .footer-column__menu li a {
  font-family: var(--font-NotoSansJP)!important;
  font-weight: 100;
  font-size: 13.5pt;
  letter-spacing: 10%;
  color: white;
  padding: 16px 32px;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

#site-footer .footer-column__menu li a:hover {
  font-weight: bold;
  text-decoration: underline;
}

.footer-copyright {
  font-family: var(--font-NotoSansJP);
  font-weight: 400;
  font-size: 10.5pt;
  letter-spacing: 10%;
  color: white;
  width: 100%;
  text-align: center;
  margin: 16px 0;
}

.footer-bg-box {
  aspect-ratio: 1728 / 380;
}

.footer-bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  #site-footer .footer-columns {
    flex-direction: column;
    row-gap: 40px;
  }

  #site-footer .footer-columns > .footer-column {
    width: 100%;
  }

  #site-footer .footer-columns > .footer-column .site-logo a {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  #site-footer .footer-columns > .footer-column .site-logo a img {
    width: 85%;
  }

  #site-footer .address {
    text-align: center;
  }

  #site-footer .footer-column__menu {
    width: 100%;
  }

  #site-footer .footer-column__menu li {
    width: 50%;
  }
}