@charset "UTF-8";


/* 日付とカテゴリ */
.post .date-flex {
	display: flex;
	align-items: center;
}
.post .date-flex time {
	min-width: 105px;
	margin-right: 1em;
	font-size: .8em;
}
.post .date-flex span.post-category {
	display: inline-block;
    background: #C3D825;
    color: #333;
    padding: 6px 12px;
    border-radius: 40px;
    font-size: .7em;
	line-height: 1.4;
}
.post .date-flex span.post-category a {
	color: #333;
}


/****************************************
* カテゴリごとの一覧
* **************************************/

.category-title {
	text-align: left;
    font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 18px;
	padding-top: 18px;
	border-top: 2px solid #333;
}
.category-title a {
	padding-right: 1.8em;
	position: relative;
}
.category-title a span.dli-arrow-right {
	display: inline-block;
	line-height: 1;
	position: absolute;
	right: 0;
	width: 1em;
	top: 50%;
	transform: translateY(-50%);
	height: 0.1em;
	background: currentColor;
	transition: all .3s ease;
}
.category-title a span.dli-arrow-right::before {
	content: '';
	width: 12px;
	height: 12px;
	border: 2px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	transform-origin: top right;
	position: absolute;
	top: 50%;
	right: -1px;
	transition: all .3s ease;
}
.category-title a:hover {
	color: #C3D825;
}
.category-title a:hover span.dli-arrow-right {
	background: #C3D825;
}
.category-title a:hover span.dli-arrow-right::before {
	border: 2px solid #C3D825;
	border-left: 0;
    border-bottom: 0;
}


/****************************************
* archive
* **************************************/


/* カテゴリ説明 */
#archive .categoryDescription {
	background: #C3D825;
	padding: 45px;
	    margin-bottom: 30px;
}
#archive .categoryDescription-flex {
	display: flex;
}
#archive .categoryDescription-flex .categoryDescription-flex___explain {
	width: 60%;
}
#archive .categoryDescription-flex .categoryDescription-flex___pickup {
    width: 280px;
	margin-left: 30px;
}
#archive .categoryDescription .categoryName {
	text-align: left;
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 9px;
}
#archive .categoryDescription .pickup-item {
	display: block;
	position: relative;
}
#archive .categoryDescription .pickup-item span.pickup-item-ribbon {  
	display: inline-block;
	position: absolute;
	top: -6px;
	right: 10px;
	margin: 0;
	padding: 10px 0 7px;
	width: 60px;
	text-align: center;
	color: white;
	font-size: 11px;
	font-weight: 500;
	font-family: "Noto Sans JP", verdana, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: #D62635;
	border-radius: 2px 0 0 0;
	z-index: 2;
}
#archive .categoryDescription .pickup-item span.pickup-item-ribbon:before {
	position: absolute;
	content: '';
	top: 0;
	right: -5px;
	border: none;
	border-bottom: solid 6px #AD1F2D;
	border-right: solid 5px transparent;
}
#archive .categoryDescription .pickup-item span.pickup-item-ribbon:after {
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	height: 0;
	width: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 10px solid #D62635;
}
#archive .categoryDescription a.icatch {
	display: block;
	overflow: hidden;
	width: 280px;
    height: 180px;
}
#archive .categoryDescription a.icatch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#archive .categoryDescription a.pickup-item-link {
	
}
#archive .categoryDescription a.pickup-item-link .pickup-item-linkTitle {
	width: 100%;
    display: inline-block;
    text-align: left;
    font-size: .8em;
	font-weight: 500;
	color: #FFF;
    line-height: 1.4;
    position: absolute;
    left: 12px;
    bottom: 12px;
}

@media screen and (max-width: 768px) {
	#archive .categoryDescription-flex {
		flex-direction: column;
	}
	#archive .categoryDescription-flex .categoryDescription-flex___explain,
	#archive .categoryDescription-flex .categoryDescription-flex___pickup {
		width: 100%;
	}
	#archive .categoryDescription-flex .categoryDescription-flex___pickup {
		margin: 18px 0 0 0;
	}
	#archive .categoryDescription a.icatch {
		width: 100%;
		height: auto;
		max-height: 320px;
	}
}
@media screen and (max-width: 559px) {
	#archive .categoryDescription {
		padding: 30px;
	}
	#archive .categoryDescription a.icatch {
		max-height: 220px;
	}
}


#archive .results {
	margin-bottom: 60px;
}
#archive .results p.hits-page {
	text-align: right;
    font-size: .8em;
}


.archive-contents {
	margin-top: -45px;
	display: flex;
	flex-wrap: wrap;
}
.archive-contents .post {
	width: calc(100% / 2 - 18px);
	margin-right: 36px;
	margin-top: 45px;
}
#category-latest .archive-contents .post, /* home.php のカテゴリごとの新着 */
#related-posts .archive-contents .post { /* single.php の関連 */
	width: calc(100% / 3 - 24px);
	margin-right: 36px;
}
.archive-contents .post:nth-child(even) {
	margin-right: 0;
}
#category-latest .archive-contents .post:nth-child(3n), /* home.php のカテゴリごとの新着 */
#related-posts .archive-contents .post:nth-child(3n) { /* single.php の関連 */
	margin-right: 0;
}
.archive-contents .post a {
	display: block;
}
.archive-contents .post a img {
	opacity: 1;
}
.archive-contents .post a .icatch {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	overflow: hidden;
}
.archive-contents .post a .icatch:before {
	content: "";
	display: block;
	padding-top: 56.25%;
}
.archive-contents .post a .icatch img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	transition: ease-in-out .3s;
}
.archive-contents .post a .icatch img:hover {
	transform: scale(1.1);
}
.archive-contents .post .date-flex {
	margin-top: 12px;
}
.archive-contents .post .post-summary {
	margin-top: 12px;
}
.archive-contents .post .post-summary .the_title {
	color: #333;
	text-align: left;
	font-weight: 500;
    font-size: 1.6rem;
	line-height: 1.4;
}
.archive-contents .post .post-summary .post-excerpt {
	margin-top: 12px;
	line-height: 1.6;
	font-size: .8em;
}

@media screen and (max-width: 768px) {
	#category-latest .archive-contents .post, /* home.php のカテゴリごとの新着 */
	#related-posts .archive-contents .post { /* single.php の関連 */
		width: calc(100% / 2 - 18px);
		margin-right: 36px;
	}
	#category-latest .archive-contents .post:nth-child(odd), /* home.php のカテゴリごとの新着 */
	#related-posts .archive-contents .post:nth-child(odd) { /* single.php の関連 */
		margin-right: 36px;
	}
	#category-latest .archive-contents .post:nth-child(even), /* home.php のカテゴリごとの新着 */
	#related-posts .archive-contents .post:nth-child(even) { /* single.php の関連 */
		margin-right: 0;
	}
}
@media screen and (max-width: 559px) {
	.archive-contents .post,
	#category-latest .archive-contents .post, /* home.php のカテゴリごとの新着 */
	#related-posts .archive-contents .post {/* single.php の関連 */
		width: 100%;
		margin-right: 0 !important;
		margin-top: 45px;
	}
}
@media screen and (max-width: 430px) {
	
}


/****************************************
* single
* **************************************/

#single .single-contents {
	min-height: 50vw;
    padding: 60px;
	box-shadow: 0 0 24px rgba(190, 191, 191, .3);
}

#single .post-title {
	width: calc(100% + 60px);
	padding-left: 30px;
	margin-top: 30px;
	position: relative;
    left: -60px;
	border-left: 6px solid #657014;
}
#single .post-title .the_title {
	text-align: left;
	font-size: 3rem;
	line-height: 1.4;
}
#single .post-title .the_title a {
	display: inline-block;
	color: #657014;
}
#single .post-title .the_title br {
	display: none;
}
#single .post-content {
	margin-top: 60px;
}


/* 関連投稿 */
#related-posts {
	border-bottom: 18px solid #FFF;
}
#related-posts .related-posts-title {
	text-align: left;
    margin-bottom: 30px;
    font-size: 2.8rem;
	font-weight: 500;
	color: #657014;
}

@media screen and (max-width: 1194px) {
	#single .single-contents {
		padding: 45px;
	}
	#single .post-title {
		left: -45px;
	}
	#single .post-content {
		margin-top: 45px;
	}
}
@media screen and (max-width: 560px) {
	#single .single-contents {
		padding: 0;
		border-radius: 0;
		box-shadow: none;
		min-height: auto;
	}
	#single .post-title {
		left: -30px;
		padding-left: 24px;
		padding-right: 30px;
	}
	#single .post-title .the_title,
	#related-posts .related-posts-title {
		font-size: 1.4em;
	}
	#single .post-content {
		margin-top: 30px;
		padding-bottom: 30px;
		border-bottom: 1px solid #ededed;
	}
}


/****************************************
* 投稿見出しなど
* **************************************/

.wp-block-heading {
	line-height: 1.4;
}
h2.wp-block-heading {
	text-align: left;
	font-size: 1.6em;
	margin: 30px 0;
	padding-bottom: 0.5em;
	border-bottom: 4px solid #DDD;
	position: relative;
}
h2.wp-block-heading:after {
	content: " ";
	display: block;
	position: absolute;
	bottom: -4px;
	border-bottom: solid 4px #3eb034;
	width:10%;
}
h3.wp-block-heading {
	text-align: left;
	font-size: 1.4em;
	margin: 30px 0;
	color: #3EB034;
	position: relative;
}
h3.wp-block-heading:before {
	content: "■";
    margin-right: 12px;
}
h4.wp-block-heading {
	text-align: left;
	font-size: 1.2em;
	margin: 30px 0;
	color: #3EB034;
    font-family: "Noto Sans JP", verdana, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
h5.wp-block-heading {
	text-align: left;
	font-size: 1.1em;
	margin: 30px 0;
	padding: 18px 18px;
	background: #ECF9EB;
	border-left: 1px solid #3eb034;
}
h6.wp-block-heading {
	text-align: left;
	font-size: 1.1em;
	margin: 30px 0;
	padding-bottom: 18px;
    border-bottom: 1px solid #ededed;
}

ul.wp-block-list {
	list-style: disc;
	margin: 1em 0 1em 0;
    padding: 0 0 0 40px;
}
ul.wp-block-list li {
	margin-top: .6em;
	line-height: 1.6;
}
ol.wp-block-list {
	margin: 1em 0 1em 0;
    padding: 0 0 0 40px;
}
ol.wp-block-list li {
	margin-top: .6em;
	line-height: 1.6;
}
.wp-block-buttons {
	margin: 30px 0;
}

@media screen and (max-width: 768px) {
	h2.wp-block-heading {
		font-size: 1.4em;
	}
	h3.wp-block-heading {
		font-size: 1.3em;
	}
	h4.wp-block-heading {
		font-size: 1.2em;
	}
	h5.wp-block-heading {
		font-size: 1.1em;
	}
	h6.wp-block-heading {
		font-size: 1.1em;
	}
}
@media screen and (max-width: 560px) {
	h2.wp-block-heading {
		font-size: 1.3em;
	}
	h3.wp-block-heading {
		font-size: 1.2em;
	}
	h4.wp-block-heading {
		font-size: 1.1em;
	}
	h5.wp-block-heading {
		font-size: 1.1em;
	}
	h6.wp-block-heading {
		font-size: 1.1em;
	}
}
@media screen and (max-width: 430px) {
	h2.wp-block-heading {
		font-size: 1.2em;
	}
	h3.wp-block-heading {
		font-size: 1.1em;
	}
	h4.wp-block-heading {
		font-size: 1em;
	}
	h5.wp-block-heading {
		font-size: 1em;
		padding: 12px 12px;
	}
	h6.wp-block-heading {
		font-size: 1em;
	}
}
@media screen and (max-width: 320px) {
	h2.wp-block-heading {
		margin: 22px 0;
	}
	h3.wp-block-heading {
		margin: 22px 0;
	}
	h4.wp-block-heading {
		margin: 22px 0;
	}
	h5.wp-block-heading {
		margin: 22px 0;
	}
	h6.wp-block-heading {
		margin: 22px 0;
	}
}


