@charset "UTF-8";

.selectbtn {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 3rem;
	margin-bottom: 6rem;
}

@media screen and (max-width: 1024px) {
	.selectbtn {
		gap: 2rem;
	}
}

@media screen and (max-width: 767.98px) {
	.selectbtn {
		display: block;

		margin-bottom: 4rem;
	}
}

.selectwrap {
	position: relative;
	width: 20rem;
	line-height: 1;
	padding: 0;
	background-color: #002750;
	border-radius: 200rem;
	overflow: hidden;
	transition:
		transform .3s ease,
		background-color .3s ease;
}
@media screen and (max-width: 1024px) {
	.selectwrap {
		width: 18rem;
	}
}
@media screen and (max-width: 767.98px) {
	.selectwrap {
		width: 100%;
		margin-top: 1.5rem;
	}
	.selectwrap:first-child {
		margin-top: 0;
	}
}

.selectwrap:hover {
	transform: translateY(-.2rem);
}

@media screen and (max-width: 767.98px) {
	.selectwrap:hover {
		transform: none;
	}
}

.selectwrap::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 2.2rem;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: .7rem .6rem 0 .6rem;
	border-color: #FFF transparent transparent transparent;

	transform: translateY(-50%);

	pointer-events: none;
}

@media screen and (max-width: 767.98px) {
	.selectwrap::after {
		right: 1.8rem;
		border-width: .6rem .5rem 0 .5rem;
	}
}

.selectwrap select {
	width: 100%;
	height: 5.6rem;
	margin: 0;
	padding: 0 5rem 0 2.2rem;
	color: #FFF;
	font-size: 1.8rem;
	font-weight: 700;
	background: transparent;
	border: none;
	appearance: none;
	-webkit-appearance: none;
	-webkit-text-fill-color: #FFF;
}

@media screen and (max-width: 1024px) {
	.selectwrap select {
		height: 5.2rem;
		font-size: 1.6rem;
	}
}

@media screen and (max-width: 767.98px) {
	.selectwrap select {
		height: 4.8rem;
		padding: 0 4.5rem 0 2rem;
		font-size: 1.5rem;
	}
}

.selectwrap select option {
	color: #101010;
	background: #FFF;
}

.selectwrap select::-ms-expand {
	display: none;
}


/* =========================================
	news list
========================================= */

.news-posts-list {
	display: block;
}

.news-posts-item {
	width: 100%;
	border-bottom: 1px solid #D8D8D8;
}

.news-posts-item:first-child {
	border-top: none;
}

.news-posts-item a {
	display: block;
	padding: 3rem 0;
	color: #101010;
	transition:
		color .3s ease,
		transform .3s ease,
		opacity .3s ease;
}
@media screen and (max-width: 1024px) {
	.news-posts-item a {
		padding: 2.8rem 0;
	}
}
@media screen and (max-width: 767.98px) {
	.news-posts-item a {
		padding: 2.2rem 0;
	}
}
.news-posts-item a:hover {
	color: #002750;
	transform: translateX(.6rem);
	opacity: 1;
}

@media screen and (max-width: 767.98px) {
	.news-posts-item a:hover {
		transform: none;
	}
}

.news-posts-item-head {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: .8rem;
}

@media screen and (max-width: 767.98px) {
	.news-posts-item-head {
		gap: 1rem;
		margin-bottom: .6rem;
	}
}

.news-posts-item-head .time {
	font-size: 1.6rem;
	line-height: 1.4;
}

@media screen and (max-width: 767.98px) {
	.news-posts-item-head .time {
		font-size: 1.3rem;
	}
}

.news-posts-item-head .cat-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 7.2rem;
	height: 2.4rem;
	padding: 0 1.4rem;
	color: #FFF;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1;
	background: #002750;
	border-radius: 200rem;
	transition:
		background-color .3s ease,
		transform .3s ease;
}

@media screen and (max-width: 767.98px) {
	.news-posts-item-head .cat-label {
		min-width: 6rem;
		height: 2.2rem;
		padding: 0 1rem;
		font-size: 1.1rem;
	}
}

.news-posts-item a:hover .cat-label {
	background-color: #00458d;
}

.news-posts-item-txt {
	font-size: 1.8rem;
	transition:
		text-decoration .3s ease;
}

@media screen and (max-width: 767.98px) {
	.news-posts-item-txt {
		font-size: 1.5rem;
	}
}

/* =========================================
	pagination
========================================= */

.newsbox .news-posts .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.2rem;
	padding-top: 8rem;
}

@media screen and (max-width: 1024px) {
	.newsbox .news-posts .pagination {
		padding-top: 6rem;
	}
}
@media screen and (max-width: 767.98px) {
	.newsbox .news-posts .pagination {
		gap: .8rem;
		padding-top: 4rem;
	}
}

.newsbox .news-posts .pagination > * {
	margin: 0;
}

.newsbox .news-posts .pagination .page-numbers {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	color: #002750;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	background: #FFF;
	border: 1px solid #002750;
	border-radius: 50%;

	transition:
		background .3s ease,
		color .3s ease,
		transform .3s ease;
}

@media screen and (max-width: 767.98px) {
	.newsbox .news-posts .pagination .page-numbers {
		width: 3.4rem;
		height: 3.4rem;

		font-size: 1.4rem;
	}
}

.newsbox .news-posts .pagination .page-numbers.current,
.newsbox .news-posts .pagination .page-numbers:hover {
	color: #FFF;
	background: #002750;
	opacity: 1;
}

.newsbox .news-posts .pagination .page-numbers:hover {
	transform: translateY(-.2rem);
}

@media screen and (max-width: 767.98px) {
	.newsbox .news-posts .pagination .page-numbers:hover {
		transform: none;
	}
}

.newsbox .news-posts .pagination .prev,
.newsbox .news-posts .pagination .next {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	background: #FFF;
	border: 1px solid #002750;
	border-radius: 50%;
	transition:
		background .3s ease,
		transform .3s ease;
}

@media screen and (max-width: 767.98px) {
	.newsbox .news-posts .pagination .prev,
	.newsbox .news-posts .pagination .next {
		width: 3.4rem;
		height: 3.4rem;
	}
}

.newsbox .news-posts .pagination .prev::before,
.newsbox .news-posts .pagination .next::before {
	content: "";
	display: block;
	width: .8rem;
	height: .8rem;
	border-top: 2px solid #002750;
	border-right: 2px solid #002750;
	transition:
		border-color .3s ease;
}

.newsbox .news-posts .pagination .prev::before {
	transform: rotate(-135deg);
}

.newsbox .news-posts .pagination .next::before {
	transform: rotate(45deg);
}

.newsbox .news-posts .pagination .prev:hover,
.newsbox .news-posts .pagination .next:hover {
	background: #002750;
	transform: translateY(-.2rem);
	opacity: 1;
}

@media screen and (max-width: 767.98px) {
	.newsbox .news-posts .pagination .prev:hover,
	.newsbox .news-posts .pagination .next:hover {
		transform: none;
	}
}

.newsbox .news-posts .pagination .prev:hover::before,
.newsbox .news-posts .pagination .next:hover::before {
	border-color: #FFF;
}

/* =========================================
	single
========================================= */

#news-detail .news-head {
	margin-bottom: 4rem;
}
@media screen and (max-width: 767.98px) {
	#news-detail .news-head {
    	margin-bottom: 2rem;
  	}
}

#news-detail .news-head time {
	display: inline-block;
	font-size: 1.6rem;
}

#news-detail .news-head .cat-label {
	display: inline-block;
	background-color: #003062;
	border-radius: 1rem;
	color: #FFF;
	margin-left: 1rem;
	padding: 0 1rem;
	font-size: 1.2rem;
}

#news-detail .news-head-title {
	margin-top: 1rem;
  	font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
	#news-detail .news-head-title {
		font-size: 1.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;
}