/* --- メインのeギフトボタン（共通） --- */
div[data-anygift] button {
  border-radius: 2px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- スマホ用（768px未満）--- */
@media (max-width: 767px) {
  div[data-anygift] button {
    width: 350px !important;       /* 固定幅を解除 */
    max-width: 362px !important;  /* 必要なら上限を設定 */
  }

  .anygift-about-button {
    display: block !important;
    margin-left: auto !important;
    margin-right: 0 !important;   /* まず右端に揃える */
    transform: translateX(90px);  /* さらに右にずらしたい場合 */
  }
}

/* --- PC用（768px以上）--- */
@media (min-width: 768px) {
  div[data-anygift] button {
    width: 305px !important;
  }

  .anygift-about-button {
    margin-left: auto !important;
    margin-right: -30px !important;
  }
}

/* --- 親要素（ヘッダー）を位置指定の基準にする --- */
.anygift-step-modal__header {
  position: relative;
}

/* --- タイトル要素を強制的に中央配置する --- */
.ag-font-bold.anygift-step-modal__header__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  text-align: center;
}

/* --- タイトルの下に注意書きを追加する --- */
.ag-font-bold.anygift-step-modal__header__title::after {
  content: "他の商品を追加する場合はこの画面を閉じ、商品ページからカートに追加してください"; 
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #666;
  font-weight: normal;
  line-height: 1.5;
}

/* --- eギフトのご利用方法の下に注意書きを追加する --- */
.anygift-explain-modal__title::after {
  content: "クーポン、セール価格、ポイント付与、送料無料規定は対象外です";
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: #666;
  text-align: center; 
  line-height: 1.5;
}

