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

/* ---------------------------------
  リンクに下線をつける
---------------------------------*/
a {
	text-decoration: underline;
}

/* ---------------------------------
  スライドショー
---------------------------------*/
.slide-main{
	margin: 0 auto;
	width:1200px;
	height:400px;
	margin-top:30px;
}

/* ---------------------------------
  ヘッダーナビエリア
---------------------------------*/
/* ヘッダーの背景色 */
.siteHeader {
    background-color: #10a010;
}
/* ヘッダーのリンク下線を削除 */
.siteHeader a {
	text-decoration: none;
}
/* ヘッダーの文字色 */
.siteHeader_logo a,.gMenu a{
	color: #ffffff;
}
.siteHeader_logo a:hover,.gMenu a:hover{
	color: #ffffff;
}
@media (min-width: 992px) {
    .siteHeader .container {
        padding-bottom: 0;
    }
}
/* ---------------------------------
   フッターウィジェットエリア 
---------------------------------*/
.sectionBox{
	padding-top:0;
	padding-bottom:0;
}
/*--------------------------------------------------------------
  フッターの位置をページ最下層に固定
 --------------------------------------------------------------*/
body {
  display: flex; /* フレックスボックスに有効に */
  flex-flow: column; /* 要素を縦に並べる */
  min-height: 100vh; /* 最小でも画面の高さ分のbodyの高さを担保する */
}
.siteContent {
  flex: 1; /* 画面の高さから他の同レイヤーの要素の高さを引いた値に */
}

/* ---------------------------------
   固定ページ
---------------------------------*/
/* タイトル非表示 */
.page-header {
	display:none;
}
/* ---------------------------------
   投稿ページ
---------------------------------*/
/* タイトル非表示 */
body.single .page-header {
    display: none;
}
/* 日付を非表示 */
.entry-meta_items {
	display:none;
}
/* 末尾のカテゴリーを非表示 */
.entry-meta-dataList{
	display: none;
}
/* 前の記事・次の記事を非表示  */
.postNextPrev {
	display:none;
}