/* ===================================
   Contact Page Styles
=================================== */

.contact-section {
  background-color: var(--color-bg);
  padding-top: 140px;
  padding-bottom: 100px;
  min-height: 100vh;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.contact-title {
  font-size: 40px;
  color: var(--color-text);
  margin-bottom: 32px;
}

.contact-intro {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-notes {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 48px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(176, 140, 74, 0.4);
  padding: 16px 0;
}

.form-group:first-of-type {
  border-top: 2px solid var(--color-main);
}

.form-label {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.required {
  color: #9a1919;
  font-size: 13px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--color-main);
  background-color: white;
  padding: 0 16px;
  font-size: 15px;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}

.form-input:focus {
  border-color: var(--color-dark);
  box-shadow: 0 0 0 2px rgba(177, 140, 74, 0.15);
}

.form-section-note {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
  padding: 24px 0 8px;
}

.form-textarea {
  width: 100%;
  border: 0.5px solid #303030;
  background-color: white;
  padding: 16px;
  font-size: 15px;
  color: var(--color-text);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 8px;
  grid-column: 1 / -1;
}

.form-textarea:focus {
  border-color: var(--color-main);
}

/* Override for textarea row */
.form-group:has(.form-textarea) {
  grid-template-columns: 1fr;
}

/* Notes */
.form-notes {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note-error {
  font-size: 14px;
  color: #9a1919;
  font-weight: 500;
}

.note-body {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
}

.note-domain {
  color: #9a1919;
  font-weight: 500;
}

/* reCAPTCHA */
.recaptcha-area {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.recaptcha-area img {
  max-width: 320px;
  height: auto;
  border: 0.5px solid #303030;
}

/* Privacy */
.privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.privacy-check input[type="checkbox"] {
  width: 14px;
  height: 14px;
  border: 1px solid #303030;
  cursor: pointer;
  accent-color: var(--color-main);
}

.privacy-check label {
  font-size: 15px;
  color: var(--color-text);
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.privacy-link {
  color: #01698c;
  text-decoration: underline;
}

/* Submit */
.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-submit {
  background-color: var(--color-footer-bg);
  color: white;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 16px 80px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.85;
}
