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

/*
 背景カラー
 #fff1d3 
  
 */

.latest-news-title a {
    text-decoration: none;
    color: #000; /* 通常時の黒 */
    transition: color 0.3s ease;
}

.latest-news-title a:hover {
    color: #0073aa; /* ホバー時に青に変化（WordPressっぽい色） */
    text-decoration: underline; /* お好みで下線 */
}


/*お問い合わせフォーム*/
.form2025{
	width:300px;
	padding:2px;
	background-color:#ff3333;
	color:#fff;
	font-weight:bold;
}

/*TOPページへ戻るアイコン*/

#page_top {
    width: 50px;
    height: 50px;
    background-color: #e30613; /* ロゴの赤 */
    border-radius: 50%; /* 丸型ボタン */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

/*
#page_top::before {
    content: "▲";
    color: #fff;
    font-size: 18px;
}
*/

#page_top:hover {
    background-color: #b9050f; /* ホバー時：濃い赤 */
}




#site-header{
background-color:#fff1d3;
}

/*フッター部分のpowerd by　を消す*/
.site-footer-copyright p:nth-child(2) {
    display:none;
}


