.seo-content {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    color: #333;
    line-height: 1.8;
}

/* 見出しのデザイン */
.seo-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2196f3; /* ブランドカラーの青 */
}

.seo-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 5px solid #2196f3; /* 左側に青い線 */
}

/* 本文とリスト */
.seo-content p {
    margin-bottom: 1.5em;
}

.seo-content ul {
    margin-bottom: 1.5em;
    padding-left: 20px;
}

.seo-content li {
    margin-bottom: 0.5em;
}

/* コードブロック（黒背景でエンジニアっぽく） */
.seo-content pre {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 6px;
    overflow-x: auto;
    font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
    margin-bottom: 20px;
}

.seo-content code {
    font-family: inherit;
}

/* 文中のコードハイライト（背景グレー） */
.seo-content p code, .seo-content li code {
    background-color: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    color: #d63384; /* 赤紫色で目立たせる */
}

/* 内部リンクのボックス（CTA） */
.seo-content .internal-link-box {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
    text-align: center;
    transition: transform 0.2s;
}

.seo-content .internal-link-box:hover {
    transform: translateY(-2px);
    border-color: #2196f3;
}

.seo-content .internal-link-box h3 {
    border: none;
    padding: 0;
    margin-top: 0;
    color: #2196f3;
}
