/* ロゴ画像のサイズ調整 */
.l-header-logo img,
.l-header-logo__img img {
  max-width: 50px;   /* 横幅を制限（お好みで120px〜180pxに調整可能） */
  height: auto;       /* 縦横比を保持 */
  margin: 1rem auto;  /* 上下余白をほどよく */
  display: block;     /* 中央寄せ */
}

/* お問い合わせタイトルの余白調整 */
h2, .page-title {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.6rem;
  color: #333;
}

/* フォーム全体のレイアウト */
form {
  max-width: 480px;   /* フォーム幅を制限 */
  margin: 0 auto;     /* 中央寄せ */
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* 入力エリアの統一 */
.c-input--text,
textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 4px;
  border: 1px solid #d7dee2;
  transition: border-color 0.3s;
}
.c-input--text:focus,
textarea:focus {
  border-color: #C94F4F;  /* ブランド赤に統一 */
  outline: none;
}

/* 送信ボタンの強調 */
.c-button--primary {
  background: #C94F4F;   /* ブランド赤 */
  color: #fff;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  border: none;
  transition: background 0.3s;
}
.c-button--primary:hover {
  background: #a33b3b;   /* 濃い赤でホバー */
}
