@charset "UTF-8";
#sns {
  background: #f1f1f1;
  width: 100%;
  background-size: cover;
  padding: 2.8rem 0;
}
#sns h2 {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  text-align: center;
  padding-bottom: 2.3rem;
}
#sns ul {
  display: flex;
  justify-content: center;
  width: auto;
  margin: 0 auto;
  padding: 0 3%;
}
#sns ul li {
  margin: 0 1%;
  max-width: 280px;
  width: 100%;
}
#sns ul li a {
  border: 3px solid #fff;
  display: block;
  position: relative;
  transition: 0.3s;
}
#sns ul li a img {
  width: 100%;
  vertical-align: bottom;
}
#sns ul li a span {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  padding: 7px;
  line-height: 1.3;
  box-sizing: border-box;
}
#sns ul li a:hover {
  border: 3px solid #804f29;
}
@media screen and (max-width: 834px) {
  #sns {
    background: #f1f1f1;
    background-size: cover;
  }
  #sns h2 {
    font-size: 1.8rem;
    padding-bottom: 1rem;
  }
  #sns ul {
    flex-wrap: wrap;
    padding: 0 2%;
  }
  #sns ul li {
    max-width: auto;
    width: 48%;
    margin-top: 1rem;
    margin: 1rem 1% 0;
  }
  #sns ul li a {
    border: 2px solid #fff;
  }
  #sns ul li a span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    font-size: 1.3rem;
    padding: 7px 3px;
    position: relative;
    background: #002233;
  }
  #sns ul li a:hover {
    border: 2px solid #fff;
  }
}