.footer-area {
    /* 背景を設定 */
    background-image: url('footer_0.jpg');
    max-width: 500px;      /* 背景を他のサイズに合わせる */
    background-position: center; /* 中央に配置 */
    text-align: center;          /* 中身を中央寄せ */
    padding: 20px 20px;          /* 内側の余白（ボタンがはみ出ないように） */
}

/* 上のボタンの調整 */
.btn-top img {
    max-width: 500px; 
    width: 100%;
    margin-bottom: 5px; /* 下のボタンとの隙間 */
}

/* 下のボタンの横並び設定 */
.sns-buttons {
    display: flex;           /* 横並びにする魔法の命令 */
    justify-content: center; /* 中央寄せ */
    gap: 5px;               /* ボタン同士の隙間 */
}

.sns-buttons img {
    max-width: 100px; /* 下のボタンは少し小さく */
    width: 100%;
}