@charset "UTF-8";
/* ---------------------------------------
  最新情報
-----------------------------------------*/
/* sec_news
--------------------------------*/
#sec_news {
	padding: 5rem 0 10rem;
}
@media screen and (max-width: 767px) {
	#sec_news {
		padding: 10rem 0 15rem;
	}
}

@media screen and (min-width: 768px) {
	.news_archive .news_head {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		gap: 5rem;
	}
	.news_archive .news_head .cate_wrap {
		display: flex;
		align-items: center;
		gap: 1.6rem;
	}
}
@media screen and (min-width: 768px) {
	.news_archive .news_head .sec_ttl {
		flex: 0 0 auto;
	}
}
@media screen and (max-width: 767px) {
	.news_archive .news_head .sec_ttl {
		text-align: center;
	}
}
@media screen and (max-width: 767px) {
	.news_archive .category {
		margin-top: 10rem;
	}
}
.news_archive .category .category_list {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.8rem;
}
@media screen and (max-width: 767px) {
	.news_archive .category .category_list {
		gap: 3rem 1.6rem;
	}
}
.news_archive .category .category_list .item {
	font-size: 1.1rem;
	line-height: 1.4545454545;
	letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
	.news_archive .category .category_list .item {
		font-size: 2.2rem;
	}
	.news_archive .category .category_list .item:nth-child(1) a, .news_archive .category .category_list .item:nth-child(2) a {
		min-width: 32.7rem;
	}
}
.news_archive .category .category_list .item a {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 10.8rem;
	padding: 0.3rem 0.6rem;
	border: 1px solid #6B6460;
	border-radius: 1.2rem;
	transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
	.news_archive .category .category_list .item a {
		min-width: 21.2rem;
		padding: 1.4rem 2rem;
		border-radius: 3.2rem;
	}
}
.news_archive .category .category_list .item a._important {
	color: #CE433D;
	border-color: #F4D7D6;
}
.news_archive .category .category_list .item a._news {
	color: #6A6360;
	border-color: #DFDEDD;
}
.news_archive .category .category_list .item a._new {
	color: #79C300;
	border-color: #E3F2D2;
}
.news_archive .category .category_list .item a._event {
	color: #41b6e6;
	border-color: #D5F0F9;
}
.news_archive .category .category_list .item.is-current a._all, .news_archive .category .category_list .item a:hover._all {
	color: #ffffff;
	background-color: #6A6360;
}
.news_archive .category .category_list .item.is-current a._important, .news_archive .category .category_list .item a:hover._important {
	background-color: #F4D7D6;
}
.news_archive .category .category_list .item.is-current a._news, .news_archive .category .category_list .item a:hover._news {
	background-color: #DFDEDD;
}
.news_archive .category .category_list .item.is-current a._new, .news_archive .category .category_list .item a:hover._new {
	background-color: #E3F2D2;
}
.news_archive .category .category_list .item.is-current a._event, .news_archive .category .category_list .item a:hover._event {
	background-color: #D5F0F9;
}
.news_archive .sort {
	width: fit-content;
	min-width: 20rem;
	margin-left: auto;
	position: relative;
	z-index: 2;
}
@media screen and (max-width: 767px) {
	.news_archive .sort {
		width: 100%;
		margin-top: 3.5rem;
	}
}
.news_archive .sort_toggle {
	width: 100%;
	display: flex;
	align-items: center;
	color: #6B6460;
	font-size: 1.6rem;
	letter-spacing: 0.12em;
	padding: 0.5rem 4.5rem 0.5rem 3.5rem;
	background: #fff;
	border: 1px solid #C9C9C9;
	border-radius: 2.2rem;
	cursor: pointer;
	position: relative;
}
@media screen and (max-width: 767px) {
	.news_archive .sort_toggle {
		justify-content: center;
		font-size: 2.8rem;
		padding: 2rem 8rem;
		border-width: 0.2rem;
		border-radius: 5rem;
	}
}
.news_archive .sort_toggle::after {
	content: "";
	width: 1rem;
	aspect-ratio: 1/1;
	border-right: 1px solid #6B6460;
	border-bottom: 1px solid #6B6460;
	rotate: 45deg;
	position: absolute;
	right: 2.7rem;
	translate: 0 -30%;
	transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
	.news_archive .sort_toggle::after {
		width: 1.8rem;
		right: 3.4rem;
	}
}
.news_archive .sort_menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.2s ease;
}
.news_archive .sort_menu_inner {
	overflow: hidden;
	min-height: 0;
	background-color: #EBEBEB;
	border: 1px solid #C9C9C9;
	border-top: none;
	border-radius: 0 0 2.2rem 2.2rem;
	opacity: 0;
	transition: opacity 0.15s ease;
}
@media screen and (max-width: 767px) {
	.news_archive .sort_menu_inner {
		border-width: 0.2rem;
		border-radius: 0 0 5rem 5rem;
	}
}
.news_archive .sort_menu_inner button {
	width: 100%;
	text-align: left;
	color: #6B6460;
	font-size: 1.6rem;
	padding: 0.5rem 3.5rem;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	.news_archive .sort_menu_inner button {
		text-align: center;
		font-size: 2.8rem;
		padding: 2rem 3.5rem;
	}
}
.news_archive .sort_menu_inner button[aria-selected=true] {
	display: none;
}
.news_archive .sort.is-open .sort_toggle {
	border-bottom-color: transparent;
	border-radius: 2.2rem 2.2rem 0 0;
}
@media screen and (max-width: 767px) {
	.news_archive .sort.is-open .sort_toggle {
		border-radius: 5rem 5rem 0 0;
	}
}
.news_archive .sort.is-open .sort_toggle::after {
	translate: 0 20%;
	scale: -1 -1;
}
.news_archive .sort.is-open .sort_menu {
	grid-template-rows: 1fr;
}
.news_archive .sort.is-open .sort_menu_inner {
	opacity: 1;
}
.news_archive .news_list {
	border-top: 1px solid rgba(107, 100, 96, 0.5);
	margin-top: 5rem;
}
@media screen and (max-width: 767px) {
	.news_archive .news_list {
		margin-top: 8rem;
	}
}
.news_archive .news_list .item {
	border-bottom: 1px solid rgba(107, 100, 96, 0.5);
}
.news_archive .news_list .item a {
	display: flex;
	align-items: flex-start;
	gap: 0 1rem;
	padding: 2.6rem 6rem 2.6rem 0;
	position: relative;
}
@media screen and (max-width: 767px) {
	.news_archive .news_list .item a {
		flex-wrap: wrap;
		padding: 3rem 7rem 3rem 0;
	}
}
.news_archive .news_list .item a::after {
	content: "";
	width: 0.8rem;
	aspect-ratio: 1/1;
	border-top: 1px solid #6B6460;
	border-right: 1px solid #6B6460;
	rotate: 45deg;
	position: absolute;
	right: 3rem;
	top: 50%;
	translate: 0 -50%;
}
@media screen and (max-width: 767px) {
	.news_archive .news_list .item a::after {
		width: 2rem;
		border-width: 0.3rem;
		right: 1rem;
	}
}
.news_archive .news_list .item .meta {
	flex: 0 0 auto;
	width: 22.8rem;
	display: flex;
	align-items: flex-start;
	gap: 0 1rem;
}
@media screen and (max-width: 767px) {
	.news_archive .news_list .item .meta {
		width: 100%;
		gap: 0 1.5rem;
	}
}
.news_archive .news_list .item .meta .date {
	flex: 0 0 auto;
	width: 9rem;
	font-size: 1.3rem;
	line-height: 1.5384615385;
	margin-top: 0.2rem;
}
@media screen and (max-width: 767px) {
	.news_archive .news_list .item .meta .date {
		width: 12rem;
		font-size: 2rem;
	}
}
.news_archive .news_list .item .meta .cate {
	flex: 1 1 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 1.1rem;
	line-height: 1.4545454545;
	letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
	.news_archive .news_list .item .meta .cate {
		font-size: 2rem;
		line-height: 1.2;
	}
}
.news_archive .news_list .item .meta .cate span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 10.8rem;
	padding: 0.4rem 0.6rem;
	background-color: #DFDEDD;
	border-radius: 1.2rem;
}
@media screen and (max-width: 767px) {
	.news_archive .news_list .item .meta .cate span {
		min-width: 20rem;
		padding: 0.6rem 1rem;
		border-radius: 1.8rem;
	}
}
.news_archive .news_list .item .meta .cate span._important {
	color: #CE433D;
	background-color: #F4D7D6;
}
.news_archive .news_list .item .meta .cate span._news {
	color: #6A6360;
	background-color: #DFDEDD;
}
.news_archive .news_list .item .meta .cate span._new {
	color: #79C300;
	background-color: #E3F2D2;
}
.news_archive .news_list .item .meta .cate span._event {
	color: #41b6e6;
	background-color: #D5F0F9;
}
.news_archive .news_list .item .ttl {
	flex: 0 1 auto;
	font-size: 1.5rem;
	line-height: 1.6;
	letter-spacing: 0.09em;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
	.news_archive .news_list .item .ttl {
		font-size: 2.8rem;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		white-space: unset;
		margin-top: 1em;
	}
}
.news_archive .news_list .item .ttl::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #6B6460;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease;
}
@media (any-hover: hover) {
	.news_archive .news_list .item a:hover .ttl::after {
		transform: scaleX(1);
	}
}

@media screen and (min-width: 768px) {
	.news_post .post_head {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
	}
	.news_post .post_head .ttl_wrap {
		width: 79.3rem;
	}
}
.news_post .post_head .meta {
	display: flex;
	align-items: flex-start;
	gap: 0 1rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_head .meta {
		gap: 0 1.5rem;
	}
}
.news_post .post_head .meta .date {
	flex: 0 0 auto;
	width: 6.75em;
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 1;
	letter-spacing: 0.07em;
	position: relative;
	margin-top: 0.7rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_head .meta .date {
		font-size: 2.6rem;
	}
}
.news_post .post_head .meta .cate {
	flex: 1 1 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	color: #ffffff;
	font-size: 1.1rem;
	line-height: 1.4545454545;
	letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
	.news_post .post_head .meta .cate {
		font-size: 2rem;
		line-height: 1.2;
	}
}
.news_post .post_head .meta .cate span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 10.8rem;
	padding: 0.3rem 0.6rem;
	border: 1px solid #6B6460;
	border-radius: 1.2rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_head .meta .cate span {
		min-width: 21.2rem;
		padding: 1.4rem 2rem;
		border-radius: 3.2rem;
	}
}
.news_post .post_head .meta .cate span._important {
	color: #CE433D;
	border-color: #F4D7D6;
	background-color: #F4D7D6;
}
.news_post .post_head .meta .cate span._news {
	color: #6A6360;
	border-color: #DFDEDD;
	background-color: #DFDEDD;
}
.news_post .post_head .meta .cate span._new {
	color: #79C300;
	border-color: #E3F2D2;
	background-color: #E3F2D2;
}
.news_post .post_head .meta .cate span._event {
	color: #41b6e6;
	border-color: #D5F0F9;
	background-color: #D5F0F9;
}
.news_post .post_head .ttl {
	font-size: 3rem;
	line-height: 1.5;
	letter-spacing: 0.08em;
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	margin-top: 2rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_head .ttl {
		font-size: 4.2rem;
	}
}
.news_post .post_head .tag {
	max-height: 5.3rem;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 1.1rem;
	line-height: 1.4545454545;
	letter-spacing: 0.13em;
	margin-top: 2rem;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	.news_post .post_head .tag {
		max-height: 10.8rem;
		font-size: 2.2rem;
		line-height: 1.1818181818;
		gap: 1.2rem;
		margin-top: 4rem;
	}
}
.news_post .post_head .tag span {
	padding: 0.3rem 1rem 0.5rem;
	background-color: #E1E0DF;
	border-radius: 1.2rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_head .tag span {
		padding: 1rem 2rem;
		border-radius: 2.1rem;
	}
}
.news_post .post_share {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media screen and (min-width: 768px) {
	.news_post .post_share {
		width: 32rem;
		margin-top: 5rem;
	}
}
@media screen and (max-width: 767px) {
	.news_post .post_share {
		margin: 9rem 0 0;
	}
}
.news_post .post_share .txt {
	font-size: 1.2rem;
	line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
	.news_post .post_share .txt {
		font-size: 2.4rem;
		line-height: 1.4583333333;
	}
}
.news_post .post_share .txt a {
	display: inline-block;
	padding-left: 3rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	.news_post .post_share .txt a {
		padding-left: 6rem;
	}
}
.news_post .post_share .txt a::before {
	content: "";
	width: 2rem;
	aspect-ratio: 1/1;
	background: url(../img/common/share_ico.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_share .txt a::before {
		width: 3.5rem;
	}
}
.news_post .post_share .sns {
	display: flex;
	align-items: center;
	gap: 1rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_share .sns {
		gap: 2rem;
	}
}
.news_post .post_share .sns > li {
	line-height: 1;
}
.news_post .post_share .sns > li a {
	display: block;
}
.news_post .post_share .sns > li img {
	max-width: inherit;
	width: 2.5rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_share .sns > li img {
		width: 5rem;
	}
}
.news_post .post_main {
	max-width: 93.6rem;
	margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_main {
		margin-top: 8rem;
	}
}
.news_post .post_main .eyecatch .img {
	text-align: center;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .eyecatch .img {
		margin: 0 -4rem;
	}
}
.news_post .post_main .eyecatch .img img {
	border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .eyecatch .img img {
		border-radius: 0;
	}
}
.news_post .post_main .eyecatch h2 {
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.5;
	letter-spacing: 0.09em;
	margin: 3rem 0 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .eyecatch h2 {
		font-size: 5.6rem;
		margin: 6rem 0 0;
	}
	.news_post .post_main .eyecatch h2 + p {
		margin-top: 3rem;
	}
}
.news_post .post_main .eyecatch p {
	text-align: justify;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: 0.09em;
	margin: 1.5rem 0 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .eyecatch p {
		font-size: 2.8rem;
		margin: 3rem 0 0;
	}
}
.news_post .post_main .block_index {
	padding: 4.5rem 5rem;
	border: 0.2rem solid #79C300;
	border-radius: 1.8rem;
	margin: 10rem 0 4rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_index {
		padding: 10rem 2rem 10rem 5rem;
		border: 0.6rem solid #79C300;
		border-radius: 3.4rem;
		margin: 15rem 0 10rem;
	}
}
.news_post .post_main .block_index .ttl {
	color: #79C300;
}
.news_post .post_main .block_index .ttl span {
	display: inline-block;
}
.news_post .post_main .block_index .ttl .ja {
	font-weight: 500;
	font-size: 1.7rem;
	line-height: 1.0588235294;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_index .ttl .ja {
		font-size: 3.4rem;
	}
}
.news_post .post_main .block_index .ttl .ja::after {
	content: "";
	display: inline-block;
	vertical-align: bottom;
	width: 1px;
	height: 1.8rem;
	background-color: #79C300;
	margin: 0 1rem 0 1.3rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_index .ttl .ja::after {
		height: 3.6rem;
		margin: 0 2rem 0 2.6rem;
	}
}
.news_post .post_main .block_index .ttl .en {
	font-weight: 600;
	font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_index .ttl .en {
		font-size: 2.8rem;
	}
}
.news_post .post_main .block_index ol {
	counter-reset: index_item;
	margin-top: 2rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_index ol {
		margin-top: 4rem;
	}
}
.news_post .post_main .block_index ol li {
	position: relative;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: 0.09em;
	padding-left: 3em;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_index ol li {
		font-size: 2.8rem;
	}
}
.news_post .post_main .block_index ol li + li {
	margin-top: 1em;
}
.news_post .post_main .block_index ol li:before {
	content: counter(index_item, decimal-leading-zero) ".";
	counter-increment: index_item;
	position: absolute;
	left: 0;
}
.news_post .post_main .block_index ol li a {
	display: block;
}
@media (any-hover: hover) {
	.news_post .post_main .block_index ol li a {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	.news_post .post_main .block_index ol li a:hover {
		opacity: 0.7;
	}
}
.news_post .post_main .block_main .block_txt, .news_post .post_main .block_main .wp-block-group {
	padding: 5rem 0;
	position: relative;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt, .news_post .post_main .block_main .wp-block-group {
		padding: 8rem 0;
	}
}
.news_post .post_main .block_main .block_txt::after, .news_post .post_main .block_main .wp-block-group::after {
	content: "";
	display: block;
	block-size: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.news_post .post_main .block_main .block_txt > *:first-child, .news_post .post_main .block_main .block_txt .wp-block-group__inner-container > *:first-child, .news_post .post_main .block_main .wp-block-group > *:first-child, .news_post .post_main .block_main .wp-block-group .wp-block-group__inner-container > *:first-child {
	margin-top: 0;
}
.news_post .post_main .block_main .block_txt > *:last-child, .news_post .post_main .block_main .block_txt .wp-block-group__inner-container > *:last-child, .news_post .post_main .block_main .wp-block-group > *:last-child, .news_post .post_main .block_main .wp-block-group .wp-block-group__inner-container > *:last-child {
	margin-bottom: 0;
}
.news_post .post_main .block_main .block_txt:nth-child(even)::before, .news_post .post_main .block_main .wp-block-group:nth-child(even)::before {
	content: "";
	width: 100vw;
	height: 100%;
	background-color: rgba(106, 100, 96, 0.1);
	position: absolute;
	left: calc((100vw - 93.6rem) / 2 * -1);
	top: 0;
	z-index: -1;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt:nth-child(even)::before, .news_post .post_main .block_main .wp-block-group:nth-child(even)::before {
		width: calc(100% + 8rem);
		left: -4rem;
	}
}
.news_post .post_main .block_main .block_txt p, .news_post .post_main .block_main .wp-block-group p {
	text-align: justify;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: 0.09em;
	margin: 1rem 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt p, .news_post .post_main .block_main .wp-block-group p {
		font-size: 2.8rem;
		line-height: 2;
		margin: 4rem 0;
	}
}
.news_post .post_main .block_main .block_txt p + p, .news_post .post_main .block_main .wp-block-group p + p {
	margin-top: 2rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt p + p, .news_post .post_main .block_main .wp-block-group p + p {
		margin-top: 4rem;
	}
}
.news_post .post_main .block_main .block_txt p > a, .news_post .post_main .block_main .wp-block-group p > a {
	color: #79C300;
	text-decoration: underline;
}
@media (any-hover: hover) {
	.news_post .post_main .block_main .block_txt p > a, .news_post .post_main .block_main .wp-block-group p > a {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	.news_post .post_main .block_main .block_txt p > a:hover, .news_post .post_main .block_main .wp-block-group p > a:hover {
		opacity: 0.7;
	}
}
.news_post .post_main .block_main .block_txt h2, .news_post .post_main .block_main .wp-block-group h2 {
	position: relative;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.5;
	letter-spacing: 0.09em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #C9C9C9;
	margin: 4rem 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt h2, .news_post .post_main .block_main .wp-block-group h2 {
		font-size: 4.2rem;
		margin: 6rem 0;
	}
}
.news_post .post_main .block_main .block_txt h3, .news_post .post_main .block_main .wp-block-group h3 {
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 2;
	letter-spacing: 0.09em;
	margin: 2rem 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt h3, .news_post .post_main .block_main .wp-block-group h3 {
		font-size: 3.2rem;
		line-height: 1.75;
		margin: 5rem 0;
	}
}
.news_post .post_main .block_main .block_txt > figure, .news_post .post_main .block_main .wp-block-group > figure {
	margin: 3rem 0;
}
.news_post .post_main .block_main .block_txt figure img, .news_post .post_main .block_main .wp-block-group figure img {
	border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt figure img, .news_post .post_main .block_main .wp-block-group figure img {
		border-radius: 2.2rem;
	}
}
.news_post .post_main .block_main .block_txt figure figcaption, .news_post .post_main .block_main .wp-block-group figure figcaption {
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt figure figcaption, .news_post .post_main .block_main .wp-block-group figure figcaption {
		font-size: 2.4rem;
	}
}
.news_post .post_main .block_main .block_txt ul, .news_post .post_main .block_main .wp-block-group ul {
	margin: 1rem 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt ul, .news_post .post_main .block_main .wp-block-group ul {
		margin: 6rem 0;
	}
}
.news_post .post_main .block_main .block_txt ul li, .news_post .post_main .block_main .wp-block-group ul li {
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 2.6153846154;
	letter-spacing: 0.09em;
	padding-left: 0.5em;
	text-indent: -0.5em;
	position: relative;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt ul li, .news_post .post_main .block_main .wp-block-group ul li {
		font-size: 2.8rem;
		line-height: 2;
	}
}
.news_post .post_main .block_main .block_txt ul li:before, .news_post .post_main .block_main .wp-block-group ul li:before {
	content: "・";
}
.news_post .post_main .block_main .block_txt ol, .news_post .post_main .block_main .wp-block-group ol {
	counter-reset: list_item;
	margin: 1rem 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt ol, .news_post .post_main .block_main .wp-block-group ol {
		margin: 6rem 0;
	}
}
.news_post .post_main .block_main .block_txt ol li, .news_post .post_main .block_main .wp-block-group ol li {
	position: relative;
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 2.6153846154;
	letter-spacing: 0.09em;
	padding-left: 1.5em;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt ol li, .news_post .post_main .block_main .wp-block-group ol li {
		font-size: 2.8rem;
		line-height: 2;
	}
}
.news_post .post_main .block_main .block_txt ol li:before, .news_post .post_main .block_main .wp-block-group ol li:before {
	content: counter(list_item);
	counter-increment: list_item;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.9rem;
	line-height: 1;
	letter-spacing: 0;
	width: 1.3rem;
	height: 1.3rem;
	border: 1px solid #6B6460;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 1.1rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt ol li:before, .news_post .post_main .block_main .wp-block-group ol li:before {
		width: 2.7rem;
		height: 2.7rem;
		font-size: 2.1rem;
		top: 1.5rem;
	}
}
.news_post .post_main .block_main .block_txt .btn, .news_post .post_main .block_main .wp-block-group .btn {
	margin: 2rem 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt .btn, .news_post .post_main .block_main .wp-block-group .btn {
		text-align: center;
		margin: 8rem 0;
	}
}
.news_post .post_main .block_main .block_txt .img_col, .news_post .post_main .block_main .wp-block-group .img_col {
	display: flex;
	align-items: center;
	gap: 2.4rem;
	margin: 3rem 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt .img_col, .news_post .post_main .block_main .wp-block-group .img_col {
		flex-direction: column-reverse;
	}
}
.news_post .post_main .block_main .block_txt .img_col > *, .news_post .post_main .block_main .wp-block-group .img_col > * {
	width: 45.6rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt .img_col > *, .news_post .post_main .block_main .wp-block-group .img_col > * {
		width: 100%;
	}
}
.news_post .post_main .block_main .block_txt .img_col .txt_wrap, .news_post .post_main .block_main .wp-block-group .img_col .txt_wrap {
	padding-left: 1.6rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt .img_col .txt_wrap, .news_post .post_main .block_main .wp-block-group .img_col .txt_wrap {
		padding: 0;
	}
}
.news_post .post_main .block_main .block_txt .img_col .txt_wrap > *:first-child, .news_post .post_main .block_main .wp-block-group .img_col .txt_wrap > *:first-child {
	margin-top: 0;
}
.news_post .post_main .block_main .block_txt .img_col._reverse, .news_post .post_main .block_main .wp-block-group .img_col._reverse {
	flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt .img_col._reverse, .news_post .post_main .block_main .wp-block-group .img_col._reverse {
		flex-direction: column-reverse;
	}
}
.news_post .post_main .block_main .block_txt .img_col._reverse .txt_wrap, .news_post .post_main .block_main .wp-block-group .img_col._reverse .txt_wrap {
	padding-left: 0;
	padding-right: 1.6rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_main .block_main .block_txt .img_col._reverse .txt_wrap, .news_post .post_main .block_main .wp-block-group .img_col._reverse .txt_wrap {
		padding: 0;
	}
}
.news_post .post_main .block_main .block_txt hr, .news_post .post_main .block_main .wp-block-group hr {
	width: 100%;
	height: 1px;
	background-color: #C9C9C9;
	margin: 5rem 0;
}
.news_post .post_foot {
	max-width: 93.6rem;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	margin: 10rem auto 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_foot {
		display: block;
		margin-top: 5rem;
	}
}
.news_post .post_foot .link_wrap {
	display: flex;
	gap: 7rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_foot .link_wrap {
		justify-content: space-between;
	}
}
.news_post .post_foot .link_wrap .link a {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.1em;
	position: relative;
}
@media (any-hover: hover) {
	.news_post .post_foot .link_wrap .link a {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	.news_post .post_foot .link_wrap .link a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.news_post .post_foot .link_wrap .link a {
		font-size: 3.2rem;
	}
}
.news_post .post_foot .link_wrap .link a::after {
	content: "";
	width: 0.8rem;
	aspect-ratio: 1/1;
	border-top: 1px solid #6B6460;
	border-right: 1px solid #6B6460;
	rotate: 45deg;
	position: absolute;
	transition: border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
	.news_post .post_foot .link_wrap .link a::after {
		width: 1.9rem;
		border-width: 0.3rem;
	}
}
.news_post .post_foot .link_wrap .link._prev a {
	padding-left: 3rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_foot .link_wrap .link._prev a {
		padding-left: 4rem;
	}
}
.news_post .post_foot .link_wrap .link._prev a::after {
	rotate: -135deg;
	left: 0;
}
.news_post .post_foot .link_wrap .link._next a {
	padding-right: 3rem;
}
@media screen and (max-width: 767px) {
	.news_post .post_foot .link_wrap .link._next a {
		padding-right: 4rem;
	}
}
.news_post .post_foot .link_wrap .link._next a::after {
	right: 0;
}
@media screen and (max-width: 767px) {
	.news_post .post_foot .btn {
		text-align: center;
		margin-top: 6rem;
	}
	.news_post .post_foot .btn a {
		min-width: 34rem;
		margin: 0 auto;
	}
}