.sns {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 16px;
  max-width: 370px;
  margin: 0 auto;
}

.sns-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  color: #fff;
}

.sns-link:hover {
  opacity: 0.8;
  color: #fff;
  transition: all 0.3s;
}

.sns-text {
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .sns {
      max-width: 306px;
  }
}