@charset "UTF-8";

#floatMenu_wrap {
    position: absolute;
    top: 200px;
    right: 0;
}
/*///////////////////// font-face 読み込み例 ///////////////////////////*/
.float__res a {
    width: 70px;
    height: 170px;
    background-color: var(--sub-color);
    border-bottom-left-radius: 8px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(10px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.reservation-side.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reservation-side-link-text {
    letter-spacing: 4.5px;
    bottom: 14px;
    font-size: 22px;
}
.float__res svg {
    top: 25px;
    width: 20px;
    height: 20px;
    fill: var(--sub-font-color);
    position: absolute;
}
.reservation-side-link-text:before {
    height: 10px;
    bottom: 41px;
}
.float__member {
    margin-bottom: 5px;
}
.float__member a{
    width: 70px;
    height: 180px;
    background-color: #DD3434;
    border-radius: 5px 0 0 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease, opacity 0.6s ease;
    writing-mode: vertical-rl;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 4px;
    color: #fff;
    padding-top: 45px;
    position: relative;
}
.float__member a:before {
    content: "";
    background-image: url(/images/member-logo.svg);
    display: inline-block;
    position: absolute;
    background-repeat: no-repeat;
    width: 44px;
    height: 44px;
    top: 9px;
}

.float__login a {
    width: 70px;
    height: 46px;
    background: #EA6666;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px 0 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}