/* ======================================
CONTACT（完全独立・サシカエ確定版）
影響範囲：#contact のみ
HTML変更なし
====================================== */

/* ===============================
CONTACT 本体
=============================== */
#contact {
  position: relative;
  padding: 120px 20px;
  background: none;
  overflow: visible;
}

/* ===============================
背景（全幅・疑似パララックス）
=============================== */
#contact .lp-contact-bg {
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  z-index: 0;

  background-image: url("https://syuzaidouga.com/wp/wp-content/uploads/2025/10/60b2dd0aeb011b5c1555d3b36f1273b4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.8;
}

/* PCのみ疑似パララックス */
@media (min-width: 769px) {
  #contact .lp-contact-bg {
    background-attachment: fixed;
  }
}

/* SPは安全側 */
@media (max-width: 768px) {
  #contact {
    padding: 80px 16px;
  }
  #contact .lp-contact-bg {
    background-attachment: scroll;
  }
}

/* ===============================
白い窓（薄いベール）
=============================== */
#contact .lp-contact-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;

  background: rgba(255,255,255,0.88);
  border-radius: 16px;
  padding: 56px 56px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  #contact .lp-contact-inner {
    padding: 32px 20px;
    border-radius: 14px;
  }
}

/* ===============================
見出し・リード
=============================== */
#contact .lp-sec-kicker {
  display: block;
  text-align: center;
  margin-bottom: 16px;
}

#contact .lp-section-title {
  text-align: center;
  margin-bottom: 32px;
}

/* common.css準拠：中央寄せ・左揃え */
#contact .lp-contact-text {
  margin-bottom: 40px;
}

#contact .lp-contact-text p {
  max-width: 640px;
  margin: 0 auto 20px;
  text-align: left;
  font-size: inherit;
  line-height: inherit;
}

/* ===============================
フォーム
=============================== */
#contact form {
  max-width: 640px;
  margin: 40px auto 0;
}

#contact label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

#contact input,
#contact textarea,
#contact select {
  width: 100%;
  margin-bottom: 20px;
}

/* ===============================
必須・任意ラベル（旧仕様・確実表示）
=============================== */
#contact .required,
#contact .optional {
  display: inline-block;
  font-size: 12px;
  margin-right: 8px;
  white-space: nowrap;
}

#contact .required {
  color: #d00;
}

#contact .optional {
  color: #888;
}

/* ===============================
送信ボタン（共通ルール）
=============================== */
#contact input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 40px auto 0;
  padding: 16px 0;

  background: transparent;
  color: #0099cc;
  border: 2px solid #0099cc;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

#contact input[type="submit"]:hover {
  background: #0099cc;
  color: #fff;
}

/* ===============================
安心文言 余白
=============================== */
.lp-contact-assurance {
  margin-top: -40px;
  padding: 64px 20px;
}

.lp-contact-note {
  max-width: 760px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.9;
  color: #666;
}
/* ===============================
必須・任意バッジ（CF7用・確実反映）
=============================== */
#contact .badge {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 4px 8px;
  margin-right: 8px;
  border-radius: 999px;
  white-space: nowrap;
  vertical-align: middle;
}

/* 必須 */
#contact .badge.req {
  background: rgba(221, 0, 0, 0.1);
  color: #d00;
}

/* 任意 */
#contact .badge.opt {
  background: rgba(0, 0, 0, 0.05);
  color: #666;
}

