* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #000;
  line-height: 1.5;
}

.lp-wrap {
  width: 100%;
  margin: 0 auto;
}

.lp-section {
  width: 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; 
  padding: 6px 8px;
  transition: bottom 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  z-index: 999;
}



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

.lp-footer-btn img {
  width: 100%;
  height: 68px;
  object-fit: contain;
  display: block;
}
.has-btn {
  position: relative;
}

.btn-margin {
  position: absolute;
  left: 0;
  bottom: 1%;
  width: 85%;
  margin: 0 auto;
  right: 0;
}
.btn-margin {
  animation: pulse 1.5s ease-in-out infinite;
  transform-origin: center;
}
.btn-footer {
  position: absolute;
  left: 0;
  bottom: 0.6%;
  width: 85%;
  margin: 0 auto;
  right: 0;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@media screen and (min-width: 969px) {
  .lp-section .sp {
    display: none;
  }
  .lp-section {
    max-width: 1000px;
    margin: 0 auto;
  }

  }

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