@charset "UTF-8";


/* メインイメージ 
---------------------------------------------------------*/
.contentpage .m_img_area .m_img {
	background-image: url("../images/topics/m_img@2x.jpg");
}
.contentpage .m_title .ft_bilo {
    text-transform: uppercase;
}

/*共通
--------------------------------------------------------------------*/
article {
	box-sizing: border-box;
}
.entry-inf a:hover {
	color: #f79b3e;
}
/* 日付 */
.entry-date {
	color: #8c7155;
	font-family: bilo, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 105%;
	letter-spacing: .1em;
	line-height: 1.2;
}
/* タイトル */
.entry-title {
	color: #8c7155;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	font-style: normal;
	font-size: min(3vw,200%);
	letter-spacing: .1em;
	line-height: 1.5;
}
h4 {
	position: relative;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	font-style: normal;
	font-size: min(2.5vw,180%);
	letter-spacing: .1em;
	line-height: 1.4;
	padding-left: 1em;
	border-left: 4px solid #8c7155;
	margin-bottom: .8em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
	
article {
	padding: 5% 0;
}
/* 日付 */
.entry-date {
	font-size: 100%;
}
/* タイトル */
.entry-title {
	font-size: 2.8vw;
	letter-spacing: .08em;
}
h4 {
	letter-spacing: .08em;
}

}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

article {
	padding: 10% 0;
}
/* 日付 */
.entry-date {
	font-size: 100%;
}
/* タイトル */
.entry-title {
	font-size: 130%;
	letter-spacing: .08em;
}
h4 {
	font-size: 120%;
	letter-spacing: .04em;
	border-left-width: 3px;
	margin-bottom: .6em;
}

}


/*子カテゴリー
--------------------------------------------------------------------*/
/*記事内子カテゴリー*/
article .child_cat_list2 {
	display: flex;
    flex-wrap: wrap;
}
article .child_cat_list2 li {
	color: #FFF;
	font-size: 93%;
	letter-spacing: .08em;
	line-height: 1.2em;
	background-color: #76a655;
	padding: .5em 1.0em;
	border-radius: 6px;
	margin-top: .2em;
	margin-right: 1em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
article .child_cat_list2 li {
	font-size: 85%;
	padding: .3em 1.0em;
	margin-right: .6em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/*記事内子カテゴリー*/
article .child_cat_list2 li {
	font-size: 80%;
	padding: .3em 1.0em;
	margin-right: .6em;
}

}


/*
--------------------------------------------------------------------*/
.article_container {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	align-items: flex-start;
	margin-bottom: 180px;
}
/*メインボックス*/
.article_container .box_main {
	width: 76%;
}
/*サイドボックス*/
.article_container .box_side {
	width: 20%;
	max-width: 260px;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.article_container .side_index {
	text-align: center;
	color: #FFF;
	font-size: 120%;
	letter-spacing: .1em;
	padding: .9em 0;
	background-color: #8c7155;
}
.article_container .box_side dd {
	box-sizing: border-box;
	padding: 1.5em 7.5%;
}
.article_container .cat_box dd {
	margin-bottom: 30px;
}
.article_container .cat_box li {
	border-bottom: 1px solid #b3b3b3;
	margin-bottom: 10px;
}
.article_container .cat_box li:last-of-type {
	margin-bottom: 0;
}
.article_container .cat_box a {
	position: relative;
	display: block;
	color: #8c7155;
	font-size: 105%;
	box-sizing: border-box;
	padding: .3em 0 .3em 1.2em;
}
.article_container .cat_box a::before {
	position: absolute;
	font-family: 'fontello';
	content: '\e800';
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.article_container .cat_box a:hover {
	color: #f79b3e;
}
.archive_box .select_wrapper {
	position: relative;
}
.archive_box .select_wrapper::before {
	content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 6px solid #b3b3b3;
    border-bottom: 0;
	pointer-events: none;
	transform: translateY(-50%);
}
.archive_box select {
	display: block;
	width: 100%;
	padding: .2em .8em;
	height: 2em;
	box-sizing: border-box;
	background: #fff;
	font-size: 93%;	
	outline: none;   
	border: solid 1px #b3b3b3;
	border-radius: 5px;
	-webkit-appearance: none;
	cursor: pointer;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

.article_container {
	margin-bottom: 15%;
}
.article_container .box_side dd {
	padding: 1em 7.5%;
}
/*メインボックス*/
.article_container .box_main {
	width: 71%;
}
/*サイドボックス*/
.article_container .box_side {
	width: 25%;
}
.article_container .side_index {
	font-size: 110%;
	padding: .6em 0;
}
.article_container .cat_box dd {
	margin-bottom: 20px;
}
.article_container .cat_box a {
	font-size: 95%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.article_container {
	display: block;
	margin-bottom: 15%;
}
/*メインボックス*/
.article_container .box_main {
	width: 100%;
	margin-bottom: 10%;
}
/*サイドボックス*/
.article_container .box_side {
	width: 100%;
	max-width: none;
}
.article_container .side_index {
	font-size: 105%;
	letter-spacing: .05em;
}
.article_container .cat_box dd {
	margin-bottom: 5%;
}
.archive_box select {
	font-size: 16px;	
}

}



/*一覧ページ
--------------------------------------------------------------------*/
.entry_list article {
	box-sizing: border-box;
	border-bottom: solid 1px #cdcac7;
	padding: 45px 0;
}
.entry_list article:first-of-type {
	border-top: solid 1px #cdcac7;
}
.entry_list .entry-date {
	margin-bottom: .4em;
}
.entry_list .entry-title {
	margin-top: .5em;
}
.entry_list .float_box .img_thumbnail {
	float: left;
	width: 28%;
	max-width: 270px;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}
.entry_list .float_box .txt_box {
	width: 66%;
	float: right;
}
.entry_list .float_box .img_thumbnail:before {
    content:"";		/*高さ*/
    display: block;
    padding-top: 70%;
}
.entry_list .float_box .img_thumbnail img {
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	margin: auto;
	text-align: center;
}

/* アーカイブタイトル */
.archive-title {
	display: none;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 140%;
	letter-spacing: .1em;
	line-height: 2.0em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
	
.entry_list article {
	padding: 4% 0;
}
.entry_list .float_box .txt_box {
	width: 69%;
}
/* アーカイブタイトル */
.archive-title {
	font-size: 130%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
	
.entry_list article {
	padding: 7% 0;
}
.entry_list .float_box .img_thumbnail {
	float: none;
	width: 60%;
	margin: 0 auto 1.0em;
}
.entry_list .float_box .txt_box {
	width: 100%;
	float: none;
}

/* アーカイブタイトル */
.archive-title {
	font-size: 90%;
}
}


/*個別ページ
--------------------------------------------------------------------*/
.single_page article {
	padding-top: 0;
	padding-bottom: 150px;
	border-bottom: 1px solid rgba(140,113,85,0.7);
}
.single_page .entry-inf {
	display: flex;
	align-items: center;
	margin-bottom: 3em;
}
.single_page .entry-date {
	margin-right: 1em;
}
.single_page .com_index1 {
	text-align: left;
	font-size: min(3vw,200%);
}
/*レイアウト*/
.single_page .topi_block {
	margin-bottom: 80px;
}
.single_page .topi_block:last-child {
	margin-bottom: 0;
}
.single_page .topi_block.is-layout-flex {
	justify-content: space-between;
}
.single_page .topi_block .img_box {
	max-width: 360px;
}
.single_page .topi_block p {
	margin-top: 1em;
}
.single_page .topi_block :first-child {
	margin-top: 0;
}

.single_page .entry-content > .flex,
.single_page .entry-content > .style1,
.single_page .entry-content > p {
	margin-bottom: 80px;
}
.single_page .entry-content > *:last-of-type {
	margin-bottom: 0;
}
.single_page .entry-content .flex {
	display: flex;
	justify-content: space-between;
}
.single_page .entry-content .flex .img_l,
.single_page .entry-content .flex .img_r {
	width: 28%;
	max-width: 360px;
}
.single_page .entry-content .flex .box_txt {
	width: 68%;
}
.single_page .entry-content .flex .img_r {
	order: 2;
}
.single_page .entry-content .flex .img_r + .box_txt {
	order: 1;
}
.single_page .entry-content .flex img {
	width: 100%;
}
/* 前後の記事へ */
.single_page .page_link {
	font-size: 126%;
	letter-spacing: .1em;
	line-height: 1.4;
	margin-top: 1.5em;
}
.single_page .page_link li {
	position: relative;
	width: 48%;
	max-width: max-content;
	box-sizing: border-box;
}
.single_page .page_link li.flt_l {
	text-align: left;
}
.single_page .page_link li.flt_r {
	text-align: right;
}
.single_page .page_link a {
	display: block;
	color: #8c7155;
	background-color: #f8f5f2;
	border-radius: 10px;
	box-sizing: border-box;
	padding: .6em 1.5em;
}
.single_page .page_link .flt_l a::before,
.single_page .page_link .flt_r a::after {
	font-family: 'fontello';
	display: inline-block;
	content: '\e800';
}
.single_page .page_link .flt_l a::before {
	transform: scale(-1,1);
	margin-right: .2em;
}
.single_page .page_link .flt_r a::after {
	margin-left: .2em;
}
.single_page .page_link a:hover {
	color: #FFF;
	background-color: #8c7155;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.single_page article {
	padding-bottom: 10%;
}
.single_page .entry-inf {
	margin-bottom: 2em;
}
.single_page .topi_block {
	margin-bottom: 60px;
}
.single_page .entry-content > .flex,
.single_page .entry-content > .style1,
.single_page .entry-content > p {
	margin-bottom: 60px;
}
/* 前後の記事へ */
.single_page .page_link {
	font-size: 110%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.single_page article {
	padding-bottom: 15%;
}
.single_page .entry-inf {
	margin-bottom: 1em;
}
.single_page .com_index1 {
	font-size: 120%;
}
/*レイアウト*/
.single_page .topi_block {
	margin-bottom: 10%;
}
.single_page .topi_block .img_box {
	order: 1;
	width: 80%;
	margin: 0 auto;
}
.single_page .topi_block .img_box figure {
	margin: 0;
}
.single_page .topi_block .txt_box {
	order: 2;
}
	
.single_page .entry-content > .flex,
.single_page .entry-content > .style1,
.single_page .entry-content > p {
	margin-bottom: 10%;
}
.single_page .entry-content .flex {
	display: block;
}
.single_page .entry-content .flex .img_l,
.single_page .entry-content .flex .img_r {
	width: 80%;
	margin: 0 auto 6%;
}
.single_page .topi_block .box_txt {
	width: 100%;
}
.single_page .entry-content .flex .box_txt {
	width: 100%;
}
/* 前後の記事へ */
.single_page .page_link {
	font-size: 90%;
	letter-spacing: normal;
}
.single_page .com_link1 {
	margin-top: 2em;
}

}



/*page number
-----------------------------------------------------*/
.wp-pagenavi {
	clear: both;
	width: 100%;
	font-family: bilo, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 113%;
	line-height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	background: transparent;
	margin-top: 55px;
}
.wp-pagenavi .pages {
	display: none;
}
.wp-pagenavi span,
.wp-pagenavi a.page {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	color: #8c7155;
	width: 2.3em;
	line-height: 2.3em;
	box-sizing: border-box;
	margin: 0 5px;
	letter-spacing: normal;
}
.wp-pagenavi span::before,
.wp-pagenavi a.page::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #f79b3e;
	border-radius: 50%;
	left: 0;
	top: 0;
	opacity: 0;
	transition: all .5s;
	z-index: -1;
}
/* 現在地 */
.wp-pagenavi span.current,
.wp-pagenavi a.page:hover {
	color: #FFF;
}
.wp-pagenavi span.current::before,
.wp-pagenavi a.page:hover::before {
	opacity: 1;
}
/*矢印*/
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	color: #999591;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
	display: inline-block;
	font-family: 'fontello';
	content: '\e801';
}
.wp-pagenavi .nextpostslink::before {
	margin-left: .6em;
}
.wp-pagenavi .previouspostslink::before {
	transform: scale(-1,1);
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
	color: #f79b3e;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.wp-pagenavi {
	font-size: 105%;
	margin-top: 5%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.wp-pagenavi {
	font-size: 100%;
	margin-top: 8%;
}
}


 
 
/*Not Found
-----------------------------------------------------*/
.no_page {
	padding: 100px 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.no_page {
	padding: 10% 0;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.no_page {
	padding: 15% 0;
}
}





/*
--------------------------------------------------------------------*/

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

	
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

}