/*
Theme Name: Lightning Child
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/

/* クレジットを消去 */
.site-footer-copyright p:nth-child(2) {
    display: none;
}

/* ヘッダー全体の背景色 */
.site-header {
    background-color: #1F2F54; /* ここに好きな色を入力 */
}

/* サイト全体の背景色 */
body {
    background-color: #f5f5f5; /* 薄いグレー */
}

/* メインのテキストの色 */
body {
    color: #333333; /* 濃いグレー */
}

/* リンクの色（通常時とマウスホバー時） */
a {
    color: #0073aa; /* 青 */
    text-decoration: none;
}
a:hover {
    color: #005177; /* 濃い青 */
    text-decoration: underline;
}

/* 見出し（H2）のデザイン */
h2 {
    color: #ffffff;         /* 文字色：白 */
    background-color: #1F2F54; /* 背景色：トマト色 */
    padding: 10px;          /* 余白 */
    border-radius: 5px;     /* 角を丸く */
}

/* ページヘッダー（タイトルエリア）の背景色を変更 */
.page-header {
    background-color: #1F2F54; /* ここを好きな色（例：濃いグレー）に変えてください */
    border-top: #FFFFFF;          /* 上線の色を消す場合 */
    border-bottom: none;       /* 下線の色を消す場合 */
}

/* ページヘッダー内の文字色（タイトル）を変更 */
.page-header .page-header-title {
    color: #C9CACA; /* 文字を白にする場合 */
}