/* ラッパーを画面いっぱい（100vw）に広げ、左右を50vwずつに分割 */
@media screen and (min-width: 1024px) {
  .c-btn-wrap {
    display: grid;
    grid-template-columns: 50vw 50vw; /* 画面の半分ずつ */
    align-items: center;               /* 行方向の中央（縦位置を揃える場合に有効） */
    gap: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  /* 既存の大きすぎる隙間は無効化（必要なら） */
  .c-btn-wrap { gap: 0 !important; }

}

/* 各ボタンを自分の“半面”のど真ん中に */
.c-btn-wrap .c-btn-main {
  justify-self: center;  /* セル内で水平中央 */
  text-align: center;
}

/* ボタンの高さ調整 */
.c-btn-main {
  height: 6rem!important;
}
@media screen and (max-width: 767px) {
  .c-btn-main.c-btn-main--blue {
    height: 7.2rem;
    font-size: 1.6rem;
  }
}

/* スライド３枚目を見えるようにする */
@media screen and (min-width: 768px) {
  .top-works__splide.splide.is-initialized:not(.is-active) .top-works__list{
    gap: 2%;
  }
  .top-works__item{
    width: 32%;
  }
}

/* 固定ページ サムネイル画像上余白調整 */
.p-articleThumb {
  margin-top: 4rem;
}

.footer__cap a {
    color: #fff;
    line-height: 1.5;
    font-weight: 400;
}
.footer__cap-list {
  justify-content: center;
}
