/* SNS Share Button Component */
.sns-share-buttons {
  width: 100%;
  padding: 30px 0;
  background-color: #FFE2A5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sns-share-buttons .sns-share-buttons-title {
  margin-bottom: 20px;
}

.sns-share-headline {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #000;
}

.share-button-list {
  display: flex;
  gap: 35px;
}

.share-button-list .share-button-list-item {
  width: 50px;
  height: 50px;
}

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

.share-button-link img {
  width: 100%;
  height: 100%;
  transition: 0.5s opacity;
}

.share-button-link:hover img {
  opacity: 0.8;
}
