
        .custom-search-widget {
            /* max-width: 400px; */
            margin: 20px 0;
            /* font-family: sans-serif; */
            background-color: #D8EDF8;
            margin: 40px auto 0;
            width: min(100% , 550px);
            padding: 30px 8%;
            border-radius: 7px;
        }
        .custom-search-widget div{
            text-align: center;
            color: #002F7B;
            font-weight: bold;
            /* margin-bottom: 1rem; */
            font-size: 18px;
            line-height: 1.4;
        }
        .custom-search-widget .widget-input {
            position: relative;
            width: 100%;
            padding: 12px;
            font-size: 16px;
            box-sizing: border-box;
            /* border: 2px solid #ccc; */
            border: 2px solid rgba(var(--color01),.6);
            /* border-radius: 6px; */
            border-radius: 30px;
            outline: none;
            background-image: url(../img/search.svg);
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 25px 25px;
            transition: border .3s;
        }
        .custom-search-widget .widget-input:focus {
            border-color: #0066cc;
        }
        .custom-search-widget .widget-list {
            list-style: none;
            padding: 0;
            margin: 10px 0 0 0;
            border: 1px solid #ddd;
            border-radius: 6px;
            display: none;
            background: #fff;
        }
        .custom-search-widget .widget-item {
            padding: 12px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .custom-search-widget .widget-item:last-child {
            border-bottom: none;
        }
        .custom-search-widget .widget-link {
            text-decoration: none;
            color: #0066cc;
            font-weight: bold;
        }
        .custom-search-widget .widget-link:hover {
            text-decoration: underline;
        }
        /* .custom-search-widget .widget-badge {
            font-size: 11px;
            color: #666;
            background: #f0f0f0;
            padding: 3px 8px;
            border-radius: 4px;
        } */
        /* 0819追加 */
        .custom-search-widget .badge-wrapper {
            display: inline-flex;    /* 横並びにする*/
            align-items: center;       /* 上下の中央揃え？ */
            gap: 6px;                 /* 間隔 */
        }

        .custom-search-widget .widget-badge {
            font-size: 11px;
            color: #666;
            background: #f0f0f0;
            padding: 3px 8px;
            border-radius: 4px;
            white-space: nowrap;    /* テキストの折り返しを防止*/
        }
        /* ここまで */

        .custom-search-widget .widget-no-data {
            padding: 12px;
            color: #999;
            text-align: center;
            font-size: 14px;
        }

