/* custom.css - サイト固有のカスタマイズ用 */

/*
  画像テーマ切替:
  body に class="theme-with-mascot" を付けるとキャラ画像が表示される
  外せば全てのキャラ画像が非表示になる（シンプルデザインに戻る）

  切替方法: parts/head.php の <body> タグに class を追加/削除するだけ
  または JavaScript: document.body.classList.toggle('theme-with-mascot')
*/

/* デフォルト: キャラ画像は非表示 */
.mascot { display: none !important; }

/* テーマON時: キャラ画像を表示 */
body.theme-with-mascot .mascot { display: block !important; }
body.theme-with-mascot .mascot-inline { display: inline-block !important; }
