@charset "UTF-8";
/* =======================================================================
news
======================================================================= */
.p-news-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
@media screen and (min-width: 768px) {
	.p-news-nav {
		gap: 15px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-nav {
		gap: 8px;
	}
}
.p-news-nav__item {
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #0f2350;
	transition: 0.3s;
}
@media screen and (min-width: 768px) {
	.p-news-nav__item {
		min-height: 50px;
		border-radius: 50px;
		padding: 5px 30px;
		font-size: 1rem;
	}
}
@media screen and (max-width: 767px) {
	.p-news-nav__item {
		min-height: 35px;
		border-radius: 35px;
		padding: 5px 15px;
		font-size: 0.8125rem;
	}
}
.p-news-nav__item.is-on, .p-news-nav__item:hover {
	background-color: #0f2350;
	color: #ffffff;
	text-decoration: none;
}

.p-news-archives {
	display: grid;
}
@media screen and (min-width: 768px) {
	.p-news-archives {
		grid-template-columns: repeat(auto-fill, minmax(346px, 1fr));
		column-gap: 30px;
		row-gap: 60px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-archives {
		row-gap: 15px;
	}
}
.p-news-archives__item {
	transition: opacity 0.3s;
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	background-image: linear-gradient(150deg, #e7f0ed 0%, #c8dde6 70%, #d5e0f9 100%);
}
.p-news-archives__item:hover {
	opacity: 0.7;
	text-decoration: none;
}
@media screen and (min-width: 768px) {
	.p-news-archives__item {
		padding: 60px 30px 30px;
		gap: 20px;
		border-radius: 10px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-archives__item {
		padding: 60px 20px 20px;
		gap: 15px;
		border-radius: 8px;
	}
}

.p-news-archives-datetime {
	position: absolute;
	left: 0;
	top: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 100px;
	min-height: 40px;
	padding: 5px 10px;
	background-color: #ffffff;
	color: #333;
	border-radius: 0 0 8px 0;
}
@media screen and (min-width: 768px) {
	.p-news-archives-datetime {
		font-size: 1rem;
	}
}
@media screen and (max-width: 767px) {
	.p-news-archives-datetime {
		font-size: 0.9375rem;
	}
}
.p-news-archives-datetime:before, .p-news-archives-datetime:after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	position: absolute;
	background-size: 100%;
	background-image: url("../images/common/bg_round.svg");
}
.p-news-archives-datetime:before {
	left: 0;
	bottom: 0;
	transform: translateY(100%) scale(1, 1);
}
.p-news-archives-datetime:after {
	right: 0;
	top: 0;
	transform: translateX(100%) scale(1, 1);
}

.p-news-archives-cat {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 5px;
}
@media screen and (min-width: 768px) {
	.p-news-archives-cat {
		top: 20px;
		right: 30px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-archives-cat {
		top: 20px;
		right: 20px;
	}
}
.p-news-archives-cat > * {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px 10px;
	border: solid 1px #0f2350;
}
@media screen and (min-width: 768px) {
	.p-news-archives-cat > * {
		font-size: 0.875rem;
		min-height: 24px;
		border-radius: 24px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-archives-cat > * {
		font-size: 0.75rem;
		min-height: 20px;
		border-radius: 20px;
	}
}

.p-news-archives-img {
	aspect-ratio: 1.3364485981;
	border-radius: 8px;
	overflow: hidden;
}
.p-news-archives-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.p-news-archives-event-cat {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
@media screen and (min-width: 768px) {
	.p-news-archives-event-cat {
		gap: 10px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-archives-event-cat {
		gap: 5px;
	}
}
.p-news-archives-event-cat > * {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px 20px;
	background-color: #ffffff;
}
.p-news-archives-event-cat > *.online {
	background-color: #ffffff;
}
.p-news-archives-event-cat > *.reception {
	background-color: #ee87b4;
	color: #ffffff;
}
.p-news-archives-event-cat > *.end {
	background-color: #b8b6b2;
	color: #ffffff;
}
@media screen and (min-width: 768px) {
	.p-news-archives-event-cat > * {
		font-size: 1rem;
		min-height: 30px;
		border-radius: 30px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-archives-event-cat > * {
		font-size: 0.8125rem;
		min-height: 24px;
		border-radius: 24px;
	}
}

.p-news-archives-title {
	line-height: 1.55;
}
@media screen and (min-width: 768px) {
	.p-news-archives-title {
		font-size: 1rem;
	}
}
@media screen and (max-width: 767px) {
	.p-news-archives-title {
		font-size: 0.8125rem;
	}
}

.p-news-archives-txt {
	line-height: 1.55;
	color: #333;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
@media screen and (min-width: 768px) {
	.p-news-archives-txt {
		font-size: 1rem;
		max-height: 74.4px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-archives-txt {
		font-size: 0.8125rem;
		max-height: 60.45px;
	}
}

.p-news-archives-btn {
	flex-grow: 3;
	align-items: end;
	display: flex;
	justify-content: end;
}

.p-news-article-heading {
	display: grid;
	justify-content: space-between;
	align-items: start;
}
@media screen and (min-width: 768px) {
	.p-news-article-heading {
		margin-bottom: 40px;
		gap: 30px;
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
	}
}
@media screen and (max-width: 767px) {
	.p-news-article-heading {
		margin-bottom: 30px;
		gap: 20px;
	}
}
.p-news-article-heading__date {
	display: flex;
	align-items: center;
	gap: 20px;
}
@media screen and (min-width: 768px) {
	.p-news-article-heading__date {
		grid-column: 1/2;
		grid-row: 1/2;
	}
}
@media screen and (min-width: 768px) {
	.p-news-article-heading__event {
		grid-column: 2/3;
		grid-row: 1/2;
	}
}
@media screen and (min-width: 768px) {
	.p-news-article-heading__title {
		grid-column: 1/3;
		grid-row: 2/3;
	}
}

.p-news-article-datetime {
	color: #333;
}
@media screen and (min-width: 768px) {
	.p-news-article-datetime {
		font-size: 1rem;
	}
}
@media screen and (max-width: 767px) {
	.p-news-article-datetime {
		font-size: 0.9375rem;
	}
}

.p-news-article-cat {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
@media screen and (min-width: 768px) {
	.p-news-article-cat {
		gap: 15px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-article-cat {
		gap: 5px;
	}
}
.p-news-article-cat > * {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border: solid 1px #0f2350;
}
@media screen and (min-width: 768px) {
	.p-news-article-cat > * {
		padding: 2px 20px;
		font-size: 1rem;
		min-height: 36px;
		border-radius: 36px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-article-cat > * {
		padding: 2px 15px;
		font-size: 0.75rem;
		min-height: 20px;
		border-radius: 20px;
	}
}

.p-news-article-event-cat {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
@media screen and (min-width: 768px) {
	.p-news-article-event-cat {
		gap: 15px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-article-event-cat {
		gap: 5px;
	}
}
.p-news-article-event-cat > * {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border: solid 1px #0f2350;
}
.p-news-article-event-cat > *.online {
	background-color: #ffffff;
}
.p-news-article-event-cat > *.reception {
	background-color: #ee87b4;
	border-color: #ee87b4;
	color: #ffffff;
}
.p-news-article-event-cat > *.end {
	background-color: #b8b6b2;
	border-color: #b8b6b2;
	color: #ffffff;
}
@media screen and (min-width: 768px) {
	.p-news-article-event-cat > * {
		padding: 2px 20px;
		font-size: 1rem;
		min-height: 36px;
		border-radius: 36px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-article-event-cat > * {
		padding: 2px 15px;
		font-size: 0.8125rem;
		min-height: 24px;
		border-radius: 24px;
	}
}

.p-news-article-title {
	font-weight: 700;
	font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	letter-spacing: 0.05em;
	font-weight: 400;
	line-height: 1.55;
}
@media screen and (min-width: 768px) {
	.p-news-article-title {
		font-size: 1.875rem;
	}
}
@media screen and (max-width: 767px) {
	.p-news-article-title {
		font-size: 1.25rem;
	}
}

.p-news-article-links {
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (min-width: 768px) {
	.p-news-article-links {
		gap: 80px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-article-links {
		width: 100%;
		flex-direction: column;
		gap: 15px;
	}
}
.p-news-article-links__item {
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width: 767px) {
	.p-news-article-links__item {
		width: 100%;
	}
}

@media screen and (min-width: 768px) {
	.p-news-pager-wrap {
		padding: 40px 30px;
	}
}
@media screen and (max-width: 767px) {
	.p-news-pager-wrap {
		padding: 25px 20px;
	}
}

.p-news-pager {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 60px;
}
.p-news-pager__pn {
	display: flex;
	align-items: center;
	gap: 20px;
}
.p-news-pager__pn:hover {
	text-decoration: none;
}
@media screen and (min-width: 768px) {
	.p-news-pager__pn .txt {
		font-size: 0.875rem;
	}
}
@media screen and (max-width: 767px) {
	.p-news-pager__pn .txt {
		display: none;
	}
}
.p-news-pager__pn--next {
	flex-direction: row-reverse;
}
.p-news-pager__index {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
	.p-news-pager__index {
		max-width: 160px;
	}
}