/* style.cssを優先するための定義(bootstrap.cssの指定無効化) */
/* 画面全体のフォント変更 */
body {
    font-family: "Noto Sans JP", sans-serif;
}

/* パンくずリストのデザイン調整 */
.breadcrumb {
    width: 90%;
    margin: 0 auto 1% auto;
    max-width: 1220px;
    text-align: right;
    box-sizing: border-box;
    padding: 18px 0;

    list-style: none;
    background-color: #ffffff;
    border-radius: initial;
}

/* パンくずリストの区切りマーク無効化 */
.breadcrumb>li+li:before {
    padding: 0px;
    content: none;
}

/* ヘッダメニューの高さ調整 */
.navbar {
    margin-bottom: 0px;
}