@charset "UTF-8";
/*******************************************
 * エリアで探すページcss
 *
 * menu
 * 1.レイアウト
 * 2.各コンテナ
 *  2-1 検索チェックボックス
	2-2 「検索」・「戻る」・「さらに絞り込む」・「条件を絞り込む」各種ボタン
 * 3.サイドバー
 ******************************************/
.box-sizing {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/******************************************
 1. レイアウト
	左サイドバー2カラム
 ******************************************/
#new_tag {
  color: #fff;
}
#layout-main {
  width: 750px;
  float: right;
  padding-bottom: 50px;
}
#layout-main h2 {
  width: 750px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 20px;
  color: #6d6d6c;
  font-size: 18px;
  font-weight: bold;
  border-left: 5px solid #0d47a0;
  padding: 5px 0;
  padding-left: 5px;
}
#layout-sideBar {
  width: 200px;
  float: left;
}
#layout-sideBar h2 {
  width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 20px;
  color: #6d6d6c;
  font-size: 16px;
  font-weight: bold;
  border-left: 5px solid #0d47a0;
  padding: 5px 0;
  padding-left: 5px;
}
/******************************************
* 2.各コンテナ
*	2-1 ブログ記事
 ******************************************/
/******* 2-1 ブログ記事 *************/
.container-blog {
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 8px;
}
.container-blog .block-blog .box-blog_head {
  line-height: 36px;
  border-bottom: 2px solid #0d47a0;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 10px 0px;
}
.container-blog .block-blog .box-blog_head_cat {
  background: #0d47a0;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  padding: 4px;
}
.container-blog .block-blog .box-blog_head_time {
  font-size: 1.3em;
  display: inline-block;
  padding: 4px;
  float: right;
}
.container-blog .block-blog .box-blog_content {
  padding: 20px 0;
}
.container-blog .block-blog .box-blog_content .btn-link {
  width: 5em;
  height: 2em;
  line-height: 2em;
  background: #0d47a0;
  border: 1px solid #0d47a0;
  color: #fff;
  font-size: 16px;
  display: block;
  margin: 50px auto 0;
  padding: 0 10px;
}
.container-blog .block-blog .box-blog_content .btn-link:hover {
  background: #fff;
  color: #6d6d6c;
  text-decoration: none;
}
/******************************************
 3.サイドバー
 ******************************************/
#layout-sideBar ul {
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 8px;
}
#layout-sideBar ul li {
  line-height: 30px;
  border-bottom: 1px solid #fff;
}
#layout-sideBar ul li a {
  color: #444;
  display: block;
  text-decoration: underline;
  padding-left: 20px;
}
#layout-sideBar ul li a:hover {
  background: #0d47a0;
  color: #fff;
}
