.seo-content {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid #eee;
    text-align: left; /* コンテナ内は左揃えにする */
    max-width: 800px; /* 読みやすい幅に制限 */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: #333;
}

/* 大見出し (H2) */
.seo-content h2 {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center; /* H2だけは中央揃え */
    margin-bottom: 40px;
    color: #2c3e50;
}

/* 中見出し (H3) - ステップごとの区切り */
.seo-content h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2196f3; /* ブランドカラーのアンダーライン */
    color: #1565c0;
}

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

/* 文中のコードハイライト */
.seo-content code {
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
    color: #d63384;
    font-size: 0.95em;
    font-weight: bold;
}

/* 記事リンクのリスト */
.seo-content ul {
    list-style: none; /* デフォルトの黒丸を消す */
    padding: 0;
    margin: 20px 0;
}

.seo-content ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

/* リストのアイコンをチェックマークにする */
.seo-content ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.seo-content ul li a {
    color: #2196f3;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.seo-content ul li a:hover {
    color: #1565c0;
    text-decoration: underline;
}

/* 内部リンクボックス (CTA) */
.seo-content .internal-link-box {
    background-color: #f8f9fa;
    border: 2px solid #e3f2fd;
    border-radius: 12px;
    padding: 30px;
    margin-top: 60px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.seo-content .internal-link-box h3 {
    border: none; /* ボックス内のH3は下線を消す */
    margin-top: 0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* CTAボタンの微調整 */
.seo-content .cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #2196f3;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.seo-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}