/*===============================================================================
SWELL使用時、.c-iconBtnのクラス名は使用禁止
ヘッダーのハンバーガーメニューと被る為
================================================================================*/
/*===============================================================================
角丸ボタン
================================================================================*/
.c-roundedBtn{
	position: relative;
	display: inline-flex;
	gap: .75em;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 25rem;
	width: 100%;
	padding: .8em;
	background: var(--c-main);
	border: 3px solid var(--c-main);
	border-radius: 99999px;
	overflow: hidden;
	box-shadow: var(--shdw);
	font-weight: var(--fw-lg);
	font-size: 1.25rem;
	color: var(--c-light);
	cursor: pointer;
	transition: var(--ani-t--normal) ease-out;
}
.c-roundedBtn:is(:focus, :hover){
	background: var(--c-light);
	color: var(--c-main);
}
.c-roundedBtn svg{
	width: 1em;
}


