/* -------------------------
   簡易リセット / ノーマライズ
------------------------- */

/* 全要素のマージン・パディングをゼロ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 疑似要素も含める */
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

.zen-kurenaido-regular {
  font-family: "Zen Kurenaido", sans-serif;
}


.notice {
  color: red;
  font-weight: bold; /* 強調したいなら */
}

/* リストのスタイルを消す */
ul, ol {
    list-style: none;
}

/* リンクの装飾を消す */
a {
    text-decoration: none;
    color: inherit;
}

/* 画像をレスポンシブに */
img, picture {
    max-width: 100%;
    display: block;
}

/* フォーム要素の基本調整 */
button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

/* HTML5要素の表示調整 */
article, aside, details, figcaption, figure,
footer, header, main, nav, section, summary {
    display: block;
}

html {
    overflow-x: hidden;
}

/* body の基本設定 */
body {
    line-height: 1.5;
    font-family: "Zen Kurenaido", sans-serif;
    background: #f8f8f8;
    color: #333;

    max-width: 1536px; /* 最大幅 */
    width: 100%;       /* 画面幅に合わせる */
    margin: 0 auto;
}

/* 既存スタイルはここから追加 */
header, footer {
    background: #eee;
    padding: 10px;
    text-align: center;
}

main {
    padding: 20px;
}

h1, h2 {
    margin-bottom: 10px;
}


/* セクション間の余白 */
section {
    margin-bottom: 2em; /* 好みに応じて調整 */
    padding: 1em;
    background: #fff;   /* 背景をつけると区切りが見やすい */
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* 段落の余白 */
p {
    margin-bottom: 1em;
}

/* 見出し */
h2, h3 {
    margin-bottom: 0.5em;
}

