@charset "UTF-8";

@import url("./wp.css");


/*---------------------------------------------------------
date/title
---------------------------------------------------------*/
.entry-date {
	display: block;
	color: var(--color_dgrn);
	font: var(--font_eng);
	font-size: min(2vw,131%);
	letter-spacing: .1em;
	line-height: 1;
	margin-bottom: .4em;
}

.entry-title {
	font: var(--font_min);
	font-size: min(2vw,143%);
	line-height: 1.4;
	letter-spacing: .12em;
	margin-bottom: .5em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.entry-date {
	font-size: 90%;
}
.entry-title {
	font-size: 105%;
	letter-spacing: .06em;
}
}

/*---------------------------------------------------------
post_cat
---------------------------------------------------------*/
article .post_cat {
	font-size: 94%;
	line-height: 1.2;
	margin-top: .6em;
	display: flex;
    flex-wrap: wrap;
	gap: .2em 1em;
	margin-top: .8em;
}
article .post_cat li a {
	text-decoration: underline;
}
article .post_cat li a:hover {
	color: var(--color_dgrn);
	text-decoration: none;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
article .post_cat {
	font-size: 90%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
article .post_cat {
	font-size: 80%;
}
}

/*---------------------------------------------------------
list_page
---------------------------------------------------------*/
.entry_list {
	max-width: 1300px;
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(3,31%);
	row-gap: 4.2em;
	margin-inline: auto;
}
.entry_list article > a {
	display: block;
}
.entry_list .img_thum {
	position: relative;
	width: 100%;
	overflow: hidden; 
	margin-bottom: 1.5em;
	border-radius: 2.5% / 4.1%;
}
.entry_list .img_thum::before {
	content: "";
	display: block;
	padding-top: 60%;
}
.entry_list .img_thum img {
	display: block;
	position: absolute;
	object-fit: cover;
	width: 100%;
	max-width: none;
	height: 100%;
	left: 0;
	top: 0;
	transition: all 1.0s ease-out;
}
.entry_list .entry-title::after {
	position: absolute;
	font-family: 'fontello';
	content: '\e800';
	color: var(--color_dgrn);
	opacity: 0;
	margin-left: -0.2em;
	transition: all .5s;
}
.entry_list article > a:hover .entry-title::after {
	opacity: 1;
	margin-left: .2em;
}
.entry_list article > a:hover img {
	transition: all 0.4s ease-out;
	transform: scale(1.1);
}
/* 画像なし */
.entry_list:not(.thum_true) article {
	padding-bottom: 2em;
	border-bottom: 1px solid var(--color_dgrn);
}
/* アーカイブタイトル */
.archive-title {
	display: none;
	text-align: right;
	letter-spacing: .2em;
	line-height: 1.0em;
	margin-bottom: 40px;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.entry_list {
	display: grid;
	grid-template-columns: repeat(2,48%);
	row-gap: 1.5em;
}
.entry_list .img_thum {
	margin-bottom: .8em;
}
/* 画像なし */
.entry_list:not(.thum_true) article {
	padding-bottom: 1.2em;
}
/* アーカイブタイトル */
.archive-title {
	font-size: 100%;
	margin-bottom: 4%;
}
}

/*---------------------------------------------------------
single_page
---------------------------------------------------------*/
.free_area h3,
.free_area h4,
.free_area h5,
.free_area p,
.free_area figure,
.free_area ul:not(.toc_list),
.free_area ol {
	width: 96%;
	max-width: 1100px;
	margin-inline: auto;
}
.single_page article {
	max-width: 1100px;
	margin-inline: auto;
}
.single_page .entry-inf {
	margin-bottom: 70px !important;
}
.single_page .entry-date {
	margin-bottom: .5em;
}
.single_page .entry-title {
	color: var(--color_dgrn);
	font-size: min(3.2vw,250%);
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.single_page .entry-inf {
	margin-bottom: 6% !important;
}
.single_page .entry-title {
	letter-spacing: .1em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.single_page .entry-inf {
	margin-bottom: 10% !important;
}
.single_page .entry-title {
	font-size: 130%;
	letter-spacing: .05em;
}
}
/*single_page: TOC
---------------------------------------------------------*/
.single_page #toc_container {
	display: block !important;
	background: transparent !important;
	letter-spacing: .15em;
	width: 100%;
	max-width: 1100px;
	font: var(--font_min);
	font-size: 100%;
	letter-spacing: .12em;
	line-height: 1.2em;
	margin: 7.2% auto;
}
.single_page #toc_container .toc_title {
	position: relative;
	color: var(--color_och);
	font-style: normal;
	font-size: min(2.4vw,150%);
	padding-left: 1.8em;
	background: url("../images/topics/mokuzi.svg") no-repeat .5em center;
	background-size: .8em auto;
	margin: 0 0 .8em;
}
.single_page #toc_container .toc_title .toc_toggle {
	display: inline-block;
	vertical-align: 0.1em;
	font-size: 70%;
	font-weight: normal;
}
.single_page #toc_container .toc_title .toc_toggle a {
	color: inherit !important;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}
.single_page #toc_container .toc_list {
	margin: .5em 0 0 !important;
	width: 100% !important;
}
.single_page #toc_container .toc_list li {
	display: block;
	font-size: 100%;
	font-weight: normal !important;
	line-height: 1.5em;
	padding: 1em 1.5em;
	margin: 0;
	border-bottom: none;
}
.single_page #toc_container .toc_list li::before {
	display: none;
}
.single_page #toc_container .toc_list a {
	position: relative;
	display: block;
	color: inherit;
	text-decoration: none;
}
.single_page #toc_container .toc_list a:hover {
	opacity: 0.8;
}
.single_page #toc_container .toc_list > li:nth-of-type(odd) {
	background-color: rgba(161,145,43,0.05);
}
.single_page #toc_container .toc_list > li ul {
	margin: .5em 0 0 0;
}
.single_page #toc_container .toc_list > li li {
	font-size: 90% !important;
	padding-top: .4em !important;
	padding-bottom: .4em !important;
}
.single_page #toc_container .toc_list .toc_number {
	color: var(--color_och);
	font: var(--font_eng);
	font-size: 146%;
	letter-spacing: .12em;
	line-height: 1;
	border-right: solid 1px currentColor;
	padding-right: .7em;
	margin-right: .6em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.single_page #toc_container {
	padding: 0;
	margin-top: 10%;
	margin-bottom: 14%;
}
.single_page #toc_container .toc_title {
	font-size: 110%;
	padding-top: .5em;
	padding-bottom: .5em;
}
.single_page #toc_container .toc_list li {
	font-size: 90% !important;
	padding-top: .5em !important;
	padding-bottom: .5em !important;
}
}
/*single_page:image
---------------------------------------------------------*/
.single_page article img {
	display: block;
	max-width: max-content;
	margin: 1.5em 0;
}
.single_page article .aligncenter {
	margin-left: auto;
	margin-right: auto;
}
.single_page article figure.alignleft,
.single_page article figure.alignright {
	max-width: max-content;
}
/* PC,Tablet
------------------------------------------*/
@media only screen and (min-width: 768px) {
.single_page article img {
	width: 50%;
}
.single_page article .alignright {
	float: right;
	margin-left: 3% !important;
}
.single_page article .alignleft {
	float: left;
	margin-right: 3% !important;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.single_page article img {
	text-align: center;
	width: 90%;
	margin: 5% auto;
}
.single_page article .alignright,
.single_page article .alignleft {
	float: none;
}
}

/*---------------------------------------------------------
wp_f_box
---------------------------------------------------------*/
.wp_f_box {
	background-color: #E9EEE9;
	padding: min(10%,70px) 0;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.wp_f_box .widget_box {
	display: grid;
	justify-content: space-between;
	grid-template-columns: 50% 45%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.wp_f_box {
	padding: 11% 0 12%;
}
}
/*wp_f_box:near_box
-----------------------------------------------------*/
.widget_box .near_box {
	font: var(--font_min);
	font-size: 106%;
	line-height: 1.5;
	letter-spacing: .15em;
}
.widget_box .wid_index {
	color: var(--color_dgrn);
	letter-spacing: .15em;
	margin-bottom: .4em;
}
.widget_box .near_list a {
	display: block;
	position: relative;
	padding: .8em 0;
	padding-left: 1.8em;
	border-bottom: 1px solid #D9D9D9;
}
.widget_box .near_list a::before {
	position: absolute;
	content: "";
	background-color: var(--color_dgrn);
	border-radius: 50%;
	width: .6em;
	height: .6em;
	left: .4em;
	top: 1.2em;
}
.widget_box .near_list a:hover {
	color: var(--color_dgrn);
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.widget_box .near_box {
	font-size: 100%;
	letter-spacing: .1em;
}
.widget_box .wid_index {
	letter-spacing: .08em;
	margin-bottom: .5em;
}
.widget_box .near_list a {
	font-size: 90%;
}
}
/*widget_box:calendar
---------------------------------------------------------*/
.widget_box #wp-calendar {
	position: relative;
	border: none;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	background: #fff;
	border-collapse: collapse;
}
.widget_box #wp-calendar caption,
.widget_box #wp-calendar tfoot {
	font-family: "minerva-modern", "a-otf-ryumin-pr6n";
	letter-spacing: .15em;
	padding-bottom: .6em;
	line-height: 1.0em;
}
.widget_box #wp-calendar tr {
	padding: 0 5%;
}
.widget_box #wp-calendar thead,
.widget_box #wp-calendar tbody {
	box-sizing: border-box;
}
.widget_box #wp-calendar thead th {
	font-weight: normal;
	background: var(--color_dgrn);
	color: #fff;
	font-size: 110%;
	line-height: 1.0em;
	padding: 1em 0;
}
.widget_box #wp-calendar tbody td {
	font: var(--font_eng);
	font-size: 95%;
	line-height: 1.7;
	padding: 1em 0;
}
.widget_box #wp-calendar tbody a {
	color: var(--color_dgrn);
	text-decoration: underline;
	transition: all .5s;
}
.widget_box #wp-calendar tbody a:hover {
	opacity: 0.6;
	text-decoration: none;
}
.widget_box #wp-calendar caption,
.widget_box #wp-calendar tfoot {
	letter-spacing: .14em;
	line-height: 1.5em;
}
.widget_box #wp-calendar tfoot {
	width: 100%;
	position: absolute;
	top: 0;
}
.widget_box #wp-calendar #prev {
	position: absolute;
	left: 0;
	top: 0;
	width: 100px;
	text-align: center;
}
.widget_box #wp-calendar #next {
	position: absolute;
	right: 0;
	top: 0;
	width: 100px;
	text-align: center;
}
.widget_box #wp-calendar tfoot a {
	display: block;
	position: relative;
	text-decoration: none;
}
.widget_box #wp-calendar tfoot a::before {
	position: absolute;
	content: '';
	width: .5em;
	height: .5em;
	border-top: 1px solid currentColor;
	border-left: 1px solid currentColor;
	rotate: -45deg;
	top: .6em;
}
.widget_box #wp-calendar #prev a::before {
	left: .5em;
}
.widget_box #wp-calendar #next a::before {
	rotate: 135deg;
	right: .5em;
}
.widget_box #wp-calendar tfoot a:hover {
	color: var(--color_dgrn);
}
.widget_box .wp-calendar-nav {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	text-align: center;
	line-height: 1.2em;
}
.widget_box .wp-calendar-nav span {
	display: inline-block;
	position: absolute;
	top: 0;
}
.widget_box .wp-calendar-nav .wp-calendar-nav-prev {
	left: 0;
}
.widget_box .wp-calendar-nav .wp-calendar-nav-next {
	right: 0;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.widget_box #wp-calendar caption,
.widget_box #wp-calendar tfoot {
	letter-spacing: .1em;
}
.widget_box #wp-calendar thead th {
	font-size: 110%;
}
.widget_box #wp-calendar tbody td {
	padding: .8em 0;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.widget_box .calendar_box {
	max-width: auto;
	margin: 8% auto 0;
}
.widget_box #wp-calendar caption,
.widget_box #wp-calendar tfoot {
	font-size: 90%;
}
.widget_box #wp-calendar thead th {
	font-size: 90%;
	padding: .8em 0;
}
.widget_box #wp-calendar tbody td {
	font-size: 80%;
	padding: .6em 0;
}
.widget_box #wp-calendar #prev a {
	padding-left: 1em;
}
.widget_box #wp-calendar #next a {
	padding-right: 1em;
}
}


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

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

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

}


