@charset "UTF-8";

.contact-info {
	margin-bottom: 6rem;
}

@media screen and (max-width: 1024px) {
	.contact-info {
		margin-bottom: 5rem;
	}
}
@media screen and (max-width: 767.98px) {
	.contact-info {
		margin-bottom: 4rem;
	}
}

.contact-info .contact-info-txt a {
	text-decoration: underline;
	text-underline-offset: .4rem;
	display: inline;
}

.contact-box {
	border-top: 1px solid #C9C9C9;
}

.contact-box dl {
	display: flex;
	align-items: flex-start;
	border-bottom: 1px solid #C9C9C9;
	padding: 3.4rem 0;
}

@media screen and (max-width: 767.98px) {
	.contact-box dl {
		display: block;
		padding: 2.4rem 0;
	}
}

.contact-box dl dt {
	width: 30rem;
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 2rem;
}

@media screen and (max-width: 1024px) {
	.contact-box dl dt {
		width: 24rem;
	}
}

@media screen and (max-width: 767.98px) {
	.contact-box dl dt {
		width: 100%;
		margin-bottom: 1.2rem;
		justify-content: space-between;
	}
}

.contact-box dl dd {
	width: calc(100% - 28rem);
}

@media screen and (max-width: 1024px) {
	.contact-box dl dd {
		width: calc(100% - 24rem);
	}
}

@media screen and (max-width: 767.98px) {
	.contact-box dl dd {
		width: 100%;
	}
}

.contact-box .required {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 5rem;
	height: 2rem;
	padding: 1rem;
	background: #003062;
	color: #FFF;
	border-radius: 999px;
	font-size: 1.2rem;
	font-weight: 500;
}

.contact-box input[type="text"],
.contact-box textarea,
.contact-box select {
	width: 100%;
	background-color: #FFF;
	border: 1px solid #C9C9C9;
	border-radius: 1rem;
	padding: .8rem 1.4rem;
	font-size: 1.6rem;
	box-sizing: border-box;
}

@media screen and (max-width: 767.98px) {
	.contact-box input[type="text"],
	.contact-box textarea,
	.contact-box select {
		font-size: 1.6rem;
	}
}

.contact-box input[type="text"],
.contact-box select {
	height: 5rem;
}

@media screen and (max-width: 767.98px) {
	.contact-box input[type="text"],
	.contact-box select {
		height: 4.6rem;
	}
}

.contact-box textarea {
	min-height: 26rem;
	resize: vertical;
}

@media screen and (max-width: 767.98px) {
	.contact-box textarea {
		min-height: 16rem;
	}
}

.contact-box .agree {
	text-align: center;
	margin-top: 4rem;
}

@media screen and (max-width: 767.98px) {
	.contact-box .agree {
		margin-top: 3rem;
		text-align: left;
	}
}

.contact-box .agree a {
	text-decoration: underline;
	text-underline-offset: .4rem;
}

.contact-box .btnbox {
	margin-top: 4rem;
}

.contact-box .btnsubmit {
	width: 30rem;
	height: 8rem;
	color: #FFF;
	font-size: 1.8rem;
	font-weight: 400;
	background-color: #002750;
	border: none;
	border-radius: 200rem;
	padding: .6rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
	cursor: pointer;
	transition:
		transform .3s ease,
		color .3s ease,
		background-color .3s ease;
}

@media screen and (max-width: 767.98px) {
	.contact-box .btnsubmit {
		height: 4.5rem;
		width: 80%;
		font-size: 1.5rem;
		padding: .1rem;
	}
}

.contact-box .btnsubmit:hover {
	background-color: #00458d;
	transform: translateY(-.2rem);
	opacity: 1;
}

.form_confirm .required,
.mw_wp_form_confirm .cf-turnstile {
	display: none;
}

.cf-turnstile {
	margin: 20px auto 40px;
	display: flex;
	justify-content: center;
	transform: scale(0.9);
	transform-origin: center;
}