/*============================
下層ヘッダー
============================*/
#lower_header {
	background: #f6f6f6;
	/*	padding: 0.20rem 0;*/
	position: fixed;
	top: 0.90rem;
	left: 0;
	width: 100%;
	z-index: 2;
	transition: all 0.5s 0.3s;
}

@media screen and (max-width: 599px) {
	#lower_header {
		top: 0.50rem;
	}
}

/* スクロールで固定時 */
.hide #lower_header {
	transform: translateY(-0.90rem);
}

@media screen and (max-width: 599px) {
	.hide #lower_header {
		transform: translateY(-0.50rem);
	}
}


#lower_header .in {
	display: flex;
}

#lower_header .lower_header_box {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_box {
		width: 100%;
	}
}

/*タイトル*/
#lower_header .lower_header_box .title {
	font-size: 0.22rem;
	font-weight: 600;
	box-sizing: border-box;
	padding: 0.20rem 0.45rem 0.20rem 0;
	/*	padding-right: 0.45rem;*/
	position: relative;
	font-feature-settings: normal;
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_box .title {
		width: 100%;
		font-size: 0.16rem;
		padding: 0.11rem 0.25rem 0.13rem 0;
		line-height: 1.25;
		letter-spacing: 0;
		font-feature-settings: "palt";
	}
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_box .title::after {
		content: '';
		background: url(../img/icon_togle_down_black.svg);
		background-repeat: no-repeat;
		background-size: contain;
		width: 0.14rem;
		height: 0.20rem;
		display: inline-block;
		position: absolute;
		right: 0;
		top: 0.17rem;
	}

	#lower_header .lower_header_box .title.open::after {
		transform: rotate(180deg);
		top: 0.04rem;
	}
	
	/* 開くコンテンツがない場合は非表示 */
	#lower_header .lower_header_box .title.no_toggle::after {
		content: none;
	}
}


#lower_header .lower_header_box .title span {
	border-bottom: 1px solid #666666;
	padding-bottom: 0.14rem;
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_box .title span {
		border-bottom: none;
	}
}

html.mac #lower_header .lower_header_box .title span {
	padding-bottom: 0.19rem;
}

/*リスト要素*/
#lower_header .lower_header_box .list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_box .list {
		display: none;
		width: 100%;
		padding: 0.05rem 0;
	}
}

#lower_header .lower_header_box .list .item {
	display: flex;
	flex-wrap: wrap;
	padding-right: 0.30rem;
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_box .list .item {
		padding-bottom: 0.10rem;
		/*		border-bottom: 1px solid #DDD;*/
	}

	#lower_header .lower_header_box .list .item:last-child {
		margin-bottom: 0;
		border: 0;
	}
}



/*リンク*/
#lower_header .lower_header_box .list .item a {
	text-decoration: none;
	color: #000;
	font-size: 0.15rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_box .list .item a {
		display: block;
		padding-bottom: 0.10rem;
		position: relative;
	}
}

/* 新しいウィンドウ */
#lower_header .lower_header_box .list .item a.new_win span::after {
	content: "";
	display: inline-block;
	width: 0.15rem;
	height: 0.12rem;
	background-image: url(../common/img/icon_newwin_blue.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	margin: 0 0.03rem;
}

#lower_header .lower_header_box .list .item a:hover {
	opacity: 0.7;
}

/* 矢印アイコン */
#lower_header .lower_header_box .list .item i {
	width: 0.11rem;
	height: 0.11rem;
	display: inline-block;
	margin-right: 0.10rem;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all 0.3s;
	left: 0;
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_box .list .item i {
		width: 0.09rem;
		height: 0.09rem;
		top: -0.01rem;
	}
}

#lower_header .lower_header_box .list .item a:hover i {
	left: 0.04rem;
}

/* 下向き矢印のときは下に動く */
#lower_header .lower_header_box .list .item a:hover i.arrow_bottom {
	left: 0;
	top: 0.04rem;
}

/*矢印アイコン（下向き）*/
#lower_header .lower_header_box .list .item i.arrow_bottom {
	background-image: url(../common/img/icon_down_blue.svg);
	top: 0.01rem;
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_box .list .item i.arrow_bottom {
		top: -0.01rem;
	}
}

/* 矢印アイコン（右向き）*/
#lower_header .lower_header_box .list .item i {
	background-image: url(../common/img/icon_right_blue.svg);
}

/*ボタン*/
#lower_header .lower_header_btnbox {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_btnbox {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		display: none;
		width: 100%;
		padding-bottom: 0.10rem;
	}
}


#lower_header .lower_header_btnbox .item {
	display: flex;
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_btnbox .item {
		display: block;
	}
}

#lower_header .lower_header_btnbox .item .list {
	box-sizing: border-box;
	margin-right: 0.10rem;
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_btnbox .item .list {
		box-sizing: border-box;
		margin-right: 0;
		display: block;
	}
}

#lower_header .lower_header_btnbox .item .list:last-child {
	margin-right: 0;
}

#lower_header .lower_header_btnbox .item .list a {
	display: block;
	text-decoration: none;
	padding: 0.10rem 0.15rem;
	color: #000;
	font-size: 0.15rem;
	border: 1px solid #00428e;
	background: #fff;
	border-radius: 0.05rem;
}

@media screen and (max-width: 599px) {
	#lower_header .lower_header_btnbox .item .list a {
		display: block;
		text-decoration: none;
		padding: 0.10rem 0.15rem;
		color: #000;
		font-size: 0.15rem;
		border: 1px solid #00428e;
		background: #fff;
		border-radius: 0.05rem;
	}
}

#lower_header .lower_header_btnbox .item .list a:hover {
	opacity: 0.5;
}

#lower_header .lower_header_btnbox .item .list a span {
	display: inline-block;
}

#lower_header .lower_header_btnbox .item .list i {
	width: 0.18rem;
	padding-right: 0.05rem;
}

#lower_header .lower_header_btnbox .item .list i img {
	width: 0.18rem;
	height: 0.18rem;
	vertical-align: middle;

}




/*============================
下層ボタン共通
============================*/
main {
	padding-top: 0.60rem;
}

@media screen and (max-width: 599px) {
	main {
		padding-top: 0.40rem;
	}
}


/*============================
パンくず
============================*/
#page_navi {
	padding: 0.19rem 0 0.5rem 0;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#page_navi {
		padding: 0.19rem 0 0.19rem 0;
	}
}


#page_navi .list {
	display: flex;
}

#page_navi .list .link {
	font-size: 0.13rem;
	letter-spacing: 0;
	white-space: nowrap;
}

#page_navi .list .link a {
	text-decoration: none;
	color: #999999;
}

#page_navi .list .link a::after {
	content: "";
	display: inline-block;
	margin: 0 0.08rem;
	position: relative;
	width: 0.10rem;
	height: 0.09rem;
	background-image: url(../common/img/sp_menu_arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.7;
}

@media screen and (max-width: 599px) {
	#page_navi .list .link a::after {
		width: 0.08rem;
		height: 0.08rem;
	}
}

/* 現在のページ（長い場合は・・・あり）*/
#page_navi .list .link.current {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: auto;
	color: #999999;
}

@media screen and (max-width: 599px) {
	#page_navi .list .link {
		font-size: 0.11rem;
	}
}


/*============================
下層ボタン共通
============================*/
/*タイトル１*/
.lower_title_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.lower_title_box .lower_title01 {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 0.30rem;
	font-weight: 600;
	line-height: 1.2;
}

@media screen and (max-width: 599px) {
	.lower_title_box .lower_title01 {
		font-size: 0.22rem;
		line-height: 1.45;
	}
}


.lower_title_box .lower_title01 .sub_title {
	font-size: 0.16rem;
	font-weight: 400;
	color: #888888;
	padding-left: 0.10rem;
	position: relative;
	top: -0.02rem;
}

@media screen and (max-width: 599px) {
	.lower_title_box .lower_title01 .sub_title {
		font-size: 0.12rem;
		display: block;
		padding-left: 0;
		margin-top: 0.05rem;
	}
}

/*============================
パンくず
============================*/
/*
#page_navi {
	padding: 0.19rem 0 0.5rem 0;
}

#page_navi .list {
	display: flex;
}

#page_navi .list .link {
	font-size: 0.13rem;
	letter-spacing: 0.075em;
	white-space: nowrap;
}

#page_navi .list .link a {
	text-decoration: none;
	color: #999999;
}

#page_navi .list .link a::after {
	content: ">";
	font-size: 0.13rem;
	display: inline-block;
	margin: 0 0.08rem;
	position: relative;
	top: -0.02rem;
}

#page_navi .list .link.current {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: auto;
	color: #999999;
	font-weight: bold;
}
*/



/*============================
下部リンク
============================*/
#bottom_link .list {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
}

@media screen and (max-width: 599px) {
	#bottom_link .list {
		border-bottom: 0;
	}
}

#bottom_link .list .item {
	width: calc(100% / 2);
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	#bottom_link .list .item {
		width: 100%;
	}
}


#bottom_link .list .item:nth-child(2) {
	border-left: 1px solid #dddddd;
	border-right: 1px solid #dddddd;
}

@media screen and (max-width: 599px) {
	#bottom_link .list .item:nth-child(2) {
		border-left: none;
		border-right: none;
		border-top: 1px solid #dddddd;
		border-bottom: 1px solid #dddddd;
	}
}


#bottom_link .list .item a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	color: #000;
	text-decoration: none;
	align-items: center;
	padding: 0.40rem 0;
	font-size: 0.15rem;
	font-weight: 700;
	line-height: 1.6;
}

@media screen and (max-width: 599px) {
	#bottom_link .list .item a {
		justify-content: flex-start;
		font-size: 0.12rem;
		padding: 0.17rem 0;
	}
}


#bottom_link .list .item a:hover {
	opacity: 0.7;
}

#bottom_link .list .item a .ph_wrap {
	/*	width: 100%;*/
}

@media screen and (max-width: 599px) {
	#bottom_link .list .item a .ph_wrap {
		padding-left: 0.30rem;
		width: 0.8rem;
		box-sizing: border-box;
	}

	#bottom_link .list .item a .ph_wrap img {
		width: 100%;
	}
}


/*JAF*/
#bottom_link .list .item.jaf a .ph_wrap {
	max-width: 1.04rem;
}

/*au*/
#bottom_link .list .item.au a .ph_wrap {
	max-width: 0.77rem;
	width: 100%;
}

#bottom_link .list .item.au a .ph_wrap img {
	width: 100%;
}

/*解除*/
#bottom_link .list .item.kaijo a .ph_wrap img {
	max-width: 0.42rem;
}

/*ローン*/
#bottom_link .list .item.loan a .ph_wrap img {
	max-width: 0.80rem;
}

/*サポカー*/
#bottom_link .list .item.supocar a .ph_wrap img {
	max-width: 0.60rem;
}

#bottom_link .list .item.supocar a .ph_wrap img {
	width: 100%;
}

#bottom_link .list .item a .text {
	box-sizing: border-box;
	padding-left: 0.20rem;
}

/*=========================================
bottom_linkのアイコン設定
=========================================*/
/* キャッシュバック */
#bottom_link .list .item.cashback a::before {
	width: 0.60rem;
	background-image: url(../img/icon_kaijo.png);
}

@media screen and (max-width: 599px) {
	#bottom_link .list .item.cashback a::before {
		height: 0.33rem;
	}
}

/* 月々ムリない支払い */
#bottom_link .list .item.loan a::before {
	width: 0.80rem;
	background-image: url(../img/icon_loan.png);
}

/* サポカー補助金 */
#bottom_link .list .item.supocar a::before {
	width: 0.60rem;
	background-image: url(../img/icon_sapocar.svg);
}

/* JAF */
#bottom_link .list .item.jaf a::before {
	width: 0.80rem;
	background-image: url(../img/icon_jaf.png);
}

/* au */
#bottom_link .list .item.au a::before {
	width: 0.60rem;
	background-image: url(../img/icon_au.svg);
}

/* facebook */
#bottom_link .list .item.fb a::before {
	width: 0.60rem;
	background-image: url(../img/icon_fb.svg);
}

/* 車検のお見積 */
#bottom_link .list .item.shaken a::before {
	width: 0.50rem;
	background-image: url(../img/icon_shaken.svg);
}

/* マイネッツクリーン宣言 */
#bottom_link .list .item.clean a::before {
	width: 0.60rem;
	background-image: url(../img/icon_clean.svg);
}

/* 共通設定 */
#bottom_link .list .item a::before {
	content: "";
	height: 0.60rem;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
}

@media screen and (max-width: 599px) {
	#bottom_link .list .item a::before {
		width: 0.50rem !important;
		height: 0.40rem;
		margin-left: 0.25rem;
	}
}

#lower_bottom_link .list {
	display: flex;
	flex-wrap: wrap;
}

#lower_bottom_link .list .detail:nth-child(2) {
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	#lower_bottom_link .list .detail:nth-child(2) {
		border-left: none;
		border-right: none;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
	}
}


#lower_bottom_link .list .detail a {
	text-decoration: none;
	display: block;
}

@media screen and (max-width: 599px) {
	#lower_bottom_link .list .detail a {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
}

#lower_bottom_link .list .detail a:hover {
	opacity: 0.7
}



#lower_bottom_link .list .detail {
	width: 50%;
	background: #013e89;
	text-align: center;
	padding-top: 0.43rem;
/*	padding-bottom: 0.36rem;*/
	padding-bottom: 0.43rem;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	#lower_bottom_link .list .detail {
		width: 100%;
		padding-top: 0.20rem;
		padding-bottom: 0.20rem;
		box-sizing: border-box;
	}
}


#lower_bottom_link .list .detail .ph_wrap {
	width: 0.80rem;
	height: 0.80rem;
	margin: 0 auto;
/*	background: #35569b;*/
	padding: 0.05rem;
	border-radius: 50%;
	margin-bottom: 0.20rem;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	#lower_bottom_link .list .detail .ph_wrap {
		width: 0.60rem;
		height: 0.60rem;
		margin-left: 0.20rem;
		margin-bottom: 0;
	}
}


#lower_bottom_link .list .detail .text {
	display: block;
	color: #fff;
	font-size: 0.20rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-bottom: 0.25rem;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	#lower_bottom_link .list .detail .text {
		font-size: 0.14rem;
		margin-bottom: 0;
		width: calc(100% - 0.90rem);
		text-align: left;
		padding-left: 0.13rem;
	}
}


/*ボタン*/
#lower_bottom_link .list .detail .btn_incont_circle:before {
	background: #fff;
}

#lower_bottom_link .list .detail .btn_incont:after {
	background-image: url(../img/btn_arrow_b.svg);
}


#lower_bottom_link .list .detail .btn_incont_text {
	color: #fff;
}


#lower_bottom_link .list .detail .btn_incont_circle:after {
	color: #00428e;
}

/*ボタンSP*/
#lower_bottom_link .list .detail .btn_incont_wrap.sp_only {
	position: absolute;
	right: 0.20rem;
}

#lower_bottom_link .list .detail a .btn_obi {
	font-size: 0.16rem;
	font-weight: 300;
	line-height: 1.563;
	letter-spacing: 0.05em;
	color: #fff;
	position: relative;
}

#lower_bottom_link .list .detail a .btn_obi::after {
	position: absolute;
	content: '';
	display: inline-block;
	width: 0.3rem;
	height: 0.3rem;
	background: url(../img/icon_arrow_circle_clear.svg) no-repeat center;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	right: -0.35rem;
	transition: .3s all;
}

#lower_bottom_link .list .detail a:hover .btn_obi::after {
	right: -0.4rem;
}

/*============================
コールセンター
============================*/
#okyakusasma_center {
	background: url(../img/callcenter_back_blue.png) no-repeat;
	background-size: cover;
	background-position: center;
}

@media screen and (max-width: 599px) {
	#okyakusasma_center {
		background: none;
		padding-bottom: 0.50rem;
	}
}

#okyakusasma_center .okyakusasma_center_box {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
	#okyakusasma_center .okyakusasma_center_box {
		display: block;
		border: 1px solid #CCC;
		border-left: 0;
		position: relative;
		box-sizing: border-box;
	}

	#okyakusasma_center .okyakusasma_center_box::before {
		content: "";
		width: 4px;
		height: calc(100% + 2px);
		position: absolute;
		left: 0;
		top: -1px;
		background: url(../img/callcenter_back_blue.png) no-repeat;
		background-position: center center;
		background-size: auto 100%;
		z-index: 1;
	}
}

#okyakusasma_center .okyakusasma_center_box .ph_wrap {
	width: 55%;
	height: 3.30rem;
}

#okyakusasma_center .okyakusasma_center_box .ph_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#okyakusasma_center .okyakusasma_center_box .text_wrap {
	width: 4.30rem;
	margin: auto;
	text-align: center;
	color: #fff;
}

@media screen and (max-width: 599px) {
	#okyakusasma_center .okyakusasma_center_box .text_wrap {
		width: 100%;
		text-align: center;
		padding: 0.25rem 0;
		color: #000;
	}
}

#okyakusasma_center .okyakusasma_center_box .text_wrap .lead {
	font-size: 0.16rem;
	margin-bottom: 0.15rem;
	font-feature-settings: normal;
}

@media screen and (max-width: 599px) {
	#okyakusasma_center .okyakusasma_center_box .text_wrap .lead {
		font-size: 0.12rem;
		margin-bottom: 0.10rem;
	}
}

#okyakusasma_center .okyakusasma_center_box .text_wrap .title {
	font-size: 0.30rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	font-feature-settings: normal;
}

@media screen and (max-width: 599px) {
	#okyakusasma_center .okyakusasma_center_box .text_wrap .title {
		font-size: 0.16rem;
		font-weight: 600;
		margin-bottom: 0.08rem;
		color: #00428e;
	}
}

#okyakusasma_center .okyakusasma_center_box .text_wrap .eigyo {
	font-size: 0.15rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 0.10rem;
	margin-bottom: 0.3rem;
}

@media screen and (max-width: 599px) {
	#okyakusasma_center .okyakusasma_center_box .text_wrap .eigyo {
		font-size: 0.11rem;
		font-weight: 500;
		margin-bottom: 0.10rem;
		border: 0;
		padding: 0;
		width: 100%;
	}
}


#okyakusasma_center .okyakusasma_center_box .text_wrap .tel {
	padding-left: 0.80rem;
	text-align: left;
	position: relative;
	margin-left: 0.30rem;
}

@media screen and (max-width: 599px) {
	#okyakusasma_center .okyakusasma_center_box .text_wrap .tel {
		display: flex;
		justify-content: center;
		flex-direction: row-reverse;
		padding-left: 0;
		margin-left: 0;
	}
}

/* TELアイコン */
#okyakusasma_center .okyakusasma_center_box .text_wrap .tel::before {
	content: "";
	width: 0.60rem;
	height: 0.60rem;
	background-image: url(../img/callcenter_icon_tel_white.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0.10rem;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 599px) {
	#okyakusasma_center .okyakusasma_center_box .text_wrap .tel::before {
		content: none;
	}
}

#okyakusasma_center .okyakusasma_center_box .text_wrap .tel a {
	text-decoration: none;
	font-size: 0.35rem;
	font-weight: 600;
	color: #fff;
}

@media screen and (max-width: 599px) {
	#okyakusasma_center .okyakusasma_center_box .text_wrap .tel a {
		font-size: 0.22rem;
		font-weight: 700;
		color: #00428e;
		font-family: 'Poppins', sans-serif;
	}
}

#okyakusasma_center .okyakusasma_center_box .text_wrap .tel a i {
	vertical-align: middle;
	padding-right: 0.1rem;
}

@media screen and (max-width: 599px) {
	#okyakusasma_center .okyakusasma_center_box .text_wrap .tel a i {
		display: none;
	}
}

#okyakusasma_center .okyakusasma_center_box .text_wrap .tel a i img {
	width: 0.30rem;
}

#okyakusasma_center .okyakusasma_center_box .text_wrap .tel span {
	display: block;
	text-align: left;
	padding-top: 0.10rem;
	font-size: 0.12rem;
}

@media screen and (max-width: 599px) {
	#okyakusasma_center .okyakusasma_center_box .text_wrap .tel span {
		text-align: center;
		padding-top: 0;
		padding-right: 0.08rem;
		font-size: 0.10rem;
	}
}



/*============================
共通セクションタイトル
============================*/
.lower_sec_title {
	font-size: 0.30rem;
	font-weight: 600;
	position: relative;
	margin-top: 0.50rem;
	margin-bottom: 1rem;
}

@media screen and (max-width: 599px) {
	.lower_sec_title {
		font-size: 0.2rem;
		margin-top: 0.25rem;
		margin-bottom: 0.50rem;
	}
}


.lower_sec_title::after {
	content: '';
	display: block;
	width: 0.80rem;
	height: 0.04rem;
	background: #00428e;
	margin-top: 0.20rem;
}


/*=======================
ページナビ
=======================*/
.list_navi_wrap {
	text-align: center;
	font-size: 0.16rem;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.05em;
	padding: 0.30rem 0 0.50rem;
}

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

.list_navi_wrap .wp-pagenavi .current {
	display: block;
	font-size: 0.16rem;
	color: #FFF;
	width: 0.50rem;
	line-height: 0;
	padding: 0.24rem 0 0.26rem;
	background-color: #013e89;
	border: 1px solid #013e89;
	margin: 0 0.08rem;
}

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

.list_navi_wrap .wp-pagenavi .page {
	display: block;
	font-size: 0.16rem;
	color: #111;
	width: 0.50rem;
	line-height: 0;
	padding: 0.24rem 0 0.26rem;
	background-color: #FFF;
	border: 1px solid #CCC;
	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.40rem;
		padding: 0.19rem 0 0.21rem;
	}

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

.list_navi_wrap .wp-pagenavi .page.larger:hover {
	background-color: #013e89;
	border: 1px solid #013e89;
	color: #FFF;
}

.list_navi_wrap .wp-pagenavi .previouspostslink {
	display: block;
	font-size: 0.16rem;
	color: #666;
	line-height: 0;
	padding: 0.24rem 0.20rem 0.26rem 0.30rem;
	background-color: #FFF;
	text-decoration: none;
	margin: 0 0.08rem;
	position: relative;
}

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

.list_navi_wrap .wp-pagenavi .previouspostslink::before {
	content: "";
	width: 0.10rem;
	height: 0.16rem;
	background-image: url(../common/img/pager_prev_arrow.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 49%;
	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: #013e89;
}

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

.list_navi_wrap .wp-pagenavi .nextpostslink {
	display: block;
	font-size: 0.16rem;
	color: #666;
	line-height: 0;
	padding: 0.24rem 0.30rem 0.26rem 0.20rem;
	background-color: #FFF;
	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.19rem 0.25rem 0.21rem 0;
		margin-left: 0.30rem;
	}
}

.list_navi_wrap .wp-pagenavi .nextpostslink::after {
	content: "";
	width: 0.10rem;
	height: 0.16rem;
	background-image: url(../common/img/pager_next_arrow.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0;
	top: 49%;
	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: #013e89;
}

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