/*
Theme Name: Lightning Child
Template: lightning
*/

/* btn-ghost を塗りつぶしボタンに変更 */
a.btn.btn-ghost {
	background-color: #296292 !important;/* ← 色指定*/
	color: #fff !important;
	border: none !important;
	font-size: 15px !important;
	font-weight:bold !important;
}

/* スマホ表示でも強制上書き */ 
@media (max-width: 768px) {
	a.btn.btn-ghost {
		background-color: #296292 !important;
	}
}

/* ホバー時の色変化 */
a.btn.btn-ghost:hover {
	background-color: #337ab7 !important;/* ← 色指定*/
	color: #fff !important;
	border: none !important;
}

/*グローバルナビの文字サイズ*/
.global-nav-list > li .global-nav-name{
	font-size:15px !important;
}

/*スライドタイトルのフォントサイズ*/
body .ltg-slide-text-title {
	font-size: 30px !important;
}

/* サイドバーの子ページ一覧を非表示 */
.widget_link_list { 
	display: none !important; 
}


