/* TinyMCE 記事デザインをブログ側に反映する CSS */

/* 全体 */
.blog_details, 
.single-post .blog_details,
.blog_area .blog_details,
#editor-content-area,
.blog_page_content,
.post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    word-break: break-word;
}

/* 見出し */
.blog_details h1, 
.blog_details h2, 
.blog_details h3, 
.blog_details h4, 
.blog_details h5 {
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 12px;
}

/* 画像 */
.blog_details img,
.single-post img,
.blog_area img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 6px;
}

/* 表 */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
}

table th {
    background: #f7f7f7;
    font-weight: bold;
}

/* 引用 */
blockquote {
    border-left: 4px solid #ccc;
    padding-left: 15px;
    color: #555;
    font-style: italic;
    margin: 20px 0;
}

/* リスト */
ul, ol {
    padding-left: 30px !important;
    margin: 10px 0 !important;
}

/* コード */
pre {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 6px;
    white-space: pre-wrap;
    font-size: 14px;
}

/* 動画埋め込み */
iframe {
    max-width: 100%;
    border-radius: 6px;
    margin: 20px 0;
}

/* 水平線 */
hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}