/* シンプルで読みやすいブログスタイル */

/* 基本設定 */
body {
    font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

/* 見出しスタイル - 色を使わずサイズのみで階層表現 */
h1 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin: 20px 0 10px 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

h2 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 18px 0 8px 0;
}

h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 16px 0 6px 0;
}

h4, h5, h6 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin: 14px 0 6px 0;
}

/* リンクをシンプルに */
a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* 段落 */
p {
    margin: 0 0 12px 0;
    line-height: 1.6;
}

/* リスト */
ul, ol {
    margin: 12px 0;
    padding-left: 24px;
}

li {
    margin: 4px 0;
    line-height: 1.6;
}

/* 強調 - 色は使わず太字のみ */
strong {
    font-weight: bold;
    color: #000;
}

/* 引用 */
blockquote {
    margin: 16px 0;
    padding: 12px 16px;
    border-left: 3px solid #ccc;
    background-color: #f9f9f9;
    font-style: italic;
}

/* 記事コンテナ */
.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

/* メタ情報 */
.post-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* サイドバーもシンプルに */
.sidebar-widget {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
}

.sidebar-widget h3 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget li {
    margin: 6px 0;
    padding: 3px 0;
    border-bottom: 1px dotted #ddd;
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.sidebar-widget a:hover {
    text-decoration: underline;
}

/* ヘッダー */
.site-title a {
    color: #000;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
}

.site-description {
    color: #666;
    font-size: 14px;
}

/* ナビゲーション */
.main-nav a {
    color: #000;
    text-decoration: none;
    font-weight: normal;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* 記事一覧 */
.post-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #eee;
}

.post-title a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.post-title a:hover {
    text-decoration: underline;
}

/* パンくずリスト */
.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ページネーション */
.pagination a {
    color: #000;
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin: 0 2px;
}

.pagination a:hover {
    background-color: #f0f0f0;
}

.pagination .current {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

/* テーブル */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 16px 0;
}

th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f5f5f5;
    font-weight: bold;
}

/* フォーム */
input, textarea, select {
    border: 1px solid #ccc;
    padding: 8px;
    font-family: inherit;
}

button, input[type="submit"] {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover {
    background-color: #333;
}
