/* footer.css */

footer {
  background: #fff;
  color: #333;
  padding: 1rem 2rem;
  border-top: 1px solid #ddd;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-sns {
  margin-top: 1rem;
}

.footer-sns a {
  color: #333;
  text-decoration: underline;
  margin: 0 0.5rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .footer-sns {
    display: block;
  }

  .footer-sns a {
    display: inline-block;
    margin: 0.5rem;
  }
}
