@charset "utf-8";
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

.contact {
	background-color: #FFFFFF;
	margin: 100px 0;
}

.img-cover {
	width: 100%;
	height: 140px;
	object-fit: cover;
}

.contact h2 {
	margin: 0;
	color: #274001;
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 700;
	padding: 34px clamp(16px, 8vw, 120px) 14px;
}

.cont-box{
	max-width: 1200px;
	padding: 30px clamp(16px, 8vw, 120px) 60px;
	margin: 0 auto;
	display: flex;
	column-gap: 90px;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.cont-item {
	padding: 0;
	flex: 1 1 0;
	max-width: 560px;
	display: flex;
	align-items: flex-start;
	column-gap: 28px;
}

.cont-item img{
	width: 100px;
	height: 100px;
	background-color: transparent;
	padding: 14px;
	object-fit: contain;
}

.cont-text{
	flex:1;
}

.cont-text h3 {
	margin: 6px 0 10px;
	font-family: "Open Sans", sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #000000;
}

.cont-text a{
	display: inline-block;
	margin: 0 0 14px;
	color: #375A10;
	font-family: "Open Sans", sans-serif;
	font-size: 24px;
	font-weight: 400;
	text-decoration: none;
	position: relative;
	padding-bottom: 6px;
	transition: color .2s ease, transform .2s ease;
}

.cont-text a::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: currentColor;
	transition: width .2s ease;
}

.cont-text a:hover{
	color: #AFBF36;
	transform: translateX(2px);
}

.cont-text a:hover::after{
	width: 100%;
}

.cont-text p{
	margin: 8px 0 0;
	font-family: "Noto Sans", sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #000000;
}

.cont-text p{
	margin: 8px 0 0;
	font-family: "Noto Sans", sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #000000;
}

.cont-text .small{
	margin: 0 0 6px;
	font-size: 24px;
	font-weight: 400;
}



.map{
	margin: 30px clamp(16px, 8vw, 120px) 60px;
}

.map iframe{
	width: 100%;
	height: 400px;
	border: none;
	border-radius: 10px;
	display: block;
}

@media (max-width: 1024px){
	.cont-box{ column-gap: 40px; }
	.cont-item img{ width: 86px; height: 86px; }
	.cont-text h3{ font-size: 30px; }
	.cont-text a{ font-size: 20px; }
	.cont-text .small{ font-size: 20px; }
}

@media (max-width: 768px){
	.contact h2{ 
		font-size: 32px; 
		padding-top: 26px; 
	}

	.cont-box{
		flex-direction: column;
		row-gap: 22px;
		column-gap: 0;
	}

	.cont-item{
		max-width: 100%;
		column-gap: 18px;
	}

	.cont-item img{
		width: 72px;
		height: 72px;
		padding: 10px;
	}

	.cont-text h3{ font-size: 24px; }
	.cont-text a{ font-size: 18px; }
	.cont-text .small{ font-size: 18px; }

	.map iframe{ height: 320px; }
}

@media (max-width: 480px){
	.cont-item img{ width: 64px; height: 64px; }
	.map iframe{ height: 280px; }
}