@charset "UTF-8";

.floating_box {
    background: #fff;
    font-feature-settings: 'palt';
}
@media (min-width: 751px) {
    .floating_box_wrap {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
    }
    .floating_box_inner {
        padding: 22px;
    }
    .floating_box {
        float: right;
        border-radius: 20px;
        margin-top: 20px;
    }
}
@media (max-width: 750px) {
    .floating_box_wrap {
        top: 0 !important;
        position: relative;
    }
    .floating_box {
        border-radius: 1rem;
        padding: 1.6rem;
        margin-top: 1.6rem;
    }
}
