:root {
    --main-pink: #ec1e79;
    --light-pink: #fff0f6;
    --accent-yellow: #ffeb3b;
}

body {
    background-color: #f8f9fa;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
}

.info-food {
    padding: 60px 0;
}

/* セクションタイトル */
.info-title-category {
    margin-bottom: 25px;
    margin-top: 40px;
    border-left: 6px solid var(--main-pink);
    padding-left: 15px;
}

.info-title-category a {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-pink);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.info-title-category a:hover {
    color: #b9125a;
}

.info-title-category i {
    font-size: 1rem;
    margin-left: 10px;
    background: var(--main-pink);
    color: white;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* カテゴリーカードコンテナ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* 個別カードのデザイン */
.category-item {
    text-decoration: none;
    display: block;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(236, 30, 121, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    text-align: center;
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(236, 30, 121, 0.2);
    border-color: var(--main-pink);
}

.category-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-bottom: 2px solid var(--light-pink);
}

.category-item p {
    margin: 0;
    padding: 12px 5px;
    font-weight: 700;
    color: #444;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.category-item:hover p {
    color: var(--main-pink);
}

        /* クラス名を info-section から location-section に変更 */
        .location-section {
            padding: 60px 0;
        }

        /* 地区一覧 (loca-list) のデザイン */
        .loca-list {
            margin-top: 20px;
            padding-bottom: 60px;
        }

        /* カード全体をリンクにするためのスタイル変更 */
        .loca-item {
            display: block;
            text-decoration: none;
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-left: 5px solid var(--light-pink);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
        }

        .loca-item:hover {
            box-shadow: 0 10px 20px rgba(236, 30, 121, 0.15);
            border-left-color: var(--main-pink);
            transform: translateY(-4px);
            background-color: #fffafc;
        }

        .loca-item h3 {
            font-family: 'M PLUS Rounded 1c', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--main-pink);
            margin: 0 0 10px 0;
            display: flex;
            align-items: center;
        }

        .loca-item h3 i {
            font-size: 0.9rem;
            margin-right: 8px;
            transition: transform 0.3s ease;
        }

        .loca-item:hover h3 i {
            transform: translateX(5px);
        }

        .loca-item p {
            font-size: 0.85rem;
            color: #666;
            margin: 0;
            line-height: 1.6;
            padding-left: 20px;
            transition: color 0.3s ease;
        }

        .loca-item:hover p {
            color: #333;
        }


/* モバイル対応 */
@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .info-title a {
        font-size: 1.25rem;
    }
    .category-item img {
        height: 100px;
    }
}
