﻿
@media screen and (max-width: 767px) {
    body > .right-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    body > .right-link > a {
        display: block;
    }

    body > .right-link > a > img {
        width: 50px;
        height: 50px;
        pointer-events: none;
    }
}

@media screen and (min-width: 768px) {
    body > .right-link {
        width: 60px;
        height: 220px;
        position: fixed;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    body > .right-link > a {
        display: block;
    }

    body > .right-link > a:nth-child(1) {
        position: absolute;
        top: 0px;
        left: 0px;
    }

    body > .right-link > a:nth-child(2) {
        position: absolute;
        top: 80px;
        left: 0px;
    }

    body > .right-link > a:nth-child(3) {
        position: absolute;
        top: 160px;
        left: 0px;
    }

    body > .right-link > a > img {
        width: 60px;
        height: 60px;
        pointer-events: none;
        transition: all 0.5s;
    }

    body > .right-link > a:hover > img {
        width: 68px;
        height: 68px;
    }
}