:root {
    --brand-blue: #08415E;
}

/* 共通スタイル */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1 {
    color: var(--brand-blue);
    border-bottom: 2px solid var(--brand-blue);
    padding-bottom: 10px;
}

h2 {
    color: var(--brand-blue);
    margin-top: 30px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.date {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

p.note {
    color: #aaa;
    font-size: 0.9em;
    /* padding-left: 20px; */
}

ul,
ol {
    margin-bottom: 15px;
}

ol > li > ol {
    margin-top: 8px;
}

li {
    margin-bottom: 8px;
}

