@charset "UTF-8";
.selectbtn {
	display: flex;
  	justify-content: flex-end;
  	align-items: center;
}
.selectwrap{
    position: relative;
	margin-bottom: 6rem;
	line-height: 1;
	padding: 0;
	border: 1px solid #D2323C;
	background-color: #FFF;
	border-radius: 0.5rem;
}
.selectwrap::before{
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    background-color: #FFF;
	border-radius: 0 0.5rem 0.5rem 0;
    height: 4rem;
    width: 4rem;
}
@media screen and (max-width: 767.98px) {
	.selectwrap::before{
    	width: 3rem;
    	height: 3rem;
	}
}
.selectwrap::after{
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 1rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.8rem 0.8rem 0 0.8rem;
    border-color: #D2323C transparent transparent transparent; 
}
@media screen and (max-width: 767.98px) {
	.selectwrap::after{
    	right: 10px;
    	border-width: 0.5rem 0.5rem 0 0.5rem;
	}
}
.selectwrap select {
    margin: 0;
    height: 4rem;
    position: relative;
    padding: 0 5rem 0 1rem;
}
@media screen and (max-width: 767.98px) {
	.selectwrap select{
    	height: 3rem;
    	padding: 0 3.5rem 0 1rem;
	}
}
.selectwrap select::-ms-expand {
    display: none;
}


/* ************************
news
************************ */
.news-posts-list {
	display: flex;
  	flex-wrap: wrap;
  	gap: 4rem 2rem;
}
@media screen and (max-width: 767.98px) {
	.news-posts-list {
  		gap: 3rem;
	}
}
.news-posts-item {
	width: calc(25% - 1.5rem);
  	overflow: hidden;
}
@media screen and (max-width: 767.98px) {
	.news-posts-item {
    	width: 100%;
  	}
}
.news-posts-item a {
  	display: block;
}
.news-posts-item-img {
  	border-radius: 2rem;
	margin-bottom: 1rem;
	overflow: hidden;
}
.news-posts-item-img img {
  width: 100%;
  height: 28rem; 
  	-o-object-fit: cover;
  	object-fit: cover;
  	-o-object-position: center center;
  	object-position: center center;
  	transition: transform .6s ease;
}
@media screen and (max-width: 767.98px) {
	.news-posts-item-img img {
  		height: 25rem; 
	}
}
.news-posts-item a:hover .news-posts-item-img img {
	transform: scale(1.1);
}
.news-posts-item-head .time {
	font-size: 1.2rem;
}
@media screen and (max-width: 767.98px) {
	.news-posts-item-head .time {
		font-size: 1.1rem;
	}
}
.newsbox .news-posts .pagination {
	padding-top: 10rem;
  	display: flex;
  	justify-content: center;
  	align-items: center;
}
@media screen and (max-width: 767.98px) {
	.newsbox .news-posts .pagination {
    	padding-top: 4rem;
  	}
}
.newsbox .news-posts .pagination > * {
	margin: 0 1rem;
}
@media screen and (max-width: 767.98px) {
	.newsbox .news-posts .pagination > * {
    	margin: 0 0.4rem;
  	}
}
.newsbox .news-posts .pagination .prev,
.newsbox .news-posts .pagination .next{
	width: 4.5rem!important;
  	height: 4.5rem!important;
  	border-radius: 200rem;
  	border: 1px solid #D2323C;
  	position: relative;
  	display: flex;
  	justify-content: center;
  	align-items: center;
}
@media screen and (max-width: 767.98px) {
	.newsbox .news-posts .pagination .prev,
  	.newsbox .news-posts .pagination .next {
    	width: 2.4rem!important;
    	height: 2.4rem!important;
  	}
}
.newsbox .news-posts .pagination .prev:before,
.newsbox .news-posts .pagination .next:before {
	content: "";
  	display: block;
  	width: 2rem;
  	height: 1rem;
  	background: transparent url(../img/common/icon_arrow01.svg) no-repeat scroll center center/contain;
}
@media screen and (max-width: 767.98px) {
	.newsbox .news-posts .pagination .prev:before,
  	.newsbox .news-posts .pagination .next:before {
    	width: 1.4rem;
    	height: 0.7rem;
  	}
}
.newsbox .news-posts .pagination .prev {
	transform: scaleX(-1);
}
.newsbox .news-posts .pagination .page-numbers {
	width: 6rem;
  	height: 6rem;
  	border-radius: 200rem;
  	border: 1px solid #D2323C;
  	color: #D2323C;
  	display: inline-flex;
  	justify-content: center;
  	align-items: center;
  	font-size: 1.8rem;
  	line-height: 1;
}
@media screen and (max-width: 767.98px) {
	.newsbox .news-posts .pagination .page-numbers {
    	width: 3rem;
    	height: 3rem;
    	font-size: 1.2rem;
  	}
}
.newsbox .news-posts .pagination .page-numbers.current,
.newsbox .news-posts .pagination .page-numbers:hover {
	background-color: #D2323C;
  	color: #FFF;
  	border-color: #D2323C;
}

/* ************************
single
************************ */
#news-detail .news-head {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-head {
    margin-bottom: 4rem;
  }
}
#news-detail .news-head time {
	display: inline-block;
	margin-bottom: 1rem;
}
#news-detail .news-head-title {
  	font-size: 2.6rem;
  	line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
	#news-detail .news-head-title {
		font-size: 1.6rem;
	}
}
#news-detail .btnbox {
	padding-top: 10rem;
}
@media screen and (max-width: 767.98px) {
	#news-detail .btnbox {
    	padding-top: 5rem;
  	}
}
/*記事エディタ関係*/
#news-detail .news-main p {
	margin-bottom: 2rem;
}
#news-detail .news-main p:last-of-type {
	margin-bottom: 0;
}
#news-detail .news-main a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #D2323C;
}
#news-detail .news-main img {
	width: inherit;
	max-width: 100%;
}
#news-detail .news-main .size-full {
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 767px) {
	#news-detail .news-main img {
		max-width: 100%;
		height: auto;
	}
}
.alignnone {
	padding: 0;
	margin: 0px 15px 0 0!important;
}
.aligncenter {
	display: block;
	margin-left: auto!important;
	margin-right: auto!important;
	padding: 0;
}
.alignright {
	float: right;
	display: inline;
	padding: 0;
	margin: 0px 15px 0 0!important;
}
.alignleft {
	float: left;
	display: inline;
	padding: 0;
	margin: 0px 15px 0 0!important;
}
.clear {
	clear: both;
}