/* ==========================================
   Inquiry Page - お見積り・お問い合わせ
   ========================================== */

/* Hero */
.inq-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: var(--gray-100);
}
.inq-hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--white);
}
.inq-hero-en {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-700);
  letter-spacing: 0.15em;
}

/* Section */
.inq-section {
  padding: 64px 0 100px;
  background: var(--bg);
}
.inq-section .container {
  max-width: 680px;
}

/* Lead */
.inq-lead {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.inq-lead p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 2.1;
}

/* Plan banner */
.inq-plan-banner {
  text-align: center;
  background: #FFF5F5;
  border: 1px solid rgba(229, 0, 18, 0.2);
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 36px;
}
.inq-plan-banner #inq-plan-label {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--red);
  margin-right: 4px;
}

/* Form */
.inq-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.inq-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inq-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.inq-required {
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--red);
  color: #fff;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.inq-optional {
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--gray-800);
  color: var(--gray-500);
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.inq-input {
  width: 100%;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--gray-100);
  font-family: var(--font-ja);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.inq-input::placeholder {
  color: #AAAAAA;
}
.inq-input:focus {
  outline: none;
  border-color: var(--gray-300);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.inq-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: #fff;
  cursor: pointer;
}
.inq-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.8;
}

/* Privacy */
.inq-privacy {
  margin-top: -4px;
}
.inq-privacy-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-500);
  cursor: pointer;
}
.inq-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}
.inq-link {
  color: var(--gray-300);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.inq-link:hover {
  color: var(--gray-100);
}

/* Submit button */
.inq-submit {
  width: 100%;
  padding: 16px;
  background: var(--gray-300);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-ja);
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.inq-submit:hover {
  background: var(--gray-100);
}

/* Note */
.inq-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-700);
  margin-top: -8px;
}

/* Divider between fields */
.inq-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .inq-hero { padding: 120px 0 48px; }
  .inq-hero-title { font-size: 1.4rem; }
  .inq-section { padding: 48px 0 80px; }
}
