@charset "UTF-8";

/* c-inquiry__form
----------------------------------------*/
.c-inquiry__form {
	width: fit-content;
	margin-inline: auto;
}
.c-inquiry__form label {
	display: block;
	padding: 0.3em 0;
	font-size: 14px;
}
.c-inquiry__checkbox {
	appearance: none;
	position: relative;
	width: 14px;
	height: 14px;
	border: 1px solid #329bd2;
	border-radius: 2px;
	box-shadow: none;
	cursor: pointer;
}
.c-inquiry__checkbox:checked {
	background-color: #329bd2;
}
.c-inquiry__checkbox:checked::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 1px;
	width: 8px;
	height: 4px;
	border-bottom: 2px solid #ffffff;
	border-left: 2px solid #ffffff;
	transform: rotate(-45deg);
}
.c-inquiry__button {
	margin: 20px auto 0;
	padding: 10px 40px;
	background-color: #aaa;
	border: 1px solid #aaa;
	border-radius: 5px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	cursor: not-allowed;
	transition: background-color 0.3s, cursor 0.3s;
}
.c-inquiry__button:enabled {
	background-color: #329bd2;
	border: 1px solid #329bd2;
	cursor: pointer;
}
.c-inquiry__button:enabled:hover {
	background-color: #fff;
	border: 1px solid #329bd2;
	color: #329bd2;
	cursor: pointer;
}
