/**
 * SP Bottom Menu Styles
 *
 * @package NONKE_SPA
 * @since 1.0.0
 */

/* SPボトムメニュー */
.p-spBottomMenu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #303c09;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    z-index: 1000;
    height: 60px;
}

.p-spBottomMenu__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    text-decoration: none;
    color: #fff5b8;
    font-size: 11px;
    transition: all 0.3s ease;
    position: relative;
}

.p-spBottomMenu__item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.p-spBottomMenu__item span {
    display: block;
}

.p-spBottomMenu__item:hover,
.p-spBottomMenu__item:active {
    color: #fff;
    background: rgba(255, 245, 184, 0.1);
}

/* 予約ボタン強調 */
.p-spBottomMenu__item--reserve {
    color: #fff;
    font-weight: bold;
    background: rgba(255, 245, 184, 0.15);
}

.p-spBottomMenu__item--reserve i {
    font-size: 24px;
}

/* Contact Usボタン */
.p-spBottomMenu__item--contact {
    background: #fff5b8;
    color: #303c09;
}

.p-spBottomMenu__contactText {
    font-size: 12px;
    font-weight: bold;
}

.p-spBottomMenu__item--contact:hover {
    background: #fff;
    color: #303c09;
}

/* PCでは非表示 */
@media (min-width: 769px) {
    .p-spBottomMenu {
        display: none;
    }
}

/* ボトムメニュー分の余白を確保 */
@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
    
    /* フッターの最下部に余白追加 */
    .l-footer__bottom {
        padding-bottom: 60px;
    }
}