/* ヘッダー・フッター・追従ナビ(assist)内の全要素について、style_general.css（レイヤー無し）
   による上書きを無かったことにし、vendor-homeレイヤー（home.css）の判定結果に戻す */
#header,
#header *,
#footer,
#footer *,
#assist,
#assist * {
  all: revert-layer;
}

/* PC時(768px以上)のみ、ヘッダー・フッター・assistをYu Gothicにする。
   （home.cssはfont-familyをbody要素にしか指定しておらず、#header/#footer/#assist自体には
   継承元が無いため、明示的に指定する） */
@media print, screen and (min-width: 768px) {
  #header,
  #header *,
  #footer,
  #footer *,
  #assist,
  #assist * {
    font-family: "Yu Gothic", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Hiragino Sans", Meiryo, Osaka, Arial, "MS PGothic", sans-serif !important;
  }
}

/* SP時(767.98px以下)は明示指定をしないため、all:revert-layerの効果により
   本文と同じHiragino系フォント（style_general.css側）に自動的に戻る。 */

/* 本文（.l-main側）は style_general.css の Hiragino 系フォントのままにする。
   上記のヘッダー・フッター・assistへの指定はID指定＋メディアクエリなので、こちらには影響しない。 */
