/*20260910*/
/* 右下固定表示 */
.sticky-headtopinR {
  position: fixed;
  bottom: 17px;
  right: 100px;
  z-index: 9999;
}

.sticky-headtopinR .headtopinRlist {
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
  width: auto;
}

.sticky-headtopinR .headtopinRitem {
  width: auto;
  overflow: visible; 
}

.sticky-headtopinR .headtopinRitem a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 178px;       /* 横幅 */
  height: 65px;       /* 高さ */
  padding: 5px;
  text-decoration: none;
  font-weight: bold;
  box-sizing: border-box;
  white-space: nowrap;

}


/* スマホ表示では追従ボタンを非表示 */
@media (max-width: 768px) {
  .sticky-headtopinR {
    display: none;
  }
}
