/*
Theme Name:    esna child
Theme URI:     https://esna.jp/
Description:   esnaの子テーマ
Author:        Admin
Template:      esna
Version:       1.0.0
*/

/* ページタイトル（H1）*/
.page-text .page-title {
    font-size: 2.5em; /* フォントサイズをより大きく */
    font-weight: bold;
    margin-bottom: 1em;
    color: #0d4566;
}

/* 本文全体 */
.page-text .page-content {
    font-size: 1em;
    line-height: 1.8;
    color: #333;
}

/* 段落 */
.page-text .page-content p {
    margin-bottom: 1em;
}

/* リストの先頭に「・」を表示させる */
.page-text .page-content ul {
    list-style-type: disc !important; /* 「・」を強制的に表示 */
    padding-left: 1em !important;
}

/* さらに細かく調整したい場合 */
.page-text .page-content li {
    /* リスト項目全体をさらに右に寄せる */
    padding-left: 0;
    margin-left: 1em;
}

/* ナビゲーションリストなどの不要なリストに影響を与えないよう、必要であればセレクタをさらに絞る */
.page-text .page-content ul li {
    list-style-type: inherit !important;
}

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

/* 強調（太字） */
.page-text .page-content strong,
.page-text .page-content b {
    font-weight: bold;
    color: #0d4566;
}

/* H2の見出しスタイル（例） */
.page-text .page-content h2 {
    font-size: 1.6em !important; 
    margin-bottom: 1em !important; /* 現在の余白より少し大きめに設定 */
    font-weight: bold !important;
    color: #0d4566 !important; /* H2の色（暗い青） */
}

/* H3の見出しスタイル（鮮やかな青にする） */
.page-text .page-content h3 {
    font-size: 1.3em !important;
    font-weight: bold !important;
    color: #007bff !important; /* H3の色を鮮やかな青に変更 */
}

/* 念のため、他の見出しのスタイルも調整 */
.page-text .page-content h4 {
    font-size: 1.1em !important;
    font-weight: normal !important;
    color: #4682b4 !important;
}

/* テーブル */
.page-text .page-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
}

.page-text .page-content th,
.page-text .page-content td {
    border: 1px solid #ccc;
    padding: 0.5em;
    text-align: left;
}