.loadMoreBtn{
	width: 100%;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	font-weight: 700;
	color: #58595B !important;
	font-family: var(--wp--preset--font-family--yugo);
	border-width: 1px 0px;
	border-style: solid;
	border-color: #E2E5EB;
	padding: 22px 0 21px;
	position: relative;
	display: flex;
	justify-content: center;
	gap: 10px;
	align-items: center;
}
.loadMoreBtn:focus{
	box-shadow: none !important;
	outline: 2px solid var(--wp--preset--color--ap-blue-1);
	outline-offset: 3px;
	box-shadow: none !important;
}

.loadMoreBtn:focus:not(:focus-visible){
	outline:0 !important;
}
.loadMoreBtn-label{
	position: relative;
}
.loadMoreBtn-label::before, .loadMoreBtn-label::after {
	content: "";
	display: block;
	position: absolute;
	height: 0;
	width: 12px;
	border-top: 1px solid #58595b;
	transform: rotate(90deg);
	transition: transform ease-in-out 0.3s;
	right: 0;
	margin-right: -29px;
	top: 50%;
}
.loadMoreBtn-label::after {
	transform: rotate(0deg);
}
.loadMoreBtn::after{
	content: "";
	display: block;
	border-radius: 100%;
	width: 27px;
	height: 27px;
	border: 1px solid #58595B;
}

.brand-business-info-list.is-loaded{
	animation-name: fuwari;
	animation-iteration-count: 1;
	animation-duration: 1s;
}
@keyframes fuwari{
	from{
		opacity: 0;
		/*transform: translateY(100%);*/
	}
	to{
		opacity: 1;
		/*transform: translateY(0);*/
	}
}