/* ------------------------------
 SNSアイコン
---------------------------------*/
.footer-nav-bottom {
    position: relative; /* 子の絶対配置を有効にする */
}

/* SNSアイコンをコピーライトの上に固定 */
.footer-social {
    position: absolute !important;
    bottom: 40px;       /* コピーライトの上の距離 */
    right: 10px;        /* 右端からの距離 */
    display: flex !important;
    gap: 8px;          /* アイコン同士の距離 */
    z-index: 9999;      /* 他の要素より前面に */
}

.footer-social a {
    display: inline-block !important;
    margin: 0 !important;
}

.sns-icon {
    width: 25px !important;
    height: auto !important;
}

.sns-icon2 {
    width: 45px !important;
    height: auto !important;
    position: relative;  /* 上下移動を可能にする */
    top: -6px;           /* 上に5px移動 */
}

.sns-label {
  color: #ffffff;         
  font-size: 30px;        
  font-weight: bold;      
  position: relative;     
  top: -35px;              /* 上下位置調整（負の値で上に） */
  left: 90px;              /* 左右位置調整（正の値で右に、負の値で左に） */
  margin-right: 10px;     /* アイコンとの間隔 */
}

