/**
 * GMS シェアセクション
 * 共通コンポーネント：ツアー詳細・レポート詳細で使用
 */

.gms-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

@media screen and (max-width: 540px) {
  .gms-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.gms-share__label {
  color: #666;
  font-family: var(--s-font-b7b51ded, 'Noto Sans JP', sans-serif);
  font-size: 14px;
  margin: 0;
}

.gms-share__icons {
  display: flex;
  gap: 10px;
}

.gms-share__link {
  align-items: center;
  background: #eee;
  border-radius: 50%;
  color: #333;
  display: flex;
  font-size: 20px;
  height: 40px;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
  width: 40px;
}

.gms-share__link:hover {
  background: #ddd;
}
