.snsLinks {
    display: flex;
    width: 100%;
    justify-content: end;
    padding-top: 10px;

    .snsLinks__item {
        width: 45px;
        display: inline-block;

        &:first-child {
            margin-right: 10px;
        }

        img {
            width: 100%;
        }
    }
}


.headFixedSns {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    padding: 10px 10px 0 10px;
    background: #ffffff;
    text-align: center;

    @media screen and (max-width: 767px) {
        display: none;
    }

    .headFixedSns__list {
        display: inline-flex;
        flex-direction: column;
        column-gap: 10px;
    }

    .headFixedSns__item {
        &:first-child {
            margin-bottom: 10px;
        }

        &:last-child {
            border-top: 1px solid #f59ba5;
        }
    }

    .headFixedSns__desc {
        display: block;
        padding: 8px 0 0 0;
        font-size: 107.7%;
        line-height: 1;
    }
}

.footerFixedSns {
    position: fixed;
    bottom: 0px;
    width: 100%;
    padding: 0;
    background: #ffffff;
    border-top: 1px solid #dddddd;
    text-align: center;
    z-index: 10;

    @media screen and (min-width: 768px) {
        display: none;
    }

    .footerFixedSns__list {
        display: flex;
        flex-direction: row;
    }

    .footerFixedSns__item {
        flex: 1;
        padding: 10px 20px;
    }
}
