/* ====== Simple Responsive Form ====== */
.contact-form{
  --border:#e5e7eb;
  --text:#111827;
  --muted:#6b7280;
  --bg:#ffffff;
  --focus:#2563eb;
  --danger:#ef4444;
  max-width: 860px;
  margin: 24px auto;
  padding: 0 16px;
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.form-card{
  padding: 18px;
}

.form-title{
  font-size: 20px;
  margin: 0 0 14px;
}

.form-grid{
  display: grid;
  gap: 14px;
}
.mod-inner-cnt .kakunin {text-align: center;}
.mod-inner-cnt .s_red {
    color: #e62854;
}

/* 2カラム（PC） / 1カラム（SP） */
.form-row{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 12px;
  align-items: start;
  border: dotted #999;
  border-width: 0 0 1px;
  padding: 1.5em 0 2em 0;
}

@media (max-width: 640px){
  .form-card{ padding: 14px; }
  .form-row{
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.form-label{
  font-weight: 600;
  line-height: 1.4;
}

.req{
  color: var(--danger);
  font-weight: 700;
  margin-left: 4px;
}

.help{
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 6px;
}

.form-field input,
.form-field select,
.form-field textarea{
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 16px;
  background: #fff;
  outline: none;
  box-sizing: border-box;
}

.form-field textarea{ resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color: var(--focus);
  box-shadow: 0 0 0 4px rgba(37,99,235,.15);
}

/* チェックボックス */
.checks{
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.check{
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
}
.check input{
  width: 18px;
  height: 18px;
}

/* 注記 */
.note{
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.caution{
  margin: 14px 0 0;
  padding: 12px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* 送信ボタン */
.form-actions{
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.btn{
  appearance: none;
  border: none;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  background: #93c64f;
  color: #fff;
  min-width: 160px;
}

.btn:hover{ filter: brightness(0.95); }
.btn:active{ transform: translateY(1px); }

@media (max-width: 640px){
  .form-actions{ justify-content: stretch; }
  .btn{ width: 100%; }
}


/* ===== 送信完了ページ ===== */
.thanks-wrap{
    min-height: 36vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 24px 16px; */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
    /* background: #f9fafb; */
}

.thanks-card{
  max-width: 640px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  text-align: center;
}

.thanks-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #93c64f;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-title{
  font-size: 20px;
  margin: 8px 0 16px;
  line-height: 1.5;
}

.thanks-text{
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #111827;
}

.thanks-note{
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 20px;
}

.thanks-actions{
  margin-top: 8px;
}

.thanks-btn{
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: #93c64f;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: .2s;
}

.thanks-btn:hover{
  filter: brightness(0.95);
}

@media (max-width: 640px){
  .thanks-card{
    padding: 22px 18px;
  }

  .thanks-title{
    font-size: 18px;
  }

  .thanks-text{
    font-size: 14px;
  }
}


.mod-bg .style3a, .map-area .style3a {
    margin: 75px 0 50px;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: normal;
    border: none;
    text-align: center;
    color: #b0a5a5;
    font-size: 2.1rem;
    padding: 0;
    line-height: 1.7;
}
.mod-bg .style3a label, .map-area .style3a label {
    display: block;
    color: #b0a5a5;
    font-size: 1.25rem;
    font-size: 0.98rem;
    font-weight: bold;
}