[x-cloak] {
	display: none !important;
}
.floating-contact-area form#mailformpro {
	padding: 0px;
}
.floating-contact-area div.mfp_err {
	display: none !important;
}
.floating-contact-area ::placeholder {
	color: #cbcbcb;
}

.floating-contact-area {
	width: 100%;
	height: 120px;
	position: fixed;
	bottom: 0;
	background: #0f2ea0;
	color: #fff;
	left: 0;
	z-index: 9999;
	overflow: hidden;
	filter: drop-shadow(0px -8px 6px rgb(0 0 0 / 16%));
}
.fca-contents {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	flex-flow: column;
	position: relative;
	overflow: hidden;
}
.fca-head {
	width: 100%;
	height: 40px;
	overflow: hidden;
	background: #333333;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
}
.fca-ttl {
	width: auto;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 8px;
}
.fca-ttl > span {
	width: 196px;
	height: 28px;
	background: #666;
	border-radius: 999px;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 15px;
	letter-spacing: 0.05em;
}
.fca-ttl > p {
	line-height: 1;
	font-weight: bold;
	font-size: 19px;
	letter-spacing: 0.05em;
}
.fca-close-btn {
	position: absolute;
	right: 16px;
	display: flex;
	margin: 0;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}
.fca-close-btn > span {
	line-height: 1;
	font-size: 14px;
	padding-bottom: 4px;
}
.fca-close-btn > svg {
	width: 12px;
	height: auto;
	flex-shrink: 0;
	aspect-ratio: 1 / 1;
}

.fca-slide-wrapper {
	width: 100%;
	max-width: 1200px;
	min-width: 960px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	height: 80px;
}

.fca-slide-wrapper > .page {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	justify-content: space-between;
	gap: 30px;
	background: #0f2ea0;
	padding: 0 20px;
}

.fca-input-area {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
	overflow: hidden;
}
.fca-page-info {
	line-height: 1;
	font-size: 14px;
	flex-shrink: 0;
}

.fca-btn {
	width: 88px;
	height: auto;
	overflow: hidden;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	gap: 5px;
	flex-shrink: 0;
	cursor: pointer;
}
.fca-btn.fca-btn-next {
	width: 62px;
	align-items: flex-end;
}
.fca-btn > span {
	width: 100%;
	text-align: center;
	font-size: 12px;
	white-space: nowrap;
	flex-shrink: 0;
}
.fca-btn > svg {
	width: 39px;
	height: auto;
	flex-shrink: 0;
	aspect-ratio: 1 / 1;
}

.fca-input-group {
	width: 17%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 8px;
	overflow: hidden;
	max-width: 180px;
	flex-shrink: 0;
}
.fca-input-group.--w-220 {
	width: 21%;
	max-width: 220px;
}
.fca-input-group.--w-250 {
	width: 28%;
	max-width: 265px;
}
.fca-input-group.--w-540 {
	width: 52%;
	max-width: 540px;
}
.fca-input-ttl {
	width: 100%;
	line-height: 1;
	font-size: 14px;
	display: flex;
	align-items: baseline;
	gap: 8px;
}
.fca-input-ttl > small {
	font-size: 12px;
}
.fca-input {
	width: 100%;
}
.fca-input input[type="text"],
.fca-input input[type="email"],
.fca-input input[type="tel"],
.fca-input textarea,
.fca-input select {
	border: solid 1px #c2c2c2;
	background: #fff;
	font-size: 14px;
	height: 40px;
	width: 100%;
	max-width: 100% !important;
	padding: 6px 16px;
	border-radius: 2px;
	box-shadow: none;
	margin: 0;
	position: relative;
	color: #000;
	font-weight: 400;
}
.fca-input select {
	padding-right: 30px;
}
.fca-input textarea#content {
	height: 40px !important;
	width: 100% !important;
}
.fca-input .select-box {
	position: relative;
	overflow: hidden;
	display: block;
}
.fca-input .select-box::before {
	content: "";
	width: 10px;
	display: block;
	height: auto;
	aspect-ratio: 10 / 6;
	top: 50%;
	right: 16px;
	position: absolute;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 2;
	background-image: url(../img/common/icon-arrow-down-bk.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.fca-input .checkbox input[type="checkbox"] {
	display: none;
}
.fca-input .agree label {
	font-size: 14px;
	padding-left: 30px;
	line-height: 1;
	height: 22px;
	cursor: pointer;
	position: relative;
	display: flex !important;
	align-items: center;
	margin: 0 !important;
}
.fca-input .checkbox label::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: auto;
	aspect-ratio: 1 / 1;
	border: solid 1px #c2c2c2;
	background: #fff;
	position: absolute;
	border-radius: 2px;
	top: auto;
	left: 0;
}
.fca-input .checkbox label::after {
	content: "";
	width: 9px;
	height: 14px;
	border-right: solid 3px #c4a169;
	border-bottom: solid 3px #c4a169;
	position: absolute;
	top: 2px;
	left: 7px;
	opacity: 0;
	transform: rotate(45deg);
	transition: all 0.2s;
}
.fca-input .checkbox input[type="checkbox"]:checked + label::after,
.fca-input .checkbox input[type="checkbox"]:checked + input[type="hidden"] + label::after {
	opacity: 1;
}
.fca-input .agree label > a {
	text-decoration: underline;
	letter-spacing: 0;
}

.contact-submit button,
div.mfp_buttons button#mfp_button_send {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 160px;
	text-shadow: none;
	font-size: 15px;
	font-weight: bold;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #c4a169;
	position: relative;
	color: #fff;
	margin: 0;
	border-radius: 999px;
	filter: drop-shadow(0px 3px 0px #715c3b);
	padding: 0;
	overflow: hidden;
	flex-shrink: 0;
	cursor: pointer;
	border: none !important;
	transition: all ease 0.33s;
}
div.mfp_buttons button#mfp_button_cancel {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 160px;
	text-shadow: none;
	font-size: 15px;
	font-weight: bold;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #c2c2c2;
	position: relative;
	color: #fff;
	margin: 0;
	border-radius: 999px;
	filter: drop-shadow(0px 3px 0px #666);
	padding: 0;
	overflow: hidden;
	flex-shrink: 0;
	cursor: pointer;
	border: none !important;
	transition: all ease 0.33s;
}
.contact-submit button:hover,
div.mfp_buttons button#mfp_button_send:hover {
	background: #b28948 !important;
	box-shadow: none !important;
}
div.mfp_buttons button#mfp_button_cancel:hover {
	background: #999 !important;
	box-shadow: none !important;
}
.mfp_element_submit.disabled {
	pointer-events: none;
	user-select: none;
	background: #c2c2c2;
	filter: none;
	cursor: default;
}

div#mfp_overlay_inner > h4 {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	padding-top: 10px;
	font-size: 18px;
	font-weight: bold;
	color: #0f2ea0;
}
table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td {
	font-size: 16px;
	padding: 8px 12px;
}

div.mfp_buttons {
	clear: both;
	padding: 10px 0px;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 5px;
	justify-content: center;
	margin-top: 30px;
}
@media screen and (max-width: 1000px) {
	.fca-slide-wrapper > .page {
		gap: 15px;
	}
	.fca-input-group.--w-540 {
		max-width: 300px;
	}
	.fca-input-group.--w-250 {
		width: 35%;
	}
}
@media screen and (max-width: 959px) {
	.floating-contact-area {
		display: none;
	}
}
