@charset "utf-8";
/* 投稿・アーカイブページ記述用CSSファイル */


/* 投稿がない場合
--------------------------------------------*/
.archive-non {
	text-align: center;
	margin: 5em 0 10em;
}


/* #archive-list
--------------------------------------------*/
.arcbox-thumb {
	height: 60vw;
	margin: 0 0 25px;
}
.arcbox-thumb img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
ul.arcbox-term {
	margin: 0 0 10px;
	display: flex;
	flex-wrap: wrap;
}
.arcbox-term li {
	background: #82A651;
	color: #fff;
	border-radius: 5px;
	font-size: 14px;
	padding: 4px 10px;
	margin: 0 5px 5px 0;
}
.arcbox-exp {
	font-size: 16px;
	line-height: 1.5;
	margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
	.arcbox:not(:last-of-type) {
		margin: 0 0 50px;
	}
}
@media screen and (min-width: 768px) {
	.a-list {
		display: flex;
		flex-wrap: wrap;
	}
	.arcbox {
		width: 30%;
		margin: 80px 5% 0 0;
	}
	.arcbox:nth-child(3n) {
		margin-right: 0;
	}
	.arcbox-thumb {
		height: 250px;
	}
}


/* #archive-nav
--------------------------------------------*/
.a-nav {
	font-size: 22px;
	padding: 2.3em 0 3em;
	font-family: "Roboto Medium", "sans-serif";
}
.a-nav ul.page-numbers {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.a-nav li {
	margin: 0 .5em .7em;
}
.a-nav li .page-numbers {
	background: #486926;
	color: #fff;
	text-decoration: none;
	border: 1px solid #486926;
	width: 2.3em;
	height: 2.3em;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}
.a-nav li .page-numbers.dots {
	background: transparent;
	color: #486926;
	border: none;
	padding: 0 0 .5em;
}
.a-nav a.page-numbers:hover,
.a-nav .page-numbers.current {
	color: #486926;
	background: #fff;
}
.a-nav a.page-numbers.prev::before,
.a-nav a.page-numbers.next::before {
	content: '';
	background-image: url("../image/icon/arrow_next_white.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: .7em;
	height: .7em;
}
.a-nav .page-numbers.prev::before {
	transform: scale(-1,1);
}
.a-nav a.page-numbers.prev:hover::before,
.a-nav a.page-numbers.next:hover::before {
	background-image: url("../image/icon/arrow_next_green.png");
}
@media screen and (min-width: 768px) {
	.a-nav {
		padding: 2.3em 0 7em;
	}
}

/* #archive-term
--------------------------------------------*/
.a-term {
	margin: 50px 0;
	padding: 0 7.7vw;
}
.a-term-list li {
	margin: 0 .6em 1em;
	background: #486926;
	color: #fff;
	padding: .3em 1em .4em;
	border: 1px solid #486926;
	border-radius: 3em;
}
.a-term-list .current,
.a-term-list li:hover {
	color: #486926;
	background: #fff;
}
@media screen and (max-width: 767px) {
	.a-term {
	  overflow-x: auto;
	  overflow-y: hidden;
	  white-space: nowrap;
	}
	.a-term-list {
	  display: inline-flex; /* 横に並べる */
	}

	.a-term-list li {
	  flex: 0 0 auto; /* 要素が折り返さないように */
	}
}
@media screen and (min-width: 768px) {
	.a-term {
		margin: 5em auto 0;
		max-width: 1160px;
		padding: 0 30px;
	}
	.a-term-list {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
}


/* #single
--------------------------------------------*/
.s-block {
	background: #fff;
	padding: 30px 30px 40px;
	margin: 20px 0 0;
}
.s-head {
	margin: 0 0 40px;
}
.s-cont-thumb {
	width: fit-content;
	margin: 0 auto 40px;
}
.s-cont-thumb img {
	min-width: 300px;
}
@media screen and (min-width: 768px) {
	.s-block {
		padding: 90px 30px;
		margin: 50px 0 0;
	}
	.s-head {
		margin: 0 0 50px;
	}
	.s-head-title {
		font-size: 36px;
	}
	.s-cont-thumb {
		margin: 0 auto 50px;
	}
}


/* #single-nav
--------------------------------------------*/
.s-nav {
	margin: 60px 0 100px;
}
.s-nav-list {
	display: flex;
	justify-content: center;
	align-items: center;
}
.s-nav-list a {
	background: #486926;
	border: 1px solid #486926;
	height: 2.7em;	
	display: flex;
	justify-content: center;
	align-items: center;
}
.s-nav-list .back {
	margin: 0 1.6em;
}
.s-nav-list .back a {
	color: #fff;
	text-decoration: none;
	width: 9.4em;
	border-radius: 3em;
}
.s-nav-list .arrow,
.s-nav-list .arrow a {
	width: 2.7em;
	border-radius: 50%;
	margin: 0;
}
.s-nav-list .arrow a::before {
	content: '';
	background: url("../image/icon/arrow_next_white.png") no-repeat center/contain;
	width: .8em;
	height: .8em;
}
.s-nav-list .arrow.prev a::before {
	transform: scale(-1,1);
}
.s-nav-list a:hover {
	background: #fff;
	color: #486926;
}
.s-nav-list .arrow a:hover::before {
	background: url("../image/icon/arrow_next_green.png") no-repeat center/contain;
}
@media screen and (max-width: 389px) {
	.s-nav-list {
		font-size: 4.5vw;
	}
}
@media screen and (min-width: 768px) {
	.s-nav {
		margin: 50px 0 150px;
	}
}


/* #single-relation
--------------------------------------------*/
.s-relation {
	padding: 65px 0 75px;
}
.s-relation-title {
	margin: 0 0 60px;
	color: #323232;
}
@media screen and (min-width: 768px) {
	.s-relation {
		padding: 65px 0 75px;
	}
	.s-relation-title {
		margin: 0;	
	}
}


/* #archive-year
--------------------------------------------*/
.a-year {
	margin: 0 0 1.2em auto;
	width: fit-content;
}
.a-year-select {
	background-color: #fff;
	border: 1px solid;
	border-radius: 2em;
	font-size: 18px;
	color: #486926;
	padding: .5em 2.5em .6em 1.2em;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	background-image: url('../image/icon/arrow_bottom.png');
	background-repeat: no-repeat;
	background-size: 16px auto;
	background-position: right 16px center;
}
@media screen and (max-width: 767px) {
	
}
@media screen and (min-width: 768px) {
	.a-year {
		margin: 3em 0 1.7em auto;
	}
}


/* #information-list
--------------------------------------------*/
.infobox {
	font-size: 16px;
	line-height: 1.7;
	padding: 1em 3em 1em 0;
	border-bottom: 1px solid #BFB1A3;
}
.infobox:first-of-type {
	border-top: 1px solid #BFB1A3;
}
.infobox-inner::after {
	content: '';
	background: url('../image/icon/arrow_green.png') center/cover;
	width: 1.9em;
    height: 1.9em;
    position: absolute;
	bottom: 1.1em;
	right: 0;
}
.infobox:hover .infobox-inner::after {
	background: url('../image/icon/arrow_info.png') center/cover;
}
.infobox:hover .infobox-title {
	color: #82A651;
}
@media screen and (max-width: 767px) {
	.infobox-title {
		font-size: 18px;
	}
}
@media screen and (min-width: 768px) {
	.infobox-content {
		display: flex;
		align-items: baseline;
	}
	.infobox-inner::after {
		top: 50%;
		transform: translateY(-50%);
		bottom: auto;
	}
	.infobox-date {
		width: 6.5em;
		flex-shrink: 0;
	}
}


/* ブロックエディター
--------------------------------------------*/
.s-cont .wp-block-separator {
	position: relative;
	margin: 50px 0;
	border: none;
	height: 9px;
}
.s-cont .wp-block-separator::before {
	content: '';
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 9px;
	background-image: radial-gradient(rgb(205, 219, 185) 40%, transparent 40%);
	background-size: 9px;
	background-repeat: repeat-x;
}
.s-cont h2.wp-block-heading {
	color: #486926;
	font-size: 32px;
	border-bottom: 2px solid #82A651;
	padding: 0 0 15px;
	margin: 50px 0 30px;
}
.s-cont h3.wp-block-heading {
	font-size: 26px;
	margin: 30px 0 5px;
}
.s-cont h4.wp-block-heading {
	font-size: 20px;
	margin: 30px 0 5px;
}
.s-cont h4.wp-block-heading::before {
	content: '●';
	color: #82A651;
	margin-right: 5px;
}
.custom-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.custom-list li {
	line-height: 2;
}
.topics-link {
	margin: 40px 0;
}
.s-cont-main > .topics-link:last-child {
	margin: 40px 0 0;
}
.salon-link {
	margin: 10px 0 0;
}

