.btn_catalog{
    width: 300px;
    position: relative;
}
.btn_catalog a{
    border-radius: 5px;
    display: block;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 20px;
    background: #1212a2;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    border: 2px solid #1212a2;
    transition: background-color 0.4s ease, color 0.4s ease;
}
.btn_catalog a:hover{
    background-color: #fff;
    color: #1212a2;
}

/* Font Awesome が読み込まれていることが前提！ */
.btn_catalog a::after {
    position: absolute;
    right: 0;
    bottom: 25%;
    content: "\f054";              /* ← 矢印のユニコード（chevron-right） */
    font-family: "Font Awesome 5 Free"; /* フォント指定 */
    font-weight: 900;              /* solidアイコンの場合 */
    display: inline-block;
  }