@charset "utf-8";
/* =============================================================

  Admin Editor CSS （管理画面のみ適用・ビジュアルエディター用CSS）

============================================================= */

/* ビジュアルエディタ内のフォントをサイトと揃える */
body#tinymce,
.news-content {
  font-family:
    "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN",
    "ＭＳ Ｐ明朝",
    "MS PMincho",
    "YuMincho",        /* Mac用の指定 */
    "Yu Mincho",       /* Windows用の指定（スペースあり） */
    "游明朝体",         /* 一部の古いブラウザ用 */
    "游明朝",           /* Windows用の日本語名指定 */
    "MS PMincho",      /* 游明朝がない古いWindows用（MS P明朝） */
    serif;             /* 最終的なフォールバック（明朝体） */
  /* フォントの描画を滑らかにする（特にMac/iOSで重要） */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  color: #000;
}

/* ==========================================
   見出し (Headings)
   ========================================== */
body#tinymce h2,
.news-content h2 {
    font-size: 1.5rem; /* 24px相当 */
    margin: 3rem 0 1.5rem;
    padding: 1rem 1.5rem;
    border-left: 6px solid #9f6e00;
}

body#tinymce h3,
.news-content h3{
    font-size: 1.25rem; /* 20px相当 */
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

body#tinymce h4,
.news-content h4{
    font-size: 1.125rem; /* 18px相当 */
    margin: 2rem 0 1rem;
    font-weight: bold;
}

/* ==========================================
   リスト (Lists)
   ========================================== */
body#tinymce ul, body#tinymce ol,
.news-content ul, .news-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

body#tinymce ul li,
.news-content ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
}

body#tinymce ol li,
.news-content ol li {
    list-style-type: decimal;
    margin-bottom: 0.5rem;
}

/* ==========================================
   装飾 (Decorations)
   ========================================== */
/* 太字 */
body#tinymce strong, body#tinymce b,
.news-content strong, .news-content b {
    font-weight: bold;
}

/* 引用 (Blockquote) */
body#tinymce blockquote,
.news-content blockquote {
    margin: 2rem 0;
    padding: 2rem;
    background: #fdf5e6;
    border-radius: 8px;
    position: relative;
    font-style: italic;
    color: #111;
}

body#tinymce blockquote::before,
.news-content blockquote::before {
    content: "“";
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
    opacity: 0.3;
}

/* リンク (Link) */
body#tinymce a,
.news-content a {
    color: #0066cc;
    text-decoration: underline;
}

body#tinymce a:hover,
.news-content a:hover {
    text-decoration: none;
}

/* ==========================================
   画像 (Images)
   ========================================== */
body#tinymce img,
.news-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 4px;
}

body#tinymce .wp-more-tag,
body#tinymce .mce-wp-more {
  margin: 0;
  height: 1.5rem;
}