/* 全体のリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.5;
}

/* LP全体ラップ */
.lp-wrap {
  width: 100%;
  margin: 0 auto;
}

/* 各セクション */
.lp-section {
  width: 100%;
}

/* 画像は幅100%でレスポンシブ */
.lp-section img {
  display: block;
  width: 100%;
  height: auto;
}
/* =========================
   追従フッター（小さめ）
========================= */
.lp-footer-fix {
  position: fixed;
  bottom: -80px; /* 初期は隠す */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 8px; /* ボタン間のすき間 */
  background: #ffffff80;
  padding: 6px 8px;
  box-shadow: 0 -3px 8px rgba(0,0,0,.15);
  transition: bottom 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  z-index: 999;
}

.lp-footer-fix.is-show {
  bottom: 0; /* 出現 */
  opacity: 1;
}

.lp-footer-btn {
  flex: 1;
  max-width: 300px; /* ボタン横幅の上限（調整可） */
}

.lp-footer-btn img {
  width: 100%;
  height: 68px;      /* 高さを固定して揃える */
  object-fit: contain; /* 縦横比を崩さず収める */
  display: block;
}

@media screen and (min-width: 969px) {
  .lp-section .sp {
    display: none;
  }
  }
@media screen and (max-width: 969px) {
  .lp-section .pc {
  display: none;
}
.lp-footer-btn img {
  width: 100%;
  height: 48px;
  object-fit: contain;
  display: block;
}
}