/* ============================
   検索フォーム全体（origin）
============================ */
#origin-filter-form {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 18px;
    border-radius: 6px;
    max-width: 900px;
    margin: 0 auto 32px auto;
}

/* ============================
   ラベル風のタイトル
============================ */
#origin-filter-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

/* ============================
   セレクトボックス共通
============================ */
#origin-filter-form select {
    width: 100%;
    padding: 10px 10px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: #fafafa;
    margin-bottom: 14px;
    transition: border-color 0.2s, background 0.2s;
}

#origin-filter-form select:focus {
    border-color: #636363;
    background: #fff;
    outline: none;
}

/* ============================
   ボタン
============================ */
#origin-reset {
    background: #000000;
    color: #fff;
    padding: 10px 14px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}

#origin-reset:hover {
    background: #707070;
}

/* ============================
   結果表示
============================ */
#origin-results {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 16px;
    border-radius: 6px;
    max-width: 900px;
    margin: 0 auto;
    min-height: 120px;
}

/* ============================
   結果のタイトルリンク
============================ */
.post-item-title a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    color: #0066c0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.post-item-title a:hover {
    text-decoration: underline;
}
