/* === SNSセクション全体 === */
.sns-section {
  margin: 2rem auto;
  padding: 4rem;
  max-width: 1000px;
  color: var(--color-text);
}

/* === セクションタイトル === */
.sns-section h2 {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-text);
}

/* === SNSフィードブロック配置 === */
.sns-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* === SNSブロック単位 === */
.sns-block {
  flex: 1 1 300px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === Facebook／Instagram 埋め込みエリア === */
.facebook-feed,
.instagram-feed {
  width: 100%;
  max-width: 426px;
  background-color: var(--color-bg); /* SNS埋め込みも背景色に馴染ませる */
  border-radius: 6px;
}

/* === ボタンエリア === */
.sns-buttons {
  margin-top: 0.5rem;
}

/* === SNSリンクボタン === */
.sns-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-link);
  font-weight: bold;
  font-size: 0.95rem;
}

.sns-buttons a:hover,
.sns-buttons a:focus {
  color: var(--color-link-hover);
  text-decoration: underline;
}

/* === SNSアイコン画像 === */
.sns-buttons img {
  height: 24px;
  width: auto;
}
