@charset "UTF-8";
.c-form {
	margin: 0 auto;
    padding-top: 15vh;
}
.c-form__item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin-bottom: 20px;
}
.c-form__label,
.c-form__input {
	padding: 10px;
}
.c-form__label {
	width: 90%;
}
.c-form__input {
	width: 90%;
	font-size: 16px;
	border: solid 1px #333;
	border-radius: 4px;
}
.c-form__input:focus-visible {
	outline: #000 auto 1px;
}
.c-form__required {
	color: #fff;
	background-color: #000;
	border-radius: 4px;
	padding: 5px 5px;
	margin: 0 0 0 18px;
}
.c-form__item textarea{
    background-color: #fff;
}
textarea.c-form__input {
	width: 60vw;
	height: calc(60vh - 81px);
	max-width: 90vw;
	min-width: 333px;
}
.c-form__submit {
	text-align: center;
}
.c-form__submit button {
	font-size: 18px;
	color: #fff;
	background-color: #000;
	border: solid 1px #000;
	border-radius: 4px;
	padding: 5px 32px;
    padding-top: 8px;
	transition: 0.4s;
	cursor: pointer;
}
.c-form__submit button:hover {
	color: #000;
	background-color: transparent;
}

@media (min-width: 640px) {
	.c-form__item {
		flex-wrap: nowrap;
	}
	.c-form__label {
		width: 40%;
	}
	.c-form__input {
		width: 55%;
	}
}