/* Snow Monkey Forms */
.smf-form--simple-table .smf-item__col--label {
	display: flex;
	justify-content: space-between;
}

.smf-form--simple-table .smf-item__label__text {
	font-size: 2rem;
	line-height: 1.5;
}

.smf-form--simple-table .smf-item__description {
	align-self: flex-start;
	padding: 0 1em;
	font-size: 1.6rem;
	color: var(--color-white);
	line-height: 1.5;
	background-color: #f94e4e;
	border-radius: 0.875em;
}

.smf-form--simple-table .placeholder {
	margin-top: 0.5em;
	font-size: 75%;
	line-height: 1.5;
}

.smf-form--simple-table .placeholder:before {
	content: '例：';
}

.smf-form--simple-table .annotation {
	margin-top: 0.5em;
	font-size: 75%;
	line-height: 1.5;
}

.smf-form--simple-table .annotation:before {
	content: '※';
}

.smf-select-control__control,
.smf-textarea-control__control,
.smf-text-control__control {
	padding: 0.75rem 1rem !important;
	width: 280px !important;
	background-color: var(--color-gray);
}

.smf-select-control__control[name='address'],
.smf-textarea-control__control[name='address'],
.smf-text-control__control[name='address'] {
	width: 600px !important;
}

[name='message'] {
	width: 600px !important;
	height: 200px !important;
}

.smf-form--simple-table .smf-item {
	padding: 2rem 0;
}

.smf-form--simple-table .smf-item:not(:last-child) {
	border-bottom: 1px solid var(--color-gray2);
}

button.smf-button-control__control {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3em;
	margin-bottom: 2em;
	width: 560px;
	height: 96px;
	font-size: 2.3rem;
	font-weight: 700;
	color: var(--color-white) !important;
	border: 2px solid var(--color-green) !important;
	background: var(--color-green) !important;
	text-align: center;
	border-radius: 48px !important;
	transition:
		background-color 0.5s,
		color 0.5s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

button.smf-button-control__control:hover {
	color: var(--color-green) !important;
	background: var(--color-white) !important;
}

@media screen and (max-width: 768px) {
	.smf-select-control__control,
	.smf-textarea-control__control,
	.smf-text-control__control {
		width: 100% !important;
	}

	.smf-select-control__control[name='address'],
	.smf-textarea-control__control[name='address'],
	.smf-text-control__control[name='address'] {
		width: 100% !important;
	}

	[name='message'] {
		width: 100% !important;
		height: 50vw !important;
	}

	button.smf-button-control__control {
		margin-top: 1em;
		margin-bottom: 1em;
		width: 100% !important;
		height: 3em;
		font-size: 4.5vw;
	}
}

.header__text {
	position: relative;
	left: 1em;
	top: -2.5em;
}

@media screen and (max-width: 992px) {
	.header__text {
		display: none;
	}
}
