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



/* =====================================
   sample商品グループの商品画像を揃える
   /c/sample のページだけに適用
===================================== */

/* N-1だけ少し大きくする */
.fs-body-category-sample
.fs-c-productListItem__image a[href="/c/sample/sample1"]
.fs-c-productListItem__image__image {
    transform: scale(1.12);
}

/* N-2だけ少し大きくする */
.fs-body-category-sample
.fs-c-productListItem__image a[href="/c/sample/sample2"]
.fs-c-productListItem__image__image {
    transform: scale(1.12);
}

/* =====================================
   sample商品グループのみ
   商品画像の高さを揃える
===================================== */

/* 商品画像の枠 */
.fs-body-category-sample .fs-c-productListItem__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

/* 商品画像のリンク */
.fs-body-category-sample .fs-c-productListItem__image > a {
    width: 100%;
    height: 100%;
    display: block;
}

/* 商品画像 */
.fs-body-category-sample .fs-c-productListItem__image__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ========================================
   商品詳細画像：PC・スマホ表示切り替え
======================================== */

/* PCでは通常画像を表示 */
.goods-image-pc {
  display: block;
}

.goods-image-sp {
  display: none;
}

/* スマホではフリック画像を表示 */
@media screen and (max-width: 767px) {
  .goods-image-pc {
    display: none !important;
  }

  .goods-image-sp {
    display: block !important;
  }
}


/* ========================================
   手洗い洗車セット・キャンペーン文字
======================================== */

/* PC版 */
html body .needa-campaign {
  flex: 1 1 auto !important;
  width: auto !important;
  text-align: center !important;
}

html body .needa-campaign .fs-p-headerNavigation__link {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 10px 20px !important;
  box-sizing: border-box !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  white-space: normal !important;
}

/* スマホ版 */
@media screen and (max-width: 768px) {
  html body .needa-campaign {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  html body .needa-campaign .fs-p-headerNavigation__link {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 9px 10px !important;
    box-sizing: border-box !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.5 !important;
    letter-spacing: -0.4px !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
}

/* スマホ：キャンペーン文言を1行に収める */
@media screen and (max-width: 768px) {
  html body .needa-campaign .fs-p-headerNavigation__link {
    padding: 10px 4px !important;
    font-size: clamp(9px, 2.55vw, 11px) !important;
    letter-spacing: -0.5px !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow: visible !important;
  }
}

/* PCでは改行しない */
.needa-mobile-break {
  display: none;
}

/* モバイル版だけ指定位置で改行 */
@media screen and (max-width: 768px) {
  .needa-mobile-break {
    display: block;
  }

  html body .needa-campaign .fs-p-headerNavigation__link {
    padding: 9px 8px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
  }
}

/* ===================================
   ご利用案内ページ共通
=================================== */
.guide-page {
  max-width: 1050px;
  margin: 0 auto;
  padding: 30px 20px 70px;
  color: #3f4852;
  font-family:
    -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "Yu Gothic", YuGothic,
    "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  box-sizing: border-box;
}

.guide-page *,
.guide-page *::before,
.guide-page *::after {
  box-sizing: border-box;
}

/* ページ上部 */
.guide-hero {
  margin-bottom: 35px;
  padding: 42px 25px;
  text-align: center;
  background: #edf3f8;
  border-radius: 12px;
}

.guide-hero__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  color: #ffffff;
  font-size: 28px;
  background: #62798f;
  border-radius: 50%;
}

.guide-hero__en {
  margin: 0 0 6px;
  color: #7c8e9f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.guide-hero h1 {
  margin: 0;
  color: #354454;
  font-size: 28px;
  line-height: 1.4;
}

.guide-hero__text {
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.9;
}

/* セクション */
.guide-section {
  margin-top: 42px;
}

.guide-section__title {
  margin: 0 0 20px;
  padding-bottom: 11px;
  color: #354454;
  font-size: 21px;
  border-bottom: 2px solid #c5d1dc;
}

/* カード */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-card {
  padding: 25px;
  background: #ffffff;
  border: 1px solid #d7e0e8;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(63, 79, 94, 0.06);
}

.guide-card--wide {
  grid-column: 1 / -1;
}

.guide-card h2,
.guide-card h3 {
  margin: 0 0 14px;
  color: #3b4d5e;
  font-size: 17px;
  line-height: 1.5;
}

.guide-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.guide-card p + p {
  margin-top: 10px;
}

.guide-card ul {
  margin: 0;
  padding-left: 1.3em;
}

.guide-card li {
  margin: 7px 0;
  font-size: 15px;
  line-height: 1.8;
}

/* 数字を目立たせる表示 */
.guide-highlight {
  color: #cf3f45;
  font-weight: 700;
}

/* 注意事項 */
.guide-notice {
  margin: 25px 0;
  padding: 20px 22px;
  color: #4f4539;
  background: #fff9ed;
  border: 1px solid #ead7aa;
  border-left: 5px solid #c99a3d;
  border-radius: 8px;
}

.guide-notice--important {
  color: #7d3535;
  background: #fff4f4;
  border-color: #edc3c3;
  border-left-color: #d05a5a;
}

.guide-notice__title {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
}

.guide-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* 支払い方法などの小さなラベル */
.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-tag {
  display: inline-block;
  padding: 8px 13px;
  color: #46596b;
  font-size: 14px;
  font-weight: 600;
  background: #f2f6f9;
  border: 1px solid #d1dce5;
  border-radius: 5px;
}

/* ボタン */
.guide-button-area {
  margin-top: 38px;
  text-align: center;
}

.guide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  min-height: 52px;
  padding: 12px 30px;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  background: #62798f;
  border-radius: 7px;
  transition: 0.25s;
}

.guide-button::after {
  content: "›";
  margin-left: 12px;
  font-size: 21px;
}

.guide-button:hover {
  background: #4d6479;
  transform: translateY(-2px);
}

/* ページ下部の案内リンク */
.guide-related {
  margin-top: 55px;
  padding-top: 28px;
  border-top: 1px solid #d7e0e8;
}

.guide-related__title {
  margin-bottom: 15px;
  text-align: center;
  font-size: 16px;
}

.guide-related__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.guide-related__links a {
  padding: 13px 5px;
  color: #4c6073;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: #f3f7fa;
  border: 1px solid #d2dce5;
  border-radius: 6px;
}

/* スマートフォン */
@media screen and (max-width: 767px) {
  .guide-page {
    padding: 18px 12px 50px;
  }

  .guide-hero {
    margin-bottom: 25px;
    padding: 28px 15px;
    border-radius: 8px;
  }

  .guide-hero__icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .guide-hero h1 {
    font-size: 23px;
  }

  .guide-hero__text {
    font-size: 14px;
  }

  .guide-section {
    margin-top: 32px;
  }

  .guide-section__title {
    font-size: 19px;
  }

  .guide-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guide-card--wide {
    grid-column: auto;
  }

  .guide-card {
    padding: 20px 17px;
  }

  .guide-button {
    width: 100%;
    min-width: 0;
  }

  .guide-related__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 送料についての詳細リンク */
.guide-more-link {
  margin-top: 25px;
  text-align: center;
}

.guide-more-link p {
  margin: 0 0 12px;
  color: #4b5865;
  font-size: 15px;
  line-height: 1.7;
}

.guide-more-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 48px;
  padding: 10px 30px;

  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;

  background: #62798f;
  border-radius: 7px;
  box-sizing: border-box;
  transition: 0.25s;
}

.guide-more-link a::after {
  content: "›";
  margin-left: 12px;
  font-size: 21px;
  line-height: 1;
}

.guide-more-link a:hover {
  background: #4d6479;
  transform: translateY(-2px);
}

/* スマートフォン */
@media screen and (max-width: 767px) {
  .guide-more-link {
    margin-top: 18px;
  }

  .guide-more-link p {
    font-size: 13px;
  }

  .guide-more-link a {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 9px 12px;
    font-size: 14px;
  }
}

/* ===================================
   発送スケジュール
=================================== */
.shipping-schedule {
  margin: 25px 0 35px;
  padding: 28px;
  background: #f5f8fb;
  border: 1px solid #d3dee7;
  border-radius: 12px;
  box-sizing: border-box;
}

.shipping-schedule__heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.shipping-schedule__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  font-size: 25px;
  background: #ffffff;
  border-radius: 50%;
}

.shipping-schedule__heading h3 {
  margin: 0 0 5px;
  color: #35495b;
  font-size: 20px;
}

.shipping-schedule__heading p {
  margin: 0;
  color: #667482;
  font-size: 14px;
}

.shipping-schedule__list {
  display: grid;
  gap: 10px;
}

.shipping-schedule__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 45px 180px;
  align-items: center;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid #d7e0e8;
  border-radius: 8px;
}

.shipping-schedule__order,
.shipping-schedule__delivery {
  display: flex;
  align-items: center;
  gap: 18px;
}

.shipping-schedule__label {
  display: inline-block;
  flex: 0 0 auto;
  padding: 5px 9px;
  color: #607487;
  font-size: 12px;
  font-weight: 600;
  background: #edf3f8;
  border-radius: 4px;
}

.shipping-schedule__order strong {
  color: #3d4b58;
  font-size: 15px;
  line-height: 1.7;
}

.shipping-schedule__arrow {
  color: #8296a8;
  font-size: 24px;
  text-align: center;
}

.shipping-schedule__delivery strong {
  color: #cf4549;
  font-size: 19px;
}

.shipping-schedule__notice {
  margin-top: 18px;
  padding: 17px 20px;
  color: #574c3d;
  background: #fff9ed;
  border-left: 5px solid #c99a3d;
  border-radius: 7px;
}

.shipping-schedule__notice strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.shipping-schedule__notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.shipping-schedule__notice span {
  color: #cf4549;
  font-weight: 700;
}


/* スマートフォン */
@media screen and (max-width: 767px) {
  .shipping-schedule {
    margin: 18px 0 28px;
    padding: 17px 12px;
    border-radius: 8px;
  }

  .shipping-schedule__heading {
    gap: 10px;
    margin-bottom: 16px;
  }

  .shipping-schedule__icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .shipping-schedule__heading h3 {
    font-size: 17px;
  }

  .shipping-schedule__heading p {
    font-size: 12px;
  }

  .shipping-schedule__row {
    grid-template-columns: minmax(0, 1fr) 25px 73px;
    padding: 13px 10px;
  }

  .shipping-schedule__order,
  .shipping-schedule__delivery {
    display: block;
  }

  .shipping-schedule__label {
    margin-bottom: 6px;
    padding: 3px 5px;
    font-size: 9px;
  }

  .shipping-schedule__order strong {
    display: block;
    font-size: 11px;
    line-height: 1.6;
  }

  .shipping-schedule__arrow {
    font-size: 18px;
  }

  .shipping-schedule__delivery strong {
    display: block;
    font-size: 15px;
    text-align: center;
  }

  .shipping-schedule__notice {
    margin-top: 13px;
    padding: 13px 12px;
  }

  .shipping-schedule__notice strong {
    font-size: 13px;
  }

  .shipping-schedule__notice p {
    font-size: 12px;
  }
}

/* ===================================
   クレジットカードブランド
=================================== */
.payment-brand-area {
  margin-top: 22px;
  padding: 20px;
  background: #f6f8fa;
  border-radius: 8px;
}

.payment-brand-area__title {
  margin: 0 0 14px !important;
  color: #405263;
  font-size: 14px !important;
  font-weight: 700;
}

.payment-brand-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}

.payment-brand {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 105px;
  min-height: 52px;
  padding: 8px 14px;

  color: #33485b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;

  background: #ffffff;
  border: 1px solid #cbd7e1;
  border-radius: 6px;
  box-sizing: border-box;
}

/* ブランドごとの色 */
.payment-brand--jcb {
  color: #16714a;
  border-bottom: 4px solid #16714a;
}

.payment-brand--visa {
  color: #153f8f;
  border-bottom: 4px solid #153f8f;
}

.payment-brand--mastercard {
  color: #c23d32;
  border-bottom: 4px solid #e27930;
}

.payment-brand--amex {
  color: #1776a8;
  font-size: 11px;
  border-bottom: 4px solid #1776a8;
}

.payment-brand--diners {
  color: #176c9c;
  font-size: 13px;
  border-bottom: 4px solid #176c9c;
}


/* ===================================
   代金引換
=================================== */
.payment-fee-area {
  margin-top: 24px;
}

.payment-fee-area h4 {
  margin: 0 0 10px;
  color: #3b4d5e;
  font-size: 17px;
}

.payment-fee-area__description {
  margin: 0 0 18px !important;
}

.payment-fee-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #d2dce5;
  border-radius: 8px;
}

.payment-fee-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ffffff;
}

.payment-fee-table th,
.payment-fee-table td {
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  border-bottom: 1px solid #d7e0e8;
}

.payment-fee-table th {
  color: #3e5163;
  font-weight: 700;
  background: #edf3f8;
}

.payment-fee-table th:first-child,
.payment-fee-table td:first-child {
  width: 65%;
  border-right: 1px solid #d7e0e8;
}

.payment-fee-table tbody tr:last-child td {
  border-bottom: none;
}

.payment-fee-table td strong {
  color: #c94549;
  font-size: 17px;
}


/* ===================================
   スマートフォン
=================================== */
@media screen and (max-width: 767px) {

  .payment-brand-area {
    margin-top: 17px;
    padding: 15px 10px;
  }

  .payment-brand-area__title {
    font-size: 13px !important;
  }

  .payment-brand-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .payment-brand {
    min-width: 0;
    min-height: 44px;
    padding: 6px 3px;
    font-size: 12px;
  }

  .payment-brand--amex {
    font-size: 8px;
  }

  .payment-brand--diners {
    font-size: 10px;
  }

  .payment-fee-area {
    margin-top: 18px;
  }

  .payment-fee-area h4 {
    font-size: 15px;
  }

  .payment-fee-table th,
  .payment-fee-table td {
    padding: 12px 5px;
    font-size: 12px;
  }

  .payment-fee-table th:first-child,
  .payment-fee-table td:first-child {
    width: 67%;
  }

  .payment-fee-table td strong {
    font-size: 14px;
  }
}

/* ===================================
   クレジットカードロゴ
=================================== */
.payment-brand-list--logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.payment-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 112px;
  height: 70px;
  padding: 10px;

  background: #ffffff;
  border: 1px solid #cbd7e1;
  border-radius: 7px;
  box-sizing: border-box;
}

.payment-brand-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

/* スマートフォン */
@media screen and (max-width: 767px) {
  .payment-brand-list--logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .payment-brand-logo {
    width: 100%;
    height: 55px;
    padding: 7px;
  }

  .payment-brand-logo img {
    max-height: 38px;
  }
}

/* Amazon Payの注意書き */
.payment-amazon-notice {
  margin-top: 15px;
  padding: 12px 14px;
  color: #665331;
  background: #fff8e8;
  border-left: 4px solid #d1a244;
  border-radius: 5px;
}

.payment-amazon-notice p {
  margin: 0 !important;
  font-size: 13px !important;
  font-weight: 600;
  line-height: 1.7 !important;
}

@media screen and (max-width: 767px) {
  .payment-amazon-notice {
    margin-top: 12px;
    padding: 10px;
  }

  .payment-amazon-notice p {
    font-size: 12px !important;
  }
}

/* ===================================
   地域別送料
=================================== */
.shipping-rate {
  margin-top: 32px;
  padding: 28px;
  background: #f5f8fb;
  border: 1px solid #d3dee7;
  border-radius: 12px;
  box-sizing: border-box;
}

.shipping-rate__heading {
  margin-bottom: 20px;
}

.shipping-rate__heading h3 {
  margin: 0 0 7px;
  color: #35495b;
  font-size: 20px;
}

.shipping-rate__heading p {
  margin: 0;
  color: #667482;
  font-size: 14px;
  line-height: 1.7;
}

.shipping-rate__list {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d2dce5;
  border-radius: 8px;
}

.shipping-rate__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: stretch;
  border-bottom: 1px solid #d7e0e8;
}

.shipping-rate__row:last-child {
  border-bottom: none;
}

.shipping-rate__area {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 17px 20px;
}

.shipping-rate__area strong {
  color: #3d5265;
  font-size: 15px;
}

.shipping-rate__area span {
  color: #4c5965;
  font-size: 14px;
  line-height: 1.7;
}

.shipping-rate__price {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 15px;

  color: #c94549;
  font-size: 18px;
  font-weight: 700;

  background: #edf3f8;
  border-left: 1px solid #d2dce5;
}

.shipping-rate__notice {
  margin-top: 18px;
  padding: 15px 18px;
  color: #584d3e;
  background: #fff9ed;
  border-left: 5px solid #c99a3d;
  border-radius: 7px;
}

.shipping-rate__notice p {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
}


/* スマートフォン */
@media screen and (max-width: 767px) {
  .shipping-rate {
    margin-top: 22px;
    padding: 16px 10px;
    border-radius: 8px;
  }

  .shipping-rate__heading h3 {
    font-size: 17px;
  }

  .shipping-rate__heading p {
    font-size: 12px;
  }

  .shipping-rate__row {
    grid-template-columns: minmax(0, 1fr) 76px;
  }

  .shipping-rate__area {
    display: block;
    padding: 12px 10px;
  }

  .shipping-rate__area strong {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
  }

  .shipping-rate__area span {
    display: block;
    font-size: 11px;
    line-height: 1.6;
  }

  .shipping-rate__price {
    padding: 10px 4px;
    font-size: 14px;
  }

  .shipping-rate__notice {
    margin-top: 13px;
    padding: 12px 10px;
  }

  .shipping-rate__notice p {
    font-size: 11px !important;
  }
 }

/* ご注文が集中した場合の案内 */
.shipping-schedule__notice--busy {
  color: #405466;
  background: #edf4f9;
  border-left-color: #6d879d;
}

/* ===================================
   ご利用案内ページ・共通デザイン調整
=================================== */

/* ページ上部 */
.guide-page .guide-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 25px;
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #edf3f8 100%
  );
  border: 1px solid #cbd7e1;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(49, 68, 87, 0.08);
}

/* 上部に薄いアクセントライン */
.guide-page .guide-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #62798f;
}

/* SVGアイコンを入れる白い枠 */
.guide-page .guide-hero__icon--svg {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 76px;
  height: 76px;
  margin: 0 auto 16px;

  color: #173b5c;
  background: #ffffff;
  border: 2px solid #aebdcb;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(49, 68, 87, 0.12);
}

/* SVGの大きさ */
.guide-page .guide-hero__icon--svg svg {
  display: block;
  width: 48px;
  height: 48px;
}

/* 英語見出し */
.guide-page .guide-hero__en {
  margin: 0 0 7px;
  color: #6f8497;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* ページタイトル */
.guide-page .guide-hero h1 {
  margin: 0;
  color: #2f4152;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}

/* ページ説明 */
.guide-page .guide-hero__text {
  margin: 12px auto 0;
  color: #4c5b68;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

/* 大見出し */
.guide-page .guide-section__title {
  position: relative;
  margin-bottom: 22px;
  padding: 0 0 12px 13px;
  color: #304658;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 2px solid #c4d1dc;
}

/* 大見出し左のアクセント */
.guide-page .guide-section__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 70px;
  height: 3px;
  background: #62798f;
}

/* 各カードの見出し */
.guide-page .guide-card h3 {
  position: relative;
  margin: 0 0 15px;
  padding-left: 13px;
  color: #354b5d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

/* カード見出しの左線 */
.guide-page .guide-card h3::before {
  content: "";
  position: absolute;
  top: 0.2em;
  bottom: 0.2em;
  left: 0;
  width: 4px;
  background: #8299ad;
  border-radius: 3px;
}

/* 通常文章 */
.guide-page .guide-card p {
  color: #465563;
  font-weight: 400;
}

/* カード */
.guide-page .guide-card {
  border-color: #cedae4;
  box-shadow: 0 4px 14px rgba(49, 68, 87, 0.07);
}

/* 注意書きの見出し */
.guide-page .guide-notice__title {
  color: inherit;
  font-size: 16px;
  font-weight: 700;
}

/* 代金引換手数料などの小見出し */
.guide-page .payment-fee-area h4,
.guide-page .shipping-rate__heading h3,
.guide-page .shipping-schedule__heading h3 {
  color: #354b5d;
  font-weight: 700;
}

/* その他のご利用案内 */
.guide-page .guide-related__title {
  color: #354b5d;
  font-size: 17px;
  font-weight: 700;
}

/* 下部リンク */
.guide-page .guide-related__links a {
  color: #3d5366;
  font-weight: 700;
  background: #f2f6f9;
  border: 1px solid #cbd7e1;
  box-shadow: 0 2px 6px rgba(49, 68, 87, 0.06);
  transition: 0.25s;
}

.guide-page .guide-related__links a:hover {
  color: #ffffff;
  background: #62798f;
  border-color: #62798f;
  transform: translateY(-2px);
}

/* お問い合わせフォームボタン */
.guide-page .guide-button {
  color: #ffffff !important;
  font-weight: 700;
  background: #62798f;
  border: 1px solid #62798f;
  box-shadow: 0 4px 12px rgba(49, 68, 87, 0.16);
}

.guide-page .guide-button:hover {
  background: #4e667b;
  border-color: #4e667b;
}


/* ===================================
   スマートフォン
=================================== */
@media screen and (max-width: 767px) {

  .guide-page .guide-hero {
    padding: 29px 14px;
    border-radius: 8px;
  }

  .guide-page .guide-hero__icon--svg {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    border-radius: 9px;
  }

  .guide-page .guide-hero__icon--svg svg {
    width: 38px;
    height: 38px;
  }

  .guide-page .guide-hero__en {
    font-size: 10px;
  }

  .guide-page .guide-hero h1 {
    font-size: 23px;
  }

  .guide-page .guide-hero__text {
    margin-top: 9px;
    font-size: 13px;
  }

  .guide-page .guide-section__title {
    margin-bottom: 17px;
    padding-left: 10px;
    font-size: 19px;
  }

  .guide-page .guide-card h3 {
    padding-left: 10px;
    font-size: 16px;
  }

  .guide-page .guide-card h3::before {
    width: 3px;
  }

  .guide-page .guide-related__title {
    font-size: 15px;
  }
}

/* ===================================
   その他のご利用案内ボタン
=================================== */
.guide-page .guide-related {
  margin-top: 55px;
  padding-top: 32px;
  border-top: 1px solid #d7e0e8;
}

.guide-page .guide-related__title {
  margin: 0 0 22px;
  color: #354b5d;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.guide-page .guide-related__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.guide-page .guide-related__links a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;

  min-width: 0;
  min-height: 96px;
  padding: 15px 10px;

  color: #263f56 !important;
  text-align: center;
  text-decoration: none !important;

  background: #ffffff;
  border: 2px solid #aebdcb;
  border-radius: 10px;
  box-shadow: 0 4px 11px rgba(49, 68, 87, 0.12);

  box-sizing: border-box;
  transition: 0.25s;
}

.guide-page .guide-related__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 48px;
  width: 48px;
  height: 48px;

  color: #173b5c;
}

.guide-page .guide-related__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.guide-page .guide-related__label {
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

/* マウスを重ねたとき */
.guide-page .guide-related__links a:hover {
  color: #ffffff !important;
  background: #62798f;
  border-color: #62798f;
  box-shadow: 0 7px 16px rgba(49, 68, 87, 0.2);
  transform: translateY(-3px);
}

.guide-page .guide-related__links a:hover .guide-related__icon {
  color: #ffffff;
}


/* スマートフォンも4つ横一列 */
@media screen and (max-width: 767px) {

  .guide-page .guide-related {
    margin-top: 38px;
    padding-top: 24px;
  }

  .guide-page .guide-related__title {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .guide-page .guide-related__links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .guide-page .guide-related__links a {
    flex-direction: column;
    gap: 4px;

    min-height: 68px;
    padding: 7px 1px;

    border-width: 1px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(49, 68, 87, 0.1);
  }

  .guide-page .guide-related__icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .guide-page .guide-related__label {
    max-width: 100%;
    font-size: 9px;
    line-height: 1.2;
    white-space: nowrap;
  }
}

/* ===================================
   その他のご利用案内ボタン
=================================== */
.guide-page .guide-related {
  margin-top: 55px;
  padding-top: 32px;
  border-top: 1px solid #d7e0e8;
}

.guide-page .guide-related__title {
  margin: 0 0 22px;
  color: #354b5d;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.guide-page .guide-related__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.guide-page .guide-related__links a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;

  min-width: 0;
  min-height: 96px;
  padding: 15px 10px;

  color: #263f56 !important;
  text-align: center;
  text-decoration: none !important;

  background: #ffffff;
  border: 2px solid #aebdcb;
  border-radius: 10px;
  box-shadow: 0 4px 11px rgba(49, 68, 87, 0.12);

  box-sizing: border-box;
  transition: 0.25s;
}

.guide-page .guide-related__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 48px;
  width: 48px;
  height: 48px;

  color: #173b5c;
}

.guide-page .guide-related__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.guide-page .guide-related__label {
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

/* マウスを重ねたとき */
.guide-page .guide-related__links a:hover {
  color: #ffffff !important;
  background: #62798f;
  border-color: #62798f;
  box-shadow: 0 7px 16px rgba(49, 68, 87, 0.2);
  transform: translateY(-3px);
}

.guide-page .guide-related__links a:hover .guide-related__icon {
  color: #ffffff;
}


/* スマートフォンも4つ横一列 */
@media screen and (max-width: 767px) {

  .guide-page .guide-related {
    margin-top: 38px;
    padding-top: 24px;
  }

  .guide-page .guide-related__title {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .guide-page .guide-related__links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .guide-page .guide-related__links a {
    flex-direction: column;
    gap: 4px;

    min-height: 68px;
    padding: 7px 1px;

    border-width: 1px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(49, 68, 87, 0.1);
  }

  .guide-page .guide-related__icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .guide-page .guide-related__label {
    max-width: 100%;
    font-size: 9px;
    line-height: 1.2;
    white-space: nowrap;
  }
}

/* ===================================
   その他のご利用案内
   PCはアイコン＋文字を横並びに強制
=================================== */
body .guide-page .guide-related__links {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

body .guide-page .guide-related__links > a {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;

  width: 100% !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 120px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 16px 12px !important;

  color: #263f56 !important;
  text-align: center !important;
  text-decoration: none !important;

  background: #ffffff !important;
  border: 2px solid #aebdcb !important;
  border-radius: 11px !important;
  box-shadow: 0 5px 13px rgba(49, 68, 87, 0.14) !important;

  box-sizing: border-box !important;
  overflow: hidden !important;
}

/* アイコンのサイズを固定 */
body .guide-page .guide-related__icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex: 0 0 58px !important;
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;

  color: #173b5c !important;
}

/* SVGの拡大を防止 */
body .guide-page .guide-related__icon svg {
  display: block !important;
  flex: none !important;

  width: 58px !important;
  height: 58px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 58px !important;
  max-height: 58px !important;
}

/* ボタン文字 */
body .guide-page .guide-related__label {
  display: block !important;
  flex: 0 1 auto !important;


  color: inherit !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
}

/* マウスを重ねたとき */
body .guide-page .guide-related__links > a:hover {
  color: #ffffff !important;
  background: #62798f !important;
  border-color: #62798f !important;
  transform: translateY(-3px) !important;
}

body .guide-page .guide-related__links > a:hover .guide-related__icon {
  color: #ffffff !important;
}


/* ===================================
   スマートフォン
   4つを横一列で表示
=================================== */
@media screen and (max-width: 767px) {

  body .guide-page .guide-related__links {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 4px !important;
  }

  body .guide-page .guide-related__links > a {
    flex-direction: column !important;
    gap: 3px !important;

    min-height: 68px !important;
    padding: 6px 1px !important;

    border-width: 1px !important;
    border-radius: 6px !important;
  }

  body .guide-page .guide-related__icon {
    flex-basis: 27px !important;
    width: 27px !important;
    height: 27px !important;
    min-width: 27px !important;
    min-height: 27px !important;
    max-width: 27px !important;
    max-height: 27px !important;
  }

  body .guide-page .guide-related__icon svg {
    width: 27px !important;
    height: 27px !important;
    max-width: 27px !important;
    max-height: 27px !important;
  }

  body .guide-page .guide-related__label {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }
}

/* ===================================
   ご利用案内ボタン・最終調整
=================================== */
body .guide-page .guide-related__links {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

/* ボタン本体 */
body .guide-page .guide-related__links > a {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 22px !important;

  width: 100% !important;
  height: 132px !important;
  min-height: 132px !important;
  max-height: 132px !important;
  padding: 18px 14px !important;

  color: #173b5c !important;
  background: #ffffff !important;
  border: 2px solid #aebdcb !important;
  border-radius: 11px !important;
  box-shadow: 0 5px 13px rgba(49, 68, 87, 0.15) !important;

  text-align: center !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

/* アイコンを左側に固定 */
body .guide-page .guide-related__icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex: 0 0 64px !important;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;

  color: #173b5c !important;
}

/* SVGサイズ */
body .guide-page .guide-related__icon svg {
  display: block !important;
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
}

/* SVGの線を濃い紺色に統一 */
body .guide-page .guide-related__icon svg g {
  stroke: #173b5c !important;
}

/* カード内の丸印など */
body .guide-page .guide-related__icon svg [fill="currentColor"] {
  fill: #173b5c !important;
  stroke: none !important;
}

/* ボタン文字 */
body .guide-page .guide-related__label {
  display: block !important;
  flex: 0 1 auto !important;

  color: #22272d !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
}

/* マウスを重ねたとき */
body .guide-page .guide-related__links > a:hover {
  color: #ffffff !important;
  background: #62798f !important;
  border-color: #62798f !important;
  transform: translateY(-3px) !important;
}

body .guide-page .guide-related__links > a:hover .guide-related__label {
  color: #ffffff !important;
}

body .guide-page .guide-related__links > a:hover .guide-related__icon svg g {
  stroke: #ffffff !important;
}

body .guide-page .guide-related__links > a:hover
.guide-related__icon svg [fill="currentColor"] {
  fill: #ffffff !important;
}


/* スマートフォン：4つ横一列 */
@media screen and (max-width: 767px) {

  body .guide-page .guide-related__links {
    gap: 4px !important;
  }

  body .guide-page .guide-related__links > a {
    flex-direction: column !important;
    gap: 3px !important;

    height: 68px !important;
    min-height: 68px !important;
    max-height: 68px !important;
    padding: 5px 1px !important;

    border-width: 1px !important;
    border-radius: 6px !important;
  }

  body .guide-page .guide-related__icon {
    flex-basis: 28px !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
  }

  body .guide-page .guide-related__icon svg {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
  }

  body .guide-page .guide-related__label {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }
}

/* ===================================
   Needa専用・その他のご利用案内
=================================== */
body .guide-page .needa-related {
  margin-top: 55px !important;
  padding-top: 32px !important;
  border-top: 1px solid #d7e0e8 !important;
}

body .guide-page .needa-related__title {
  margin: 0 0 22px !important;
  color: #354b5d !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-align: center !important;
}

body .guide-page .needa-related__links {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

body .guide-page .needa-related__links > a {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;

  width: 100% !important;
  height: 132px !important;
  min-height: 132px !important;
  max-height: 132px !important;
  padding: 16px 12px !important;

  color: #173b5c !important;
  text-decoration: none !important;
  text-align: center !important;

  background: #ffffff !important;
  border: 2px solid #aebdcb !important;
  border-radius: 11px !important;
  box-shadow: 0 5px 13px rgba(49, 68, 87, 0.15) !important;

  box-sizing: border-box !important;
  overflow: hidden !important;
}

body .guide-page .needa-related__icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex: 0 0 62px !important;
  width: 62px !important;
  height: 62px !important;
  min-width: 62px !important;
  min-height: 62px !important;
  max-width: 62px !important;
  max-height: 62px !important;

  color: #173b5c !important;
}

body .guide-page .needa-related__icon svg {
  display: block !important;
  flex: none !important;

  width: 62px !important;
  height: 62px !important;
  min-width: 62px !important;
  min-height: 62px !important;
  max-width: 62px !important;
  max-height: 62px !important;
}

body .guide-page .needa-related__icon svg g {
  stroke: #173b5c !important;
}

body .guide-page .needa-related__icon svg [fill="currentColor"] {
  fill: #173b5c !important;
  stroke: none !important;
}

body .guide-page .needa-related__label {
  display: block !important;

  color: #22272d !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
}

/* マウスを重ねたとき */
body .guide-page .needa-related__links > a:hover {
  background: #62798f !important;
  border-color: #62798f !important;
  transform: translateY(-3px) !important;
}

body .guide-page .needa-related__links > a:hover .needa-related__label {
  color: #ffffff !important;
}

body .guide-page .needa-related__links > a:hover .needa-related__icon svg g {
  stroke: #ffffff !important;
}

body .guide-page .needa-related__links > a:hover
.needa-related__icon svg [fill="currentColor"] {
  fill: #ffffff !important;
}


/* スマートフォン */
@media screen and (max-width: 767px) {

  body .guide-page .needa-related {
    margin-top: 38px !important;
    padding-top: 24px !important;
  }

  body .guide-page .needa-related__title {
    margin-bottom: 14px !important;
    font-size: 15px !important;
  }

  body .guide-page .needa-related__links {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 4px !important;
  }

  body .guide-page .needa-related__links > a {
    flex-direction: column !important;
    gap: 3px !important;

    height: 68px !important;
    min-height: 68px !important;
    max-height: 68px !important;
    padding: 5px 1px !important;

    border-width: 1px !important;
    border-radius: 6px !important;
  }

  body .guide-page .needa-related__icon,
  body .guide-page .needa-related__icon svg {
    flex-basis: 28px !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
  }

  body .guide-page .needa-related__label {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }
}


/* ===================================
   その他のご利用案内
   ※既存CSSとの競合を防ぐ専用クラス
=================================== */
.needa-related {
  width: 100% !important;
  margin: 70px auto 0 !important;
  padding: 45px 30px !important;
  box-sizing: border-box !important;
  background: #f5f9fd !important;
  border-top: 1px solid #dce6ef !important;
}

.needa-related__title {
  margin: 0 0 28px !important;
  color: #35495b !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

.needa-related__links {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  width: 100% !important;
  max-width: 1580px !important;
  margin: 0 auto !important;
}

.needa-related__links > a {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;

  width: auto !important;
  min-width: 0 !important;
  height: 130px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 20px 24px !important;
  box-sizing: border-box !important;

  color: #173d5d !important;
  text-decoration: none !important;

  background: #ffffff !important;
  border: 2px solid #aebfd0 !important;
  border-radius: 10px !important;
  box-shadow: 0 7px 16px rgba(44, 72, 96, 0.15) !important;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease !important;
}

.needa-related__links > a:hover {
  color: #173d5d !important;
  border-color: #7894ac !important;
  box-shadow: 0 10px 22px rgba(44, 72, 96, 0.22) !important;
  transform: translateY(-3px) !important;
}

/* アイコンを強制的に小さくする */
.needa-related__icon {
  display: flex !important;
  flex: 0 0 64px !important;
  align-items: center !important;
  justify-content: center !important;

  width: 64px !important;
  height: 64px !important;
  margin: 0 !important;
  padding: 0 !important;

  color: #173d5d !important;
  line-height: 1 !important;
}

.needa-related__icon svg {
  display: block !important;
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;

  color: #173d5d !important;
  fill: none !important;
  overflow: visible !important;
}

.needa-related__label {
  display: block !important;
  margin: 0 !important;
  color: #222222 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  white-space: nowrap !important;
}


/* ===================================
   スマートフォン
   4つを横一列に収める
=================================== */
@media screen and (max-width: 767px) {
  .needa-related {
    margin-top: 45px !important;
    padding: 26px 6px !important;
  }

  .needa-related__title {
    margin-bottom: 17px !important;
    font-size: 17px !important;
  }

  .needa-related__links {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 5px !important;
  }

  .needa-related__links > a {
    flex-direction: column !important;
    gap: 6px !important;

    height: 88px !important;
    padding: 9px 2px !important;

    border-width: 1px !important;
    border-radius: 6px !important;
    box-shadow: 0 3px 7px rgba(44, 72, 96, 0.13) !important;
  }

  .needa-related__icon {
    flex-basis: 34px !important;
    width: 34px !important;
    height: 34px !important;
  }

  .needa-related__icon svg {
    width: 34px !important;
    height: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
  }

  .needa-related__label {
    font-size: 10px !important;
    line-height: 1.25 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
}

/* お問い合わせボタンの文字切れを調整 */
.needa-related__links > a:last-child {
  gap: 14px !important;
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.needa-related__links > a:last-child .needa-related__label {
  font-size: 17px !important;
}

/* スマートフォンでは既存サイズを維持 */
@media screen and (max-width: 767px) {
  .needa-related__links > a:last-child {
    gap: 3px !important;
    padding: 6px 1px !important;
  }

  .needa-related__links > a:last-child .needa-related__label {
    font-size: 9px !important;
  }
}

/* ===================================
   ご利用案内ボタンのバランス最終調整
=================================== */

/* ボタン内の余白と間隔 */
body .guide-page .needa-related__links > a {
  gap: 14px !important;
  padding: 18px 12px !important;
}

/* 4つすべてのアイコンサイズを統一 */
body .guide-page .needa-related__icon {
  flex: 0 0 56px !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
}

body .guide-page .needa-related__icon svg {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
}

/* 4つすべての文字を統一 */
body .guide-page .needa-related__label {
  flex: 0 1 auto !important;
  min-width: 0 !important;

  color: #22272d !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

/* スマートフォン */
@media screen and (max-width: 767px) {
  body .guide-page .needa-related__links > a {
    gap: 3px !important;
    padding: 6px 1px !important;
  }

  body .guide-page .needa-related__icon,
  body .guide-page .needa-related__icon svg {
    flex-basis: 28px !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
  }

  body .guide-page .needa-related__label {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }
}

/* ===================================
   ご利用案内ボタンを横長に調整
=================================== */
body .guide-page .needa-related__links > a {
  height: 90px !important;
  min-height: 90px !important;
  max-height: 90px !important;

  padding: 10px 14px !important;
  gap: 14px !important;
}

/* アイコンも高さに合わせて少し小さくする */
body .guide-page .needa-related__icon {
  flex: 0 0 50px !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  max-width: 50px !important;
  max-height: 50px !important;
}

body .guide-page .needa-related__icon svg {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  max-width: 50px !important;
  max-height: 50px !important;
}

/* 文字サイズ */
body .guide-page .needa-related__label {
  font-size: 16px !important;
}

/* スマートフォンはこれまでのサイズを維持 */
@media screen and (max-width: 767px) {
  body .guide-page .needa-related__links > a {
    height: 68px !important;
    min-height: 68px !important;
    max-height: 68px !important;
    padding: 6px 1px !important;
    gap: 3px !important;
  }

  body .guide-page .needa-related__icon,
  body .guide-page .needa-related__icon svg {
    flex-basis: 28px !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
  }

  body .guide-page .needa-related__label {
    font-size: 9px !important;
  }
}

/* ===================================
   ヘッダーご利用案内ボタン
=================================== */
.needa-header-guide {
  width: 100%;
  padding: 22px 30px;
  box-sizing: border-box;
  background: #f5f9fd;
  border-bottom: 1px solid #dce6ef;
}

.needa-header-guide__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;

  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
}

.needa-header-guide__button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;

  height: 96px;
  min-width: 0;
  padding: 12px 16px;
  box-sizing: border-box;

  color: #173b5c !important;
  text-decoration: none !important;

  background: #ffffff;
  border: 2px solid #aebdcb;
  border-radius: 10px;
  box-shadow: 0 5px 13px rgba(49, 68, 87, 0.15);

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

.needa-header-guide__button:hover {
  color: #ffffff !important;
  background: #62798f;
  border-color: #62798f;
  box-shadow: 0 8px 18px rgba(49, 68, 87, 0.22);
  transform: translateY(-2px);
}

.needa-header-guide__icon {
  display: flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  color: inherit;
}

.needa-header-guide__icon svg {
  display: block;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
}

.needa-header-guide__label {
  display: block;
  min-width: 0;

  color: inherit;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}


/* スマートフォンも4つ横一列 */
@media screen and (max-width: 767px) {
  .needa-header-guide {
    padding: 10px 5px;
  }

  .needa-header-guide__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .needa-header-guide__button {
    flex-direction: column;
    gap: 3px;

    height: 70px;
    padding: 6px 1px;

    border-width: 1px;
    border-radius: 6px;
    box-shadow: 0 3px 7px rgba(49, 68, 87, 0.13);
  }

  .needa-header-guide__icon {
    flex-basis: 29px;
    width: 29px;
    height: 29px;
  }

  .needa-header-guide__icon svg {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    min-height: 29px !important;
    max-width: 29px !important;
    max-height: 29px !important;
  }

  .needa-header-guide__label {
    font-size: 9px;
    line-height: 1.2;
  }
}

/* 背景を白くして下側の線も削除 */
.needa-header-guide {
  background: #ffffff !important;
  border-bottom: none !important;
}