@charset "utf-8";
/* CSS Document */

section.archive.block01 .sec-inner{
	padding-top: 33px;
	padding-bottom: 0;
}

section.archive.block02{
	margin: 69px auto 72px;
	position: relative;
}
section.archive.block02 .sec-inner{
	position: relative;
	padding-top: 33px;
	padding-bottom: 72px;
}
section.archive.block02::before{
    content: "";
    width: 100vw;
    height: calc(100% + 0px);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
    background: #f4f9ed;
}
section.archive.block02 .sec-inner::before {
    content: '';
    position: absolute;
    top: -17px;
    left: 50%;
    width: 100vw;
    height: 34px;
    transform: translateX(-50%);
    z-index: -1;
    background-image: radial-gradient(#f4f9ed 70%, transparent 71%);
    background-size: 34px 34px;
    background-repeat: repeat-x;
    background-position: center top;
}
section.archive.block02 .sec-inner::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 50%;
    width: 100vw;
    height: 34px;
    transform: translateX(-50%);
    z-index: -1;
    background-image: radial-gradient(#f4f9ed 70%, transparent 71%);
    background-size: 34px 34px;
    background-repeat: repeat-x;
    background-position: center top;
}

/**/
section.archive .postLoad{
	padding: 29px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 35px 19px;
}

section.archive .postLoad > p{
	letter-spacing: 0.05em;
	text-align: center;
	margin: 0 auto;
}

section.archive .postLoad article{
	width: calc((100% - (19px * 1)) / 2);
	background-color: #fff;
	border-radius: 15px;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
section.archive .postLoad article::before{
	content: '';
	background: url("../images/common/link_ico_col06.svg") 0 center / contain no-repeat;
	width: 15px;
	height: auto;
	aspect-ratio: 1 / 1;
	position: absolute;
	bottom: 17px;
	right: 8px;
	pointer-events: none;
}
section.archive .postLoad article:hover{
	background-color: #fcf6eb;
}
section.archive .postLoad article:focus-within {
	outline: 2px solid var(--focus-color) !important; /* 他の干渉を防ぐため !important を推奨 */
	outline-offset: 2px;
}
section.archive .postLoad article a{
	text-decoration: none;
}
section.archive .postLoad article a:hover{
	opacity: 1;
	text-decoration: underline;
}
section.archive .postLoad article a.fixLink::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 5;
}

section.archive .postLoad .thumb{
	overflow: hidden;
}
section.archive .postLoad .thumb img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.4s ease;
	transform-origin: center center;
}
section.archive .postLoad article:hover .thumb img{
	transform: scale(1.08);
}
section.archive .postLoad article .meta{
	width: calc( 100% - 20px );
	margin: 0 auto;
	padding: 9px 10px 15px;
	text-align: justify;
}
section.archive .postLoad article .meta .title{
	padding-bottom: 10px;
	border-bottom: 2px solid #f28e1e;
}
section.archive .postLoad article .meta .title a{
	font-size: 92.59%;
	color: #333;
	letter-spacing: 0.05em;
	line-height: 150%;
}
section.archive .postLoad article .meta .date{
	padding-top: 10px;
}
section.archive .postLoad article .meta .category{
	padding-top: 10px;
	position: relative;
}
section.archive .postLoad article .meta .category > a, section.single .meta .category > a{
	width: 65px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid;
	border-radius: 10px;
	border-color: var(--category-color);
	box-sizing: border-box;
	background-color: #fff;
	font-size: 81.48%;
	color: #333;
	letter-spacing: 0.05em;
	text-decoration: none;
	z-index: 10;
}
section.archive .postLoad article .meta .category > a, section.single .meta .category > a{
	pointer-events: none;
}

/**/
section.archive .pager {
    margin: 51px auto 0;
	border-top: 2px solid #e1e1e1;
}
section.archive .pager {
    margin: 51px auto 0;
}
section.single .pager {
    margin: 70px auto 0;
}

section.archive .pager .wp-pagenavi {
    width: calc(100% - 20px);
	margin: 0 auto;
	padding: 25px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 7px;
    position: relative;
}

section.archive .pager .wp-pagenavi a{
	text-decoration: none;
}
section.archive .pager .wp-pagenavi a.page, section.archive .pager .wp-pagenavi span{
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "BIZ UDPGothic", sans-serif;
	font-weight: 700;
	font-size: 92.59%;
	border-radius: 30px;
	background-color: #fffbee;
	color: #876239;
}
section.archive .pager .wp-pagenavi span.current {
    background-color: #876239;
    color: #fff;
}
section.archive .pager .wp-pagenavi a.previouspostslink, section.archive .pager .wp-pagenavi a.nextpostslink {
    position: absolute;
    top: 16px;
    font-size: 112.50%; /*18*/
    font-weight: 500;
    display: flex;
	flex-direction: column;
	align-items: center;
    gap: 9px 0;
	font-size: 85.19%;
	color: #000;
	letter-spacing: 0.1em;
}
section.archive .pager .wp-pagenavi a.previouspostslink {
    left: 0;
}
section.archive .pager .wp-pagenavi a.nextpostslink {
    right: 0;
}
section.archive .pager .wp-pagenavi a.previouspostslink::before, section.archive .pager .wp-pagenavi a.nextpostslink::before{
    content: '';
    display: block;
    background: url("../images/common/arrow_pager.svg") 0 center / contain no-repeat;
    width: 42px;
    height: auto;
    aspect-ratio: 1 / 1;
	filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.15));
}
section.archive .pager .wp-pagenavi a.nextpostslink::before {
	transform: scale(-1, 1);
}

section.archive .pager .wp-pagenavi a.toarchivelink{
	width: 140px;
	height: 45px;
	border: 2px solid #f28e1e;
	box-sizing: border-box;
	border-radius: 23px;
	display: flex;
	align-items: center;
	font-size: 96.30%; /*13*/
	background-color: #fff;
	color: #333;
	letter-spacing: 0.1em;
	position: relative;
	padding-left: 20px;
	filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.15));
}
section.archive .pager .wp-pagenavi a.toarchivelink::before{
    content: '';
    display: block;
    background: url("../images/common/link_ico_col06.svg") 0 center / contain no-repeat;
    width: 22px;
    height: auto;
    aspect-ratio: 1 / 1;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 10px;
}
