/* SNS全体のコンテナ */
.sns-links {
  display: flex;
  justify-content: center; 
  gap: 50px;               /* 間隔も少し広げてゆったりと */
  padding: 60px 0;
  flex-wrap: wrap;
}

.sns-item {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  gap: 20px;               /* アイコンとボタンの間隔 */
  transition: transform 0.3s ease;
}

/* アイコン：ここを「ちょいでか」に */
.sns-icon {
  width: 100px;            /* 80pxから100pxへアップ */
  height: 100px;
  object-fit: contain;
  border-radius: 22px;    /* サイズに合わせて角丸も少し大きく */
  box-shadow: 0 6px 20px rgba(0,0,0,0.4); 
  background: #1a1a1a;    
  padding: 12px;          
  transition: all 0.3s ease;
}

/* ホバー時の演出：少し大きく、少し光る */
.sns-item:hover .sns-icon {
  transform: scale(1.05); /* ほんの少しだけ大きく */
  box-shadow: 0 0 25px rgba(255, 79, 163, 0.5); 
  border: 1px solid rgba(255, 79, 163, 0.6);
}

/* Private / Work ボタンの調整 */
.sns-text {
  display: flex;
  flex-direction: row; 
  gap: 12px;
}

.sns-text a, .youtube-link {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;        /* 文字も少し読みやすく */
  font-weight: bold;
  padding: 6px 16px;      /* ボタンも少しふっくら */
  border: 1px solid #444;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05); /* ほんのり透ける背景 */
  transition: all 0.2s;
}

.sns-text a:hover, .youtube-link:hover {
  background: #ff4fa3;
  color: white;
  border-color: #ff4fa3;
  box-shadow: 0 0 10px rgba(255, 79, 163, 0.3);
}

/* スマホサイズ (1024px以下) */
@media screen and (max-width: 1024px) {
  .sns-links {
    gap: 40px;
  }
  .sns-icon {
    width: 85px;          /* スマホでも「ちょいでか」を維持 */
    height: 85px;
  }
  .sns-text {
    flex-direction: row;  /* スマホでも横並びの方がスッキリするかも */
    gap: 10px;
  }
}