@charset "shift-jis";
/* ==========================================================================
fixed-btn
========================================================================== */
.fixed-btn {
    position: fixed;
    z-index: 499;
    bottom: 100px;
    right: 10px;
    display: none;
}
.fixed-btn.is-show {
    display: block;
}
.fixed-btn a {
    display: block;
    box-shadow: 0 1.5px 0 #782332;
    color: #ffffff;
    position: relative;
    min-width: 220px;
    padding: 8px 15px 8px 0;
    text-align: center;
    border-radius: 2.8px;
    letter-spacing: 1px;
    font-size: 16px;
    background: #c6272d url(/images/common/arrow02.svg) 94% center/12px no-repeat;
}
.fixed-btn a:hover {
    text-decoration: none;
}
.fixed-btn .baloon {
    display: block;
    padding: 2px 7px;
    position: absolute;
    left: 0;
    top: -57%;
    background-color: #fff;
    color: #c6272d;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #c6272d;
    letter-spacing: normal;
}
.fixed-btn .baloon::after {
    content: "";
    border: 4px solid transparent;
    border-top: 5px solid #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -9px;
}
@media screen and (max-width: 599px) {
    .fixed-btn {
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 28px 15px;
        background-color: rgba( 255,255,255, 0.75);
    }
/*    .fixed-btn .baloon {
        display: none;
    }*/
    .fixed-btn a {
        width: calc(100% - 80px);
        font-size: 16px;
        background-size: 16px;
    }
}

