/* ベース */
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
color: #333;
background: #f5f5f5;
font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, "Yu Gothic", sans-serif;
line-height: 1.8;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
a {
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
img {
max-width: 100%;
height: auto;
}
/* レイアウト */
.wrapper {
max-width: 800px;
margin: 0 auto;
padding: 0 16px 40px;
}
.site-header {
background: #ffffff;
border-bottom: 1px solid #e0e0e0;
margin-bottom: 24px;
}
.header-inner {
max-width: 800px;
margin: 0 auto;
padding: 20px 16px 24px;
}
.site-title {
margin: 0 0 16px;
font-size: 24px;
font-weight: 700;
letter-spacing: 0.05em;
}
/* ヘッダー画像（不要な場合はこのブロックごと削除） */
.header-image-wrap {
margin-top: 8px;
border-radius: 8px;
overflow: hidden;
}
.header-image-wrap img {
display: block;
width: 100%;
height: auto;
}
.site-main {
background: #ffffff;
padding: 24px 16px 32px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
/* 本文エリア */
.content p {
margin: 0 0 1.2em;
}
/* 見出し（タグにclassは付けない） */
.content h2 {
margin: 32px 0 16px;
padding: 12px 16px;
font-size: 20px;
border-left: 4px solid #0066cc;
background: #f0f6ff;
border-radius: 4px;
}
.content h3 {
margin: 28px 0 12px;
padding-bottom: 6px;
font-size: 18px;
border-bottom: 2px solid #e0e0e0;
}
.content h4 {
margin: 24px 0 8px;
font-size: 16px;
padding-left: 10px;
border-left: 3px solid #cccccc;
}
/* リスト（ul / ol はタグそのまま） */
.content ul,
.content ol {
margin: 0 0 1.4em 1.4em;
padding: 0;
}
.content li {
margin-bottom: 0.4em;
}
/* テーブル（classなし） */
.content table {
width: 100%;
border-collapse: collapse;
margin: 0 0 1.6em;
font-size: 14px;
}
.content th,
.content td {
border: 1px solid #dddddd;
padding: 8px 10px;
vertical-align: top;
}
.content th {
background: #f7f7f7;
font-weight: 600;
text-align: left;
}
/* 本文内の画像はデフォルトで中央寄せ */
.content img {
display: block;
margin: 24px auto;
}
/* フッター */
.site-footer {
border-top: 1px solid #e0e0e0;
background: #ffffff;
margin-top: 32px;
padding: 16px 16px 24px;
}
.footer-inner {
max-width: 800px;
margin: 0 auto;
}
.footer-nav {
display: flex;
flex-wrap: wrap;
gap: 12px 20px;
justify-content: center;
margin-bottom: 12px;
}
.footer-nav a {
font-size: 14px;
color: #555;
}
.footer-nav a:hover {
text-decoration: underline;
}
.footer-copy {
text-align: center;
font-size: 12px;
color: #999;
}
/* スマホ向け調整 */
@media (max-width: 600px) {
.site-title {
font-size: 20px;
}
.site-main {
padding: 20px 12px 28px;
}
.footer-nav {
flex-direction: column;
align-items: center;
}
.footer-nav a {
font-size: 13px;
}
}