.button_general {
	position: relative;
	width: 90%;
	padding: 10px 0;
	margin: 50px auto;
	font-size: 200%;
	font-weight: 900;
	color: #fff;
	text-align: center;
	letter-spacing: 0.2em;
	cursor: pointer;
	background: #0fbcbf;
	border: 2px solid #0fbcbf;
	border-radius: 10px;
	box-shadow:
		rgb(50 50 93 / 25%) 0 2px 5px -1px,
		rgb(0 0 0 / 30%) 0 1px 3px -1px;
}

.button_general02 {
	color: #fff;
	background: #0fbcbf;
	border: 1px solid #0fbcbf;
}

.button_general:hover {
	color: #fff;
	background: #ffd31c;
	border: 2px solid #ffd31c;
}

.button_general02:hover {
	color: #fff;
	background: #fc1d5b;
	border: 1px solid #fc1d5b;
}

.button_general::before {
	position: absolute;
	top: 0;
	right: 40px;
	bottom: 0;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
}

.button_general:hover::before {
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}

.button_general02::before {
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}

.button_general02:hover::before {
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}

@media screen and (max-width: 520px) {
		.button_general {
		width: 95%;
		margin: 50px auto;
		font-size: 150%;
	}

	.button_general02::before {
		right: 10px;
	}

	.button_general02 {
		width: 98%;
		margin: 50px auto;
		font-size: 160%;
	}
}