.site_button {
	width: 185px;
	height: 45px;
	font-size: 16px;
	background: var(--color-pc);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	text-transform: capitalize;
	font-weight: 700;
	transition: 1s;
	position: relative;
	/*border-left: 5px solid #fff;*/
	/*border-right: 5px solid #fff;*/
	border: 1px solid var(--color-pc);
	cursor: pointer;
	transform: skewX(-15deg);
	overflow: hidden;
}

.site_button span {
	margin: auto;
	position: relative;
	z-index: 1;
	transform: skewX(15deg);
}

/*.site_button:hover {
    background: #fff;
}*/
.site_button:hover {
	background: #fff;
}

.site_button::after {
	content: "";
	position: absolute;
	background: var(--color-pc);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-mask: url(../../../../../wp-content/uploads/2024/01/urban-sprite.png);
	mask: url(../../../../../wp-content/uploads/2024/01/urban-sprite.png);
	-webkit-mask-size: 3000% 100%;
	mask-size: 3000% 100%;
	-webkit-animation: ani2 1s steps(29) forwards;
	animation: ani2 1s steps(29) forwards;
	opacity: 0;
}

.site_button:hover::after {
	-webkit-animation: ani 1s steps(29) forwards;
	animation: ani 1s steps(29) forwards;
	opacity: 1;
}

@keyframes ani2 {
	from {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}

	to {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
	}
}

@keyframes ani {
	from {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
	}

	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}
}



@media all and (min-width: 320px) and (max-width: 767px) {
	.site_button {
		width: 130px;
		height: 40px;
		font-size: 14px;
		/*border-left: 3px solid #fff;*/
		/*border-right: 3px solid #fff;*/
	}
}

@media all and (min-width: 768px) and (max-width: 980px) {
	.site_button {
		width: 130px;
		height: 40px;
		font-size: 14px;
		/*border-left: 3px solid #fff;*/
		/*border-right: 3px solid #fff;*/
	}
}

@media all and (min-width: 981px) and (max-width: 1024px) {
	.site_button {
		width: 130px;
		height: 40px;
		font-size: 14px;
		/*border-left: 3px solid #fff;*/
		/*border-right: 3px solid #fff;*/
	}
}

@media all and (min-width: 1025px) and (max-width: 1140px) {
	.site_button {
		width: 140px;
		height: 40px;
		font-size: 14px;
		/*border-left: 3px solid #fff;*/
		/*border-right: 3px solid #fff;*/
	}
}

@media all and (min-width: 1141px) and (max-width: 1280px) {
	.site_button {
		width: 140px;
		height: 40px;
		font-size: 15px;
		/*border-left: 3px solid #fff;*/
		/*border-right: 3px solid #fff;*/
	}
}

@media all and (min-width: 1281px) and (max-width: 1440px) {
	.site_button {
		width: 165px;
		font-size: 15px;
	}
}

@media all and (min-width: 1441px) and (max-width: 1680px) {
	.site_button {
		width: 175px;
	}
}

@media all and (min-width: 1681px) and (max-width: 1880px) {}