@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template: cocoon-master
Version: 1.1.3
*/

/* =================================================
   1. サイト全体の共通カスタマイズ
   ================================================= */

/* アイキャッチ画像上のカテゴリラベルを非表示 */
.cat-label {
    display: none !important;
}

/* 記事タイトルのサイズを標準的に調整（以前より少し小さく） */
.entry-card-title {
    display: block !important;
    -webkit-line-clamp: none !important;
    font-size: 16px !important; /* 18pxから16pxへ */
    line-height: 1.5 !important;
    margin-bottom: 5px !important;
    font-weight: bold;
}

/* =================================================
   2. モバイル（スマホ）表示の最適化
   ================================================= */
@media screen and (max-width: 767px) {
    /* 本文とリストのサイズを標準（16px）に戻す */
    body, p, li {
        font-size: 16px !important; /* 18pxは大きすぎたため16pxへ */
        line-height: 1.7 !important;
    }

    /* 見出し（H2）のサイズを調整 */
    h2 {
        font-size: 1.15em !important; /* 1.25emから微減 */
        padding: 8px !important;
        margin-top: 18px !important;
    }

    /* 見出し（H3）の調整 */
    h3 {
        font-size: 1.05em !important; /* 1.1emから微減 */
        margin-top: 12px !important;
    }
}