@charset "utf-8";

/* =========================================================
   株式会社真経営 LP
   ベーススタイル
   ※レイアウト・配色は各要素の style 属性に記述しています。
     このファイルにはリセット、hover、FAQ挙動、追従CTAの
     表示制御など「インラインで書けないもの」だけを置いています。
   ========================================================= */

html, body { margin: 0; padding: 0; }
body { background: #ffffff; -webkit-font-smoothing: antialiased; }
* { box-sizing: border-box; }
img { max-width: 100%; }
a { color: #8f6a2a; text-decoration: none; }
a:hover { color: #6f5120; text-decoration: underline; }
input, textarea, button { font-family: inherit; }

/* ---- CTAボタン（ゴールド） ---- */
.btn-gold:hover {
  background: #7b5a22 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* ---- FAQ ---- */
.faq__item { border: 1px solid #e6e3dc; border-radius: 5px; overflow: hidden; }
.faq__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: #ffffff;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.faq__head:hover { background: #faf9f6; }
.faq__q {
  font-weight: 700;
  font-size: clamp(14.5px, 1.5vw, 16px);
  line-height: 1.8;
  color: #14243d;
}
.faq__mark {
  flex: none;
  font-size: 18px;
  line-height: 1.5;
  color: #8f6a2a;
}
.faq__body { display: none; background: #ffffff; }
.faq__item.is-open .faq__body { display: block; }

/* ---- 入力欄フォーカス ---- */
.form input:focus,
.form textarea:focus {
  outline: 2px solid #8f6a2a;
  outline-offset: 1px;
  border-color: #8f6a2a;
}

/* ---- スパム対策用のダミー項目（人には見せない） ---- */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

/* ---- 画面下に追従するCTA（スマホ・タブレットのみ） ---- */
#fab {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 14px;
  background: rgba(20, 36, 61, 0.94);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}
#fab a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 5px;
  background: #8f6a2a;
  color: #ffffff;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: 0.04em;
}
@media (min-width: 900px) {
  #fab { display: none; }
  footer { padding-bottom: 28px !important; }
}
