@charset "UTF-8";

#line-banner {
    position: fixed;
    top: 200px;
    right: 0;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: 10px;
    padding: 20px 23.5px 15px;
    background-color: #06C755;
    cursor: pointer;
    transition: all 0.3s ease-out;
}
@media screen and (min-width: 1921px) {
    #line-banner {
        right: 50%;
        transform: translateX(calc(1920px / 2));
    }
}
@media screen and (max-width: 1300px) {
    #line-banner {
        padding: 10px 5px;
    }
}
@media screen and (max-width: 767px) {
    #line-banner {
        display: none;
    }
}

#line-banner:hover {
    transform: translate(calc(1920px / 2), -2px);
    box-shadow: 0 5px 20px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1920px) {
    #line-banner:hover {
        transform: translate(0);
    }
}

#line-banner img {
    width: 75px;
    aspect-ratio: 75 / 72;
    margin-bottom: 10px;
}
@media screen and (max-width: 1300px) {
    #line-banner img {
        width: 30px;
        margin-bottom: 0px;
    }
}

#line-banner span {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.7em;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
}
@media screen and (max-width: 1300px) {
    #line-banner span {
        font-size: 16px;
    }
}