
/*--フッター--*/
.footer {
  padding: 2rem 1rem 1rem;
  background: #fff;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto 3rem;
}
.footer-logo {
  width: 100px;
  height: 70px;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-item {
  display: flex;
  list-style: none;
  padding: 0; 
}
.footer-list {
  padding-left: 1.5rem;
}
.footer-list a {
  font-weight: bold;
  color: #333;
  font-size: 1.5rem;
}
.footer-list a:hover {
  color: #6699cc;
}
.copyright {
  text-align: center;
  color: #333;
}



/* スマホ画面での表示制御 */
@media screen and (max-width: 768px) {

  /*--フッター--*/
  .footer {
    padding: 2rem 1rem 1rem;
  }
  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 414px;
    margin-bottom: 2rem;
  }
  .footer-logo {
    margin-bottom: 1.5rem;
  }
  .footer-item {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-list {
    padding: 0.5rem;
  }
}