/* h1アイコンの設定 */
.md-typeset h1::before {
    display: inline-block !important;
    font-family: "FontAwesome";
    content: "\f105" !important;
    margin-right: .3em;
    color: #5D85DD; 
}

/* h2アイコンの設定 */
  .md-typeset h2::before {
    display: inline-block !important;
    font-family: "FontAwesome";
    content: "\f0a9" !important;
    margin-right: .3em;
    color: #5D85DD; 
}

/* h3アイコンの設定 */
.md-typeset h3::before {
    display: inline-block !important;
    font-family: "FontAwesome";
    content: "\f18e" !important;
    margin-right: .3em;
    color: #5D85DD; 
}

/* オンマウス時の色をブルーに変更 */
.md-nav__link:hover {
    color: #5D85DD !important;
}

/* オンマウス時の色をオレンジに変更 */
.md-footer-nav__link--top::after {
    content: "上へ戻る" !important;
  }


