@charset "UTF-8";

/* =========================================
   Footer Styles
   ========================================= */

#colophon {
    background-color: var(--bg-secondary);
    padding: 0.5rem 0; /* フッターの高さを抑えるため 3rem から 1.5rem に変更 */
    text-align: center;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: #888;
}

/* Footer Navigation (Privacy Policy etc.) */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0; /* コピーライトとの余白を 2rem から 1rem に変更 */
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

#colophon .site-info p {
    margin: 0;
    line-height: 1.5;
}

#colophon .credit-text {
    font-size: 0.75rem; /* コピーライトよりもさらに小さく */
    margin-top: 0.5rem;
    opacity: 0.7; /* 少し控えめな色合いに */
}

/* =========================================
   Bottom Navigation (Mobile Only)
   ========================================= */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.bottom-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px; /* ナビゲーションバーの高さを広く変更 (60px -> 75px) */
}

.bottom-nav li {
    flex: 1; /* 3つのボタンを均等幅にする */
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.3); /* ボタン間の区切り線をより見やすく調整 (0.05 -> 0.3) */
}

.bottom-nav li:last-child {
    border-right: none;
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    justify-content: center; /* 基準を中央揃えに戻してバランスを良くする */
    align-items: center;
    height: 100%;
    padding-bottom: 5px; /* 全体をほんの少し上に持ち上げる */
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.bottom-nav a:active {
    background-color: rgba(255, 255, 255, 0.05); /* タップ時のフィードバック */
}

/* ご予約ボタンは色を変えて目立たせる */
.bottom-nav .nav-reserve {
    background-color: rgba(212, 175, 55, 0.15); /* 薄いゴールド背景 */
}
.bottom-nav .nav-reserve:active {
    background-color: rgba(212, 175, 55, 0.25);
}

.bottom-nav .nav-icon {
    font-size: 1.6rem; /* アイコンサイズ少し調整 */
    color: #ffffff;
    height: 35px; /* アイコン全体の高さを固定し、下の文字位置を無理なく揃える */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4); /* アイコン周りにうっすらと後光を当てて見やすくする */
}

/* 中央のInstagramアイコンのみさらに大きくして目立たせる */
.bottom-nav .nav-sns .nav-icon {
    font-size: 2.1rem; /* バランスを崩さない程度に大きく */
}

.bottom-nav .nav-text {
    font-size: 0.75rem; /* テキストサイズを少し大きく調整 */
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 1; /* 行高を揃える */
}

/* ボトムナビゲーションが表示されるスマホ幅（sp-onlyの挙動を助けるため）では、
   フッターがナビゲーションで隠れないようにフッター自体の下部に余白を追加する */
@media (max-width: 768px) {
    #colophon {
        padding-bottom: 90px !important; /* ボトムナビの高さ分(75px + 余白)、フッター要素の中の空間を広げてコピーライトを上に持ち上げる */
    }
}
