/* ========================================
   Category Item（カテゴリー1件）
   ======================================== */

.category-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid #4a90d9;
    color: #4a90d9;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: color .35s ease;
}

.category-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #4a90d9;
    transition: left .4s ease;
    z-index: -1;
}

.category-item:hover::before {
    left: 0;
}

.category-item:hover {
    color: #fff;
}

.category-item--icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.category-item--icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
}

.category-item--label {
    font-size: 14px;
    font-weight: bold;
}

/* ========================================
   ラッパー
   ======================================== */
.category-item-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
