
.side-banner {
    display: flex;
    width: 110px;
    height: 100px;
    /* padding: 5px 17px; */
    flex-direction: column;
    justify-content: center;
    /* border: 3px solid #FF9000; */
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    border-radius: 3px;
    /* background: linear-gradient(180deg, #FF9000 10%, #FF7011 90%); */
    background-color: #0BBFBA;
    box-shadow: 0px 0px 5px 0px rgba(11, 191, 186, 0.30);
    color: #ffffff;
    position: fixed;
    bottom: 90px;
    right: 0px;
    color: var(--main-css-white, #FFF);
    text-align: center;
    font-family: "新ゴ DB";
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    line-height: 14px; /* 127.273% */
    letter-spacing: 0.66px;
    z-index:5;
}

.side-hover-banner {
    opacity: 0;
    transition: all 0.5s;
    
    display: flex;
    width: 110px;
    height: 100px;
    /* padding: 10px 17px; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    border-radius: 3px;
    border: 3px solid #0BBFBA;
    /* background: linear-gradient(180deg, #FFF0DD 10%, #FFF0DD 90%); */
    background: #F5FFFF;
    box-shadow: 0px 0px 5px 0px rgba(11, 191, 186, 0.30);
    color: #0BBFBA;
    text-align: center;
    font-family: "新ゴ DB";
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    line-height: 14px;
    letter-spacing: 0.66px;
}

/* .side-banner:hover .default-banner {
    display: none;
}
.side-banner .hover-banner {
    display: none;
}
.side-banner:hover .hover-banner {
    display: block;
} */

.line-banner {
    display: flex;
    width: 110px;
    height: 100px;
    padding: 10px 20px 10px 0px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-radius: 3px;
    border: 3px solid #51C848;
    background: #F4FFF3;
    box-shadow: 0px 0px 5px 0px rgba(81, 200, 72, 0.30);
    position: fixed;
    bottom: 110px;
    right: 0px;
    transition: all 0.4s;
    z-index:5;
}

@media (hover: hover) and (pointer: fine) {

    .side-banner:hover .side-hover-banner {
        opacity: 1;
    }
    .line-banner:hover {
        right: 0;
        width: 220px;
    }
}