@charset "utf-8";

/* ***************************************
■基本スタイル
*************************************** */
body {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
	/*font-family: "Yu Gothic",YuGothic,"Hiragino Kaku Gothic ProN","Meiryo","Helvetica Neue",Helvetica,Arial,sans-serif;
	/*font-family: "ヒラギノ角ゴ ProN W3", "游ゴシック","メイリオ", YuGothic, Meiryo, sans-serif;*/
	letter-spacing: .05em;
	-webkit-text-size-adjust: 100%;
	font-size: 15px;
	color: #6A5249;
	background-image:url(../img/back.png);
}
p{
	margin:0;
	padding:0;
	font-weight:400;
} 
h1 , h2 , h3 , h4 {
	margin:0;
	padding:0;
	font-weight:500;
} 
ul{
	list-style:none;
	margin:0;
	padding:0;
}
li{
	list-style:none;
	margin:0;
	padding:0;
}
a {
	text-decoration:none;
	color:#9CBC4C;
}
a:hover {
	text-decoration:underline;
}


/**********************
共通
***********************/
.post-title {
	font-size:18px;
	padding:5px 0;
	line-height:1.3em;
}
.post-categoryname {
	font-size:10px;
	background-color:#FC0;
	padding:1px 5px;
	display:inline-block;
	color:#ffffff;
}
.post-categoryname a {
	color:#ffffff;
}
.post-categoryname a:hover {
	text-decoration:none;
}
/*******見出し*******/
.content h1 {
	font-size:25px;
	display:block;
	padding:10px 0;
	font-weight:bold;
	background: url(../img/midashi1.png) repeat-x center bottom;
	margin-bottom:30px;
}
.content h2 {
	font-size:23px;
	line-height:1.3em;
	color:#ffffff;
	padding:10px;
	font-weight:bold;
	position: relative;
	margin:50px 0 30px 0;
	background: url(../img/midashi2.png) repeat center center;
}
.content h3 {
	font-size:20px;
	line-height:1.3em;
	display:block;
	margin:20px 0;
	font-weight:nomal;
	padding:30px;
	background: url(../img/midashi3.png) no-repeat left center;
}
.content h4 {
	font-size:16px;
	display:block;
	margin:30px 0 10px 0;
	font-weight:bold;
}

/**********************
ヘッダー
***********************/
#header {
	max-width:1000px;
	margin: 0 auto;
}
#header a.title:hover {
	opacity:0.7;
}
#header a:hover {
	text-decoration:none;
}
#header .navbar {
	max-width:960px;
	margin: 0 auto;
}
#navi .blogtitle {
	float:left;
	padding:10px;
	width:40%;
	box-sizing:border-box;
	font-family: 'Itim', cursive; font-size:40px;
}
#navi ul {
	width:60%;
	float:left;
	padding:20px 0;
}
#navi ul li {
	float:left;
	font-family: 'Itim', cursive; font-size:20px;
}
#navi ul li ul{
	display: none;
}

#navi{
	position: relative;
	width: 100%;
}
#navi ul li:hover ul{
	display: block;
}
#navi ul > li{
	display: block;
}
#navi ul > li > a{
	padding: 13px 30px;
	display: block;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
#navi ul > li > span{
	margin-left: 1.2em;
}
#navi ul > li:hover > a{
	background:rgba(156,188,76,0.2);
	color: #9CBC4C;
}
 
/* Submenu */
 
#navi ul li ul{
	position: absolute;
	top: 50px;
}
#navi ul li ul li{
	display: block;
}
#navi ul li ul li a{
	background:rgba(156,188,76,0.2);
	color: #9CBC4C;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
#navi ul li ul li a:hover{
	background:rgba(156,188,76,0.4);
}
/**********************
トップページ
***********************/
#topimage {
	content: "";
	background: url(../img/top.JPG) no-repeat center center;
	background-size: cover;
	top: 0;
	left: 0;
	width: 100%;
	height:200px;
}
#topimage .toptitle {
	max-width:900px;
	margin:0 auto;
	color:#ffffff;
	height:200px;
	display:flex;
	align-items: center;
}
#topimage .toptitle h1 {
	padding:0 20px;	
	font-family: 'Itim', cursive; font-size:40px;
}
#top-navi {
	width:960px;
	margin:0 auto;
}
#top-navi a:hover {
	text-decoration:none;
}
#index-content .post {
	width:33%;
	padding:10px;
	display: inline-block;
	box-sizing: border-box;
	vertical-align:top;

}
#index-content .post img {
	width:100%;
	height:auto;
	border-radius:5px;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
#index-content .post img:hover ,
#index-content .banner img:hover {
	opacity:0.8;
}

#index-banner {
	padding-top:50px;
}
#index-banner .banner {
	width:33%;
	padding:10px;
	display: inline-block;
	box-sizing: border-box;

}

/**********************
コンテンツ
***********************/
#main-contents {
	overflow:hidden;
	max-width:1000px;
	margin: 0 auto;
	clear:both;
	padding:20px 10px;
}
#main-contents img {
	max-width:100%;
	height:auto;
	vertical-align:bottom;
	border-radius:5px;
}

.content-conteiner {
	float:left;
	width:80%;
	padding-right:40px;
	box-sizing:border-box;
}
#sidebar {
	float:right;
	width:20%;
}
.widget_title {
	color:#9CBC4C;
	padding-top:20px;
}
/*********ページャー**********/
.pager {
	clear:both;
	text-align: center;
	margin:30px 0;
}
.pager li {
	padding:10px;
	display: inline-block;
}
/*********関連記事エリア**********/
#relation {
	padding:50px 0 30px 0;
	overflow:hidden;
}
#relation .relate {
	width:33%;
	padding:10px;
	display: inline-block;
	box-sizing: border-box;
	vertical-align:top;
}
#relation .relation-title {
	color:#9DBC55;
	font-size:18px;
	padding:10px;
	background: url(../img/midashi1.png) repeat-x center bottom;
	margin-bottom:10px;
	text-align:center;
}
#relation .relate-i  img{
	width:100%;
	height:auto;
}
#relation .relate-title {
	display:block;
}

/*********コメントエリア**********/
#comment_area {
	padding-bottom:50px;
}
#comment_area h3 {
	font-size:30px;
	display:block;
	margin:30px 0 10px 0;
	font-family: 'Itim', cursive;
	color:#6A5249;
	border-left:none;
}
.commets-list {
	padding:10px;
	background-color:rgba(223,212,186,0.3);
}
#comment_area textarea,
#comment_area input[type=text] {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border:5px solid;
	border-color:rgba(223,212,186,0.3);
	padding:5px;
	margin:5px 0;
	font-size:14px;
	width:100%;
}
.commentNotesBefore,
.commentNotesAfter {
	font-size:11px;
	color:#6A5249;
}
#comment_area .form-submit {
	padding-top:10px;
}
#comment_area .submit {
	background-color:#9DBC55;
	color:#FFF;
	font-size:16px;
	border:none;
	border-radius:5px;
	padding:10px 40px;
}
#comment_area .submit:hover {
	background-color:#7F9F40;
	cursor:pointer;
}
/*********シェアボタンまわり**********/
.addtoany_header {
	margin:0;
	float:left;
	padding-right:20px;
	font-size:30px;
	font-family: 'Itim', cursive;
	color:rgba(223,212,186,0.9);
}
.addtoany_content {
	margin-top:100px;
	padding:20px 20px 0 20px;
	background-color:rgba(223,212,186,0.3);
}
/**********************
ブログトップページ
***********************/
#blog-catmenu {
	overflow:hidden;
}
#blog-catmenu p {
	float:left;
	padding:10px 10px 10px 0;
}
#blog-catmenu ul {
	float:left;
}
#blog-catmenu ul li {
	float:left;
	padding:5px;
}
#blog-catmenu a {
	border: 1px solid #9CBC4C;
	display: inline-block;
	padding: 4px 11px;
	color:#9CBC4C;
	border-radius:5px;
}
#blog-catmenu a:hover {
	text-decoration:none;
	background:rgba(156,188,76,0.3);
}
/**********************
カテゴリページ
***********************/
h2.category-title {
	font-family: 'Itim', cursive;
	margin:10px 0;
}
.category-post {
	padding:15px 0 15px 0;
	border-bottom:dotted 1px #CCC;
	overflow:hidden;
	box-sizing:border-box;
}
.category-post a img {
	border-radius:5px;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.category-post a img:hover {
	opacity: 0.7;
}
.category-post:last-child {
	border-bottom:none;
}
.category-title {
	font-size:20px;
	line-height:1.3em;
}
.category-titlesub {
	text-align: right;
	padding-bottom:10px;
}
.category-day {
	font-size:10px;
	display:inline-block;
}
.category-name {
	font-size:10px;
	background-color:#FC0;
	padding:1px 5px;
	display:inline-block;
	margin-left:10px;
}
.category-name a {
	color:#ffffff;
}
.category-name a:hover {
	text-decoration:none;
}
/**********************
ギャラリーページ
***********************/
#gallerypage-contents a img {
	border:none;
}
#gallerypage-contents a img:hover {
	opacity: 0.7;
}
#gallerypage-contents .gallery-item {
	padding:10px;
	box-sizing:border-box;
}

/**********************
サイドバー
***********************/
#sidebar {
	padding-bottom:100px;
}
#sidebar h2 {
	background :url(../img/midashi-side.png) repeat-x center bottom;
	padding:5px;
	margin-bottom:10px;
	font-family: 'Itim', cursive; font-size:23px;
}
#sidebar li {
	padding-bottom:10px;
	line-height:1.4em;
}
#side-tag a {
	margin: 0 4px 4px 0;
	border: 1px solid #9CBC4C;
	display: inline-block;
	padding: 4px 11px;
	color:#9CBC4C;
	border-radius:5px;
}
#side-tag a:hover {
	text-decoration:none;
	background:rgba(156,188,76,0.3);
}
#sidebar a img {
	border-radius:5px;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
#sidebar a:hover img {
	opacity: 0.7;
}
#side-category li {
	padding:5px 0;
	border-bottom:dotted 1px #CCC;
}
#sidebar .title ,
.wpp-post-title {
	padding-top:5px;
	display:inline-block;
}
#side-new ,
#side-category ,
#side-tag ,
#side-shop ,
#side-stamp {
	padding-top:30px;
}
#side-shop p ,
#side-stamp p {
	font-size:12px;
	padding-bottom:5px;
}

/**********************
フッター
***********************/
#footer-wrapper {
	clear:both;
	padding-top:20px;
	background :url(../img/footer-line.png) repeat-x top;
}
#footer {
	color:#FFF;	
	background-color :#9DBC55;
}
#footer-contents{
	max-width:1000px;
	margin: 0 auto;
	overflow:hidden;
	padding:0 10px;
}
#footer-contents .footer-link {
	width:25%;
	float:left;
	box-sizing:border-box;
	padding:30px 0 20px 0;
}
#footer-contents .footer-title {
	font-family: 'Itim', cursive; font-size:20px;
	padding-bottom:5px;
}
#footer-contents .footer-link li {
	background :url(../img/icon-arrow.png) no-repeat left center;
	padding-left:20px;
}
#footer-contents .footer-link li a {
	color:#ffffff;
}
#footer-contents .footer-link li a:hover {
	color:#FFD561;
	text-decoration:none;
}
#footer-contents .footer-link a img:hover {
	opacity:0.7;
}
#footer .copyright {
	clear:both;
	padding:20px;
	font-size:12px;
	text-align:center;
}

#page-top {
    position: fixed;
    bottom: 25px;
    right: 10px;
}
#page-top a {
    background: url(../img/pagetoplink.png) no-repeat;
	width:50px;
	height:50px;
    text-align: center;
    display: block;
}
#page-top a:hover {
    opacity: 0.8;
}