@charset "utf-8";

/* =======================================================================
 contact.html
======================================================================= */

.section-contact {
	padding: 64px 0;
}

.section-contact .title-wrap {
	display: flex;
	justify-content: center;
}

.section-contact .sec-title {
	font-size: clamp(22px, 3.4vw, 36px);
	font-weight: 800;
	text-align: center;
	margin: 0 0 20px;
	display: inline-block;
	position: relative;
	padding-bottom: 10px;
	color: #1d2939;
}

.section-contact .sec-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 5px;
	width: 100%;
	height: 4px;
	border-radius: 3px;
	background: linear-gradient(135deg, #0cb36b 0%, #79e0b4 40%, #79e0b4 75%, #0cb36b 100%);
}

.section-contact .lead {
	color: #5b6b7a;
	text-align: center;
	margin: 0 auto 32px;
	font-size: clamp(14px, 1.4vw, 16px);
}

.section-contact .tel-card {
	background: #eaf8f2;
	border-radius: 16px;
	padding: 28px 28px;
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 36px auto;
	max-width: 900px;
	flex-wrap: wrap;
	justify-content: center;
}

.section-contact .tel-card p {
	width: 100%;
	text-align: center;
}


.section-contact .tel-icon {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #0cb36b;
}

.section-contact .tel-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.section-contact .tel-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 12px;
}

.section-contact .tel-label {
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #0cb36b;
}

.section-contact .tel-number a {
	font-weight: 800;
	font-size: clamp(22px, 3.2vw, 34px);
}


.section-contactform {
	background-color: #eaf8f2;
	padding: 64px 20px;
}

.section-contactform .container {
	max-width: 960px;
	margin: 0 auto;
}

.section-contactform .title-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 32px;
}

.section-contactform .sec-title {
	font-size: clamp(22px, 3.4vw, 36px);
	font-weight: 800;
	text-align: center;
	margin: 0;
	display: inline-block;
	position: relative;
	padding-bottom: 10px;
	color: #1d2939;
}

.section-contactform .sec-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: linear-gradient(135deg, #0cb36b 0%, #79e0b4 40%, #79e0b4 75%, #0cb36b 100%);
}


@media screen and (max-width:768px) {
    
.section-contact .tel-card p {
	font-size: 14px;
}
}