/*
Theme Name: Lightning Child
Template: lightning
Description: Lightning の子テーマ
Author: web-master
Version: 1.0.0
*/

/* ここから下に、今までのカスタムCSSを書く */


body.block-editor-page textarea.block-editor-plain-text {
    resize: both !important;
    min-height: 320px;
    overflow: auto;
}
body.widgets-php textarea.block-editor-plain-text,
body.widgets-php textarea.components-textarea-control__input {
    resize: both !important;
    min-height: 260px;
    overflow: auto;
}

/*======================================= */
/* トップ：新着情報リスト（アイコン＋日付）*/
/* 2025-12-01 nuko + chat 完全版           */
/*======================================= */

/* リストの基本リセット */
.wp-block-latest-posts__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 1行ずつ：アイコン＋日付＋タイトルを横並びに */
.wp-block-latest-posts__list li {
    display: flex;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid #eee;
}

/* 左の小アイコン（32px） */
.wp-block-latest-posts__list li::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 8px;

    /* アイコン画像：必要に応じて変更 */
    background: url("/img/uicon128.png") no-repeat center center;
    background-size: contain;
    flex: 0 0 32px;
}

/* 日付（先に表示） */
.wp-block-latest-posts__list time.wp-block-latest-posts__post-date {
    order: 1;
    font-size: 0.9em;
    color: #666;
    white-space: nowrap;
    margin-right: .4em;
}

/* 日付のあとにコロン「：」 */
.wp-block-latest-posts__list time.wp-block-latest-posts__post-date::after {
    content: "：";
}

/* タイトル */
.wp-block-latest-posts__list a.wp-block-latest-posts__post-title {
    order: 2;
    text-decoration: none;
}

/* ホバー時 */
.wp-block-latest-posts__list a.wp-block-latest-posts__post-title:hover {
    text-decoration: underline;
}

/* ▼ 新着情報：タイトルリンクの色（普通のリンクの青系） */
.wp-block-latest-posts__list a.wp-block-latest-posts__post-title {
    color: #0073aa;           /* WordPress 標準っぽい青 */
    text-decoration: none;    /* 下線は通常消す */
}

.wp-block-latest-posts__list a.wp-block-latest-posts__post-title:hover {
    color: #005177;           /* ちょっと濃い青 */
    text-decoration: underline;
}

