@charset "UTF-8";
/* 採用サイト お問い合わせフォーム */
.contact-form {
  background: #ffffff;
  border: 1px solid #eeddd3;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(233, 127, 75, 0.08);
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-form {
    padding: 60px 50px;
  }
}
.contact-form__intro {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #fff5e8;
}
.contact-form__intro p {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 12px;
}
.contact-form__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
}
.contact-form__title::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #E97F4B;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-form__required-note {
  font-size: 13px;
  color: #d32f2f;
  margin-top: 20px;
}
.contact-form__required-note .required {
  background: #ffd9d9;
  color: #d32f2f;
  padding: 5px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  margin-right: 4px;
}

/* Form Group */
.form-group {
  margin-bottom: 28px;
}
.form-group--error .form-control {
  border-color: #d32f2f;
  background: #fff5f5;
}
.form-group--error .form-control:focus {
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}
.form-group--error .form-error {
  display: block;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
}
.form-label__required {
  background: #ffd9d9;
  color: #d32f2f;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
}
.form-label__optional {
  background: #cbb8a8;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
}

/* Form Controls */
.form-control {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 2px solid #eeddd3;
  border-radius: 6px;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
  color: #333333;
}
.form-control:focus {
  outline: none;
  border-color: #E97F4B;
  box-shadow: 0 0 0 3px rgba(233, 127, 75, 0.12);
}
.form-control::placeholder {
  color: #c7b8ac;
}
.form-control--textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.8;
}
.form-control--half {
  width: calc(50% - 8px);
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
  .form-row .form-control--half {
    width: 100%;
  }
}

.form-error {
  display: none;
  margin-top: 8px;
  padding: 8px 12px;
  background: #fff5f5;
  border-radius: 3px;
  font-size: 13px;
  color: #d32f2f;
  line-height: 1.6;
}

/* Radio */
.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
  padding: 6px 0;
}
.form-checkbox input[type=radio],
.form-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #E97F4B;
  flex-shrink: 0;
}
.form-checkbox:hover span {
  color: #E97F4B;
}

/* Actions */
.form-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .form-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 48px;
  background: #E97F4B;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(233, 127, 75, 0.3);
  width: 100%;
  max-width: 320px;
}
.btn-submit:hover:not(:disabled) {
  background: #D76B35;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 127, 75, 0.4);
}
.btn-submit:disabled {
  background: #d8c8bc;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 48px;
  background: #ffffff;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #eeddd3;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  max-width: 320px;
}
.btn-back:hover {
  background: #FFFAF1;
  border-color: #E97F4B;
  color: #E97F4B;
}
.btn-back::before {
  content: "←";
  font-size: 18px;
}

/* 確認テーブル */
.confirm-section {
  max-width: 800px;
  margin: 0 auto;
}

.confirm-table {
  width: 100%;
  background: #ffffff;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(233, 127, 75, 0.08);
  margin-bottom: 40px;
}
.confirm-table tr {
  border-bottom: 1px solid #eeddd3;
}
.confirm-table tr:last-child {
  border-bottom: none;
}
.confirm-table th {
  background: #fff5e8;
  color: #D76B35;
  font-weight: 700;
  text-align: left;
  padding: 18px 24px;
  width: 260px;
  vertical-align: top;
  font-size: 14px;
}
@media (max-width: 768px) {
  .confirm-table th {
    display: block;
    width: 100%;
    padding: 14px 20px 8px;
  }
}
.confirm-table td {
  padding: 18px 24px;
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .confirm-table td {
    display: block;
    width: 100%;
    padding: 8px 20px 18px;
  }
}
.confirm-table td.message-content {
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* 完了ページ */
.thanks-section {
  padding: 40px 0 20px;
  text-align: center;
}

.thanks-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #ffffff;
  border: 1px solid #eeddd3;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(233, 127, 75, 0.08);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #E97F4B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
}
.thanks-icon::before {
  content: "✓";
}

.thanks-title {
  font-size: 26px;
  font-weight: 700;
  color: #E97F4B;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .thanks-title {
    font-size: 30px;
  }
}

.thanks-message {
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 40px;
}

.thanks-actions {
  display: flex;
  justify-content: center;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  background: #E97F4B;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(233, 127, 75, 0.3);
}
.btn-home:hover {
  background: #D76B35;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 127, 75, 0.4);
}

/* ローディング */
.form-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}
