/* ============================================================
   contact.css — Contact（Brand / front-page 専用）
   最後の締めCTA。Company(White) → Contact(Brand) → Footer(Dark)。
   ============================================================ */

.da-contact {
	background: var(--da-primary-500);   /* Brand */
	color: #fff;
	text-align: center;
}

/* Section Title をブランド地向けに反転 */
.da-contact .da-c-section-title { margin-bottom: var(--da-space-32); }
.da-contact .da-c-section-title__overline { color: rgba(255, 255, 255, .8); }
.da-contact .da-c-section-title__heading { color: #fff; }
.da-contact .da-c-section-title__lead { color: rgba(255, 255, 255, .9); }

/* ボタン: Desktop 横並び / Mobile 縦並び */
.da-contact__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--da-space-16);
}
.da-contact__actions .da-c-btn { min-width: 240px; }

@media (min-width: 600px) {
	.da-contact__actions {
		flex-direction: row;
		justify-content: center;
	}
	.da-contact__actions .da-c-btn { min-width: 0; }
}
