:root {
  --text: #1e293b;
}

.footer {
  background-color: white;
  padding: 20px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 20px; */
}

.footer-links a {
  margin-right: 20px;
  text-decoration: none;
  color: var(--text);

}

.footer-copy {
  text-align: center;
  padding: 20px;
  padding-bottom: 0;
  background-color: white;
}

.footer_container {
  width: 80%;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.footer_contents {
  width: auto;
  margin: 20px;
}

.SNS_logo {
  width: 30px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0px 20px;
  }

  .footer-links a {
    margin-right: 0;
    text-decoration: none;
    margin-bottom: 5px;
  }

  .footer_container {
    margin-top: 10px;
  }
}