@charset "utf-8";

/*Clearfix*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.clearfix {
	zoom: 1;
}

/* 色を変える「#71b53e」 */

/*single.php　記事ページ
---------------------------------------------------------------------------*/
.wp-blog-container{
    width: 1110px;
    margin: 0 auto;
}

/*1110以下*/
@media all and (max-width:1200px){
	.wp-blog-container{
		width: 930px;
	}
}
/*930以下*/
@media all and (max-width:992px){
	.wp-blog-container{
		width: 690px;
	}
}
/*690以下*/
@media all and (max-width:768px){
	.wp-blog-container{
		width: 510px;
	}
}
/*510以下*/
@media all and (max-width:576px){
	.wp-blog-container{
		width: 92%;
	}
}

.wp-blog-single-section{
    width: 100%;
    margin: 0px auto 50px;
	color: #333333;
}
.wp-blog-single-wrapper{
}

.wp-blog-single-content-wrapper{
	float: left;
	width: 70%;
}
/*690以下*/
@media all and (max-width:768px){
	.wp-blog-single-content-wrapper{
		float: none;
		width: 100%;
		margin-bottom: 50px;
	}
}

/* リンクの色 */
.wp-blog-single-content-box a {
	COLOR: #0000ee;
	text-decoration: underline;
}
.wp-blog-single-content-box a:link {
	COLOR: #0000ee;
}
.wp-blog-single-content-box a:visited {
	COLOR: #551a8b;
}
.wp-blog-single-content-box a:active {
	COLOR: #ff000;
}
.wp-blog-single-content-box a:hover {
	COLOR: #0000ee;
}

.wp-blog-single-content-box p, .wp-blog-single-content-box figure{
	margin-bottom: 1em !important;
}
.wp-blog-single-content-box p:empty{
	margin-bottom: 2em !important;
}
.wp-blog-single-date{
	width: 100%;
	font-size: 1em;
}
.wp-blog-single-date-box{
	margin-bottom: 10px;
}
.wp-blog-single-title{
	width: 100%;
	color: #71b53e;
	font-size: 1.5em;
	font-weight: bold;
	padding: 8px 0em;
	margin-bottom: 16px;
}
.wp-blog-post-links{
	width: 100%;
	margin: 50px auto;
	text-align: center;
}

/*sidebar　サイドのカテゴリー等
---------------------------------------------------------------------------*/
.wp-blog-side-wrapper{
	float: right;
	width: 25%;
}
/*690以下*/
@media all and (max-width:768px){
	.wp-blog-side-wrapper{
		float: none;
		width: 100%;
	}
}

/* タイトルのL字デザイン */
h2.wp-blog-side-title {
    font-size: 18px;
    padding: 5px 8px;
    margin-bottom: 16px;
    font-weight: bold;
	border-left: solid 2px #71b53e;
	border-bottom: solid 2px #71b53e;
}

.wp-blog-side-archive-list {
    list-style: none;
    padding: 0;
	margin-bottom: 50px;
}
.wp-blog-side-archive-list li {
    padding: 8px 8px;
	border-bottom: 1px dashed #71b53e;
    transition: background 0.3s;
}

.wp-blog-side-archive-list a:hover{
    color: #ccc;
}

/* リストアイテムの下にグレーの点線 */
.wp-blog-side-archive-list li:not(:last-child) {
    border-bottom: 1px dashed #71b53e;
}
/* 親の下につく子供のカテゴリー */
.wp-blog-side-archive-list .children li{
    border-bottom: none!important;
    border-top: 1px dashed #dddddd;
	margin-top: 8px;
	padding-bottom: 0px;
}


/*----------*/
.wp-blog-post-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 482px;
  margin: 30px auto 0;
}
.wp-blog-post-link {
  width: 144px;
  height: 36px;
}
.wp-blog-post-link-prev {
  padding-right: 1em;
}
.wp-blog-post-link-next {
  padding-left: 1em;
}
.wp-blog-post-link a {
  display: block;
  border: 1px solid #666;
  border-radius: 18px;
  text-align: center;
  line-height: 34px;
  transition: 0.3s;
	text-decoration: none;
}
.wp-blog-post-link a:hover {
  background-color: #666;
  color: #fff;
}


/*archive　一覧表示
---------------------------------------------------------------------------*/
.wp-blog-archive-news-list{
  margin: 0;
  padding: 0;	
}
.wp-blog-archive-news-item {
  width: 100%;
  display: flex;
  transition: opacity 0.3s;
}
.wp-blog-archive-news-item:not(:last-of-type) {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px dotted #e5e5e5;
}
.wp-blog-archive-news-item a {
  display: flex;
}
.wp-blog-archive-news-item a:hover {
  opacity: 0.6;
  transition: opacity 0.3s;
}

.wp-blog-archive-news-img-wrapper {
  width: 240px;
  height: 180px;
  position: relative;
  margin-right: 40px;
  overflow: hidden;
}
.wp-blog-archive-news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
/* ホバー時に拡大させる */
.wp-blog-archive-news-item:hover .wp-blog-archive-news-img {
  transform: scale(1.1); /* 1.1〜1.2くらいが自然 */
}
.wp-blog-archive-news-img-wrapper .wp-blog-new-tag {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
}


.wp-blog-archive-news-desc-wrapper{
	width: calc(100% - 280px);
}
.wp-blog-archive-news-desc-wrapper .wp-blog-section-desc {
  padding-right: 0rem;
}
.wp-blog-archive-news-desc-wrapper._no-thumbnail {
  width: 100%;
}
.wp-blog-archive-news-desc-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 5px;
}
.wp-blog-archive-news-desc-time{
	display: block;
	margin-right: 1rem;
	font-size: 1em;
}

.wp-blog-archive-news-category{
	padding: 5px 1em;
	background-color: #71b53e;
	color: #fff;
	font-size: 12px;
	line-height: 1em;
	text-align: center;
	width: auto;
}
.wp-blog-archive-news-desc-title{
	text-decoration: underline;
	text-decoration-thickness: 1px;
	width: 100%;
	color: #71b53e;
	text-align: left;
	font-size: 1.2em;
	margin-bottom: 8px;
}
.wp-blog-section-desc{}

/*690以下*/
@media all and (max-width:768px){
	.wp-blog-archive-news-item {
	  width: 100%;
	  display: block;
	  transition: opacity 0.3s;
	}
	.wp-blog-archive-news-item a {
	  display: block;
	}
	
	.wp-blog-archive-news-img-wrapper {
	  width: 320px;
	  height: 220px;
	  margin:  0 auto 10px;
	}

	.wp-blog-archive-news-img{
	  width: 320px;
	  height: 220px;
	  margin: auto;
	}
	.wp-blog-archive-news-img-wrapper .wp-blog-new-tag {
	  width: 72px;
	  height: 72px;
	}
	.wp-blog-archive-news-desc-wrapper{
		width: 320px;
		margin: auto;
	}
	.wp-blog-archive-news-desc-wrapper._no-thumbnail {
		width: 320px;
		margin: auto;
	}
}

/*WP-PageNavi プラグイン　ページ送り
---------------------------------------------------------------------------*/
.wp-pagenavi {
  text-align: center;
	margin: 50px auto 30px;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a, .wp-pagenavi span {
	font-size: 1em;
	font-weight: bold;
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  line-height: 40px;
  padding: 0px !important;
  margin-right: 10px !important;
  transition: 0.3s;
  border: 1px solid #333;
}
.wp-pagenavi a:hover, .wp-pagenavi span:hover {
  background-color: #000;
  color: #fff;
}
.wp-pagenavi a.current, .wp-pagenavi span.current {
  background-color: #000;
  color: #fff !important;
}

/*タグ
---------------------------------------------------------------------------*/
/*リンクボタン*/
.wp-block-button__link{
	color: #ffffff!important;
	text-decoration: none!important;
	font-weight: bold!important;
}
.wp-element-button{
	color: #ffffff!important;	
	text-decoration: none!important;
	font-weight: bold!important;
}

/*タグ
---------------------------------------------------------------------------*/
.wp-blog-tags-box{
	width: 100%;
	border: 1px solid #999;
	padding: 10px;
	margin: 30px auto;
}

/* サブページの固定ページでタイトルを表示しない
---------------------------------------------------------------------------*/
.page-title-container{
	display: none;
}

/*　パンクズ設定
---------------------------------------------------------------------------*/
.breadcrumb {
	display: none;
}
