@charset "utf-8";

/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s;
	height: 0.90rem;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	min-width: 1080px;
}

@media screen and (max-width: 640px) {
	header {
		height: 0.60rem;
		min-width: 100%;
		z-index: 1000000000000;
		/* 親に backdrop-filter があると子の backdrop がページまで届かずブラーが見えない */
		background-color: rgba(255, 255, 255, 1);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}
	header::before {
		display: none;
	}
	/* fixed ヘッダー内の nav では backdrop が本文に届きにくいため、開閉時は body 側にブラー層を置く */
	body.menu_active::before {
		content: "";
		position: fixed;
		top: 0.60rem;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 999999999;
		pointer-events: auto;
		backdrop-filter: blur(40px);
	}
}

/* --------- 以下、必要に応じて有効化 ---------- */

/* ヘッダーが上に消える
header.hide {
	transform: translateY(-1.50rem);
}
*/

/* スクロールで表示された状態
header.scr {
background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
*/

header .logo {
	width: 3.74rem;
	position: absolute;
	top: calc(50% - 0.07rem);
	left: 0.25rem;
	transform: translateY(-50%);
	z-index: 1;
}
@media screen and (max-width: 640px) {
	header .logo {
		width: 2.30rem;
		left: 0.15rem;
		top: calc(50% - 0.02rem);
	}
}

header .logo img {
	display: block;
}

@media (hover: hover) {
	header .logo a:hover {
		opacity: 0.7;
	}
}

header .glo_navi {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 0.33rem;
}
@media screen and (max-width: 640px) {
	header .glo_navi {
		position: absolute;
		top: 0.60rem;
		left: 0;
		right: 0;
		width: 100%;
		box-sizing: border-box;
		background-color: transparent;
		gap: 0;
		display: none;
	}
}

header .glo_navi .list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0 0.20rem;
}
@media screen and (max-width: 640px) {
	header .glo_navi .list {
		flex-wrap: wrap;
		margin-top: 0.3rem;
	}
	header .glo_navi .list .link {
		width: 100%;
		text-align: center;
		padding: 0.15rem 0;
	}
}

header .glo_navi .list .link a {
	font-size: 0.15rem;
	font-weight: 500;
	color: #1A1A1A;
}
@media screen and (max-width: 640px) {
	header .glo_navi .list .link a {
		font-size: 0.17rem;
		padding: 0.10rem 0;
	}
}
header .glo_navi .list .link a span {
  position: relative;
}

header .glo_navi .list .link a span::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #1a1a1a;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list .link a span::after {
    content: none;
  }
}

header .glo_navi .list .link a:hover span::after {
  transform-origin: left top;
  transform: scale(1, 1);
}


header .glo_navi .mail_btn {
	width: 1.40rem;
	height: 0.90rem;
}
@media screen and (max-width: 640px) {
	header .glo_navi .mail_btn {
		max-width: 3rem;
		width: 100%;
		height: 0.60rem;
		margin-inline: auto;
		margin-top: 0.3rem;
	}
}

header .glo_navi .mail_btn a {
	display: block;
	height: 100%;
	padding-top: 0.20rem;
	box-sizing: border-box;
	background-color: #79BB00;
	text-align: center;
	color: #FFF;
	font-size: 0.15rem;
	font-weight: 500;
}
@media screen and (max-width: 640px) {
	header .glo_navi .mail_btn a {
		font-size: 0.17rem;
		padding-top: 0.15rem;
		display: flex;
		justify-content: center;
		padding-top: 0;;
		align-items: center;
		border-radius: 0.5rem;
		gap: 0 0.1rem;
		box-shadow: 0 0.02rem 0.10rem rgba(0,0,0,0.3);
	}
}

@media (hover: hover) {
	header .glo_navi .mail_btn a:hover {
		opacity: 0.7;
	}
}

header .glo_navi .mail_btn a::before {
	content: "";
	width: 0.36rem;
	height: 0.24rem;
	background-image: url(../img/common/icon_mail.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	margin: auto;
}
@media screen and (max-width: 640px) {
	header .glo_navi .mail_btn a::before {
		margin: 0;
	}
}

header .glo_navi .mail_btn a span {
	display: block;
	padding-top: 0.10rem;
}
@media screen and (max-width: 640px) {
	header .glo_navi .mail_btn a span {
		padding-top: 0;
	}
}

/*============================
共通
============================*/
main {
	padding-top: 0.90rem;
}
@media screen and (max-width: 640px) {
	main {
		padding-top: 0.60rem;
	}
}

.in {
	max-width: 10.80rem;
}

/* セクションタイトル */
.sec_ttl_wrap {
	text-align: center;
	padding-bottom: 0.60rem;
}
@media screen and (max-width: 640px) {
	.sec_ttl_wrap {
		padding-bottom: 0.40rem;
	}
}

.sec_ttl_wrap .en_txt {
	font-family: "Inter", sans-serif;
	font-size: 0.14rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.1em;
	color: #79BB00;
}
@media screen and (max-width: 640px) {
  .sec_ttl_wrap .en_txt {
    font-size: 0.12rem;
  }
}

.sec_ttl_wrap .sec_ttl {
	font-size: 0.26rem;
	font-weight: 700;
	padding-top: 0.05rem;
}
@media screen and (max-width: 640px) {
  .sec_ttl_wrap .sec_ttl {
    font-size: 0.22rem;
  }
}

.more_btn {
	width: 100%;
	max-width: 2.80rem;
	margin: auto;
}

.more_btn a {
	display: block;
	background-color: #79BB00;
	font-size: 0.16rem;
	font-weight: 500;
	color: #FFF;
	border-radius: 0.06rem;
	position: relative;
	text-align: center;
	padding: 0.20rem 0 0.22rem;
}
@media screen and (max-width: 640px) {
  .more_btn a {
    font-size: 0.14rem;
  }
}
@media (hover: hover) {
	.more_btn a:hover {
		opacity: 0.7;
	}
}

.more_btn a::after {
	content: "";
	width: 0.11rem;
	height: 0.11rem;
	background-image: url(../img/common/icon_arrow_white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0.15rem;
	transform: translateY(-50%);
	transition: all 0.3s;
}

@media (hover: hover) {
	.more_btn a:hover::after {
		right: 0.10rem;
	}
}


/*============================
お知らせ（共通）
============================*/
.news_list {
	padding: 0.60rem 0 1.00rem;
}

.news_list .list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.30rem 0;
	padding-bottom: 0.60rem;
}
@media screen and (max-width: 640px) {
	.news_list .list {
		gap: 0.20rem 0;
		padding-bottom: 0.40rem;
	}
}

.news_list .list .detail {
	width: 100%;
}

.news_list .list .detail a {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 0.40rem;
	color: #1A1A1A;
}
@media screen and (max-width: 640px) {
  .news_list .list .detail a {
    gap: 0 0.20rem;
  }
}

@media (hover: hover) {
	.news_list .list .detail a:hover {
		opacity: 0.7;
	}
}

.news_list .list .detail a .left_wrap {
	width: 2.10rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .news_list .list .detail a .left_wrap {
    width: 100%;
		justify-content: flex-start;
		gap: 0 0.20rem;
  }
}

.news_list .list .detail a .left_wrap .date {
	font-family: "Inter", sans-serif;
	font-size: 0.14rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .news_list .list .detail a .left_wrap .date {
    font-size: 0.12rem;
  }
}

.news_list .list .detail a .left_wrap .cat {
	width: 0.90rem;
	text-align: center;
	color: #FFF;
	border-radius: 0.04rem;
	font-size: 0.12rem;
	font-weight: 500;
	line-height: 1.2;
	padding: 0.04rem 0;
}
@media screen and (max-width: 640px) {
  .news_list .list .detail a .left_wrap .cat {
		padding: 0.03rem 0;
		font-size: 0.11rem;
  }
}

.news_list .list .detail a .left_wrap .cat.news {
	background-color: #00A5BB;
}

.news_list .list .detail a .left_wrap .cat.entry {
	background-color: #E88B00;
}

.news_list .list .detail a .left_wrap .cat.event {
	background-color: #79BB00;
}

.news_list .list .detail a .left_wrap .cat.other {
	background-color: #1A4F85;
}

.news_list .list .detail a .news_ttl {
	width: calc(100% - 2.50rem);
	font-size: 0.16rem;
	font-weight: 500;
	line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .news_list .list .detail a .news_ttl {
    width: 100%;
		margin-top: 0.05rem;
		font-size: 0.14rem;
  }
}

/*============================
コンテンツメニュー（共通）
============================*/
.contents_menu {
	background-color: #F4F9EA;
	padding: 0.80rem;
	position: relative;
}
@media screen and (max-width: 640px) {
  .contents_menu {
    padding: 0.5rem 0;
  }
}

.contents_menu .in::before {
	content: "";
	width: 1.20rem;
	height: 1.14rem;
	background-image: url(../img/common/contents_deco01.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -1.57rem;
	right: -1.00rem;
	z-index: 1;
}
@media screen and (max-width: 640px) {
  .contents_menu .in::before {
		width: 0.80rem;
		height: 0.60rem;
    top: -0.80rem;
    right: 0;
  }
}

.contents_menu .in::after {
	content: "";
	width: 1.17rem;
	height: 1.25rem;
	background-image: url(../img/common/contents_deco02.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: -1.20rem;
	left: -1.00rem;
	z-index: 1;
}
@media screen and (max-width: 640px) {
	.contents_menu .in::after {
		width: 0.80rem;
		height: 0.70rem;
		bottom: -0.80rem;
		left: 0;
	}
}

.contents_menu .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.40rem;
}
@media screen and (max-width: 640px) {
	.contents_menu .list {
		gap: 0.20rem 0;
	}
}

.contents_menu .list .detail {
	width: 100%;
	max-width: 4.80rem;
	background-color: #FFF;
	border-radius: 0.10rem;
	box-shadow: 0 0.03rem 0.10rem rgba(0,0,0,0.2);
}

.contents_menu .list .detail a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0.25rem 0.30rem;
	color: #1A1A1A;
	position: relative;
}
@media screen and (max-width: 640px) {
  .contents_menu .list .detail a {
    padding: 0.15rem 0.25rem;
  }
}

.contents_menu .list .detail a::before {
		content: "";
		width: 100%;
		height: 100%;
		border-radius: 0.10rem;
		border: 0.04rem solid #79BB00;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		box-sizing: border-box;
		opacity: 0;
		transition: all 0.3s;
}

@media (hover: hover) {
	.contents_menu .list .detail a:hover::before {
		opacity: 0.5;
	}
}

.contents_menu .list .detail a .icon {
	width: 100%;
	max-width: 1.05rem;
	text-align: center;
}
@media screen and (max-width: 640px) {
  .contents_menu .list .detail a .icon {
    max-width: 0.60rem;
  }
}

.contents_menu .list .detail a .icon img {
	margin: auto;
	max-height: 0.80rem;
}

.contents_menu .list .detail a .txt_box {
	width: calc(100% - 1.30rem);
}
@media screen and (max-width: 640px) {
  .contents_menu .list .detail a .txt_box {
    width: calc(100% - 0.90rem);
  }
}

.contents_menu .list .detail a .txt_box .ttl {
	font-size: 0.20rem;
	font-weight: 500;
	line-height: 1.8;
}
@media screen and (max-width: 640px) {
  .contents_menu .list .detail a .txt_box .ttl {
    font-size: 0.16rem;
  }
}

.contents_menu .list .detail a .txt_box .ttl span::after {
	content: "";
	width: 0.17rem;
	height: 0.17rem;
	background-image: url(../img/common/icon_arrow_green.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	margin-left: 0.06rem;
	position: relative;
	top: 0.02rem;
}

.contents_menu .list .detail a .txt_box .txt {
	font-size: 0.15rem;
	line-height: 1.8;
	text-align: justify;
}
@media screen and (max-width: 640px) {
  .contents_menu .list .detail a .txt_box .txt {
    font-size: 0.13rem;
		letter-spacing: 0;
		line-height: 1.75;
  }
}

/*============================
フッター
============================*/
footer {
	padding: 0.70rem 0;
	background-image: url(../img/common/footer_bg.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
}
@media screen and (max-width: 640px) {
	footer {
		background-size: 150% auto;
	}
}

footer .footer_navi .list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0 0.24rem;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	padding: 0.20rem 0;
}
@media screen and (max-width: 640px) {
  footer .footer_navi .list {
    gap: 0.15rem 0.15rem;
		justify-content: space-between;
  }
	footer .footer_navi .list .link {
		width: 47%;
	}
}

footer .footer_navi .list .link a {
	font-size: 0.13rem;
	color: #1A1A1A;
}

footer .footer_navi .list .link a:hover {
	color: #437329;
	text-decoration: underline;
}

footer .footer_txt_box {
	padding-top: 0.60rem;
	text-align: center;
}
@media screen and (max-width: 640px) {
	footer .footer_txt_box {
		padding-top: 0.20rem;
	}
}

footer .footer_txt_box .logo {
	width: 3.74rem;
	margin: auto;
}
@media screen and (max-width: 640px) {
  footer .footer_txt_box .logo {
    width: 2.80rem;
  }
}

footer .footer_txt_box .tel_box {
	padding: 0.15rem 0;
	font-family: "Inter", sans-serif;
	font-size: 0.20rem;
	line-height: 1.8;
}
@media screen and (max-width: 640px) {
  footer .footer_txt_box .tel_box {
    font-size: 0.18rem;
  }
}

footer .footer_txt_box .tel_box a {
	color: #1A1A1A;
}

footer .footer_txt_box .txt {
	font-size: 0.14rem;
	line-height: 1.8;
}
@media screen and (max-width: 640px) {
  footer .footer_txt_box .txt {
    font-size: 0.13rem;
  }
}

footer .footer_txt_box .admin_logo {
	padding: 0.30rem 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 0.30rem;
}
@media screen and (max-width: 640px) {
	footer .footer_txt_box .admin_logo {
		display: block;
	}
}

footer .footer_txt_box .admin_logo .admin_logo_ttl {
	font-size: 0.14rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.05em;
	position: relative;
	padding-right: 0.30rem;
}
@media screen and (max-width: 640px) {
	footer .footer_txt_box .admin_logo .admin_logo_ttl {
		font-size: 0.13rem;
		padding-right: 0;
		padding-bottom: 0.10rem;
	}
	footer .footer_txt_box .admin_logo .admin_logo_ttl span {
		border-bottom: 1px solid #1A1A1A;
	}
}

footer .footer_txt_box .admin_logo .admin_logo_ttl::after {
	content: "";
	width: 1px;
	height: 0.30rem;
	background-color: #1A1A1A;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
	footer .footer_txt_box .admin_logo .admin_logo_ttl::after {
		content: none;
	}
}

@media (hover: hover) {
	footer .footer_txt_box .admin_logo .item a:hover {
		opacity: 0.7;
	}
}

footer .footer_txt_box .admin_logo .item img {
	display: block;
	width: 2.00rem;
}
@media screen and (max-width: 640px) {
	footer .footer_txt_box .admin_logo .item img {
		margin: auto;
		padding: 0.10rem 0;
	}
}


footer .footer_txt_box .copyright {
	padding-top: 0.40rem;
	font-size: 0.12rem;
}
@media screen and (max-width: 640px) {
  footer .footer_txt_box .copyright {
    font-size: 0.11rem;
  }
}



/*=======================
CMSページャー
=======================*/
.list_navi_wrap {
	text-align: center;
	font-size: 0.14rem;
	letter-spacing: 0.05em;
	padding:0.50rem 0;
}
@media screen and (max-width: 640px) {
	.list_navi_wrap {
		font-size: 0.14rem;
		padding:0.20rem 0 0.50rem;
	}
}

.list_navi_wrap .wp-pagenavi {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 現在のページ*/
.list_navi_wrap .wp-pagenavi .current {
	display: block;
	font-size: 0.15rem;
	color: #FFF;
	width: 0.40rem;
	line-height: 0;
	padding: 0.18rem 0 0.20rem;
	background-color: #79BB00;
	margin: 0 0.08rem;
}

@media screen and (max-width: 599px) {
	.list_navi_wrap .wp-pagenavi .current {
		font-size: 0.14rem;
		width: 0.30rem;
		padding: 0.15rem 0 0.17rem;
	}
}

/* 数字リンク*/
/*.list_navi_wrap .wp-pagenavi .page.larger {*/
.list_navi_wrap .wp-pagenavi .page {
	display: block;
	font-size: 0.15rem;
	color: #1A1A1A;
	width: 0.40rem;
	line-height: 0;
	padding: 0.18rem 0 0.20rem;
	background-color: #F2F2F2;
	text-decoration: none;
	margin: 0 0.08rem;
}

@media screen and (max-width: 599px) {
	.list_navi_wrap .wp-pagenavi .page {
		font-size: 0.14rem;
		width: 0.30rem;
		padding: 0.15rem 0 0.17rem;
	}

	.list_navi_wrap .wp-pagenavi .page.larger {
		/* display: none; */
	}
}

.list_navi_wrap .wp-pagenavi .page.larger:hover {
	background-color: #79BB00;
	color: #FFF;
}

/* 前のページ */
.list_navi_wrap .wp-pagenavi .previouspostslink {
	display: block;
	font-size: 0.14rem;
	color: #333;
	line-height: 0;
	padding: 0.24rem 0.20rem 0.26rem 0.30rem;
	text-decoration: none;
	margin: 0 0.08rem;
	position: relative;
	border: none;
}

@media screen and (max-width: 599px) {
	.list_navi_wrap .wp-pagenavi .previouspostslink {
		font-size: 0.14rem;
		padding: 0.15rem 0 0.17rem 0.25rem;
		margin-right: 0.15rem;
	}
}

.list_navi_wrap .wp-pagenavi .previouspostslink::before {
	content: "";
	width: 0.10rem;
	height: 0.16rem;
	background-image: url(../img/common/icon_pager_arrow_prev.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	.list_navi_wrap .wp-pagenavi .previouspostslink::before {
		height: 0.14rem;
		top: 46%;
	}
}

.list_navi_wrap .wp-pagenavi .previouspostslink:hover {
	color: #145F81;
}

.list_navi_wrap .wp-pagenavi .previouspostslink:hover::before {
	left: -0.06rem;
}

/* 次のページ */
.list_navi_wrap .wp-pagenavi .nextpostslink {
	display: block;
	font-size: 0.14rem;
	color: #333;
	line-height: 0;
	padding: 0.24rem 0.30rem 0.26rem 0.20rem;
	text-decoration: none;
	margin: 0 0.08rem;
	position: relative;
	border: none;
}

@media screen and (max-width: 599px) {
	.list_navi_wrap .wp-pagenavi .nextpostslink {
		font-size: 0.14rem;
		padding: 0.15rem 0.25rem 0.17rem 0;
		margin-left: 0.15rem;
	}
}

.list_navi_wrap .wp-pagenavi .nextpostslink::after {
	content: "";
	width: 0.10rem;
	height: 0.16rem;
	background-image: url(../img/common/icon_pager_arrow_next.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	.list_navi_wrap .wp-pagenavi .nextpostslink::after {
		height: 0.14rem;
		top: 46%;
	}
}

.list_navi_wrap .wp-pagenavi .nextpostslink:hover {
	color: #79BB00;
}

.list_navi_wrap .wp-pagenavi .nextpostslink:hover::after {
	right: -0.06rem;
}


/* お知らせ詳細ページ下部のナビ */
.news_page_navi_wrap {
	margin-top: 0.60rem;
	padding: 0.35rem 0;
}
@media screen and (max-width: 640px) {
	.news_page_navi_wrap {
		margin-top: 0.20rem;
		padding: 0.35rem 0;
	}
}

.news_page_navi_wrap .list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.news_page_navi_wrap .list .link {
	width: 33.3%;
}

.news_page_navi_wrap .list .link a {
	color: #111;
	font-size: 0.14rem;
	letter-spacing: 0.075em;
	text-decoration: none;
}

@media screen and (max-width: 640px) {
	.news_page_navi_wrap .list .link a {
		font-size: 0.13rem;
		letter-spacing: 0.05em;
	}
}

.news_page_navi_wrap .list .link a:hover {
	color: #79BB00;
}

.news_page_navi_wrap .list .link.prev {
	text-align: right;
}

@media screen and (max-width: 640px) {
	.news_page_navi_wrap .list .link.prev {
		text-align: left;
	}
}

.news_page_navi_wrap .list .link.prev a::before {
	content: "";
	width: 0.20rem;
	height: 0.20rem;
	background-image: url(../img/common/icon_pager_arrow_prev.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	padding-right: 0.08rem;
	position: relative;
	top: 0.05rem;
	left: 0;
	transition: all 0.3s;
}

@media screen and (max-width: 640px) {
	.news_page_navi_wrap .list .link.prev a::before {
		width: 0.12rem;
		height: 0.12rem;
		padding-right: 0.06rem;
		top: 0;
	}
}

.news_page_navi_wrap .list .link.home {
	text-align: center;
}

.news_page_navi_wrap .list .link.home a::before {
	content: "";
	width: 0.20rem;
	height: 0.20rem;
	background-image: url(../img/common/icon_pager_arrow_home.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	padding-right: 0.08rem;
	position: relative;
	top: 0.05rem;
	left: 0;
	transition: all 0.3s;
}

@media screen and (max-width: 640px) {
	.news_page_navi_wrap .list .link.home a::before {
		width: 0.12rem;
		height: 0.12rem;
		top: 0;
	}
}

.news_page_navi_wrap .list .link.next {
	text-align: left;
}

@media screen and (max-width: 640px) {
	.news_page_navi_wrap .list .link.next {
		text-align: right;
	}
}

.news_page_navi_wrap .list .link.next a::after {
	content: "";
	width: 0.20rem;
	height: 0.20rem;
	background-image: url(../img/common/icon_pager_arrow_next.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	padding-left: 0.08rem;
	position: relative;
	top: 0.05rem;
	right: 0;
	transition: all 0.3s;
}

@media screen and (max-width: 640px) {
	.news_page_navi_wrap .list .link.next a::after {
		width: 0.12rem;
		height: 0.12rem;
		padding-left: 0.06rem;
		top: 0;
	}
}