/* 検索結果ページ本文の検索フォームを非表示 */
.search .search-box {
    display: none;
}
/* サイドバーのカテゴリー見出しを非表示 */
.widget_categories .widget-title {
    display: none;
}
.pum-container .pum-title {
    text-align: center;
}
.pum-container {
    border-radius: 15px !important;
    overflow: hidden;
}
/* 見出しの背景色、文字色の設定、背景画像消去 */
.page-id-1998 h2,
.page-id-1998 h3,
.page-id-1998 h4 {
    background-image: none !important;
    background-color: #F4D068 !important;
    color: #1A1A1A !important;
    border: none !important;
    box-shadow: none !important;
}

/* 本文エリアの背景を白、文字色を黒にする */
.page-id-1998 .entry-content {
    background-color: #ffffff !important;
    color: #000000 !important;
}
/* 見出し3、見出し4のカスタマイズ */
.page-id-1998 h4 {
    background-image: none !important;
    background-color: #FFF8E6 !important;
    color: #333333 !important;
    border: none !important;
    border-left: 4px solid #F4D068 !important;
    box-shadow: none !important;
    padding: 7px 12px !important;
    font-size: 1.15em;
}
/* Like（いいね）アイコンの右側に「はい」を表示 */
.pld-like-trigger::after {
    content: "はい";
    margin-left: 5px; /* アイコンとの隙間 */
    font-size: 14px;  /* 文字の大きさ */
}

/* Dislike（よくないね）アイコンの右側に「いいえ」を表示 */
.pld-dislike-trigger::after {
    content: "いいえ";
    margin-left: 5px; /* アイコンとの隙間 */
    font-size: 14px;  /* 文字の大きさ */
}
/* 記事の最後に「参考に...」を自動挿入する */
/* 1. いいねボタンの「左側」に文章を配置する */
.single-post .pld-like-trigger::before {
    content: "この記事は参考になりましたか？";
    position: absolute;
    bottom: 100%;       /* ボタンの「上」に持ち上げる */
    left: 0;            /* 左端に揃える */
    white-space: nowrap;/* 文章が途中で改行されるのを防ぐ */
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    padding-bottom: 8px;/* アイコンとの隙間 */
}

/* 2. 文章を表示するための土台のスペースを空ける */
.single-post .pld-common-wrap {
    position: relative;
    margin-top: 35px;   /* 文章が入るための上の隙間 */
}



