
/**
フッター追従リクルートボタン
**/
.floating-recruit {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px;
	background: #F68B1F;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
	transition: .3s;
}

.floating-recruit:hover {
	background: #e87d10;
	transform: translateY(-2px);
}

.floating-recruit__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}

.floating-recruit__icon img {
	display: block;
	width: 100%;
	height: auto;
}

.floating-recruit__text {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.floating-recruit {
		right: 12px;
		bottom: 12px;
		padding: 12px 18px;
		gap: 10px;
	}

	.floating-recruit__icon {
		width: 24px;
		height: 24px;
	}

	.floating-recruit__text {
		font-size: 16px;
	}
}