.home_sns {
    /* width: 20%; */
    margin-top: 15px;
    margin-bottom: 15px;
    height: 450px;
    border: 3px dashed #eeaaee;
    border-radius: 10px;
    background-color: #00bfff;
    /* opacity: 0.2; */
    /* 진한 회색 텍스트 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_sns_inner {
    width: 95%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.home_sns_head {
    width: 74%;
    height: 84px;
    border-radius: 10px;
    background-color: #fff;
    /* opacity: 0.2; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.home_sns_head_wrap {
    border: 3px dashed #eeaaee;
    border-radius: 10px;
    width: 95%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}


.fbImg {
    margin-left: 10px;
    width: 10%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fbImg:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.fbImg2 {
    width: 22%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fbImg2:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.home_sns_scroll {
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: 330px;
    border: 3px dashed #eeaaee;
    border-radius: 10px;
    background-color: #F8ECC9;
    direction: rtl;
}

/* 스크롤바 스타일 */
.home_sns_scroll::-webkit-scrollbar {
    width: 12px;
    /* 스크롤바 너비 */
}

.home_sns_scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #eeaaee, #00bfff);
    /* 그라데이션 색상 */
    border-radius: 10px;
    /* 둥근 모서리 */
}

.home_sns_scroll::-webkit-scrollbar-track {
    background: #b5e0be;
    /* 스크롤바 트랙 배경 */
    border-radius: 10px;
}

.home_sns_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home_sns_body {
    width: 95%;
    height: 300px;
    /* border: 3px dashed #eeaaee; */
    border-radius: 10px;
    background-color: #fff;
    /* opacity: 0.2; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    margin-bottom: 25px;
    margin-top: 25px;
}

@media (max-width: 780px) {

    .home_sns_body {
        width: 95%;
        height: 205px;
    }
}