.footer__wrap {
  padding: 30px 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__wrap__left {
  display: block;
  width: 100%;
  max-width: 250px;
  text-align: center;
  padding-top: 30px;
}
.footer__wrap__left__logo a:hover {
  filter: brightness(90%);
}
.footer__wrap__left__logo img {
  height: 60px;
  width: 200px;
}
.footer__wrap__left__sns {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}
.footer__wrap__left__sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1px 1px;
  width: calc(25% - 2px);
  height: 56px;
  background: white;
}
.footer__wrap__left__sns a:hover {
  filter: brightness(90%);
}
.footer__wrap__left__sns img {
  width: 24px;
  height: 24px;
}
.footer__wrap__left__sns p {
  display: none;
  width: 56px;
  font-size: 10px;
  color: black;
  text-align: center;
}
.footer__wrap__right {
  max-width: 240px;
  flex: 1;
  width: 100%;
}
.footer__wrap__right a {
  background: white;
  width: 100%;
  height: 50px;
  margin: 2px 0;
  position: relative;
  display: flex;
  justify-content: right;
  align-items: center;
}
.footer__wrap__right a:hover {
  filter: brightness(95%);
}
.footer__wrap__right a p {
  color: black;
  text-align: right;
  padding-right: 30px;
}
.footer__copyright {
  margin-top: 20px;
  padding: 20px;
  border-top: 1px solid rgb(240, 240, 240);
}
.footer__copyright p {
  color: gray;
  text-align: center;
  font-size: 14px;
  line-height: 14px;
}

@media screen and (max-width: 467px) {
  .footer__wrap {
    flex-wrap: wrap;
    flex-flow: column;
  }
  .footer__wrap__right {
    max-width: none;
    width: 100%;
  }
}