/* -------------------------------------------
   読みやすさを追求したベーススタイル（style.css）
------------------------------------------- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.75;      /* 行間を広げて英文を読みやすく */
    color: #333333;         /* 純粋な黒(#000)より目が疲れにくい濃いグレー */
    max-width: 800px;       /* 1行が長くなりすぎないように横幅を制限 */
    margin: 40px auto;      /* 画面の中央に配置し、上下に余白を設定 */
    padding: 0 24px;        /* スマホ画面で見たときの左右の余白 */
    background-color: #fcfcfc;
}

/* 見出しの装飾 */
h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    border-left: 5px solid #0066cc; /* アクセントカラー（青） */
    padding-left: 12px;
    margin-top: 48px;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 6px;
    margin-top: 36px;
    margin-bottom: 16px;
}

h5 {
    font-size: 1.1rem;
    color: #4a5568;
    margin-top: 24px;
    margin-bottom: 8px;
}

/* 段落の隙間 */
p {
    margin-top: 0;
    margin-bottom: 20px;
}

/* リンク */
a {
    color: #0066cc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* 箇条書き */
ul {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
}
li {
    margin-bottom: 8px;
}

.numbered-list {
    list-style-type: decimal;
}