/* =========================================================
   MitsuPita Job – 応募フォーム / 面談フォーム（form.css）
   2025 PERFECT R6（ブランド統一・応募率UP仕様）
========================================================= */

/* -------------------------------------------
   ラッパー（中央寄せ）
------------------------------------------- */
.lpj-form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 22px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

/* -------------------------------------------
   セクションタイトル
------------------------------------------- */
.lpj-form-title {
  font-size: 26px;
  font-weight: 800;
  color: #1F9FAD;
  margin-bottom: 10px;
}

.lpj-form-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* -------------------------------------------
   入力項目（レイアウト）
------------------------------------------- */
.lpj-form-group {
  margin-bottom: 22px;
}

.lpj-form label {
  font-weight: 700;
  color: #1F9FAD;
  margin-bottom: 6px;
  display: block;
  font-size: 15px;
}

/* -------------------------------------------
   input / textarea / select
------------------------------------------- */
.lpj-form input,
.lpj-form textarea,
.lpj-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid #CDEFF2;
  background: #fff;
  font-size: 15px;
  transition: 0.2s;
}

.lpj-form input:focus,
.lpj-form textarea:focus,
.lpj-form select:focus {
  border-color: #1F9FAD;
  box-shadow: 0 0 6px rgba(31,159,173,0.25);
  outline: none;
}

/* テキストエリア */
.lpj-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* -------------------------------------------
   チェックボックス / ラジオボタン
------------------------------------------- */
.lpj-check-group,
.lpj-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 6px;
}

.lpj-check-item,
.lpj-radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #FAFEFF;
  border-radius: 14px;
  border: 2px solid #D6EEF2;
  cursor: pointer;
  transition: 0.25s;
}

.lpj-check-item:hover,
.lpj-radio-item:hover {
  background: #E8FAFD;
  border-color: #1F9FAD;
}

.lpj-check-item input,
.lpj-radio-item input {
  width: 18px;
  height: 18px;
  accent-color: #1F9FAD;
}

/* -------------------------------------------
   エラー表示
------------------------------------------- */
.lpj-error {
  color: #D64545;
  font-size: 13px;
  margin-top: 6px;
}

/* -------------------------------------------
   送信ボタン（応募率UPカラー）
------------------------------------------- */
.lpj-submit-area {
  text-align: center;
  margin-top: 32px;
}

.lpj-submit {
  width: 100%;
  background: #FF7A4D;
  padding: 16px 0;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 3px 10px rgba(255,122,77,0.25);
}

.lpj-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

/* -------------------------------------------
   注意書き
------------------------------------------- */
.lpj-note {
  font-size: 13px;
  color: #777;
  margin-top: 20px;
  line-height: 1.6;
}

/* -------------------------------------------
   スマホ最適化
------------------------------------------- */
@media(max-width: 767px){
  .lpj-form-title { font-size: 22px; }
  .lpj-form-group { margin-bottom: 20px; }
  .lpj-submit { padding: 16px; font-size: 17px; }
  .lpj-check-item,
  .lpj-radio-item { width: 100%; }
}