/* =============================================
フローティング
============================================= */
.float-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.5);
    border: 2px solid #6AB4D8;
    visibility: hidden;
    transition: all 0.5s linear;
    transform: translateX(110%);
}

.float-button.is-show {
    visibility: visible;
    transform: translateX(0%);
}

.float-button .close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #278BC4;
    border-radius: 0 10px 0 10px;
    color: #fff;
    width: 45px;
    height: 45px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
    transition: all .2s;
}
.float-button .close-btn:hover {
    background-color: #107AB2;
}
.float-button .close-btn::before {
    content: "×";
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    line-height: 1;
    font-size: 45px;
}
.float-button a {
    font-weight: bold;
    display: block;
    width: auto;
    height: auto;
    border-radius: 10px;
    text-decoration: none;
}
.float-button .bg-white {
    border-radius: 10px 10px 0 0;
    background-color: #fff;
    padding: 20px;
}
.float-button .f-title {
    color: #878887;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.float-button .f-logo {
    margin-bottom: 20px;
    max-width: 250px;
}
.float-button .f-title2 {
    font-size: 20px;
    line-height: 1.2;
    color: #333;
}
.float-button .f-btn {
    background-color: #6AB4D8;
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding: 5px;
}
.float-button.active {
    visibility: hidden;
}
@media screen and (max-width: 690px) {
	.float-button {
        width: 80%;
        left: 0;
        right: 0;
        bottom: 100px;
        margin: auto;
        background: #fff url(../images/nurse-bg.jpg) right top / contain no-repeat;
    }
    .float-button .close-btn {
        width: 40px;
        height: 40px;
    }
    .float-button .close-btn::before {
        width: 40px;
        height: 40px;
        font-size: 40px;
    }
    .float-button a {
        font-weight: normal;
    }
	.float-button a::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        border-radius: 10px;
        width: 100%;
        height: 100%;
        background: -moz-linear-gradient(left, #fff 30%, transparent);
        background: -webkit-linear-gradient(left, #fff 30%, transparent);
        background: linear-gradient(to right, #fff 30%, transparent);
    }
    .float-button .f-btn {
        display: none;
    }
    .float-button .bg-white {
        border-radius: 10px;
        background-color: transparent;
        padding: 10px;
        position: relative;
    }
    .float-button .f-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .float-button .f-title2 {
        font-size: 14px;
        color: #57B8E1;
    }
    .float-button .f-logo {
        margin-bottom: 5px;
        max-width: 200px;
    }
}