/* floating_menu :s */
#floating_menu {
    position: fixed;
    bottom: 0;
    right: 0;
    transform: translateY(-50%);
    width: 80px;
    height: 240px;
    text-align: center;
    border-radius: 20px 0 0 0;
    z-index: 999;
}
.menu_box {
    position: absolute;
    right: 0;
    width: 80px;
    height: 80px;
    padding: 12px;
    background: #fff;
    border: 1px solid #f6f6f6;
    box-shadow: -3px 3px 7px rgba(0,0,0,0.05);
    transition: all 0.2s;
}
.menu_box .f13 {
    margin-bottom: 4px;
}
.menu_icon {
    width: 36px;
    height: 36px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.menu_box.call {
    top: 0;
    display: flex;
    align-items: center;
    background: #0366B9;
    border-radius: 20px 0 0 0;
    border: none;
}
.call .f16 {
    word-break: keep-all;
}
.call .menu_icon {
    display: none;
    background-image: url(../img/call_icon.png);
}

.menu_box.inquiry {
    top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.inquiry .menu_icon {
    display: block;
}
.inquiry .menu_icon {
    background-image: url(../img/inquiry_icon.png);
}

.menu_box.QR {
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.QR .menu_icon {
    background-image: url(../img/qr_icon.png);
}
.QR .f12 {
    display: none;
    word-break: keep-all;
}


/* hover */
.menu_box.mouseon {
    width: 176px;
    border-radius: 20px 0 0 20px;
}

.menu_box.call:hover {
    justify-content: space-between;
    text-align: right;
}
.call:hover .menu_icon {
    display: block;
}

.menu_box.inquiry:hover {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.menu_box.QR:hover {
    flex-direction: row;
    justify-content: space-between;
}
.menu_box.QR:hover .menu_icon {
    width: 48px;
    height: 48px;
}
.menu_box.QR:hover .f13 {
    display: none;
}
.menu_box.QR:hover .f12 {
    display: block;
    line-height: 1rem;
}
/* floating_menu :e */