/* 共有スタイル */

/* フォント */
body {
  font-family: 'Sawarabi Gothic', sans-serif;
  color: #333333;
  }

  /* 背景 */
  body {
    background-image: url('/images/background.jpg'); /* ← 画像パスを正確に */
    background-size: cover;         /* 画面にフィット（縦横比を保持） */
    background-repeat: no-repeat;
    background-attachment: fixed;   /* 背景固定 */
    background-position: center center;
    font-family: 'Sawarabi Gothic', sans-serif;
}

/* ヘッダー固定用の余白 */
.main-content, main {
    margin-top: 100px; /* ヘッダーの高さに合わせる */
}
