/* ==============================================
   固定ヘッダー & 共通 UI 調整
   ============================================== */
#masthead {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

body {
    padding-top: 100px;   /* ヘッダー高さに合わせて調整 */
}

/* ---- 入力フィールドなどの共通スタイル ---- */
select {
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #005177;
}

@media (max-width: 300px) {
    .category-tag-section form {
        flex-direction: column;
        align-items: stretch;
    }
    .category-tag-section select,
    .category-tag-section input[type="submit"] {
        width: 100%;
        margin-bottom: 10px;
    }
}
