/* footer 全体 */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* 背景の帯（フル幅） */
.site-footer__row {
  width: 100%;
}

/* 中身（中央・max幅） */
.site-footer__inner {
  max-width: 1200px; /* 1500pxでもOK */
  margin: 0 auto;
  padding: 28px 16px; /* 余白はここに */
  text-align: center;
}

/* それぞれ背景色 */
.site-footer__row--info {
  background: #d8c3a5;
} /* 濃いベージュ */
.site-footer__row--nav {
  background: #efe3d4;
} /* 薄いベージュ */
.site-footer__row--copy {
  background: #5a3b22;
} /* 茶色 */

/* コピーライト文字色 */
.site-footer__row--copy .footer-copy {
  color: #fff;
  opacity: 1;
  margin: 0;
  font-size: 13px;
}

/* nav段は上下余白を少し詰めたい場合 */
.site-footer__row--nav .site-footer__inner {
  padding-top: 18px;
  padding-bottom: 18px;
}

/* 住所ブロック：中央寄せ＋読みやすい幅 */
.footer-info {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}

/* dt/dd */
.footer-info-table {
  margin: 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 18px;
  align-items: start;
  font-size: 14px;
  line-height: 1.8;
}
.footer-info-table dt {
  font-weight: 700;
  color: #222;
}
.footer-info-table dd {
  margin: 0;
  color: #222;
}

/* PCメニュー */
.footer-nav {
  margin: 0;
  padding: 0;
  border: 0;
} /* 既存の線は不要なら消す */
.links-main-pages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.links-main-pages a {
  color: #222;
  text-decoration: none;
  font-size: 14px;
}
.links-main-pages a:hover {
  text-decoration: underline;
}

.site-footer__row--copy .site-footer__inner {
  padding: 0;
}
.site-footer__row--copy .footer-copy {
  margin: 0;
  line-height: 1.4;
}

/* スマホ固定CTA：既存のままでOK（必要ならここに） */
.footer-sp-cta {
  display: none;
}

/* ===== スマホ/タブレット（1023px以下） ===== */
@media (max-width: 1023px) {
  .footer-nav {
    display: none;
  } /* nav段を消したい場合 */

  /* nav段そのものを消すなら、HTMLはそのままでもOK */
  .site-footer__row--nav {
    display: none;
  }

  /* 住所表はスマホで1列に */
  .footer-info {
    width: 100%;
    max-width: 520px;
  }
  .footer-info-table {
    grid-template-columns: 1fr;
    gap: 6px 0;
  }
  .footer-info-table dt {
    margin-top: 8px;
  }

  /* 固定CTA（あなたの既存のまま） */
  .footer-sp-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    padding: 0;
    box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.18);
  }
  .footer-cta {
    height: 56px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  .footer-cta--reserve {
    background: #8b90ff;
    color: #fff;
  }
  .footer-cta--contact {
    background: #7acb00;
    color: #111;
  }
  .footer-cta:active {
    filter: brightness(0.92);
  }

  body {
    padding-bottom: 56px;
  }
}
