    .events-container {
        max-width: 1400px;
        margin: 80px auto 0px;
        padding: 2rem;
    }
    
    .page-header {
        text-align: center;
        margin-bottom: 3rem;
        background: #8b7355;
        color: white;
        padding: 3rem 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
    }
    
    .page-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .page-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 1rem;
    }
    
    .api-status {
        display: inline-flex;
        align-items: center;
        background: rgba(255,255,255,0.2);
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.9rem;
    }
    
    .status-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin-right: 0.5rem;
    }
    
    .status-live {
        background: #8b7355;
    }
    
    /* 表示切り替えボタン */
    .view-toggle {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .view-btn {
        padding: 1rem 2rem;
        border: 2px solid #8b7355;
        background: rgba(255, 255, 255, 0.05);
        color: #8b7355;
        border-radius: 25px;
        cursor: pointer;
        font-weight: bold;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .view-btn:hover {
        background: rgba(139, 115, 85, 0.2);
    }

    .view-btn.active {
        background: #8b7355;
        color: white;
        box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    }

    /* 検索・フィルター機能 */
    .filter-section {
        background: rgba(255, 255, 255, 0.02);
        padding: 2rem;
        border-radius: 15px;
        margin-bottom: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(139, 115, 85, 0.2);
    }

    .filter-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .filter-group {
        display: flex;
        flex-direction: column;
    }

    .filter-label {
        font-weight: bold;
        margin-bottom: 0.5rem;
        color: #8b7355;
        font-size: 0.95rem;
    }

    .filter-input, .filter-select {
        padding: 0.8rem;
        border: 2px solid rgba(139, 115, 85, 0.3);
        background: rgba(255, 255, 255, 0.05);
        color: #E0E0E0;
        border-radius: 8px;
        font-size: 1rem;
    }

    .filter-input:focus, .filter-select:focus {
        outline: none;
        border-color: #8b7355;
        box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.2);
    }

    .filter-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.8rem 1.5rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
        font-size: 1rem;
        min-width: 120px;
        transition: all 0.3s ease;
    }

    .filter-btn.primary {
        background: #8b7355;
        color: white;
    }

    .filter-btn.primary:hover {
        background: #A0522D;
    }

    .filter-btn.secondary {
        background: rgba(255, 255, 255, 0.1);
        color: #E0E0E0;
        border: 1px solid rgba(139, 115, 85, 0.3);
    }

    .filter-btn.secondary:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    /* テーブル表示 */
    .table-container {
        overflow-x: auto;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        position: relative;
        border: 1px solid rgba(139, 115, 85, 0.2);
    }

    /* スマホ用矢印インジケーター */
    .scroll-indicator {
        position: absolute;
        left: 50%;
        top: 300px;
        transform: translateX(-50%);
        background: rgba(139, 115, 85, 0.9);
        color: white;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        z-index: 20;
        pointer-events: none;
        transition: opacity 0.3s ease;
        display: none;
    }

    .scroll-indicator i {
        margin-left: 5px;
    }

    .events-table {
        width: 100%;
        min-width: 1000px;
        border-collapse: collapse;
    }

    .events-table th {
        background: #8b7355;
        color: white;
        padding: 1.2rem 1rem;
        text-align: left;
        font-weight: bold;
        position: sticky;
        top: 0;
        z-index: 10;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .events-table th:hover {
        background: #A0522D;
        cursor: pointer;
    }

    .events-table td {
        padding: 1rem;
        border-bottom: 1px solid rgba(139, 115, 85, 0.2);
        vertical-align: top;
        font-size: 0.9rem;
    }

    .events-table tr:hover {
        background: rgba(139, 115, 85, 0.05);
    }

    .event-date {
        font-weight: bold;
        color: #8b7355;
        white-space: nowrap;
        /*font-size: 1rem;*/
    }

    .event-time {
        color: #E0E0E0;
        /*font-size: 0.9rem;*/
        white-space: nowrap;
    }

    .event-title {
        /*font-weight: bold;*/
        color: #E0E0E0;
        max-width: 250px;
        /*line-height: 1.4;*/
    }

    .event-artists {
        color: #E0E0E0;
        /*font-size: 0.9rem;*/
        max-width: 180px;
        /*line-height: 1.3;*/
    }

    .event-target {
        color: #E0E0E0;
        /*font-size: 0.9rem;*/
        white-space: nowrap;
    }

    .event-venue {
        color: #E0E0E0;
        /*font-size: 0.9rem;*/
        max-width: 200px;
        /*line-height: 1.3;*/
    }

    .event-price {
        color: #E0E0E0;
        /*font-weight: 500;*/
        text-align: center;
    }

    .event-price.free {
        color: #8b7355;
        font-weight: bold;
    }

    .event-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.3rem 1rem;
        background: #8b7355;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        font-size: 0.8rem;
        font-weight: 600;
        text-align: center;
        min-width: 60px;
        max-width: 49%;
        white-space: nowrap;
        border: 1px solid transparent;
        margin-bottom: 5px; /* ボタンの下に余白 */
        transition: none; /* マウスオーバー等での変化を出さない */
    }

    .event-link.detail {
        background: #ffffff;
        color: #555555; /* 濃いグレー */
        border-color: rgba(139, 115, 85, 0.3);
    }

    .event-link.reserve {
        background: #8b7355;
        color: #ffffff;
    }

    /* カード表示 */
    .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .event-card {
        background: rgba(255, 255, 255, 0.02);
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        border: 1px solid rgba(139, 115, 85, 0.2);
        transition: all 0.3s ease;
    }

    .event-card:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-5px);
    }

    .event-image {
        width: 100%;
        height: 180px;
        background: #8b7355;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.3rem;
        font-weight: bold;
        padding: 1rem;
        text-align: center;
        line-height: 1.4;
    }

    .event-content {
        padding: 1.5rem;
    }

    .event-date {
        color: #8b7355;
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .event-description {
        color: #ccc;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .event-description strong {
        color: #8b7355;
    }

    /* ローディング表示 */
    .loading {
        text-align: center;
        padding: 3rem;
        color: #ccc;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(139, 115, 85, 0.2);
    }

    .loading i {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #8b7355;
    }

    /* エラー表示 */
    .error {
        text-align: center;
        padding: 2rem;
        color: #8b7355;
        background: rgba(139, 115, 85, 0.1);
        border: 1px solid rgba(139, 115, 85, 0.3);
        border-radius: 15px;
        margin: 1rem 0;
    }

    /* 非表示クラス */
    .hidden {
        display: none;
    }

    /* レスポンシブ対応 */
    @media (max-width: 768px) {
        .events-container {
            padding: 1rem;
        }
        
        .page-header {
            padding: 2rem 1rem;
        }
        
        .page-title {
            font-size: 2rem;
        }
        
        .page-subtitle {
            font-size: 1rem;
        }

        .filter-row {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .events-table {
            font-size: 0.8rem;
            min-width: 800px;
        }

        .events-table th,
        .events-table td {
            padding: 0.8rem 0.5rem;
        }

        .event-links {
            flex-direction: column;
            gap: 0.3rem;
        }

        .event-link {
            font-size: 0.7rem;
            padding: 0.4rem 0.8rem;
            width: 100%;
        }

        .events-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .view-btn {
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
        }

        /* スマホで矢印インジケーターを表示 */
        .scroll-indicator {
            display: block;
        }
    }

    @media (max-width: 480px) {
        .page-title {
            font-size: 1.5rem;
        }
        
        .events-table {
            min-width: 600px;
        }
        
        .filter-buttons {
            flex-direction: column;
        }
        
        .filter-btn {
            width: 100%;
        }
    }
