body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.6;
    color: #24292f;
    background-color: #ffffff;
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 980px;
    word-wrap: break-word;
}

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

/* 見出し */
h1, h2, h3, h4, h5, h6 {
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: #24292f;
}

h1 {
    font-size: 2em;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #d0d7de;
}

h2 {
    font-size: 1.5em;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #d0d7de;
}

h3 {
    font-size: 1.25em;
}

/* 段落など */
p {
    margin-top: 0;
    margin-bottom: 16px;
}

/* テーブル (GitHub風) */
table {
    border-spacing: 0;
    border-collapse: collapse;
    margin-top: 0;
    margin-bottom: 16px;
    display: block;
    width: max-content;
    max-width: 100%;
    overflow: auto;
}

table th,
table td {
    padding: 6px 13px;
    border: 1px solid #d0d7de;
}

table th {
    font-weight: 600;
    background-color: #f6f8fa;
}

table tr {
    background-color: #ffffff;
    border-top: 1px solid #d8dee4;
}

table tr:nth-child(2n) {
    background-color: #f6f8fa;
}

/* コードブロック */
pre {
    background-color: #f6f8fa;
    border-radius: 6px;
    padding: 16px;
    overflow: auto;
    font-size: 85%;
    line-height: 1.45;
    margin-bottom: 16px;
}

code {
    font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
    background-color: rgba(175, 184, 193, 0.2);
    padding: 0.2em 0.4em;
    border-radius: 6px;
    font-size: 85%;
}

pre code {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 100%;
}

/* 引用 */
blockquote {
    margin: 0 0 16px;
    padding: 0 1em;
    color: #57606a;
    border-left: 0.25em solid #d0d7de;
}

/* リスト */
ul, ol {
    padding-left: 2em;
    margin-top: 0;
    margin-bottom: 16px;
}

/* 画像 */
img {
    max-width: 100%;
    box-sizing: content-box;
    background-color: #ffffff;
}

/* 水平線 */
hr {
    height: 0.25em;
    padding: 0;
    margin: 24px 0;
    background-color: #d0d7de;
    border: 0;
}