@charset "utf-8";
/* -------------------- 共通------------------- */
:root{
	--CREAM01: #A5A5A5;
	--CREAM02: #888 ;
	--GRAY01: #A5A5A5;
	--WHITE:#fff;
	--GRAY04:#000;
	--BEIGE01:#888;
	--PINK01:#888;
}
#site-wrapper{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
main{
	flex: 1;
	width: 100%;
}
@media screen and (min-width: 768px){
	main{
		margin: 60px auto 100px;
	}
	.blog-flex{
		justify-content: space-between;
		margin: 60px auto 100px;
	}
	.blog-flex main{
		flex: 1;
		margin: 0;
	}
	#sidearea{
		width: 220px;
		margin-left: 50px;
	}
}
@media screen and (max-width: 767px){
	main{
		margin: 20px auto 60px;
	}
	.blog-flex{
		margin: 20px auto 80px;
		flex-direction: column;
	}
	.blog-flex main,
	#sidearea{
		width: 100%;
	}
	.blog-flex main{
		margin-bottom: 30px;
	}
}
/* --------------------サイド------------------- */
.side-ttl{
	font-weight: bold;
	background-color: var(--PINK01);
	color: var(--WHITE);
	letter-spacing: 0.12em;
}
.side-tag li a{
	display: block;
	text-align: center;
	border: 1px solid #454545;
	border-radius: 20px;
	background: #fff;
}
.side-tag li a span:before{
	content: "#";
	margin-right: 3px;
}
.side-choose li a{
	display: block;
	position: relative;
	border-bottom: 1px dashed #ababab;
}
.side-choose li a::before{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	content: '\f054';
	color: #ababab;
	position: absolute;
	left: 3px;
	top: 50%;
	transform: translateY(-50%);
}
.side-arrival .slick-arrow {
	transition: all  0.5s;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
.side-arrival .slick-arrow:hover{
	cursor: pointer;
	opacity: 0.7;
}
.side-arrival .prev-arrow {
	left: 0;
}
.side-arrival .next-arrow {
	right: 0;
}
.side-arrival .prev-arrow:before,
.side-arrival .next-arrow:before{
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 20px;
	color: var(--GRAY04);
}
.side-arrival .prev-arrow:before{
	content: "\f053";
}
.side-arrival .next-arrow:before{
	content: "\f054";
}
#searchform{
	position: relative;
}
#searchform input[type="text"],
#searchform input[type="image"] {
	-webkit-appearance: none;
	border: none;
	border-radius: 0;
	font-size: 14px;
	color: #2e2e2e;
	background: #fff;
}
#searchform input[type="text"]{
	width: 100%;
	display: block;
	border: 1px solid #8d8d8d;
	border-radius: 3px;
}
#searchform input[type="image"]{
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (min-width: 768px){
	.side-wrap:not(:last-child){
		margin-bottom: 30px;
	}
	.side-ttl{
		font-size: 18px;
		margin-bottom: 15px;
		padding: 5px 12px;
	}
	.side-tag li{
		margin: 0 10px 8px 0;
	}
	.side-tag li a{
		font-size: 12px;
		padding: 0px 8px;
	}
	#searchform input[type="text"]{
		padding: 10px 31px 8px 8px;
	}
	#searchform input[type="image"]{
		width: 16px;
		right: 9px;
	}
	.side-choose li a{
		padding: 5px 0 5px 20px;
	}
	.side-choose li a::before{
		font-size: 13px;
	}
	.side-choose li a:hover{
		background: var(--CREAM01);
	}
	.side-arrival .slick-list{
		width: 80%;
		margin: 0 auto;
	}
	.side-arrival .slick-slide{
		margin: 0 5px;
	}
	.side-arrival-ttl{
		font-size: 12px;
		margin-top: 3px;
	}
}
@media screen and (max-width: 767px){
	.side-wrap:not(:last-child){
		margin-bottom: 30px;
	}
	.side-ttl{
		font-size: 16px;
		margin-bottom: 8px;
		padding: 5px 0 5px 10px;
	}
	.side-tag li{
		margin: 0 8px 6px 0;
	}
	.side-tag li a{
		font-size: 11px;
		padding: 2px 6px 3px;
	}
	#searchform input[type="text"]{
		padding: 10px 35px 10px 10px;
	}
	#searchform input[type="image"]{
		width: 20px;
		right: 9px;
	}
	.side-choose li a{
		padding: 4px 0 4px 18px;
	}
	.side-choose li a::before{
		font-size: 12px;
	}
	.side-arrival .slick-list{
		width: 80%;
		margin: 0 auto;
	}
	.side-arrival .slick-slide{
		margin: 0 5px;
	}
	.side-arrival-ttl{
		font-size: 12px;
		margin-top: 3px;
	}
}
/* 人気記事 */
.side-popular li a{
	display: flex;
	align-items: center;
	border: 1px solid var(--CREAM01);
	padding: 10px;
}
.side-popular-img{
	width: 30%;
	margin-right: 10px;
}
.side-popular-ttl{
	flex: 1;
	font-size: 12px;
	line-height: 1.4;
}
@media screen and (min-width: 768px){
	.side-popular li:not(:last-child){
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 767px){
	.side-popular li:not(:last-child){
		margin-bottom: 10px;
	}
}

/* ランキング */
.side-ranking{
	counter-reset: original-counter;
}
.side-ranking li{
	position: relative;
	z-index: 0;
}
.side-ranking li::before{
	content: counter(original-counter);
	counter-increment: original-counter;
	color: #fff;
	position: absolute;
	top: 1px;
	left: 8px;
	font-size: 12px;
	z-index: 2;
}
.side-ranking li::after{
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 35px 35px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.side-ranking li:nth-of-type(1)::after{
	border-color: #CBC27D transparent transparent transparent;
}
.side-ranking li:nth-of-type(2)::after{
	border-color: #ADB8BA transparent transparent transparent;
}
.side-ranking li:nth-of-type(3)::after{
	border-color: #CCB39B transparent transparent transparent;
}
/* -------------------- ページナビ------------------- */
/* ページナビ */
#next {
  text-align: center;
}
#next .wp-pagenavi span,
#next a {
  line-height: 1.4;
  color: #000;
  font-weight: bold;
}
#next a:hover{
  color: var(--GRAY01);
  background: none;
}
#next .wp-pagenavi {
  justify-content: center;
  display: flex;
  align-items: center;
}
#next .wp-pagenavi span.current {
    background: #f7f7f7;
    color: #797979;
}
#next .wp-pagenavi span.extend{
	color: #909090;
}
#next span.pages{
	font-size: 14px;
  margin-top: 9px;
  color: #777777;
  font-weight: bold;
  display: block;
}
#next .gallery-navi-hide{
	display: none;
}
#next a.previouspostslink .navi-prev, #next a.nextpostslink .navi-next{
    background: var(--CREAM02);
    color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    padding: 2px 21px 1px;
}
#next a.previouspostslink .navi-prev::before,#next a.nextpostslink .navi-next::before{
		font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	content: "\f104";
	display: inline-block;
  color: #383838;
  font-size: 16px;
  vertical-align: text-bottom;
  color: #fff;
}
#next a.previouspostslink .navi-prev::before{
	content: "\f104";
}
#next a.nextpostslink .navi-next::before{
	content: "\f105";
}
#next .current{
	border: none;
}


/* PCのみ */
@media screen and (min-width:768px) {
#next {
  margin: 70px auto 0;
  }
#next .wp-pagenavi span,
#next a {
  font-size: 18px;
  padding: 18px;
  }
 #next a.previouspostslink .navi-prev, #next a.nextpostslink .navi-next{
    padding: 2px 21px 1px;
}
#next a.previouspostslink .navi-prev::before,#next a.nextpostslink .navi-next::before{
  font-size: 16px;
}
#next span.pages{
	font-size: 14px;
	}
}


/* SPのみ */
@media screen and (max-width:767px) {
#next {
  margin: 40px auto 0;
  }
 #next .wp-pagenavi span,
#next a {
  font-size: 17px;
  padding: 5px 12px;
  }
 #next .wp-pagenavi span.extend{
	padding:0 4px;
}
 #next .wp-pagenavi .first,#next .wp-pagenavi .last{
	 font-size: 15px;
 }
 #next a.previouspostslink .navi-prev, #next a.nextpostslink .navi-next{
    padding: 2px 14px 1px;
}
#next a.previouspostslink .navi-prev::before,#next a.nextpostslink .navi-next::before{
  font-size: 15px;
}
#next span.pages{
	font-size: 13px;
	}
}
/* -------------------- シングル------------------- */
.news-article{
	margin-left: auto;
	margin-right: auto;
}
.post-ttl{
	font-weight: bold;
	margin-bottom: 10px;
}
.post-date{
	text-align: right;
}
#post-link{
	display: flex;
	position: relative;
}
#post-link a{
	color: #000;
}
#previous-link{
	margin-right: auto;
}
#next-link{
	margin-left: auto;
}
.all-post{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.news{
	max-width: 770px;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	gap: 20px;
}
.blog-cats{
	display: flex;
	flex-wrap: wrap;
	gap: 5px 5px;
}
.blog-cats li a{
	width: fit-content;
	padding: 1px 8px;
	display: block;
	background: #eee;
	border-radius: 3px;
	font-size: 12px;
	height: 100%;
	padding-top: 2px;
}
/* .blog-list article:nth-of-type(4){
	display: block;
} */
@media screen and (min-width: 768px){
	.news-article{
		max-width: 770px;
	}
	.post-meta{
		margin-bottom: 15px;
	}
	.post-ttl{
		font-size: 25px;
	}
	.post-date{
		font-size: 16px;
	}
	.post-content{
		margin-bottom: 80px;
	}
	#post-link a{
		font-size: 14px;
	}
}
@media screen and (max-width: 767px){
	.post-meta{
		margin-bottom: 10px;
	}
	.post-ttl{
		font-size: 20px;
	}
	.post-date{
		font-size: 14px;
	}
	.post-content{
		margin-bottom: 60px;
	}
	#post-link a{
		font-size: 13px;
	}
}



/* 追加 */
.blog-flex{
	width: 90%;
	margin-inline:auto;
	max-width: 1000px;
}

@media screen and (min-width: 768px){
	.sec-ttl{
    font-size: 28px;
    letter-spacing: 3px;
    padding-bottom: 8px;
    border-bottom: solid 1px #d6d6d6;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 767px){
	.sec-ttl{
		text-align: center;
    font-size: 20px;
    font-weight: 900;
    margin-top: 30px;
    letter-spacing: 2px;
		margin-bottom: 30px;

	}
}
.blog-list > *+*{
	margin-top: 30px;
}

.blog-list article{
	display: flex;
	gap: clamp(10px,4vw,40px);
}
.blog-list article:not(:last-child){
	border-bottom: 1px dashed #ababab;
	padding-bottom: 30px;
}
.contents-ttl{
		color: #333;
    font-size: clamp(18px,2vw,22px);
    text-decoration: none;
    font-weight: bold;
		margin-bottom: 10px;
}
.contents-ttl > a:hover{
	text-decoration: underline;
}
.datecategory-container{
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
	font-size: clamp(12px,1.4vw,14px);
}

.blog-container{
	flex: 1;
	display: flex;
	flex-direction: column;
}
.blog_thumb{
	width:clamp(100px,15vw,150px);
}

.more-link{
	flex-grow: 1;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	font-weight: bold;
	margin-top: 10px;
}
.more-link > a:hover{
	text-decoration: underline;
}
@media screen and (min-width: 768px){


}
@media screen and (max-width: 767px){


}