
.contact{
	padding-top: var(--section-padding-top);
}
.contact .inner{
	width: 100%;
	max-width: 1440PX;
	margin: 0 auto;
	padding: var(--section-padding-horizontal);
}
.contact .inner dl{
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	width: 100%;
	display: grid;
	gap: 16px;
}
.contact .inner dl dt{
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	border-radius: var(--border-radius-block);
	width: 100%;
	height: 100%;
}
.contact .inner dl dt img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact .inner dl dd{
	background-color: #F2F1EE;
	padding: 64px 40px;
	overflow: hidden;
	border-radius: var(--border-radius-block);
	justify-content: center;
	display: flex;
	flex-direction: column;
}
[data-scheme=dark] .contact .inner dl dd{
	background-color: #222222;
}
.contact .inner dl dd h2{
	font-size: var(--title-font-size);
	letter-spacing: var(--title-letter-spacing);
	line-height: var(--font-heading-line-height);
	font-weight: normal;
	color: var(--theme-default-text-color);
	margin-bottom: 20px;
}
.contact .inner dl dd p{
	color: rgb(var(--color-foreground-secondary));
	font-size: 16px;
	word-break: break-all;
}
.map-pic{
	padding-top: var(--section-padding-top);
}
.map-pic .inner{
	padding-bottom: 30.78%;
	position: relative;
}
.map-pic .inner img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 1200px){
	.contact .inner dl dd{
		padding: 40px;
	}
}
@media screen and (max-width: 1024px){
	.contact .inner dl dd{
		padding: 32px;
	}
	.contact .inner dl dd p{
		font-size: 14px;
	}
}
@media screen and (max-width: 767px){
	.contact .inner dl{
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}
	.contact .inner dl dd h2{
		max-width: 321px;
	}
	.contact .inner dl dd p{
		max-width: 415px;
	}
}