/* 全体の背景画像設定 */
body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  margin: 0;
  padding: 0;
  background-image: url("kimono-bg.jpg"); /* ← アップした画像ファイル名に変更してください */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* メインフォームのコンテナ */
.fgp-container {
  max-width: 480px;
  margin: 50px auto;
  background-color: rgba(255, 255, 255, 0.85); /* 白＋透過（読みやすさ重視） */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #d6c8b0;
}

/* タイトル */
.fgp-title {
  text-align: center;
  color: #8c4a35; /* 落ち着いた和風茶色 */
  font-size: 1.6em;
  margin-bottom: 25px;
  border-bottom: 2px solid #e0d7c6;
  padding-bottom: 10px;
}

/* ラベル共通 */
label {
  display: block;
  margin-top: 18px;
  color: #5c3b28;
  font-weight: bold;
}

/* 入力欄・セレクトボックス */
input[type="number"],
select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  font-size: 1em;
  border: 1px solid #cbbbaa;
  border-radius: 5px;
  box-sizing: border-box;
}

/* 査定ボタン */
button[type="submit"] {
  background-color: #8c4a35;
  color: #fff;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  margin-top: 25px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #a55842;
}

/* 結果表示欄 */
.fgp-result {
  margin-top: 25px;
  text-align: center;
  font-size: 1.2em;
  color: #3c2f25;
  font-weight: bold;
}
/* 戻るボタンエリア */
.fgp-back-area {
  text-align: center;
  margin-top: 20px;
}

/* 戻るボタン */
.fgp-back-button {
  display: inline-block;
  background-color: #6b6b6b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.fgp-back-button:hover {
  background-color: #505050;
}

