/* ======================================
  Footer
====================================== */

.lp-footer{
  background:#2f2f2f;
  color:#fff;
  padding:60px 20px 40px;
}

.lp-footer__inner{
  max-width:960px;
  margin:0 auto;
}

/* PC：左（キャッチ+LINE）／右（店舗2つ） */
.lp-footer__grid{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap:40px;
  align-items:start;
}

.lp-footer__main{
  text-align:left;
}

.lp-footer__catch{
  font-size:18px;
  line-height:1.7;
  margin:0 0 22px;
}

.lp-footer__catch strong{
  font-weight:700;
}

/* LINEボタン */
.lp-footer__line{
  margin:0;
}

.lp-footer__line-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  background:var(--lineGreen);
  color:#fff;
  padding:14px 18px;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
  transition:opacity .2s;
}

.lp-footer__line-btn:hover{
  opacity:.85;
}

/* 店舗ブロック */
.lp-footer__stores{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.lp-footer__store{
  /* border:1px solid rgba(255,255,255,.15); */
  /* border-radius:10px; */
  /* padding:16px 16px 14px; */
  /* background:rgba(255,255,255,.04); */
}

.lp-footer__store-name{
  font-weight:700;
  margin:0 15px 8px 0;
  letter-spacing:.02em;
}

.lp-footer__store-address{
  margin:0 0 10px;
  font-size:14px;
  line-height:1.7;
  color:#e6e6e6;
}

.lp-footer__store-tel{
  margin: 0 15px 0 12px;
  font-size:16px;
  font-weight:700;
}

.lp-footer__tel-label{
  font-size:12px;
  margin-right:8px;
  vertical-align:middle;
  color:rgba(255,255,255,.7);
}

.lp-footer__store-tel a{
  color:#fff;
  text-decoration:none;
}

/* Googleボタン（店舗ごと） */
.lp-footer__google-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:36px;
  padding:0 14px;
  /* border-radius:999px; */
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  width:max-content;
}

.lp-footer__google-btn:hover{
  opacity:.85;
}

.lp-footer__copyright{
  margin:26px 0 0;
  text-align:center;
  font-size:12px;
  color:#bdbdbd;
}

/* =========================
  SP（縦積み）
========================= */
@media (max-width: 768px){
  .lp-footer{
    padding:44px 16px 34px;
  }

  .lp-footer__grid{
    grid-template-columns: 1fr;
    gap:18px;
  }

  .lp-footer__main{
    text-align:center;
  }

  .lp-footer__catch{
    margin-bottom:14px;
  }

  .lp-footer__line-btn{
    width:100%;
    max-width:420px;
  }

  .lp-footer__stores{
    gap:14px;
  }

  .lp-footer__store{
    text-align:left;
  }

  .lp-footer__store-address {
    margin: 0 15px 10px 0;
  }

  .lp-footer__copyright{
    margin-top:18px;
  }
}