/* ベーススタイル */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 記事コンテナのスタイル */
.site-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.entry-title {
    font-size: 2.5rem;
    color: #2c3e50; /* メインカラー */
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.2;
}

/* メタ情報（投稿日、著者名）のスタイル */
.entry-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 2em;
}

.entry-meta a {
    color: #555;
    text-decoration: none;
}

.entry-meta a:hover {
    color: #2c3e50;
    text-decoration: underline;
}

/* 記事コンテンツ（本文）のスタイル */
.entry-content {
    font-size: 1.1rem;
    color: #444;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.3em;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.entry-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
}

/* リンクのスタイル */
.entry-content a {
    color: #3498db; /* アクセントカラーとして青系を使用 */
    text-decoration: none;
    border-bottom: 1px solid #3498db;
    transition: all 0.3s ease;
}

.entry-content a:hover {
    color: #2c3e50;
    border-bottom-color: #2c3e50;
}

/* 引用（blockquote）のスタイル */
.entry-content blockquote {
    background-color: #f9f9f9;
    border-left: 5px solid #2c3e50;
    margin: 2em 0;
    padding: 1em 1.5em;
    font-style: italic;
    color: #555;
}

/* リスト（ul, ol）のスタイル */
.entry-content ul,
.entry-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.entry-content li {
    margin-bottom: 0.5em;
}

/* 画像のスタイル */
.entry-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2em auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 記事フッター（タグ）のスタイル */
.entry-footer {
    margin-top: 2em;
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid #e0e0e0;
    padding-top: 1em;
}

.tags-links a {
    background-color: #f0f0f0;
    color: #555;
    padding: 0.3em 0.8em;
    border-radius: 12px;
    text-decoration: none;
    margin-right: 0.5em;
    transition: background-color 0.3s ease;
}

.tags-links a:hover {
    background-color: #e0e0e0;
}