@charset "UTF-8";
.info_main {
  margin-top: 80px;
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info_title {
  font-weight: bold;
  font-size: 64px;
  background: linear-gradient(transparent 80%, #f1de2a 70%);
  margin-bottom: 40px;
}

.info_sub_title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-label {
  margin-bottom: 10px;
  cursor: default;
  pointer-events: none;
}

.form-input {
  margin-bottom: 10px;
}

.form-submit {
  text-align: center;
  margin-bottom: 10px;
}

.form-submit button:hover {
  text-decoration: underline;
  cursor: pointer;
}

textarea,
input[type=text],
input[type=email] {
  width: 100%;
  border: 1px solid #333333;
  margin-bottom: 10px;
  background-color: #f1f1f1;
  border-radius: 4px;
}

/* --- レイアウトの基本 --- */
.info_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 0;
  position: relative; /* 手の画像を配置するため */
}

/* --- 白いフォームエリア --- */
.form-inner {
  background: rgba(255, 255, 255, 0.95); /* 画像のような透き通る白 */
  padding: 60px 40px;
  border-radius: 8px; /* 控えめな角丸 */
  width: 100%;
  max-width: 600px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* 柔らかい影 */
  text-align: center;
}

.confirm_lead {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

/* --- 入力項目の見せ方 --- */
.form-group {
  margin-bottom: 25px;
  text-align: left;
}

.form-label {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

/* 入力された値を表示するボックス（画像のinput風） */
.confirm-value {
  font-size: 16px;
  color: #444;
  padding: 12px 15px;
  background: #f1f1f1; /* 画像の入力欄のグレー */
  border: 1px solid #333333; /* 画像のしっかりした枠線 */
  border-radius: 4px;
  min-height: 48px;
  line-height: 1.6;
}

/* --- 送信ボタン：画像内の緑色を再現 --- */
.wpcf7-submit,
.btn {
  background-color: #50a02a !important; /* 画像の「確認画面へ」ボタンの緑 */
  color: #fff !important;
  padding: 12px 60px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(80, 160, 42, 0.3);
  transition: all 0.3s ease;
  margin-top: 30px;
}

.wpcf7-submit:hover {
  background-color: #438723 !important;
  transform: translateY(-2px);
}

/* --- 下部ナビゲーションの調整 --- */
.btn_inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
}

.remove_btn a,
.next_btn a {
  text-decoration: none;
  color: #333;
  font-size: 24px;
  border-bottom: 1px solid transparent;
}

/**********************thanks_page********************/
.thanks-inner {
  max-width: 500px;
  width: 90%; /* スマホ対応 */
  background: #ffffff;
  border-radius: 15px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  gap: 20px;
  /* 既存のdrop-shadowをよりモダンなbox-shadowに変更 */
}

.thanks_message h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.thanks_text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* TOPへ戻るボタンの調整 */
.btn-home {
  background-color: #50a02a !important; /* 画像の「確認画面へ」ボタンの緑 */
  color: #fff !important;
  padding: 12px 60px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(80, 160, 42, 0.3);
  transition: all 0.3s ease;
}

.btn-home:hover {
  background: #438723 !important;
  color: #fff !important;
  transform: translateY(-2px);
}/*# sourceMappingURL=style_info.css.map */