/* ========================================
   CONTACT — Shared Component
   ======================================== */
.contact-component {
  max-width: 560px;
  margin: 0 auto;
}

.contact-component .contact-text {
  font-size: 1rem;
  color: var(--c-text-muted, #666666);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: center;
}

.contact-component .contact-form {
  text-align: left;
}

.contact-component .contact-form-row {
  margin-bottom: 24px;
}

.contact-component .contact-form-row label {
  display: block;
  font-size: 0.85rem;
  color: var(--c-text-muted, #666666);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.contact-component .contact-form-row .required {
  color: var(--c-accent, #c8102e);
}

.contact-component .contact-form-row input,
.contact-component .contact-form-row textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Noto Sans JP', 'Noto Serif JP', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--c-text, #1a1a1a);
  background-color: var(--c-bg-card, #ffffff);
  border: 1px solid var(--c-border, #e0e0e0);
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.contact-component .contact-form-row input:focus,
.contact-component .contact-form-row textarea:focus {
  outline: none;
  border-color: var(--c-accent, #c8102e);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.contact-component .contact-form-row input::placeholder,
.contact-component .contact-form-row textarea::placeholder {
  color: var(--c-text-dim, #999999);
}

.contact-component .contact-form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-component .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  background-color: var(--c-accent, #c8102e);
  color: #ffffff;
  padding: 20px 48px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: 'Noto Sans JP', 'Noto Serif JP', system-ui, sans-serif;
  transition: background-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  margin-top: 8px;
}

.contact-component .contact-btn:hover {
  background-color: var(--c-accent-hover, #e01235);
  transform: translateY(-2px);
}
