.IDS {
  display : none;
}

/* デフォルト（PC）：TONIQリンクは隠す */
#topnav2 li.shop-sp { display: none; }

@media screen and (max-width: 767px) {
  /* PC用を隠してSP用を表示（既にあるなら不要） */
  #topnav2 li.shop-pc { display: none; }
  #topnav2 li.shop-sp { display: block; }

  /* ピンク背景を潰して、MEDIA等と同じ幅感の「ボタン箱」にする */
  #topnav2 li.shop-sp > a.toniq-link{
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #fff !important;
    border: 1px solid #000 !important;
    padding: 4px 12px;
    text-decoration: none;
  }

  /* コピー：他ボタンの「span」と同等に寄せる（font-size指定しないのがコツ） */
  #topnav2 li.shop-sp .toniq-copy{
    display: block;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 0 0;
  }

  /* ロゴ＋外部アイコン：中寄せ（右寄せにしたいなら下のコメントを使う） */
  #topnav2 li.shop-sp .toniq-row{
    display: flex;
    align-items: center;
    justify-content: center;  /* 中寄せ */
    gap: 8px;
    line-height: 1;
  }

#topnav2 li.shop-sp .toniq-logo{
  height: 32px;
  width: auto;
  display: block;
}

#topnav2 li.shop-sp .toniq-ext{
  font-size: 16px;
  line-height: 1;
  color: #666;
  margin: 10px 0px 0px 5px;
}

  /* 右寄せが好みならこっちをON */
  /*
  #topnav2 li.shop-sp .toniq-row{
    justify-content: flex-end;
  }
  */
}

