/*
 * page-top-esthe.css
 * エステテーマ - トップページ専用上書き
 * top.php のみで読み込み（他ページに影響しない）
 */

/* ========================================
   header-spacer: 完全非表示
   エステテーマは sticky navbar のため不要
   ======================================== */
.header-spacer {
    display: none !important;
    margin: 0 !important;
    height: 0 !important;
    padding: 0 !important;
}

/* ========================================
   navbar margin-bottom 除去（top.php専用）
   Bootstrap .navbar の margin-bottom:20px が
   sticky navbar でバナー上の余白になるため
   ======================================== */
.navbar-custom.navbar-fixed-top {
    margin-bottom: 0 !important;
}

/* ========================================
   2カラム化（右カラム非表示→メイン拡張 top.php専用）
   ======================================== */
@media (min-width: 992px) {
    .col-lg-6.col-lg-push-3 {
        width: 75% !important;
    }
}

/* ========================================
   SP版: ナビバー → バナー → メニュー間の余白除去
   ======================================== */
@media (max-width: 767px) {
    .main {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* スライドバナー上下の余白除去 */
    .swiper-sp-banner {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    /* 電話・営業時間セクション余白除去 */
    .card.action-xs {
        margin: 0 !important;
    }
    .card.action-xs > .bg-light {
        margin-bottom: 0 !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    /* メニューカード上部の余白除去 */
    .sp-menu-card-style {
        margin-top: 0 !important;
    }
}


/* ========================================
   ニュースタブ: Yahoo風タブデザイン
   ======================================== */
.news-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 2px solid #e0e0e0;
}
.news-tab {
    background: none;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 10px 20px;
    font-size: 13px;
    font-family: 'LINE Seed JP', sans-serif;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
    box-shadow: none;
}
.news-tab.active {
    background: #fff;
    color: #333;
    border-bottom: 2px solid #333;
    box-shadow: none;
}
.news-tab:not(.active):hover {
    background: rgba(255, 255, 255, 0.5);
    color: #555;
}

/* ========================================
   header-spacer-top: エステテーマは sticky navbar のため不要
   page-top.css の margin-top:99px/53px を打ち消す
   ======================================== */
.header-spacer-top {
    display: none !important;
    margin: 0 !important;
    height: 0 !important;
    padding: 0 !important;
}

/* ========================================
   SP版メニューカード: ゴールド系に変更
   ======================================== */
.sp-menu-card-style {
    background: #f7f3ec;
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
}
.sp-menu-card {
    background: #fff;
    color: #333;
    border: 1px solid rgba(201, 169, 110, 0.3);
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.1);
}
.sp-menu-card:hover,
.sp-menu-card:active {
    color: #fff;
    border-color: rgba(201, 169, 110, 0.5);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.2);
}
.sp-menu-card-icon {
    background: rgba(201, 169, 110, 0.15);
}
.sp-menu-card-icon i {
    color: #c9a96e !important;
}
.sp-menu-card-text {
    color: #333;
}
.sp-menu-card-badge {
    background: #c9a96e;
    color: #1a1a1a;
}
.sp-menu-card-login {
    background: linear-gradient(135deg, #c9a96e, #8b6d3a) !important;
    color: #fff;
    border: none;
}
.sp-menu-card-login .sp-menu-card-icon {
    background: rgba(255,255,255,0.2);
}
.sp-menu-card-login .sp-menu-card-icon i {
    color: #fff !important;
}
.sp-menu-card-login .sp-menu-card-text {
    color: #fff;
}
