/* =========================================================
   Needa FutureShop 統合CSS（整理版）
   更新日：2026-07-21

   構成
   01. 共通設定
   02. 商品ページ
   03. PCヘッダー
   04. スマホヘッダー
   05. キャンペーン帯・検索
   06. 電話番号
   07. 領収書発行ページ
   08. 商品・カテゴリ・容量ボタン
========================================================= */

/* =========================================================
   01. 共通設定
========================================================= */

/* ボタンの枠線 */
.button01 {
  border: 2px solid #ed0e25;
}

/* スマホ：2カラム配置 */
@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;
  }
}

/* =========================================================
   02. 商品ページ
========================================================= */

/* PC：商品メイン画像を正方形にする */
@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%;
  }
}

/* =========================================================
   03. PCヘッダー
========================================================= */

/* 右上メニュー全体 */
.fs-l-header__utility {
  justify-self: end !important;
}

.fs-p-headerUtilityMenu {
  width: auto !important;
}

.fs-p-headerUtilityMenu__list {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.fs-p-headerUtilityMenu__list > li,
.fs-p-headerUtilityMenu__list .fs-pt-menu__heading {
  flex: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 右上アイコン共通 */
.fs-p-headerUtilityMenu__list a.fs-pt-menu__link {
  display: block !important;
  width: 100px !important;
  height: 100px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 90px 90px !important;
}

/* 元の三角・文字を消す */
.fs-p-headerUtilityMenu__list a.fs-pt-menu__link::before,
.fs-p-headerUtilityMenu__list a.fs-pt-menu__link::after {
  content: none !important;
}

/* マイページ */
.fs-p-headerUtilityMenu__list a[href="/p/login"] {
  background-image: url(https://radiant.itembox.cloud/item/mypage_big_JPEG.jpg?t=20260721125247) !important;
}

/* カート */
.fs-p-headerUtilityMenu__list a[href*="/p/cart"],
.fs-p-headerUtilityMenu__list a[href*="cart"] {
  background-image: url(https://radiant.itembox.cloud/item/cart2.JPG?t=20260721125247) !important;
}

/* 企業ページ */
.fs-p-headerUtilityMenu__list a[href*="/p/auth/pro"],
.fs-p-headerUtilityMenu__list a[href*="auth/pro"] {
  background-image: url(https://radiant.itembox.cloud/item/company.jpg?t=20260721125247) !important;
}

/* =========================================================
   04. スマホヘッダー
========================================================= */

@media screen and (max-width: 768px) {
  /* 横方向のはみ出し防止 */
  html,
  body,
  .fs-l-page {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* ヘッダー全体 */
  .fs-l-header__contents {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 135px !important;
    padding: 8px 6px 6px !important;
    box-sizing: border-box !important;
  }

  /* 左：MENU */
  .fs-l-header__leftContainer {
    position: absolute !important;
    top: 48px !important;
    left: 10px !important;
    width: 62px !important;
    z-index: 3 !important;
  }

  .fs-p-drawerButton {
    transform: scale(0.9) !important;
    transform-origin: left center !important;
  }

  /* 中央：ロゴ */
  .fs-l-header__logo {
    position: absolute !important;
    top: 49px !important;
    right: 176px !important;
    left: 82px !important;
    width: auto !important;
    margin: 0 !important;
    text-align: center !important;
    z-index: 2 !important;
  }

  .fs-p-logo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .fs-p-logo__image {
    display: block !important;
    width: auto !important;
    max-width: 118px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .fs-p-logo__lead {
    margin: 6px 0 0 !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  /* 右：アイコン・電話番号エリア（共通） */
  .fs-l-header__utility {
    position: absolute !important;
    top: 18px !important;
    right: 8px !important;
    width: 154px !important;
    max-width: 154px !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 10 !important;
  }

  .fs-p-headerUtilityMenu,
  .fs-p-headerUtilityMenu__list {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 154px !important;
    max-width: 154px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .fs-p-headerUtilityMenu__list {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 2px !important;
  }

  .fs-p-headerUtilityMenu__list > li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    min-width: 48px !important;
    height: 51px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .fs-p-headerUtilityMenu__list a.fs-pt-menu__link {
    display: block !important;
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    height: 51px !important;
    min-height: 51px !important;
    max-height: 51px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 44px 44px !important;
  }

  /* FutureShop標準ヘッダーナビを表示 */
  .fs-p-headerNavigation,
  .fs-p-headerNavigation__list,
  .fs-p-headerNavigation__listItem {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .fs-p-headerNavigation {
    display: block !important;
    width: 100% !important;
  }

  .fs-p-headerNavigation__list {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 5px 8px !important;
  }

  .fs-p-headerNavigation__listItem {
    display: block !important;
    margin: 0 !important;
  }

  .fs-p-headerNavigation__link,
  .fs-p-headerNavigation__viewCartButton {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 50px !important;
    min-width: 50px !important;
    padding: 0 !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
  }

  .fs-p-headerNavigation__link img,
  .fs-p-headerNavigation__viewCartButton img {
    display: block !important;
    width: 38px !important;
    height: 38px !important;
    margin: 0 auto 3px !important;
    object-fit: contain !important;
  }

  .fs-p-headerNavigation__viewCartButton .fs-icon--cart {
    display: block !important;
    margin-bottom: 3px !important;
    font-size: 32px !important;
    line-height: 1 !important;
  }

  /* トップページは右上をさらにコンパクトに */
  body.fs-body-top .fs-l-header__utility {
    top: 20px !important;
    right: 8px !important;
    width: 145px !important;
    max-width: 145px !important;
    height: 120px !important;
  }

  body.fs-body-top .fs-p-headerUtilityMenu,
  body.fs-body-top .fs-p-headerUtilityMenu__list {
    width: 145px !important;
    max-width: 145px !important;
  }

  body.fs-body-top .fs-p-headerUtilityMenu__list {
    gap: 5px !important;
  }

  body.fs-body-top .fs-p-headerUtilityMenu__list > .fs-pt-menu__item {
    flex-basis: 43px !important;
    width: 43px !important;
    min-width: 43px !important;
    height: 48px !important;
  }

  body.fs-body-top .fs-p-headerUtilityMenu__list a.fs-pt-menu__link {
    width: 43px !important;
    min-width: 43px !important;
    max-width: 43px !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    background-size: 38px 38px !important;
  }
}

/* =========================================================
   05. キャンペーン帯・検索
========================================================= */

:root {
  --needa-kouiro: #d6b879;
  --needa-header-text: #222222;
}

/* PC・スマホ共通：ヘッダー帯を香色に統一 */
html body .fs-p-headerNavBar,
html body .fs-p-headerNavigation,
html body #fs_p_headerNavigation,
html body .fs-p-headerNavigation__list {
  --fs-color-maincolor: var(--needa-kouiro) !important;
  background: var(--needa-kouiro) !important;
  background-color: var(--needa-kouiro) !important;
  background-image: none !important;
  border-color: var(--needa-kouiro) !important;
}

.fs-p-headerNavigation__listItem,
.fs-p-headerNavigation__link {
  background-color: transparent !important;
}

html body #fs_p_headerNavigation,
html body #fs_p_headerNavigation a,
.fs-p-headerNavigation__link,
.fs-p-headerNavigation__link span,
.needa-campaign,
.needa-campaign a,
.needa-campaign a:link,
.needa-campaign a:visited,
.needa-campaign a:hover,
.needa-campaign a:active {
  color: var(--needa-header-text) !important;
}

.fs-p-headerNavBar::before,
.fs-p-headerNavBar::after,
.fs-p-headerNavigation::before,
.fs-p-headerNavigation::after {
  background-color: var(--needa-kouiro) !important;
}

/* 検索フォーム */
html body #fs_p_headerNavigation form,
html body #fs_p_headerNavigation .fs-p-searchForm,
html body #fs_p_headerNavigation .fs-p-inputGroup,
.fs-p-searchForm__inputGroup,
.fs-p-inputGroup {
  background: var(--needa-kouiro) !important;
  border-color: var(--needa-kouiro) !important;
}

.fs-p-searchForm__input,
.fs-p-inputGroup__input,
html body #fs_p_headerNavigation input {
  background: #ffffff !important;
  border: 2px solid var(--needa-kouiro) !important;
  color: var(--needa-header-text) !important;
  box-shadow: none !important;
}

.fs-p-searchForm__button,
.fs-p-inputGroup__button,
.fs-p-searchForm__submit,
.fs-c-searchForm__button,
html body #fs_p_headerNavigation button,
.fs-p-headerNavBar button[type="submit"] {
  background: var(--needa-kouiro) !important;
  background-color: var(--needa-kouiro) !important;
  background-image: none !important;
  border-color: var(--needa-kouiro) !important;
  color: #000000 !important;
  box-shadow: none !important;
}

.fs-p-searchForm__button::before,
.fs-p-searchForm__button i,
.fs-p-searchForm__submit i,
.fs-c-searchForm__button i,
.fs-p-headerNavBar button[type="submit"]::before,
.fs-p-headerNavBar button[type="submit"] i,
.fs-icon--search {
  color: #000000 !important;
}

html body #fs_p_headerNavigation button svg {
  fill: #000000 !important;
  stroke: #000000 !important;
}

.fs-p-headerNavBar input::placeholder {
  color: #999999 !important;
  opacity: 1 !important;
}

/* スマホ：キャンペーン文言 */
@media screen and (max-width: 768px) {
  .campaign-text {
    display: block;
    width: 100%;
    padding: 8px 0;
    color: var(--needa-header-text) !important;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .needa-campaign {
    display: block !important;
    clear: both !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .needa-campaign a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 10px 4px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--needa-header-text) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    letter-spacing: -0.5px;
    text-align: center !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
}

/* =========================================================
   06. 電話番号
========================================================= */

.needa-phoneOrder {
  box-sizing: border-box;
}

.needa-phoneOrder .fs-p-phoneOrder__phoneNum {
  color: inherit;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .needa-phoneOrder {
    position: absolute !important;
    right: 16px !important;
    bottom: -18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-align: right !important;
    white-space: nowrap !important;
    transform: none !important;
    z-index: 20 !important;
  }

  .needa-phoneOrder .fs-p-phoneOrder__phoneLabel {
    display: block !important;
    position: static !important;
    margin: 0 0 1px !important;
    padding: 0 !important;
    font-size: 8px !important;
    font-weight: normal !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .needa-phoneOrder .fs-p-phoneOrder__phoneNum {
    display: block !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #000000 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.3px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  /* HTML側のクラス名が addtion のため、この表記を維持 */
  .needa-phoneOrder .fs-p-phoneOrder__addtion,
  .needa-phoneOrder .fs-p-phoneOrder__addition {
    display: block !important;
    position: static !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    font-size: 8px !important;
    font-weight: normal !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-align: right !important;
    white-space: nowrap !important;
  }

  /* トップページ */
  body.fs-body-top .needa-phoneOrder {
    right: 16px !important;
    bottom: 20px !important;
    transform: translateY(-10px) !important;
  }

  /* フリーページ */
  body.fs-body-custom .needa-phoneOrder,
  body.fs-body-page .needa-phoneOrder {
    transform: none !important;
  }
}

/* =========================================================
   07. 領収書発行ページ
========================================================= */

/* =====================================
   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;
  }
}


/* =========================================================
   08. 商品・カテゴリ・容量ボタン
========================================================= */

/* ==================================================
   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;
  }
}

/* ==================================================
   スマホ版：右上アイコン・電話番号を確実に表示
================================================== */
@media screen and (max-width: 768px) {

  /* 右上エリアの親要素を表示 */
  .fs-l-header__utility {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;

    position: absolute !important;
    top: 20px !important;
    right: 8px !important;
    width: 145px !important;
    max-width: 145px !important;
    height: 120px !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 100 !important;
  }

  /* 企業ページ・マイページ・カート */
  .fs-p-headerUtilityMenu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    width: 145px !important;
    max-width: 145px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .fs-p-headerUtilityMenu__list {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;

    justify-content: flex-end !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 5px !important;

    width: 145px !important;
    max-width: 145px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .fs-p-headerUtilityMenu__list > li,
  .fs-p-headerUtilityMenu__list > .fs-pt-menu__item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    flex: 0 0 43px !important;
    width: 43px !important;
    min-width: 43px !important;
    height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .fs-p-headerUtilityMenu__list a.fs-pt-menu__link {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 43px !important;
    min-width: 43px !important;
    max-width: 43px !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;

    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 38px 38px !important;

    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
  }

  /* 電話番号 */
  .needa-phoneOrder,
  .fs-p-phoneOrder {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;

    position: absolute !important;
    top: 78px !important;
    right: 0 !important;

    flex-direction: column !important;
    align-items: flex-end !important;

    width: 145px !important;
    max-width: 145px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;

    text-align: right !important;
    white-space: nowrap !important;
    transform: none !important;
    z-index: 101 !important;
  }

  .needa-phoneOrder .fs-p-phoneOrder__phoneLabel,
  .fs-p-phoneOrder__phoneLabel {
    display: block !important;
    margin: 0 0 1px !important;
    font-size: 8px !important;
    line-height: 1.1 !important;
  }

  .needa-phoneOrder .fs-p-phoneOrder__phoneNum,
  .fs-p-phoneOrder__phoneNum {
    display: block !important;
    margin: 0 !important;
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.5px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  /* FutureShop側で addtion / addition の表記が違う場合の両対応 */
  .needa-phoneOrder .fs-p-phoneOrder__addtion,
  .needa-phoneOrder .fs-p-phoneOrder__addition,
  .fs-p-phoneOrder__addtion,
  .fs-p-phoneOrder__addition {
    display: block !important;
    margin: 2px 0 0 !important;
    font-size: 8px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}

/* ==================================================
   スマホ版：電話番号の位置を元の調整状態に戻す
================================================== */
@media screen and (max-width: 768px) {

  /* 追加CSSの top 指定を解除 */
  body .fs-l-header__utility .needa-phoneOrder,
  body .fs-l-header__utility .fs-p-phoneOrder {
    top: auto !important;
    left: auto !important;
    right: 8px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;

    width: 150px !important;
    max-width: 150px !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;
    text-align: right !important;
    transform: none !important;
    z-index: 101 !important;
  }

  /* トップページ */
  body.fs-body-top .needa-phoneOrder,
  body.fs-body-top .fs-p-phoneOrder {
    bottom: 20px !important;
  }

  /* 商品・カテゴリ・フリーページなど */
  body:not(.fs-body-top) .needa-phoneOrder,
  body:not(.fs-body-top) .fs-p-phoneOrder {
    bottom: 16px !important;
  }

  /* 「電話番号」 */
  .needa-phoneOrder .fs-p-phoneOrder__phoneLabel,
  .fs-p-phoneOrder .fs-p-phoneOrder__phoneLabel {
    display: block !important;
    margin: 0 0 1px !important;
    font-size: 8px !important;
    font-weight: normal !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  /* 電話番号本体 */
  .needa-phoneOrder .fs-p-phoneOrder__phoneNum,
  .fs-p-phoneOrder .fs-p-phoneOrder__phoneNum {
    display: block !important;
    margin: 0 !important;
    color: #000 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.4px !important;
    white-space: nowrap !important;
  }

  /* 営業時間：スペル違いの両方に対応 */
  .needa-phoneOrder .fs-p-phoneOrder__addition,
  .needa-phoneOrder .fs-p-phoneOrder__addtion,
  .fs-p-phoneOrder .fs-p-phoneOrder__addition,
  .fs-p-phoneOrder .fs-p-phoneOrder__addtion {
    display: block !important;
    margin: 2px 0 0 !important;
    font-size: 8px !important;
    font-weight: normal !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}