SELECT 
  cscart_profile_fields.*, 
  cscart_profile_field_descriptions.description, 
  cscart_profile_fields.profile_required as required 
FROM 
  cscart_profile_fields 
  LEFT JOIN cscart_profile_field_descriptions ON cscart_profile_field_descriptions.object_id = cscart_profile_fields.field_id 
  AND cscart_profile_field_descriptions.object_type = 'F' 
  AND lang_code = 'ja' 
WHERE 
  1 = 1 
  AND cscart_profile_fields.profile_type = 'U' 
  AND cscart_profile_fields.profile_show = 'Y' 
  AND (
    cscart_profile_fields.field_type != 'E' 
    OR cscart_profile_fields.section != 'C' 
    AND cscart_profile_fields.field_type = 'E'
  ) 
ORDER BY 
  cscart_profile_fields.position

Query time 0.00068

JSON explain

{
  "query_block": {
    "select_id": 1,
    "read_sorted_file": {
      "filesort": {
        "sort_key": "cscart_profile_fields.position",
        "table": {
          "table_name": "cscart_profile_fields",
          "access_type": "ALL",
          "possible_keys": ["profile_show"],
          "rows": 45,
          "filtered": 77.77777863,
          "attached_condition": "cscart_profile_fields.profile_type = 'U' and cscart_profile_fields.profile_show = 'Y' and (cscart_profile_fields.field_type <> 'E' or cscart_profile_fields.section <> 'C' and cscart_profile_fields.field_type = 'E')"
        }
      }
    },
    "table": {
      "table_name": "cscart_profile_field_descriptions",
      "access_type": "eq_ref",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "12",
      "used_key_parts": ["object_id", "object_type", "lang_code"],
      "ref": ["smscrm_edev.cscart_profile_fields.field_id", "const", "const"],
      "rows": 1,
      "filtered": 100,
      "attached_condition": "trigcond(cscart_profile_field_descriptions.object_type = 'F' and cscart_profile_field_descriptions.lang_code = 'ja')"
    }
  }
}

Result

field_id field_name profile_show profile_required checkout_show checkout_required partner_show partner_required storefront_show field_type profile_type position is_default section matching_id class wrapper_class autocomplete_type description required
14 b_firstname Y Y Y Y N N Y I U 90 Y B 15 billing-first-name litecheckout__field--medium given-name Y
16 b_lastname Y Y Y Y N N Y I U 100 Y B 17 billing-last-name litecheckout__field--medium surname Y
54 b_firstname_kana Y Y Y Y N N Y I U 110 N B 55 first-name-kana litecheckout__field--medium 姓フリガナ Y
56 b_lastname_kana Y Y Y Y N N Y I U 120 N B 57 last-name-kana litecheckout__field--medium 名フリガナ Y
30 b_phone Y Y Y Y N N Y P U 140 Y B 31 billing-phone litecheckout__field--xsmall tel 電話番号 Y
26 b_country Y N Y Y N N Y O U 150 Y B 27 billing-country country 国名 N
28 b_zipcode Y N Y Y N N Y Z U 160 Y B 29 billing-zip-code litecheckout__field--xsmall postal-code 郵便番号 N
24 b_state Y N Y Y N N Y A U 170 Y B 25 billing-state state 都道府県 N
22 b_city Y N Y Y N N Y I U 180 Y B 23 billing-city city 市区町村 N
18 b_address Y N Y Y N N Y I U 190 Y B 19 billing-address litecheckout__field--medium street-address 番地 N
20 b_address_2 Y N Y N N N Y I U 200 Y B 21 billing-address-line2 litecheckout__field--xlarge address-line2 ビル・建物名 N
15 s_firstname Y Y Y Y N N Y I U 210 Y S 14 shipping-first-name litecheckout__field--medium given-name Y
17 s_lastname Y Y Y Y N N Y I U 220 Y S 16 shipping-last-name litecheckout__field--medium surname Y
55 s_firstname_kana Y Y Y Y N N Y I U 230 N S 54 first-name-kana litecheckout__field--medium 姓フリガナ Y
57 s_lastname_kana Y Y Y Y N N Y I U 240 N S 56 last-name-kana litecheckout__field--medium 名フリガナ Y
31 s_phone Y Y Y Y N N Y P U 260 Y S 30 shipping-phone litecheckout__field--xsmall tel 電話番号 Y
27 s_country Y N Y Y N N Y O U 270 Y S 26 shipping-country litecheckout__field--auto country 国名 N
29 s_zipcode Y N Y Y N N Y Z U 280 Y S 28 shipping-zip-code litecheckout__field--xsmall shipping postal-code 郵便番号 N
25 s_state Y N Y Y N N Y A U 290 Y S 24 shipping-state litecheckout__field--xsmall state 都道府県 N
23 s_city Y N Y Y N N Y I U 300 Y S 22 shipping-city litecheckout__field--fill city 市区町村 N
19 s_address Y N Y Y N N Y I U 310 Y S 18 shipping-address litecheckout__field--medium shipping street-address 番地 N
21 s_address_2 Y N Y N N N Y I U 320 Y S 20 shipping-address-line2 litecheckout__field--xlarge address-line2 ビル・建物名 N