/* --------------------
   Footer
-------------------- */

.site-footer {
  background-color: #fff;
  color: #fff;
  padding: 3rem 1rem 1rem;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.footer-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-nav ul{
  display: flex;
  flex-wrap: wrap;
}
.footer-nav ul li{
  display: block;
}
.footer-nav ul li::marker{
  display: none;
}
.footer-nav ul li a{
  font-size: 15px;
  margin-left: 20px;
  color: #333;
  font-weight: 400;
}
.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid #dbdbdb;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-policy a {
  color: #333;
  font-weight: 400;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-copy {
  color: #aaa;
  font-size: 0.85rem;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo img {
    height: 52px;
    margin-bottom: 12px;
}
  .footer-container {
    gap: 0;
}
  .footer-bottom-inner {
    flex-direction: column;
    text-align: left;
    align-items: unset;
    padding: 0 20px;
    gap: 4px;
  }
  .footer-nav {
    width: 100%;
  }
  .footer-nav ul {
    display: block;
  }
  .footer-nav ul li {
    display: block;
    width: 48%;
  }
  .footer-nav ul li a {
    margin-left: 0;
    text-align: left;
    font-size: 18px;
  }
}

.copyright {
  color: #333;
  font-size: 12px;
}