/* =========================
  カラートークン（全体統一）
========================= */
:root{
  --primary: #D9A441;
  --bg: #F8F7F4;
  --text: #1F2937;
  --cta: #111;
  --price: #E60023;
}

/* =========================
  全体（ベース）
========================= */
body{
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* =========================
  詳細ページ
========================= */

/* 画像 */
.detail-img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

/* 価格 */
.detail-price{
  font-size: 28px;
  color: var(--price);
  font-weight: bold;
  margin: 10px 0 20px;
}

/* CTAボタン */
.cta-btn{
  width: 100%;
  padding: 16px;
  background: var(--cta);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cta-btn:hover{
  background: var(--primary);
  color: #000;
  transform: translateY(-1px);
}

/* =========================
  固定問い合わせバー（スマホ）
========================= */
.fixed-contact{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  z-index: 999;
}

.fixed-btn{
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

/* =========================
  問い合わせセクション
========================= */

/* 全体ラップ */
#contact-form{
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  margin: 20px auto;
  max-width: 520px;
}

/* ✅ 見出し（CSS強制表示は削除済み） */
.form-title{
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--text);
}

/* 入力欄 */
#contact-form input,
#contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  background: #fafafa;
  transition: all 0.2s;
}

/* プレースホルダー */
#contact-form input::placeholder,
#contact-form textarea::placeholder{
  color: #aaa;
}

/* フォーカス */
#contact-form input:focus,
#contact-form textarea:focus{
  border-color: var(--primary);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(217,164,65,0.15);
}

/* テキストエリア */
#contact-form textarea{
  min-height: 120px;
  resize: vertical;
}

/* 送信ボタン */
#contact-form button{
  width: 100%;
  padding: 15px;
  background: var(--cta);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

#contact-form button:hover{
  background: var(--primary);
  color: #000;
  transform: translateY(-1px);
}

/* =========================
  車情報（問い合わせ上部）
========================= */
#car-info{
  background: #FFF3D6;
  padding: 16px;
  border-radius: 12px;
  margin: 10px auto 20px;
  font-size: 14px;
  max-width: 520px;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* 見出し */
#car-info h3{
  margin-top: 0;
  font-size: 15px;
  font-weight: bold;
}

/* 車名 */
#car-info strong{
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}