@charset "UTF-8";
/*
Footer Styles
SEO Service Site - Migrated from WordPress theme
*/

/* footer */
footer {
  background-color: #0c1e84;
  color: #fff;
  font-size: 1.4rem;
}
.footer-box {
  display: flex;
  justify-content: space-around;
  padding-top: 4rem;
  padding-bottom: 4rem;
  align-items: flex-start;
  gap: 2rem;
  font-weight: bold;
}
.footer-address {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding: 2rem 0rem 2rem 4rem;
  border-left: 1px solid #fff;
}
.footer-logo dt {
  font-weight: bold;
}
.footer-logo dd {
  width: 18rem;
}
.footer-link a {
  display: inline-block;
  padding: 1rem;
  border: 1px solid #fff;
}
.footer-link a:hover {
  color: #fff;
  background-color: #d2e4ff33;
}
.footer-menu {
  display: grid;
}
.footer-menu a:hover {
  color: #d2e4ff;
  border-bottom: 1px solid #fff;
}
.footer-menu li {
  margin-bottom: 1rem;
}
.footer-menu_sub .sub-menu-list {
  display: grid;
}
.footer-menu_sub .sub-menu-list li::before {
  content: "－";
  margin-right: 2px;
}
.footer-bnr ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.footer-bnr li a {
  display: block;
}
.footer-copyright {
  margin-top: 4rem;
  padding: 2rem 0;
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 980px) {
  footer {
    gap: 1rem;
  }
  .footer-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer-address {
    grid-column: 1 / 3;
    padding: 2rem 0 0;
    border-left: none;
    border-top: 1px solid #fff;
  }
  .footer-bnr ul {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
@media screen and (max-width: 680px) {
  .footer-bnr ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
