/* ==========================================
   NET RESERVATION
   全ページ共通 ネット予約固定ボタン
========================================== */

.net-reservation-fixed {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
}

.net-reservation-fixed a {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 180px;
    height: 56px;
    padding: 0 24px;

    background: #9b7a32;
    color: #fff;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 4px;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        background-color 0.25s ease;
}

.net-reservation-fixed a:hover {
    background: #b08d3d;
    transform: translateY(-2px);
}


/* ==========================================
   Smartphone
========================================== */

@media screen and (max-width: 767px) {

    .net-reservation-fixed {
        left: auto;
        right: 12px;
        bottom: 12px;
    }

    .net-reservation-fixed a {
        width: auto;
        min-width: 140px;
        height: 48px;
        padding: 0 18px;

        font-size: 14px;
        letter-spacing: 0.05em;
    }

    /*
     * ナビメニュー最下部に余白を確保
     * LINE予約ボタンが固定ボタンに隠れないようにする
     */
    #g-nav .g-nav-right {
        padding-bottom: 100px;
    }
}