/*選單區*/
.nav-footer-wrap{
	margin: 0 -10px;
}
/*選單*/
.nav-footer {
	padding: 0;
}
/*選單-項目*/
.nav-footer__item {
	text-align: left;
	border-top: 1px solid hsla(0, 0%, 87%, .3);
}
/*選單-標題*/
.nav-footer__heading {
	padding: 1em 10px;/*15/16*/
	cursor: pointer;
	font-weight: normal;
}
/*選單-展開icon*/
.nav-footer__heading-icon{
	-webkit-transition: transform .25s ease-in-out;
	-moz-transition: transform .25s ease-in-out;
	transition: transform .25s ease-in-out;
	float: right;
	font-size: 20px;
	color: #bbb;
}
/*選單-已展開icon*/
.nav-footer__heading--open .nav-footer__heading-icon {
	transform: rotate(-180deg);
}
/*第二層*/
.nav-footer__sub-nav {
	padding: 0;
	margin: -7px 0 8px;
	-webkit-transition: max-height .35s;
	-moz-transition: max-height .35s;
	transition: max-height .35s;
	max-height: 0;
	overflow: hidden;
}
/*第二層-開啟*/
.nav-footer__heading--open + .nav-footer__sub-nav {
	max-height: 2000px;
}
/*第二層-連結*/
.nav-footer__sub-link {
	display: block;
	padding: 14px 10px;/*24px/18px 10/320*100*/
	line-height: 1.25;
	text-decoration: none;
	font-size: 0.875em;/*14/16*/
	color: inherit;
}
/*第二層-連結:active*/
.nav-footer__sub-link:active {
}
@media screen and (min-width: 768px) {
	/*選單區*/
	.nav-footer-wrap{
		/* float: left; */
		display: inline-block;
		margin: 0;
		/* width: calc(100% - 306px); */
	}
	/*頁尾選單*/
	.nav-footer{
		display: flex;
		justify-content: space-around;
	}
	/*頁尾選單-項目*/
	.nav-footer__item {
		border: none;
		/* width: 120px; */
	}
	/*頁尾選單-標題*/
	.nav-footer__heading {
		padding: 0 0 22px;
		cursor: default;
	}
	.nav-footer__heading:after,
	.nav-footer__heading--active:after {
		display: none;
	}
	/*選單-展開icon*/
	.nav-footer__heading-icon{
		display: none;
	}
	/*第二層-開啟*/
	.nav-footer__sub-nav {
		max-height: 2000px;
	}
	.nav-footer__sub-item {
		margin: 0.714em 0;/*10/14*/
	}
	.nav-footer__sub-link {
		padding: 0;
	}
	.nav-wrap__footer-info .footer-info {
		justify-content: flex-start;
	}
	.nav-wrap__footer-info .footer-info__logobox {
		width: 95px;
	}
}
@media screen and (min-width: 1024px) {
	/*選單區*/
	.nav-footer-wrap{
	}
	/*頁尾選單*/
	.nav-footer {
	}
	/*頁尾選單-項目*/
	.nav-footer__item {
		width: 160px;
	}
	.nav-footer__sub-link {
		display: inline-block;
		transition: color .25s ease;
	}

	.nav-footer__sub-link:focus,
	.nav-footer__sub-link:active,
	.nav-footer__sub-link:hover {
		color: #777;
	}
}
@media screen and (min-width: 1440px) {
/*頁尾選單*/
	.nav-footer-wrap {
	}
}