[id] {
  scroll-margin-top: 70px;
}

.sp-contact-btn.is-contact {
  display: flex;             /* フレックスボックスで配置 */
  align-items: center;       /* 垂直方向を中央に */
  justify-content: center;    /* 水平方向を中央に */
  padding: 10px 40px 10px 15px; /* 右側に矢印用の広めの余白を確保 */
  position: relative;
  text-align: left;          /* 文字が長い場合は左寄せ */
  line-height: 1.4;
}

/* 小さなスマホ画面用の微調整 */
@media screen and (max-width: 375px) {
  .sp-contact-btn.is-contact {
    font-size: 14px;         /* 文字サイズを少し小さくして1行に収める */
    letter-spacing: -0.02em; /* 文字間隔をわずかに詰める */
    padding:20px;
  }
}

/* 矢印の位置固定 */
.sp-contact-btn.is-contact .u-arrow {
  position: absolute;
  right: 15px;               /* 右端から一定の距離に固定 */
  top: 50%;
  transform: translateY(-50%);
}