@charset "utf-8";

/* --------------------------------------------------------
-----------------------------------------------------------
ロゴの変更
-----------------------------------------------------------
----------------------------------------------------------- */
/* PC用
--------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .Header .Header-pattern .Header-main-wrap .header-logo picture {
    display: none;
  }

  .Header .Header-pattern .Header-main-wrap .header-logo a {
    /*変更したい画像のパスに変更してください*/
    background: url(/web-box/upload/FIGHTERS/OENS_banner/NHF_paredz_01.svg);

    /*数値変更はしないでください*/
    background-size: auto 30px;
    background-repeat: no-repeat;

    /*縦30pxに対して、縦横比が合うように調整してください*/
    width: 329px;

    /*数値変更はしないでください*/
    height: 30px;
    display: inline-block;
  }
}

/* スマホ用
--------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .Header .Header-sp-main .header-logo picture {
    display: none;
  }

  .Header .Header-sp-main .header-logo a {
    /*変更したい画像のパスに変更してください*/
    background: url(/web-box/upload/FIGHTERS/OENS_banner/NHF_paredz_01.svg);

    /*数値変更はしないでください*/
    background-size: auto 30px;
    background-repeat: no-repeat;

    /*縦30pxに対して、縦横比が合うように調整してください*/
    width: 329px;

    /*数値変更はしないでください*/
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* --------------------------------------------------------
-----------------------------------------------------------
タイトル上に画像追加の変更
-----------------------------------------------------------

-----------------------------------------------------------
パンくずリストの削除
-----------------------------------------------------------
----------------------------------------------------------- */
/*パンくずリストを表示させない場合は、下記のコメントアウトを外してください*/
/* .Page-head .breadcrumb {
  display: none;
} */