@charset "UTF-8";
#header.headbox {
    background-color: rgba(22, 37, 63, 0.9);
}

.selectbtn {
	display: flex;
  	justify-content: flex-start;
  	align-items: center;
}
.selectwrap{
    position: relative;
	margin-right: 1rem;
	margin-bottom: 6rem;
	line-height: 1;
	padding: 0;
	border: 1px solid #2A2A2A;
}
@media screen and (max-width: 767.98px) {
	.selectwrap{
		margin-bottom: 3rem;
	}
}

.selectwrap::before{
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
	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: #16253F 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
************************ */

.newsbox.sctbox {
    padding-top: 0;
}


.news-list .news-list-item a {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid #2A2A2A;
}
@media screen and (max-width: 767.98px) {
	.news-list .news-list-item a {
    	padding: 1.5rem 0;
	}
}

.news-list .news-list-item .news-posts-item-img {
    flex: 0 0 13rem;
    overflow: hidden;
}
.news-list .news-list-item .news-posts-item-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    transition: transform .6s ease;
}
.news-list .news-list-item a:hover .news-posts-item-img img {
    transform: scale(1.05);
}
@media screen and (max-width: 767.98px) {
    .news-list .news-list-item .news-posts-item-img {
        flex: 0 0 9rem;
    }
    .news-list .news-list-item .news-posts-item-img img {
        height: 7rem;
    }
}
.news-list .news-list-item .news-list-body {
    flex: 1 1 auto;
}
.news-list .news-list-item .news-list-body .news-posts-item-head {
    margin: 0 0 0.2rem;
}
.news-list .news-list-item .news-list-body .news-posts-item-head .time {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
}
@media screen and (max-width: 767.98px) {
	.news-list .news-list-item .news-list-body .news-posts-item-head .time {
    	font-size: 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: 5rem;
  	}
}
.newsbox .news-posts .pagination > * {
	margin: 0 0.8rem;
}
@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: 3.5rem!important;
  	height: 3.5rem!important;
  	border-radius: 200rem;
  	border: 1px solid #A67C52;
	background-color: #A67C52;
  	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.5rem!important;
    	height: 2.5rem!important;
  	}
}
.newsbox .news-posts .pagination .prev:before,
.newsbox .news-posts .pagination .next:before {
	content: "";
  	display: block;
  	width: 1.4rem;
  	height: 0.7rem;
  	background: transparent url(../img/common/icon_arrow_w.png) 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.2rem;
    	height: 0.6rem;
  	}
}
.newsbox .news-posts .pagination .prev {
	transform: scaleX(-1);
}
.newsbox .news-posts .pagination .page-numbers {
	width: 5rem;
  	height: 5rem;
  	border-radius: 200rem;
  	border: 1px solid #A67C52;
  	color: #A67C52;
  	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: #A67C52;
  	color: #FFF;
  	border-color: #A67C52;
}

/* ************************
single
************************ */
#news-detail .news-head {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-head {
    margin-bottom: 1rem;
  }
}
#news-detail .news-head time {
	display: inline-block;
}
#news-detail .news-head-title {
    margin-bottom: 5rem;
  	font-size: 2.2rem;
  	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: #A67C52;
}
#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;
}