<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.floating {
    position: fixed;
    bottom: 70px;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.75);
    transition: all 0.3s ease 0s;
    visibility: visible;
    opacity: 1;
    box-shadow: 0px 0px 15px -5px #000;
}

.floating.is-hidden {
    visibility: hidden;
    opacity: 0;
}

#osusume h3::before,
.floating h3::before {
    content: "\f14a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    font-style: normal;
    padding-right: 7px;
}

#osusume h3,
.floating h3 {
    margin-bottom: 1%;
}

#osusume h3 {
    text-align: center;
}

#osusume ul,
.floating ul {
    margin-left: 10px;
}

.floating ul li {
    list-style-type: square;
    font-size: 1.8rem;
    line-height: 1.5;
}

#osusume ul li {
    list-style-type: square;
}

#osusume .naka {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
}


@media (min-width: 768px) {
    .floating {
        padding: 15px 165px 15px 15px;
    }

    #osusume ul,
    .floating ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    #osusume ul li,
    .floating ul li {
        width: 47%;
    }

    #osusume h3 {
        margin-bottom: 5%;
    }

}


@media (min-width: 1025px) {
    .floating {
        bottom: 20px;
        left: 120px;
        width: 325px;
        border-radius: 10px;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 20px;
    }

    .floating ul li {
        width: 100%;
    }

    #osusume li {
        width: 220px !important;
        height: 220px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.8);
        color: #000;
        padding: 35px;
        text-align: center;
        margin: 5px;
    }

    #osusume ul li {
        list-style-type: none;
    }

    #osusume .naka {
        position: absolute;
        top: 50%;
        left: 0%;
        transform: translateY(-50%) translateX(0%);
        -webkit- transform: translateY(-50%) translateX(0%);
        width: 100%;
        padding: 10px
    }
}</pre></body></html>