.page-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}

.page-hero-bg::after {
  content: 'CONTACT';
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 130px;
  font-weight: 900;
  color: rgba(41, 182, 216, 0.05);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.page-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
}

/* 問い合わせ案内 */
.contact-lead {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.contact-lead p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

/* フォーム */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dark);
}

.form-label .required {
  color: var(--primary);
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark);
  background: var(--light);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(41, 182, 216, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}

.form-note {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 4px;
}

.contact-submit {
  text-align: center;
  margin-top: 8px;
}

/* 送信完了メッセージ */
.contact-sent {
  text-align: center;
  padding: 60px 24px;
}

.contact-sent-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.contact-sent h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-sent p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

@media (max-width: 640px) {
  .page-hero { height: 200px; }
  .page-title { font-size: 32px; }
}
