@charset "utf-8";
/* ====================================================================
   スマホ用 下部固定フッター（メール / TEL / ライン公式）
   20260702追加
==================================================================== */
#spFixedFooter {
  display: none;
}
@media screen and (max-width: 768px) {
  /* 固定バーの高さ分、ページ下部に余白を確保 */
  body {
    padding-bottom: 60px;
  }
  #spFixedFooter {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9990;
    margin: 0;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom);
    list-style: none;
    background: #fff;
  }
  #spFixedFooter li {
    flex: 1;
    margin: 0;
  }
  #spFixedFooter li + li {
    border-left: 1px solid #fff;
  }
  #spFixedFooter a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 60px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    text-decoration: none;
  }
  #spFixedFooter svg {
    width: 22px;
    height: 22px;
    fill: #fff;
  }
  /* webお問い合わせ（サイトフッターと同色） */
  #spFixedFooter .sffMail a {
    background: #322761;
  }
  /* TEL */
  #spFixedFooter .sffTel a {
    background: #1e9e57;
  }
  /* ライン公式（LINEブランドカラー） */
  #spFixedFooter .sffLine a {
    background: #06C755;
  }
}
