  /* 多用途技術一覧ページ用style（2026/05より外部化して運用） */
    /* アプリ内の全要素のリセットと基本設定 */
    #sol-app {
        font-family: "Noto Sans JP", sans-serif;
        color: #333;
        background-color: #f9fafb;
        padding: 24px;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        margin: 0 auto 40px auto;
        max-width: 1400px; 
        box-sizing: border-box;
    }
    #sol-app * {
        box-sizing: border-box;
    }
    
    /* ユーティリティ */
    .sol-hidden { display: none !important; }

    /* SVGアイコンのベース設定 */
    #sol-app svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    /* 検索?フィルター部分のヘッダーエリア */
    .sol-header-area {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
    @media (min-width: 768px) {
        .sol-header-area {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
    }

    /* フィルターボタン群 */
    .sol-filter-group {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }
    .sol-filter-label {
        font-size: 16px; 
        font-weight: bold;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-right: 8px;
    }
    .sol-filters-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .sol-filter-btn {
        display: flex;
        align-items: center;
        padding: 4px 12px; /* ★上下の余白を少し縮小 */
        border-radius: 9999px;
        font-size: 14px; /* ★ 16px -> 14px に縮小 */
        font-weight: bold;
        transition: all 0.2s;
        border: 1px solid #d1d5db;
        background-color: #fff;
        color: #4b5563;
        cursor: pointer;
        margin: 0;
        outline: none;
    }
    .sol-filter-btn:hover {
        background-color: #e6f6fd;
        color: #06a3ea;
        border-color: #93c5fd;
    }
    .sol-filter-btn.active {
        background-color: #06a3ea;
        color: #fff;
        border-color: #06a3ea;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    }
    .sol-filter-icon {
        width: 14px; /* ★ 16px -> 14px に縮小 */
        height: 14px;
        margin-right: 4px; /* ★ アイコンと文字の隙間を縮小 */
    }

    /* 検索バー */
    .sol-search-wrapper {
        position: relative;
        width: 100%;
        max-width: 320px;
    }
    .sol-search-input {
        width: 100%;
        padding: 10px 36px;
        font-size: 14px; 
        border: 1px solid #d1d5db;
        border-radius: 9999px; 
        background-color: #fff;
        color: #333;
        outline: none;
        transition: border-color 0.2s;
        margin: 0;
    }
    .sol-search-input:focus { border-color: #06a3ea; }
    .sol-search-icon {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #9ca3af;
        width: 16px;
        height: 16px;
        pointer-events: none;
    }
    .sol-clear-btn {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: #9ca3af;
        cursor: pointer;
        padding: 4px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sol-clear-btn:hover { background-color: #f3f4f6; color: #4b5563; }
    .sol-clear-icon { width: 14px; height: 14px; }

    /* 件数表示 */
    .sol-count {
        font-size: 18px; 
        color: #6b7280;
        font-weight: bold;
        margin-bottom: 16px;
    }

    /* グリッドレイアウト (カード型) */
    .sol-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px; 
        align-items: stretch;
    }
    @media (min-width: 640px) {
        .sol-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 800px) {
        .sol-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 1024px) {
        .sol-grid { grid-template-columns: repeat(4, 1fr); }
    }
    @media (min-width: 1280px) {
        /* 横5列レイアウト */
        .sol-grid { grid-template-columns: repeat(5, 1fr); }
    }

    /* カード本体 */
    .sol-card {
        display: flex;
        flex-direction: column;
        text-decoration: none !important;
        background-color: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 12px; 
        transition: all 0.2s;
        height: 100%;
    }
    .sol-card:hover {
        border-color: #06a3ea;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    }

    /* === カード内上部 (画像 ＋ カテゴリ?タイトル) === */
    .sol-card-top {
        display: flex;
        align-items: flex-start;
        gap: 10px; 
        margin-bottom: 10px;
    }

    /* イラスト枠 (左側) */
    .sol-card-img-wrap {
        width: 72px;  
        height: 72px;
        flex-shrink: 0;
        background-color: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    .sol-card-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: inherit;
    }

    /* 情報エリア (右側) */
    .sol-card-info {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 6px; 
    }

    /* カテゴリラベル */
    .sol-card-category {
        display: inline-flex;
        align-items: center;
        background-color: #e6f6fd; 
        color: #06a3ea;
        padding: 3px 6px;
        border-radius: 4px;
        align-self: flex-start;
    }
    .sol-cat-icon {
        width: 12px; 
        height: 12px;
        margin-right: 4px;
    }
    .sol-card-category span {
        font-size: 14px; 
        font-weight: bold;
        line-height: 1;
    }

    /* タイトル */
    .sol-card-title {
        font-size: 16px; 
        font-weight: bold;
        color: #1f2937;
        margin: 0 !important;
        line-height: 1.3;
        /* 狭い幅でも読めるよう3行まで許容 */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: left;
        transition: color 0.2s;
    }
    .sol-card:hover .sol-card-title {
        color: #06a3ea;
    }

    /* 説明文 (画像の下に回り込む) */
    .sol-card-desc {
        font-size: 14px; 
        color: #4b5563;
        margin: 0 0 10px 0 !important; 
        line-height: 1.5; 
        text-align: left;
        flex-grow: 1; 
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
         max-height: 63px;
    }

    /* 詳細を見る */
    .sol-card-footer {
        margin-top: auto;
        padding-top: 8px; 
        border-top: 1px solid #f3f4f6;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        color: #06a3ea;
        font-size: 13px; 
        font-weight: bold;
        transition: color 0.2s;
        /* 四角枠が出ないようにリセット */
        border-left: none;
        border-right: none;
        border-bottom: none;
        background: transparent;
        outline: none;
        box-shadow: none;
    }
    .sol-card:hover .sol-card-footer { color: #0482bb; }
    .sol-card-arrow {
        width: 14px;
        height: 14px;
        margin-left: 2px;
        transition: transform 0.2s;
    }
    .sol-card:hover .sol-card-arrow { transform: translateX(4px); }

    /* 結果ゼロ画面 */
    .sol-no-results {
        text-align: center;
        padding: 60px 20px;
        background-color: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }
    .sol-no-icon { width: 40px; height: 40px; color: #d1d5db; margin: 0 auto 12px; }
    .sol-no-title { font-size: 16px; font-weight: bold; color: #1f2937; margin: 0 0 4px 0 !important; }
    .sol-no-text { font-size: 16px; color: #6b7280; margin: 0 0 16px 0 !important; }
    .sol-reset-btn {
        padding: 8px 16px;
        background-color: #e6f6fd;
        color: #06a3ea;
        border: none;
        border-radius: 9999px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.2s;
    }
    .sol-reset-btn:hover { background-color: #dbeafe; }

    /* NEWバッジのスタイル */
    .sol-new-badge {
        background-color: #ef4444;
        color: #fff;
        font-size: 11px;
        font-weight: bold;
        padding: 2px 6px;
        border-radius: 4px;
        margin-right: 6px;
        vertical-align: top;
        display: inline-block;
        line-height: 1;
        margin-top: 2px;
    }

/*複数対応追加css*/
/* カテゴリ全体を包むコンテナ（既存の.sol-card-categoryを上書き） */
.sol-card-category {
    display: flex !important;
    flex-wrap: wrap;        /* 2つ並んで入りきらない時は自動で改行 */
    gap: 4px;               /* カテゴリ同士の隙間 */
    background-color: transparent !important; /* 親の背景色は消す */
    padding: 0 !important;
    margin-bottom: 6px;
}

/* 個別のカテゴリタグ */
.sol-cat-item {
    display: flex;
    align-items: center;
    background-color: #e6f6fd; /* ラベルごとに背景色をつける */
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;      /* ラベル内での意図しない改行を防ぐ */
}

/* アイコンと文字の微調整 */
.sol-cat-icon {
    width: 12px; 
    height: 12px;
    margin-right: 4px;
    flex-shrink: 0;
}

.sol-cat-item span {
    font-size: 11px;         /* 2つ並ぶので少し小さめに設定 */
    font-weight: bold;
    color: #06a3ea;
    line-height: 1.2;
}

/* タイトルエリアが圧迫されないように調整 */
.sol-card-info {
    flex: 1;
    min-width: 0;
}

/* 複数選択時の調整 */
.sol-filter-label small {
    font-size: 0.8em;
    font-weight: normal;
    margin-left: 0.5rem;
    color: #666;
}

.sol-filter-btn {
    position: relative;
    padding-right: 1.8rem !important; /* ★ 2.2rem -> 1.8rem に縮小（チェックマークのスペース） */
}

.sol-filter-check {
    position: absolute;
    right: 0.5rem; /* ★ 少し右に寄せる */
    top: 50%;
    transform: translateY(-50%);
    width: 0.9rem; /* ★ 1.1rem -> 0.9rem に縮小 */
    height: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.sol-filter-btn.active .sol-filter-check {
    color: inherit; /* アクティブ時のテキスト色に合わせる */
}

@keyframes popIn {
    0% { transform: translateY(-50%) scale(0.5); opacity: 0; }
    100% { transform: translateY(-50%) scale(1); opacity: 1; }
}
/*複数対応追加css ここまで*/