@charset "UTF-8";
/* =========================
   SNS案内
========================= */

.sns-box {
  padding: 16px 0;
}

.sns-heading {
  font-size: 22px;
  margin-bottom: 16px;
}

.sns-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 16px; /* 縦の間隔 */
}

.sns-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.sns-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.sns-item span {
  font-size: 16px;
  font-weight: 500;
}

/* ホバー */
.sns-item:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* 訪問済み・未訪問も統一 */
.sns-item:link,
.sns-item:visited {
  color: #222;
  text-decoration: none;
}

.sns-item svg {
  width: 1em;
  height: 1em;
  fill: currentColor;         /* 文字色と連動 */
  flex-shrink: 0;
}

/* Instagram */
.sns-item.instagram {
  color: #E4405F;
}

/* X（旧Twitter） */
.sns-item.x {
  color: #000000;
}

/* YouTube */
.sns-item.youtube {
  color: #FF0000;
}

/* Facebook */
.sns-item.facebook {
  color: #1877F2;
}

.sns-facebook .fb-page {
  margin-top: 8px;
}


