/* =========================
   PRIME GEAR セールモジュール CSS 完全版
   - スマホ：固定ボトムバー＋開閉パネル
   - PC   ：右サイドタブ（ホバー展開／テキストリンク）
   - 共通：フォント／アニメーション
========================= */

/* =========================================================
   スマホ用：固定ボトムメニュー
========================================================= */
@media screen and (max-width: 959px) {

  /* スマホではPC用サイドタブを完全に非表示 */
  #fixed-sidebar-menu {
    display: none !important;
  }

  body {
    /* 下に黒バーがかぶっても本文が隠れないように余白を確保 */
    padding-bottom: 40px;
  }

  .p-fixBtnWrap {
    bottom: 4.8em;
  }

  /* ---- 固定メニュー本体 ---- */
  #fixed-bottom-menu {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    background-color: #000;
    padding: 0 0.3em 0.3em;
    box-sizing: border-box;
  }

  /* ---- 開閉バー／リンクバー共通 ---- */
  .pg-sm-bottom__bar {
    width: 100%;
    border: none;
    background: transparent;
    color: #fff;
    padding: 12px 16px;
    text-align: center;
    cursor: pointer;
  }

  /* テキストリンクモード時のバー */
  .pg-sm-bottom__bar--link,
  .pg-sm-bottom__bar--nolink {
    display: block;
    text-decoration: none;
  }

  /* バーの文言 */
  .pg-sm-bottom__label {
    font-size: 1.25em;
    font-weight: 500;
    line-height: 1.4;
    display: inline-block;
  }

  /* 開いたらバーごと非表示 */
  #fixed-bottom-menu.is-open .pg-sm-bottom__bar {
    display: none;
  }

  /* =========================================================
     パネル（ブログパーツ）
     → 閉じているときは display:none で完全に非表示
  ========================================================== */
  .pg-sm-bottom__panel {
    position: relative;
    display: none;           /* デフォルトは非表示 */
    max-height: 500px;
    overflow: auto;          /* 高さ超過時はパネル内スクロール */
    margin-top: 0;
    padding-top: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .pg-sm-bottom__panel > *:first-child {
    margin-top: 0 !important;
  }

  /* 開いているときだけ表示 */
  #fixed-bottom-menu.is-open .pg-sm-bottom__panel {
    display: block;
    opacity: 1;
  }

  /* 閉じるボタン（×） */
  .pg-sm-bottom__close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 28px;
    height: 28px;
    border: none;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
  }

  .pg-sm-bottom__close-icon {
    display: block;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
  }

}

/* =========================================================
   PC用：右サイドタブ
========================================================= */
@media screen and (min-width: 960px) {

  /* PCではボトムメニューは非表示 */
  #fixed-bottom-menu {
    display: none !important;
  }

  /* 通常時（縦タブ状態） */
  #fixed-sidebar-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    padding: 1em .5em;
    border-radius: 10px 0 0 10px;
    writing-mode: vertical-rl;
    text-align: center;
    cursor: pointer;
    transition: all 0.45s ease;
  }

  /* タブ内リンクも見た目共通（下線なし・白文字） */
  #fixed-sidebar-menu a {
    color: #fff;
    text-decoration: none;
  }
  #fixed-sidebar-menu a:hover,
  #fixed-sidebar-menu a:focus {
    color: #fff;
    text-decoration: none;
  }

  .pg-sm-sidebar__tab {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pg-sm-sidebar__label {
    display: inline-block;
  }

  .pg-sm-sidebar__panel {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 0.8em;
    writing-mode: horizontal-tb;
    white-space: normal;
    color: #fff;
    max-width: 420px;
    max-height: none;
    overflow: visible;
  }

  .pg-sm-sidebar__panel-label {
    display: none !important;
  }

  .pg-sm-sidebar__panel .swell-block-button__link {
    white-space: nowrap;
  }

  /* --- コンテンツ展開モード（パネルあり） --- */
  #fixed-sidebar-menu.pg-sm-sidebar--has-panel:hover {
    writing-mode: horizontal-tb;
    border-radius: 10px;
    padding: 1em 1.4em;
  }
  #fixed-sidebar-menu.pg-sm-sidebar--has-panel:hover .pg-sm-sidebar__label {
    display: none !important;
  }
  #fixed-sidebar-menu.pg-sm-sidebar--has-panel:hover .pg-sm-sidebar__panel {
    display: flex;
  }

  /* --- テキストリンクモード（リンクのみ） --- */
  #fixed-sidebar-menu.pg-sm-sidebar--link-only:hover {
    writing-mode: vertical-rl;
    border-radius: 10px 0 0 10px;
    padding: 1em .5em;
  }
  #fixed-sidebar-menu.pg-sm-sidebar--link-only:hover .pg-sm-sidebar__label {
    display: inline-block !important;
  }
  #fixed-sidebar-menu.pg-sm-sidebar--link-only:hover .pg-sm-sidebar__panel {
    display: none;
  }
}

/* =========================================================
   共通フォント
========================================================= */
.pg-sm-bottom,
.pg-sm-sidebar {
  font-family: -apple-system, BlinkMacSystemFont, "Yu Gothic",
    "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}

/* ブログパーツ内（PC／SP）の文字色を白に統一 */
.pg-sm-bottom__panel,
.pg-sm-bottom__panel * {
  color: #fff !important;
  fill: #fff !important;
}
.pg-sm-sidebar__panel,
.pg-sm-sidebar__panel * {
  color: #fff !important;
  fill: #fff !important;
}

/* 念のため：スマホ幅でのパネル内の文字色も白固定 */
@media screen and (max-width: 959px) {
  #fixed-bottom-menu .pg-sm-bottom__panel,
  #fixed-bottom-menu .pg-sm-bottom__panel * {
    color: #fff !important;
    fill: #fff !important;
  }
}

/* =========================================================
   PC用アニメーション
   - pg-anim-pc-wiggle : ゆっくりユラユラ揺れる
   - pg-anim-pc-glow   : 背景がふわっと明るく
   - pg-anim-pc-color  : 縦文字の色が変化
========================================================= */
@keyframes pgPcWiggle {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-3px);
  }
}

@keyframes pgPcGlow {
  0%, 100% {
    background-color: #000;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    background-color: #111;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
  }
}

@keyframes pgPcLabelColor {
  0%, 100% {
    color: #fff;
  }
  50% {
    color: #b00000; /* PRIME GEAR ボルドー */
  }
}

/* ユラユラ＋光り */
#fixed-sidebar-menu.pg-anim-pc-wiggle.pg-anim-pc-glow {
  animation:
    pgPcWiggle 2.8s ease-in-out infinite,
    pgPcGlow   4.0s ease-in-out infinite;
}

/* ユラユラだけ */
#fixed-sidebar-menu.pg-anim-pc-wiggle:not(.pg-anim-pc-glow) {
  animation: pgPcWiggle 2.8s ease-in-out infinite;
}

/* 光りだけ */
#fixed-sidebar-menu.pg-anim-pc-glow:not(.pg-anim-pc-wiggle) {
  animation: pgPcGlow 4.0s ease-in-out infinite;
}

/* 縦文字カラー変化 */
#fixed-sidebar-menu.pg-anim-pc-color .pg-sm-sidebar__label {
  animation: pgPcLabelColor 3.2s ease-in-out infinite;
}

/* =========================================================
   スマホ用アニメーション
   - pg-anim-sp-arrow  : 文言右の矢印がスライド
   - pg-anim-sp-breathe: バー背景の呼吸アニメ
   - pg-anim-sp-blink  : 文言をソフト点滅
========================================================= */
@keyframes pgSpArrowSlide {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

@keyframes pgSpBreathe {
  0%, 100% {
    background-color: #000;
  }
  50% {
    background-color: #111;
  }
}

@keyframes softBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* 矢印スライド */
#fixed-bottom-menu.pg-anim-sp-arrow .pg-sm-bottom__label {
  display: inline-flex;
  align-items: center;
}
#fixed-bottom-menu.pg-anim-sp-arrow .pg-sm-bottom__label::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="9,5 16,12 9,19" fill="none" stroke="white" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  animation: pgSpArrowSlide 1.8s ease-in-out infinite;
}

/* 背景呼吸アニメ（バー全体） */
#fixed-bottom-menu.pg-anim-sp-breathe {
  animation: pgSpBreathe 3.0s ease-in-out infinite;
}

/* 文言のソフト点滅 */
#fixed-bottom-menu.pg-anim-sp-blink .pg-sm-bottom__label {
  animation: softBlink 1.5s infinite;
}
