@charset "UTF-8";
/*
Theme Name: Eventikou
Author: Gemini & You
Description: 東京のカップル向けお出かけ情報テーマ
Version: 1.4
*/

/* --- 共通・基本設定 --- */
body { background-color: #f3f4f6; color: #1f2937; }
.app-container { width: 100%; background-color: #ffffff; min-height: 100vh; position: relative; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* --- 管理バー表示時の補正 --- */
body.admin-bar header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar header { top: 46px; } }

/* --- カード・アニメーション --- */
.event-card { transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease; }
.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* --- 絞り込みボタン --- */
.date-filter-btn.active { background-color: #f43f5e !important; color: white !important; border-color: #f43f5e !important; }
.tag-filter-btn.active { background-color: #fff1f2 !important; color: #e11d48 !important; border-color: #f43f5e !important; }

/* --- お気に入り(Keep) --- */
.btn-keep.active { color: #f43f5e !important; }
.btn-keep.active i { font-weight: 900; }

/* --- フッターLINKSの多段列表示 (CSS Columnsを利用) --- */
.footer-nav-container ul {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
}
@media (min-width: 640px) {
    .footer-nav-container.multi-col ul {
        column-count: 2;
        column-gap: 2.5rem;
    }
}
.footer-nav-container li {
    break-inside: avoid-column;
    margin-bottom: 0.85rem;
}
.footer-nav-container a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
}
.footer-nav-container a:hover { color: #f43f5e; }

/* --- 詳細ページ --- */
.post-content p { margin-bottom: 1.5rem; line-height: 1.8; color: #374151; }
.post-content h2 { 
    font-size: 1.5rem; font-weight: 900; margin-top: 2.5rem; margin-bottom: 1.25rem; 
    border-left: 5px solid #f43f5e; padding-left: 1rem; 
}

/* --- 検索モーダル --- */
#search-overlay { backdrop-filter: blur(8px); background-color: rgba(0,0,0,0.7); }