/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 19 2026 | 17:02:11 */
/* ===== フッター直前の「トップへ」ボタン ===== */
.back-to-top-wrapper{
  /* “コンテンツ幅っぽく”中央揃え（テーマ差の吸収） */
  max-width: var(--wp--style--global--content-size, 1100px);
  margin: 32px auto 12px;         /* 上下間隔：好みで調整 */
  padding: 0 18px;                 /* 画面端ガード */
  text-align: center;
}

.back-to-top-btn{
  display: inline-block;
  width: 25%;                      /* カラム幅の25%相当を狙う */
  min-width: 180px;                /* 小さくなりすぎ防止 */
  padding: 12px 0;
  background: #8b3a2b;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  transition: color .15s ease, opacity .15s ease, transform .15s ease;
}

/* ホバー時：文字色をかなり薄い黄色に */
.back-to-top-btn:hover{
  color: #fff8cc;
  opacity: .95;
  transform: translateY(-1px);
}

/* モバイルは幅を広げる（25%だと小さくなるので） */
@media (max-width: 768px){
  .back-to-top-btn{
    width: 70%;
  }
}
