@charset "utf-8";
/* ------------------------------------------------------------------
   復旧告知バナー（2026-08-01 / 案A）

   ★ 一時的な掲出物です。撤去は3手順で終わります。
     1. src/notice.html を空にして bin/build-static.py を再実行
        （テーマ側 header.php も同じファイルを readfile しているので自動で消える）
     2. bin/build-static.py の NOTICE 挿入をやめる、または notice.css の link を外す
     3. functions.php の wp_enqueue_style('itou-kogyo-notice', ...) を削除
   main.css には一切手を入れていないので、元のデザインには影響しません。
   ------------------------------------------------------------------ */

#di-notice {
  background-color: #fff3ef;
  border-top: 1px solid #f9d8cf;
  border-bottom: 1px solid #f9d8cf;
}

#di-notice .container {
  padding: 1rem 0 1.1rem;
}

#di-notice .notice-head {
  color: #c0392b;
  font-weight: bold;
  margin: 0 0 0.3rem;
  line-height: 1.5;
}

#di-notice .notice-body {
  margin: 0;
  font-size: 0.94em;
  line-height: 1.7;
}

#di-notice .notice-tel {
  white-space: nowrap;
  font-weight: bold;
}

#di-notice .notice-tel a {
  color: #333;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  #di-notice .container {
    padding: 0.8rem 0 0.9rem;
  }
  #di-notice .notice-body {
    font-size: 0.9em;
  }
  /* スマホでは電話番号をタップできることが分かるようにする */
  #di-notice .notice-tel a {
    color: #1f68b6;
    text-decoration: underline;
  }
}
