body {
    padding-bottom: 86px;
}
.loan-floating {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: #FFF;
    z-index: 9999;
}
.loan-floating.is-active {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.loan-floating__button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 326px;
    height: 46px;
    padding: 0 32px 0 16px;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    line-height: 190%;
    text-align: center;
    background: #F68213;
    color: #FFF;
    z-index: 10;
}
.loan-floating__button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    display: block;
    z-index: -1;
    transition: .5s;
    background: #DB731F;
}
.loan-floating__button:hover::before {
    width: 100%;
}
.loan-floating__button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 16px;
    height: 16px;
    background: url(/content/dam/smcc/jp/ja/nyukai/loan/index/img/ic-blank-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transform: translate(0, -50%);
}
@media screen and (max-width: 640px) {
    body {
        padding-bottom: 94px;
    }
    .loan-floating {
        padding: 20px;
    }
    .loan-floating__button {
        width: 163.5px;
        height: 54px;
        font-size: 14px;
        line-height: 120%;
        text-align: left;
    }
}