@charset "utf-8";




/*お知らせ------------------------------------*/

.post-wrapper{
  border-bottom: 1px solid #333;
  padding:0 0 10px;
  
}
.post-index{
  flex: 1;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding:0 40px 0;
}

.post-index .post span,
.post-index .post a{
  display: flex;
  gap: 8px 20px;
  align-items: center;
  justify-content: start;
  text-decoration: none;
  color: #1a1004;
  padding: 10px 0;
  transition: 0.3s ease opacity;
}
.post-index .post a:hover{
  opacity: 0.5;
}

.post-index .post .date{
  min-width: 94px;
}

.post-index .post:last-child{
}

@media only screen and (max-width: 750px) {

  .post-wrapper{
    border-bottom: 1px solid #333;
  padding:0 0 10px;
    
  }
  .post-index{
  padding:20px 0;
  }
  .post-index .post{
	line-height: 1.66;
  }
  .post-index .post span,
  .post-index .post a{
    flex-wrap: wrap;
    gap: 0px 8px;
    padding: 0 0;
  }
  .post-index .post .title{
    width: 100%;
  }
}
@media only screen and (max-width: 750px) {
  .post-index .post .date{
    min-width:fit-content;
  }
}


/*ページネーション------------------------------------*/

.pagenation{
		margin-top: 60px;
}

.pagenation .wp-pagenavi {
	clear: both;
	text-align:center;
}

.pagenation .wp-pagenavi a,
.pagenation .wp-pagenavi span {
	text-decoration: none;
	margin: 0 12px;
	font-weight:400;
	color:#f08200;
	background:#dbdcdc;
	cursor:pointer;
	display:inline-block;
	width:44px;
	line-height:44px;
	border-radius:22px;
	text-decoration:none;
	position:relative;
	transition:0.15s ease;
	top:0;
	
	padding: 0;
	border: none;
}

.pagenation .wp-pagenavi a:hover{
	background:#f08200;
	color:#fff;
}
.pagenation .wp-pagenavi span.current {
	background:#f08200;
	color:#fff;
}

.pagenation .wp-pagenavi .nextpostslink,
.pagenation .wp-pagenavi .nextpostslink:hover,
.pagenation .wp-pagenavi .previouspostslink,
.pagenation .wp-pagenavi .previouspostslink:hover{
	background:none;
}

.pagenation .wp-pagenavi .nextpostslink{
	background:url(../images/pagenation-arrow-next.svg) no-repeat center center ;
	background-size:7px 12px;
	margin-right:0;
	padding: 0;
}

.pagenation .wp-pagenavi .nextpostslink:hover{
	background:url(../images/pagenation-arrow-next.svg) no-repeat center center ;
	background-size:7px 12px;
}

.pagenation .wp-pagenavi .previouspostslink{
	background:url(../images/pagenation-arrow-prev.svg) no-repeat center center ;
	background-size:7px 12px;
	margin-left:0;
	padding: 0;
}

.pagenation .wp-pagenavi .previouspostslink:hover{
	background:url(../images/pagenation-arrow-prev.svg) no-repeat center center ;
	background-size:7px 12px;
}


@media only screen and (max-width:860px){
	.pagenation{
		margin-top: 30px;
	}
	.pagenation .wp-pagenavi {
		white-space: nowrap;
		position: relative;
	}
	.pagenation .wp-pagenavi .sfwppa-link-next{
		width:25px;
	}
	.pagenation .wp-pagenavi .previouspostslink{
		width:25px;
	}
}




