/* カテゴリページ専用CSS */

main {
    padding-top: 30px;
}

.category-container {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 0 20px;
}

.category-stats {
    margin-bottom: 22px;
}

.category-stats h1 {
    font-size: 14px;
    margin-top: 56px;
    margin-bottom: 20px;
    color: #333;
    border-left: 5px solid var(--primary-color);
    padding-left: 10px;
    line-height: 1.5;
    font-weight: 600;
}

.facility-count {
    color: #666;
    font-size: 14px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
    justify-items: center; /* グリッドアイテムを中央揃え */
}

.facilities-grid .sauna-card-link {
    margin-right: 0;  /* カルーセル用のmarginを無効化 */
    flex: none;       /* flex設定を無効化 */
}

.no-facilities {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-facilities h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        justify-items: center; /* モバイルでも中央揃え */
    }
}