
/* シェアボタン用スタイル */
.share-buttons {
  text-align: center;
  margin: 1em 0;
}

.share-label {
  font-size: 1rem;
  margin-right: 0.5em;
  vertical-align: middle;
}

.share-button {
  display: inline-block;
  margin: 0 0.5em;
  padding: 0.3em;
  /* 余白を十分に取り、隣のアイコンと誤タップしにくいように */
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}

.share-button:hover {
  border-color: #ccc;
}

.share-button img {
  width: 24px;  /* 一般的なアイコンサイズ */
  height: 24px;
  vertical-align: middle;
}

/* ------------------------------
   SNS リンク (link.php)
------------------------------ */
.store-links {
  text-align: center;
  margin: 1em 0;
}

.store-links h2 {
  margin-bottom: 0.5em;
  font-size: 1.2rem;
}

.sns-links {
  display: inline-flex;
  gap: 1em; /* アイコン間のスペース */
  justify-content: center;
  align-items: center;
}

.sns-link {
  display: inline-block;
  padding: 0.5em;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.sns-link:hover {
  background-color: #f0f0f0;
}

.sns-link img {
  width: 24px; /* 適度なサイズ */
  height: 24px;
  display: block;
}

/* 編集リンク（必要なら統一） */
.edit-link {
  text-align: right;
  margin-bottom: 1em;
}
