/* リセット */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}

/* 背景 */
body {
  background: #f5f7fa; 
  padding: 15px;
  line-height: 1.6;
}

/* フォーム全体 */
form {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e3e8ef;
}

/* h2は削除しましたが、念の為残しておきます */
h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2b3a55;
}

/* 共通のラベル */
label {
  display: block;
  margin: 12px 0 6px;
  font-weight: bold;
  color: #2b3a55;
}

/* 入力欄 */
input[type="text"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 2px solid #d0d7e5;
  border-radius: 6px;
  font-size: 16px;
  background: #fafbff;
  transition: 0.2s;
}

/* フォーカス時（タップしたときの強調） */
input[type="text"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  border-color: #4a90e2;
  background: #fff;
  outline: none;
}

/* チェックボックス */
.checkbox-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.checkbox-item input {
  margin-right: 8px;
}

.checkbox-label {
  color: #2b3a55;
}

/* 送信ボタン */
input[type="submit"] {
  background: #4a90e2;
  color: #fff;
  padding: 14px;
  border: none;
  margin-top: 15px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  transition: 0.2s;
}

input[type="submit"]:hover {
  background: #3b7dc5;
}

/* スマホ用微調整 */
@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  form {
    padding: 15px;
    border-radius: 10px;
  }

  input[type="text"],
  input[type="date"],
  textarea,
  select {
    font-size: 16px;
    padding: 10px;
  }

  input[type="submit"] {
    font-size: 17px;
    padding: 12px;
  }
}

/* ▼▼▼ ヘッダー画像エリア ▼▼▼ */
.header-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 20px; /* 中央寄せ＋下に余白 */
  text-align: center;
}

.header-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ▼▼▼ 店舗情報＆メッセージ用スタイル ▼▼▼ */
.info-card {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 20px; /* 下に余白（フォームとの間隔） */
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e3e8ef;
  text-align: center;
}

.info-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.shop-name {
  font-size: 18px;
  color: #2b3a55;
  margin-bottom: 5px;
  line-height: 1.4;
}

.shop-tel {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #4a90e2;
  text-decoration: none;
  margin-bottom: 20px;
  transition: 0.2s;
}

.shop-tel:hover {
  opacity: 0.7;
}

.promotion-box {
  background: #fff9e6;
  border: 1px solid #ffeeba;
  padding: 15px;
  border-radius: 8px;
  color: #2b3a55;
}

.promotion-box p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.promotion-box p:last-child {
  margin-bottom: 0;
}

.closing-msg {
  font-weight: bold;
  margin-top: 10px;
}