﻿.snsArea {
  text-align: center;
  padding-top: 32px;
  padding-bottom: 40px;
  background: #fff;
}
.snsCatchphrase {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.snsList {
  display: flex;
  justify-content: center;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.snsList li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.snsList img {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s;
  background: #fff;
  object-fit: cover;
}

.snsList a:hover img {
  transform: scale(1.07);
}