.footer .link_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin: 0 auto 30px;
  gap: 30px;
}

.link_block1 {
  width: 30%;
  height: 140px;
  background-image: url(../img/footer-1.png);
  background-size:cover;
  background-repeat:round;
  position: relative;
}

.link_block2 {
  width: 30%;
  height: 50px;
  background-image: url(../img/現場喫茶滲みVer.png);
  background-size:cover;
  background-repeat:round;
  position: relative;
}

.link {
  display: block;
  width: 100%;
  height: 100%;
}

.copyright {
  text-align: center;
  font-size: 0.875rem;
  color: #666666;
  padding: 10px 0;
  background-color: #ffffff;
}

@media screen and (max-width: 576px) {
  .footer .link_wrapper {
    flex-direction: column;
    width: 80%;
    gap: 20px;
  }

  .link_block1 {
    width: 100%;
    height: 140px;
    background-size: contain;
  }
  .link_block2 {
    width: 100%;
    height: 80px;
    background-size: contain;
  }
}