/* 固定フッターバー */
.c_stickyBottomBar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	z-index: 99;
	padding: 12px 0;
	box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.c_stickyBottomBar_inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 8px;
}

.c_stickyBottomBar_link {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	max-width: 200px;
	height: 40px;
	background-color: #003399;
	border: none;
	border-radius: 20px;
	font-size: 12px;
	font-weight: bold;
	color: #ffef00;
	text-decoration: none;
}

.c_stickyBottomBar_link:hover {
	filter: brightness(1.02)!important; /* 明るくする */
}

.c_stickyBottomBar_link_pcOnly {
	display: none;
}

@media (min-width: 768px) {
	.c_stickyBottomBar_link_pcOnly {
		display: flex;
	}

	.c_stickyBottomBar_inner {
		gap: 16px;
		padding: 0 16px;
	}

	.c_stickyBottomBar_link {
		font-size: 14px;
		height: 44px;
		border-radius: 22px;
	}
}
