/* ------------------------------
   base.css（サイト全体の基本設定）
------------------------------ */

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 背景と文字色 */
body {
  background: #F7F7F7;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}

/* 画像 */
img {
  max-width: 100%;
  display: block;
}

/* 見出しのデフォルト調整（必要最低限） */
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.4;
}

/* 広告非表示 */
.ad-banner,
.ad-fixed,
.ad-menu,
.ad-side {
  display: none !important;
}
