/* ボタンを囲うように枠線を追加するCSS */
 .button01 {
 border: 2px solid #ed0e25;
 }




@media screen and (max-width: 600px) {
div.fs-pt-column {
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
}
div.fs-pt-column > *:nth-child(2) {
-ms-grid-column: 2;
grid-column: 2;
-ms-grid-row: 1;
grid-row: 1;
}
}

/*商品ページの商品画像の表示調整*/
@media screen and (min-width: 960px){
.fs-c-productCarouselMainImage .slick-list.draggable {
  aspect-ratio: 1 / 1;
  height: auto !important;
}
.fs-c-productCarouselMainImage .slick-track {
  height: 100% !important;
}
.fs-c-productCarouselMainImage .slick-slide {
  aspect-ratio: 1 / 1;
}
.fs-c-productCarouselMainImage__image > img {
  width: 100%;
}
}

/* =====================================
   Needa 領収書発行ページ
===================================== */

.needa-receipt,
.needa-receipt * {
  box-sizing: border-box !important;
}

.needa-receipt {
  --nr-navy: #173f78;
  --nr-blue: #169bd5;
  --nr-pale-blue: #edf7fb;
  --nr-light-blue: #f7fbfd;
  --nr-border: #d5e0e8;
  --nr-text: #202428;
  --nr-subtext: #5f6972;
  --nr-yellow: #fff8df;
  --nr-yellow-border: #e8c65d;

  width: 100% !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 40px 24px 80px !important;
  color: var(--nr-text) !important;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

.needa-receipt p,
.needa-receipt h1,
.needa-receipt h2,
.needa-receipt h3,
.needa-receipt ul,
.needa-receipt ol {
  margin-top: 0;
}

.needa-receipt img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.needa-receipt a {
  text-decoration: none !important;
}

/* =========================
   ページ上部
========================= */

.needa-receipt__header {
  margin: 0 0 34px !important;
  padding: 36px 24px !important;
  text-align: center !important;
  background:
    linear-gradient(
      135deg,
      #f4fbfe 0%,
      #ffffff 100%
    ) !important;
  border-top: 4px solid var(--nr-navy) !important;
  border-bottom: 1px solid #cfe2eb !important;
  border-radius: 12px !important;
}

.needa-receipt__main-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 64px !important;
  height: 64px !important;
  margin: 0 auto 16px !important;
  color: #fff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  background:
    linear-gradient(
      135deg,
      var(--nr-navy),
      var(--nr-blue)
    ) !important;
  border-radius: 50% !important;
  box-shadow:
    0 8px 22px
    rgba(23, 63, 120, 0.18) !important;
}

.needa-receipt__title {
  margin: 0 !important;
  color: var(--nr-navy) !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.04em !important;
}

.needa-receipt__lead {
  max-width: 760px !important;
  margin: 18px auto 0 !important;
  color: var(--nr-subtext) !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
  text-align: center !important;
}

.needa-receipt__lead strong {
  color: var(--nr-navy) !important;
}

/* =========================
   会員登録案内
========================= */

.needa-receipt__notice {
  position: relative !important;
  margin: 0 0 40px !important;
  padding: 22px 24px 22px 64px !important;
  color: var(--nr-navy) !important;
  background: var(--nr-pale-blue) !important;
  border: 1px solid #bcddea !important;
  border-radius: 10px !important;
}

.needa-receipt__notice::before {
  position: absolute !important;
  top: 50% !important;
  left: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 30px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  background: var(--nr-blue) !important;
  border-radius: 50% !important;
  content: "i" !important;
  transform: translateY(-50%) !important;
}

.needa-receipt__notice p {
  margin: 0 !important;
}

/* =========================
   セクション見出し
========================= */

.needa-receipt__section {
  margin-top: 52px !important;
}

.needa-receipt__section-title {
  position: relative !important;
  margin: 0 0 25px !important;
  padding: 0 0 13px 18px !important;
  color: var(--nr-navy) !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  border-bottom: 2px solid var(--nr-navy) !important;
}

.needa-receipt__section-title::before {
  position: absolute !important;
  top: 4px !important;
  bottom: 15px !important;
  left: 0 !important;
  width: 6px !important;
  background: var(--nr-blue) !important;
  border-radius: 5px !important;
  content: "" !important;
}

/* =========================
   支払い方法カード
========================= */

.needa-receipt__payments {
  display: grid !important;
  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.needa-receipt__payment {
  position: relative !important;
  overflow: hidden !important;
  min-width: 0 !important;
  padding: 30px 26px 26px !important;
  background: #fff !important;
  border: 1px solid var(--nr-border) !important;
  border-radius: 14px !important;
  box-shadow:
    0 8px 28px
    rgba(23, 63, 120, 0.09) !important;
}

.needa-receipt__payment::before {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 6px !important;
  background: var(--nr-navy) !important;
  content: "" !important;
}

.needa-receipt__payment--blue::before {
  background: var(--nr-blue) !important;
}

.needa-receipt__payment-title {
  display: flex !important;
  align-items: center !important;
  gap: 13px !important;
  margin: 0 0 18px !important;
  color: var(--nr-navy) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
}

.needa-receipt__payment-icon {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  font-size: 23px !important;
  line-height: 1 !important;
  background: #edf3f8 !important;
  border-radius: 50% !important;
}

.needa-receipt__payment--blue
.needa-receipt__payment-icon {
  background: #e8f7fc !important;
}

.needa-receipt__payment p {
  margin: 0 !important;
  line-height: 1.9 !important;
}

.needa-receipt__payment p + p {
  margin-top: 13px !important;
}

.needa-receipt__payment strong {
  color: var(--nr-navy) !important;
}

.needa-receipt__small {
  color: var(--nr-subtext) !important;
  font-size: 14px !important;
}

/* =========================
   ボタン
========================= */

.needa-receipt__button-area {
  margin-top: 22px !important;
  text-align: center !important;
}

.needa-receipt__button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 52px !important;
  padding: 13px 20px !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  background: var(--nr-navy) !important;
  border: 2px solid var(--nr-navy) !important;
  border-radius: 7px !important;
  box-shadow:
    0 5px 14px
    rgba(23, 63, 120, 0.16) !important;
  transition: 0.2s !important;
}

.needa-receipt__button::after {
  margin-left: 10px !important;
  content: "›" !important;
}

.needa-receipt__button:hover {
  color: var(--nr-navy) !important;
  background: #fff !important;
}

/* =========================
   STEP
========================= */

.needa-receipt__steps {
  counter-reset: receipt-step !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.needa-receipt__step {
  position: relative !important;
  margin: 0 0 30px !important;
  padding: 30px !important;
  background: #fff !important;
  border: 1px solid var(--nr-border) !important;
  border-radius: 14px !important;
  box-shadow:
    0 7px 24px
    rgba(23, 63, 120, 0.07) !important;
}

.needa-receipt__step:not(:last-child)::after {
  position: absolute !important;
  bottom: -22px !important;
  left: 50% !important;
  width: 13px !important;
  height: 13px !important;
  border-right: 3px solid var(--nr-blue) !important;
  border-bottom: 3px solid var(--nr-blue) !important;
  content: "" !important;
  transform:
    translateX(-50%)
    rotate(45deg) !important;
}

.needa-receipt__step-header {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  margin: 0 0 22px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid #e3ebf0 !important;
}

.needa-receipt__step-number {
  display: flex !important;
  flex: 0 0 auto !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 64px !important;
  height: 64px !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  background:
    linear-gradient(
      135deg,
      var(--nr-navy),
      #285a96
    ) !important;
  border-radius: 50% !important;
}

.needa-receipt__step-number strong {
  margin-top: 3px !important;
  font-size: 23px !important;
  line-height: 1 !important;
}

.needa-receipt__step-title {
  margin: 0 !important;
  color: var(--nr-navy) !important;
  font-size: 21px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
}

.needa-receipt__step-text {
  margin: 6px 0 0 !important;
  color: var(--nr-subtext) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.needa-receipt__image-box {
  overflow: hidden !important;
  max-width: 720px !important;
  margin: 0 auto !important;
  padding: 12px !important;
  background: #f5f8fa !important;
  border: 1px solid var(--nr-border) !important;
  border-radius: 10px !important;
}

.needa-receipt__image-box:has(
  img[src*="ここに"]
) {
  display: none !important;
}

.needa-receipt__image-caption {
  margin: 12px 0 0 !important;
  color: var(--nr-subtext) !important;
  font-size: 13px !important;
  text-align: center !important;
}

/* =========================
   完了ボックス
========================= */

.needa-receipt__complete {
  margin-top: 38px !important;
  padding: 32px 22px !important;
  text-align: center !important;
  background:
    linear-gradient(
      135deg,
      #edf9fd,
      #f8fcfe
    ) !important;
  border: 2px solid #9dd8eb !important;
  border-radius: 14px !important;
}

.needa-receipt__complete-mark {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 60px !important;
  height: 60px !important;
  margin: 0 auto 14px !important;
  color: #fff !important;
  font-size: 31px !important;
  font-weight: 700 !important;
  background: var(--nr-blue) !important;
  border-radius: 50% !important;
}

.needa-receipt__complete h3 {
  margin: 0 !important;
  color: var(--nr-navy) !important;
  font-size: 23px !important;
}

.needa-receipt__complete p {
  margin: 10px 0 0 !important;
}

/* =========================
   注意事項
========================= */

.needa-receipt__alert {
  padding: 26px 28px !important;
  background: var(--nr-yellow) !important;
  border: 1px solid var(--nr-yellow-border) !important;
  border-left: 6px solid #e0b92f !important;
  border-radius: 10px !important;
}

.needa-receipt__alert-title {
  margin: 0 0 13px !important;
  color: #6f5600 !important;
  font-size: 19px !important;
  font-weight: 700 !important;
}

.needa-receipt__alert ul {
  margin: 0 !important;
  padding-left: 1.5em !important;
}

.needa-receipt__alert li {
  padding-left: 3px !important;
}

.needa-receipt__alert li + li {
  margin-top: 7px !important;
}

/* =========================
   FAQ
========================= */

.needa-receipt__faq {
  overflow: hidden !important;
  margin: 0 0 16px !important;
  background: #fff !important;
  border: 1px solid var(--nr-border) !important;
  border-radius: 10px !important;
  box-shadow:
    0 4px 15px
    rgba(23, 63, 120, 0.05) !important;
}

.needa-receipt__question,
.needa-receipt__answer {
  position: relative !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 19px 21px !important;
  line-height: 1.8 !important;
}

.needa-receipt__question {
  color: var(--nr-navy) !important;
  font-weight: 700 !important;
  background: #f0f7fa !important;
}

.needa-receipt__question::before,
.needa-receipt__answer::before {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 30px !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  border-radius: 50% !important;
}

.needa-receipt__question::before {
  background: var(--nr-blue) !important;
  content: "Q" !important;
}

.needa-receipt__answer::before {
  background: var(--nr-navy) !important;
  content: "A" !important;
}

/* =========================
   お問い合わせ
========================= */

.needa-receipt__contact {
  margin-top: 54px !important;
  padding: 34px 24px !important;
  text-align: center !important;
  background: #f4f7fa !important;
  border-top: 4px solid var(--nr-navy) !important;
  border-radius: 12px !important;
}

.needa-receipt__contact h2 {
  margin: 0 0 10px !important;
  color: var(--nr-navy) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.needa-receipt__contact p {
  margin: 0 !important;
  color: var(--nr-subtext) !important;
}

.needa-receipt__contact-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 280px !important;
  margin-top: 20px !important;
  padding: 13px 30px !important;
  color: #fff !important;
  font-weight: 700 !important;
  background: var(--nr-navy) !important;
  border: 2px solid var(--nr-navy) !important;
  border-radius: 7px !important;
}

.needa-receipt__contact-button::after {
  margin-left: 10px !important;
  content: "›" !important;
}

/* =========================
   スマートフォン
========================= */

@media screen and (max-width: 767px) {

  .needa-receipt {
    padding: 22px 12px 55px !important;
    font-size: 15px !important;
  }

  .needa-receipt__header {
    padding: 27px 16px !important;
    border-radius: 9px !important;
  }

  .needa-receipt__main-icon {
    width: 56px !important;
    height: 56px !important;
    font-size: 25px !important;
  }

  .needa-receipt__title {
    font-size: 24px !important;
    letter-spacing: 0.02em !important;
  }

  .needa-receipt__lead {
    font-size: 14px !important;
    text-align: left !important;
  }

  .needa-receipt__notice {
    padding: 18px 16px 18px 53px !important;
  }

  .needa-receipt__notice::before {
    left: 15px !important;
    width: 27px !important;
    height: 27px !important;
  }

  .needa-receipt__section {
    margin-top: 40px !important;
  }

  .needa-receipt__section-title {
    margin-bottom: 19px !important;
    font-size: 20px !important;
  }

  .needa-receipt__payments {
    grid-template-columns: 1fr !important;
    gap: 17px !important;
  }

  .needa-receipt__payment {
    padding: 25px 18px 21px !important;
  }

  .needa-receipt__payment-title {
    font-size: 18px !important;
  }

  .needa-receipt__payment-icon {
    width: 43px !important;
    height: 43px !important;
    font-size: 21px !important;
  }

  .needa-receipt__step {
    margin-bottom: 27px !important;
    padding: 21px 15px !important;
  }

  .needa-receipt__step-header {
    align-items: flex-start !important;
    gap: 12px !important;
    padding-bottom: 15px !important;
  }

  .needa-receipt__step-number {
    width: 53px !important;
    height: 53px !important;
    font-size: 9px !important;
  }

  .needa-receipt__step-number strong {
    font-size: 18px !important;
  }

  .needa-receipt__step-title {
    font-size: 18px !important;
  }

  .needa-receipt__step-text {
    font-size: 14px !important;
  }

  .needa-receipt__image-box {
    padding: 6px !important;
  }

  .needa-receipt__complete {
    padding: 25px 16px !important;
  }

  .needa-receipt__complete h3 {
    font-size: 20px !important;
  }

  .needa-receipt__alert {
    padding: 20px 17px !important;
  }

  .needa-receipt__question,
  .needa-receipt__answer {
    gap: 10px !important;
    padding: 16px 14px !important;
  }

  .needa-receipt__question::before,
  .needa-receipt__answer::before {
    width: 27px !important;
    height: 27px !important;
    font-size: 14px !important;
  }

  .needa-receipt__contact {
    padding: 27px 16px !important;
  }

  .needa-receipt__contact h2 {
    font-size: 19px !important;
  }

  .needa-receipt__contact-button {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* ==================================================
   Needa 洗剤商品メニュー・ボタンデザイン
================================================== */

/* パーツ全体 */
.needa-product-buttons {
  width: 100%;
  max-width: 920px;
  margin: 0;
  padding: 0;
}

/* メニューの初期余白をリセット */
.needa-product-buttons .fs-pt-menu,
.needa-product-buttons .fs-pt-menu__list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 商品同士の間隔 */
.needa-product-buttons .fs-pt-menu__item {
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

/* 商品リンクをボタン風にする */
.needa-product-buttons .fs-pt-menu__link.fs-pt-menu__link--lv1 {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  margin: 0;
  padding: 14px 54px 14px 22px;
  box-sizing: border-box;

  background-color: #ffffff;
  border: 1px solid #17457d;
  border-radius: 5px;

  color: #17375f;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* 右側の矢印 */
.needa-product-buttons
.fs-pt-menu__link.fs-pt-menu__link--lv1::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-52%);

  color: #17457d;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;

  transition:
    right 0.25s ease,
    color 0.25s ease;
}

/* パソコンでマウスを重ねたとき */
@media (hover: hover) {
  .needa-product-buttons
  .fs-pt-menu__link.fs-pt-menu__link--lv1:hover {
    background-color: #17457d;
    border-color: #17457d;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(23, 69, 125, 0.18);
    transform: translateY(-2px);
  }

  .needa-product-buttons
  .fs-pt-menu__link.fs-pt-menu__link--lv1:hover::after {
    right: 16px;
    color: #ffffff;
  }
}

/* キーボード操作時 */
.needa-product-buttons
.fs-pt-menu__link.fs-pt-menu__link--lv1:focus-visible {
  outline: 3px solid rgba(0, 157, 220, 0.3);
  outline-offset: 3px;
}

/* スマートフォン */
@media screen and (max-width: 767px) {
  .needa-product-buttons {
    max-width: none;
  }

  .needa-product-buttons .fs-pt-menu__item {
    margin-bottom: 9px;
  }

  .needa-product-buttons
  .fs-pt-menu__link.fs-pt-menu__link--lv1 {
    min-height: 54px;
    padding: 12px 44px 12px 16px;
    border-radius: 4px;
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .needa-product-buttons
  .fs-pt-menu__link.fs-pt-menu__link--lv1::after {
    right: 15px;
    font-size: 24px;
  }
}

/* ==========================================
   Needa カテゴリメニュー・ボタン化
========================================== */

/* classが外側・メニュー本体のどちらに付いても対応 */
.needa-category-buttons,
.needa-category-buttons.fs-pt-menu {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* リストの初期設定をリセット */
.needa-category-buttons ul,
.needa-category-buttons ol,
.needa-category-buttons .fs-pt-menu__list,
.needa-category-buttons.fs-pt-menu .fs-pt-menu__list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* 各項目 */
.needa-category-buttons li,
.needa-category-buttons .fs-pt-menu__item,
.needa-category-buttons.fs-pt-menu .fs-pt-menu__item {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* 階層に関係なく、すべてのリンクをボタン化 */
.needa-category-buttons a,
.needa-category-buttons .fs-pt-menu__link,
.needa-category-buttons.fs-pt-menu .fs-pt-menu__link {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 58px !important;
  margin: 0 !important;
  padding: 13px 52px 13px 20px !important;
  box-sizing: border-box !important;

  background-color: #ffffff !important;
  border: 1px solid #17457d !important;
  border-radius: 5px !important;

  color: #17375f !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.03em !important;
  text-decoration: none !important;

  transition: 0.25s ease;
}

/* 右側の矢印 */
.needa-category-buttons a::after,
.needa-category-buttons .fs-pt-menu__link::after,
.needa-category-buttons.fs-pt-menu .fs-pt-menu__link::after {
  content: "›" !important;
  position: absolute;
  top: 50%;
  right: 19px;
  transform: translateY(-52%);

  color: #17457d;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

/* マウスを乗せたとき */
@media (hover: hover) {
  .needa-category-buttons a:hover,
  .needa-category-buttons .fs-pt-menu__link:hover,
  .needa-category-buttons.fs-pt-menu .fs-pt-menu__link:hover {
    background-color: #17457d !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(23, 69, 125, 0.18);
    transform: translateY(-2px);
  }

  .needa-category-buttons a:hover::after,
  .needa-category-buttons .fs-pt-menu__link:hover::after,
  .needa-category-buttons.fs-pt-menu .fs-pt-menu__link:hover::after {
    color: #ffffff !important;
  }
}

/* スマートフォン */
@media screen and (max-width: 767px) {
  .needa-category-buttons ul,
  .needa-category-buttons ol,
  .needa-category-buttons .fs-pt-menu__list,
  .needa-category-buttons.fs-pt-menu .fs-pt-menu__list {
    grid-template-columns: 1fr;
    gap: 9px !important;
  }

  .needa-category-buttons a,
  .needa-category-buttons .fs-pt-menu__link,
  .needa-category-buttons.fs-pt-menu .fs-pt-menu__link {
    min-height: 54px !important;
    padding: 12px 44px 12px 16px !important;
    font-size: 15px !important;
  }
}


/* ==================================================
   Needa 容量から探すボタン
================================================== */

.needa-volume-buttons {
  width: 100%;
  max-width: 920px;
  margin: 0;
  padding: 0;
}

.needa-volume-buttons .fs-pt-menu,
.needa-volume-buttons .fs-pt-menu__list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.needa-volume-buttons .fs-pt-menu__item {
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.needa-volume-buttons .fs-pt-menu__item::marker {
  content: "";
}

/* ボタン本体 */
.needa-volume-buttons .fs-pt-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  margin: 0;
  padding: 14px 54px 14px 22px;
  box-sizing: border-box;

  background-color: #ffffff;
  border: 1px solid #17457d;
  border-radius: 5px;

  color: #17375f !important;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none !important;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* 右矢印 */
.needa-volume-buttons .fs-pt-menu__link::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-52%);

  color: #17457d;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;

  transition:
    right 0.25s ease,
    color 0.25s ease;
}

/* マウスを乗せた時 */
@media (hover: hover) {
  .needa-volume-buttons .fs-pt-menu__link:hover {
    background-color: #17457d;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(23, 69, 125, 0.18);
    transform: translateY(-2px);
  }

  .needa-volume-buttons .fs-pt-menu__link:hover::after {
    right: 16px;
    color: #ffffff;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .needa-volume-buttons {
    max-width: none;
  }

  .needa-volume-buttons .fs-pt-menu__item {
    margin-bottom: 9px;
  }

  .needa-volume-buttons .fs-pt-menu__link {
    min-height: 54px;
    padding: 12px 44px 12px 16px;
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .needa-volume-buttons .fs-pt-menu__link::after {
    right: 15px;
    font-size: 24px;
  }
}

