@charset "utf-8";



  
  footer ul {
    padding: 0;
    list-style: none;
    
  }
  
  footer a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
  }
  
  footer a:hover {
    color: #fff;
  }
  
  footer hr {
    height: 1px;
    border: 0;
    border-top: 1px solid #e5e7eb;
  }
  
  footer .grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .footer {
    padding: 2rem;
    font-size: 15px;
    color: #fff;
    background-color: #333;
  }
  
  .footer__navi-heading {
    font-weight: 600;
  }
  
  .footer__logo {
    display: inline-block;
    margin-bottom: 2rem;
  }
  .footer__logo img {
    max-width: 120px;
    width: 100%;
  }
  
  .footer__navi li {
    margin-bottom: 0.75rem;
  }
  
  @media (min-width: 768px) {
    footer .md-flex {
      display: flex;
    }
  
    footer .md-justify-between {
      justify-content: space-between;
    }
  
    footer .grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }