/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 27 2026 | 12:26:33 */
/* メールフォーム */
.wpcf7 {
  max-width: 800px;
}

.wpcf7 p {
  margin-bottom: 18px;
  color: #333;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d8d2c8;
  border-radius: 6px;
  background: #fff;
}

.wpcf7 textarea {
  width: 100% !important;
  box-sizing: border-box;
}

.wpcf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.wpcf7 .wpcf7-list-item {
  margin: 0 16px 0 0;
}

.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: auto;
  margin-right: 6px;
}

.wpcf7 input[type="date"] {
  max-width: 250px;
}

.wpcf7 .wpcf7-submit {
  display: inline-block;
  width: auto;
  min-width: 220px;
  background: linear-gradient(180deg, #c9a86a 0%, #a88445 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.wpcf7 .wpcf7-submit:hover {
  opacity: 0.92;
}

/* ボタンエリア横並び */
.confirm-btns {
  display: flex !important;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* CF7が自動挿入するpタグを無効化 */
.confirm-btns p {
  display: contents !important;
}

/* 戻るボタン */
.wpcf7-previous {
  padding: 14px 32px !important;
  background: #888 !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer;
  font-size: 15px;
}

.wpcf7-previous:hover,
.confirm-btns .wpcf7-submit:hover {
  opacity: 0.85;
}

/* CF7送信ボタンを非表示 */
.wpcf7-submit {
  display: none !important;
}

#cf7-confirm-area {
  display: none;
}

/* 確認画面へボタン（ゴールド） */
.cf7-confirm-btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #c9a84c, #a07830);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  margin-top: 16px;
  letter-spacing: 0.05em;
}
.cf7-confirm-btn:hover {
  opacity: 0.85;
}

/* この内容で送信するボタン（ゴールド） */
#cf7-submit-btn {
  padding: 14px 40px;
  background: linear-gradient(135deg, #c9a84c, #a07830);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
#cf7-submit-btn:hover {
  opacity: 0.85;
}

/* 戻って修正するボタン（シルバー） */
#cf7-back-btn {
  padding: 14px 32px;
  background: linear-gradient(135deg, #aaa, #777);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
#cf7-back-btn:hover {
  opacity: 0.85;
}


/* ============================
   確認エリア 全体
============================ */
#cf7-confirm-area {
  display: none;
  max-width: 680px;
  margin: 48px auto 64px;
  padding: 40px 40px 48px;
  background: #faf8f5;
  border: 1px solid #ddd6c8;
  border-radius: 4px;
}

/* タイトル */
#cf7-confirm-area h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #4a3f35;
  border-left: 4px solid #a07830;
  padding-left: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

/* サブテキスト */
#cf7-confirm-area > p {
  font-size: 0.92rem;
  color: #777;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

/* ============================
   確認テーブル
============================ */
.confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.confirm-table tr {
  border-bottom: 1px solid #e5ddd0;
}

.confirm-table tr:first-child {
  border-top: 1px solid #e5ddd0;
}

.confirm-table th {
  width: 30%;
  padding: 14px 16px;
  background: #f0ebe2;
  color: #4a3f35;
  font-weight: bold;
  text-align: left;
  letter-spacing: 0.04em;
  vertical-align: top;
}

.confirm-table td {
  padding: 14px 16px;
  color: #333;
  line-height: 1.7;
  vertical-align: top;
  word-break: break-all;
}

/* ============================
   ボタンエリア
============================ */
.confirm-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* 戻るボタン（シルバー） */
#cf7-back-btn {
  padding: 13px 32px;
  background: linear-gradient(135deg, #aaa, #777);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 0.06em;
  min-width: 160px;
}

/* 送信ボタン（ゴールド） */
#cf7-submit-btn {
  padding: 13px 40px;
  background: linear-gradient(135deg, #c9a84c, #a07830);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 0.06em;
  min-width: 200px;
}

#cf7-back-btn:hover,
#cf7-submit-btn:hover {
  opacity: 0.82;
}

/* ============================
   確認画面へボタン（入力フォーム下）
============================ */
.cf7-confirm-btn {
  display: inline-block;
  padding: 14px 48px;
  background: linear-gradient(135deg, #c9a84c, #a07830);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-top: 20px;
}

.cf7-confirm-btn:hover {
  opacity: 0.82;
}

/* ============================
   CF7本来の送信ボタンを非表示
============================ */
.wpcf7-submit {
  display: none !important;
}

/* ============================
   スマホ対応（768px以下）
============================ */
@media (max-width: 768px) {

  /* 確認エリア全体 */
  #cf7-confirm-area {
    margin: 24px 0 40px;
    padding: 24px 20px 32px;
  }

  /* タイトル */
  #cf7-confirm-area h3 {
    font-size: 1.1rem;
    padding-left: 12px;
    margin-bottom: 8px;
  }

  /* サブテキスト */
  #cf7-confirm-area > p {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }
	
/* ============================
   チェックボックス サイズアップ
============================ */

/* チェックボックス本体を大きく */
.wpcf7-checkbox .wpcf7-list-item input[type="checkbox"],
.wpcf7-acceptance input[type="checkbox"] {
  width: 30px;
  height: 30px;
  cursor: pointer;
  accent-color: #a07830;
  flex-shrink: 0;
  margin-right: 8px;
  vertical-align: middle;
}

/* ラベルテキストも少し大きく・タップしやすく */
.wpcf7-checkbox .wpcf7-list-item label,
.wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  cursor: pointer;
  gap: 8px;
  padding: 6px 0;
  line-height: 1.5;
}

/* 各項目の間隔を広げる */
.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-bottom: 8px;
}


  /* テーブルをブロック表示に切り替え */
  .confirm-table,
  .confirm-table tbody,
  .confirm-table tr,
  .confirm-table th,
  .confirm-table td {
    display: block;
    width: 100%;
  }

  /* 行の区切り */
  .confirm-table tr {
    border-bottom: none;
    margin-bottom: 12px;
  }

  .confirm-table tr:first-child {
    border-top: none;
  }

  /* ラベル（th） */
  .confirm-table th {
    padding: 8px 12px;
    font-size: 0.82rem;
    color: #7a6a55;
    background: #f0ebe2;
    border-left: 3px solid #a07830;
    border-bottom: none;
  }

  /* 値（td） */
  .confirm-table td {
    padding: 10px 12px 14px;
    font-size: 0.95rem;
    background: #fff;
    border-bottom: 1px solid #e5ddd0;
  }

  /* ボタンエリア */
  .confirm-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }

  /* 戻るボタン */
  #cf7-back-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    font-size: 14px;
    text-align: center;
    order: 2;
  }

  /* 送信ボタン */
  #cf7-submit-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 20px;
    font-size: 16px;
    text-align: center;
    order: 1;
  }

  /* 確認画面へボタン */
  .cf7-confirm-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 20px;
    font-size: 15px;
    text-align: center;
    display: block;
    margin: 20px auto 0;
  }
}

/* ============================
   サンクスページ
============================ */
.thanks-wrap {
  max-width: 640px;
  margin: 60px auto 80px;
  padding: 0 20px;
  text-align: center;
}

/* アイコン */
.thanks-icon {
  font-size: 3rem;
  color: #a07830;
  margin-bottom: 20px;
  line-height: 1;
}

/* メインタイトル */
.thanks-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4a3f35;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* リード文 */
.thanks-lead {
  font-size: 1rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 32px;
}

/* インフォボックス */
.thanks-box {
  background: #faf8f5;
  border: 1px solid #ddd6c8;
  border-left: 4px solid #a07830;
  padding: 18px 24px;
  margin-bottom: 40px;
  text-align: left;
  border-radius: 2px;
}

.thanks-box-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.9;
  margin: 0;
}

/* 電話番号エリア */
.thanks-tel {
  background: #f5f2ed;
  border: 1px solid #ddd6c8;
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 40px;
  text-align: left;
}

.thanks-tel-label {
  font-size: 0.88rem;
  color: #7a6a55;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-align: center;
}

.thanks-tel-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #e5ddd0;
  flex-wrap: wrap;
}

.thanks-tel-item:last-child {
  border-bottom: none;
}

.thanks-store {
  font-size: 0.9rem;
  color: #4a3f35;
  font-weight: bold;
  min-width: 90px;
}

.thanks-tel-num {
  font-size: 1.2rem;
  color: #a07830;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.thanks-tel-num:hover {
  text-decoration: underline;
}

.thanks-time {
  font-size: 0.8rem;
  color: #888;
}

/* トップへ戻るボタン */
.thanks-btn {
  display: inline-block;
  padding: 14px 48px;
  background: linear-gradient(135deg, #c9a84c, #a07830);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.thanks-btn:hover {
  opacity: 0.82;
  color: #fff;
}

/* ============================
   スマホ対応
============================ */
@media (max-width: 768px) {
  .thanks-wrap {
    margin: 40px auto 60px;
  }

  .thanks-title {
    font-size: 1.2rem;
  }

  .thanks-tel {
    padding: 20px 16px;
  }

  .thanks-tel-item {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
  }

  .thanks-tel-num {
    font-size: 1.3rem;
  }

  .thanks-time {
    font-size: 0.78rem;
  }

  .thanks-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 16px 20px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

.thanks-wrap {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 16px 80px;
  height: auto;
  min-height: auto;
  overflow: visible;
  display: block;   /* flexやめる */
}

.thanks-icon,
.thanks-wrap h1,
.thanks-lead {
  text-align: center;
}

.thanks-wrap h1 {
  font-size: 40px;
  line-height: 1.5;
  margin: 20px 0 16px;
}

.thanks-lead {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 10px;
}

/* 電話案内のボックス */
.thanks-contact {
  width: 100%;
  margin: 40px auto 0;
  padding: 24px;
  border: 1px solid #ddd;
  background: #fff;
}

/* 行レイアウト */
.thanks-contact-row {
  display: grid;
  grid-template-columns: 120px 180px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
}

.thanks-contact-row:last-child {
  border-bottom: none;
}

/* 戻るボタンを中央に */
.thanks-btn-wrap {
  text-align: center;
  margin-top: 32px;
}

.thanks-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #b88a2a;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .thanks-wrap {
    padding: 40px 16px 60px;
  }

  .thanks-wrap h1 {
    font-size: 28px;
  }

  .thanks-lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .thanks-contact {
    padding: 16px;
  }

  .thanks-contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
