/*
|---------------------------------------------------------------
| qinc2026-contact-hero.css - お問い合わせ共通ヒーロー（透明タイプ）
|---------------------------------------------------------------
*/

/* ==========================================================================
   Contact Hero - Flat Header
   ========================================================================== */
.contact-hero {
  padding: 72px 0 0;
  text-align: center;
}

.contact-hero__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 16px;
}

.contact-hero__label-slash {
  font-weight: 100;
}

.contact-hero__title {
  margin: 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--color-blue01);
  font-feature-settings: "palt" 1;
}

/* ==========================================================================
   Back Link (thanks page)
   ========================================================================== */
.contact-back {
  padding: 0 0 var(--page-content-padding-y);
  text-align: center;
}

.contact-back__link {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.43;
  color: var(--color-blue01);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.contact-back__link:hover {
  opacity: 0.7;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .contact-hero {
    padding: 48px 0 0;
  }

  .contact-hero__label {
    font-size: 20px;
  }

  .contact-hero__title {
    font-size: 36px;
  }

  .contact-back {
    padding-bottom: var(--page-content-padding-y-md);
  }
}

@media screen and (max-width: 768px) {
  .contact-hero {
    padding: 36px 0 0;
  }

  .contact-hero__label {
    font-size: 16px;
  }

  .contact-hero__title {
    font-size: 26px;
  }

  .contact-back {
    padding-bottom: var(--page-content-padding-y-sp);
  }
}
