/* =========================================================================
   feature-ecco.css  —  整理版（モバイルファースト）
   - 重複した「FINAL OVERRIDE」ブロックを統合し、最終的に効いていた値のみを残す
   - ベース = スマホ（〜767px）
   - PC は @media (min-width: 768px) / (min-width: 1024px) で上書き
   - 見た目・挙動（カルーセル/ドラッグ/白線）は従来どおりを維持
   ========================================================================= */

/* -------------------------------------------------------------------------
   0. ルート変数 / 共通
   ------------------------------------------------------------------------- */
:root {
  --feature-ecco-black: #050505;
  --feature-ecco-white: #ffffff;
  --feature-ecco-gray: #f4f4f4;
  --feature-ecco-line: #dedede;
  --feature-ecco-text: #202020;
  --feature-ecco-muted: #6b6b6b;
  --feature-ecco-loading-bg: #222222;

  /* PC カルーセル（BOSTON / TOTE）の可変カード幅・余白 */
  --ecco-pc-gap: clamp(36px, 5.2vw, 75px);
  --ecco-pc-item: max(220px, calc(25vw - var(--ecco-pc-gap)));
}

html.is-feature-ecco-locked,
body.is-feature-ecco-locked {
  overflow: hidden;
}

.feature-ecco {
  background: var(--feature-ecco-white);
  color: var(--feature-ecco-text);
  font-family: inherit;
  overflow: hidden;
}

.feature-ecco *,
.feature-ecco *::before,
.feature-ecco *::after,
.feature-ecco-loading *,
.feature-ecco-loading *::before,
.feature-ecco-loading *::after {
  box-sizing: border-box;
}

/* -------------------------------------------------------------------------
   1. ローディング
   ------------------------------------------------------------------------- */
.feature-ecco-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222222;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 350ms ease,
    visibility 350ms ease;
}

.feature-ecco-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.feature-ecco-loading__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px;
}

.feature-ecco-loading__logo {
  width: min(90vw, 360px);
  height: auto;
  display: block;
  background-color: transparent;
  padding: 0;
  opacity: 0;
  transform: translateY(8px);
  animation: featureEccoLoadingLogo 700ms ease forwards;
}

@keyframes featureEccoLoadingLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------------------------------------------------------
   2. キービジュアル
   ------------------------------------------------------------------------- */
.feature-ecco__kv {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: var(--feature-ecco-loading-bg);
}

.kv-innrbg {
  width: 100%;
  padding-bottom: 120px;
}

.kv-wrapper {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}

.kv-wrapper__header {
  text-align: center;
  padding: 48px 20px 28px;
}

.kv-wrapper__header h2 {
  margin: 0;
  padding: 0;
  color: #ffffff;
  background-color: transparent;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.06em;
}

.kv-wrapper__header p {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(13px, 1.6vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.imgwrapper,
.imgwrapper picture,
.imgwrapper img {
  width: 100%;
}

.imgwrapper picture,
.imgwrapper img {
  display: block;
}

.imgwrapper img {
  height: auto;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

/* -------------------------------------------------------------------------
   3. フェードイン
   ------------------------------------------------------------------------- */
.js-feature-ecco-image-fade,
.js-feature-ecco-fade-up {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 2000ms ease,
    transform 2000ms ease;
  will-change: opacity, transform;
}

.js-feature-ecco-image-fade.is-visible,
.js-feature-ecco-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-feature-ecco-image-fade-left,
.js-feature-ecco-image-fade-right {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

.js-feature-ecco-image-fade-left {
  transition:
    opacity 1800ms ease,
    transform 1800ms ease;
}
.js-feature-ecco-image-fade-right {
  transition:
    opacity 1800ms ease 500ms,
    transform 1800ms ease 500ms;
}

.js-feature-ecco-image-fade-left.is-visible,
.js-feature-ecco-image-fade-right.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------------------
   4. ABOUT
   ------------------------------------------------------------------------- */
.feature-ecco-about {
  background: #c0c0c0;
  padding: 80px 20px;
}

.feature-ecco-about__inner {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.feature-ecco-about__label {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-ecco-about__title {
  margin: 12px 0 32px;
  padding: 0;
  color: #ffffff;
  background-color: transparent;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.04em;
}

.feature-ecco-about__text {
  max-width: 780px;
}

.feature-ecco-about__text p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.feature-ecco-about__text p + p {
  margin-top: 20px;
}

/* -------------------------------------------------------------------------
   5. 商品セクション（外枠）
   ------------------------------------------------------------------------- */
.feature-ecco__section {
  padding: 96px 0;
  background: #222222;
}
.feature-ecco__section:last-child {
  padding-bottom: 0;
}

.feature-ecco__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 20px;
}

/* -------------------------------------------------------------------------
   6. キャディバッグ上部のビジュアル（2枚重ね）
   ------------------------------------------------------------------------- */
.feature-ecco-bag-showcase__visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 96px;
  overflow: visible;
  gap: 0;
}

.feature-ecco-bag-showcase__visual-image {
  display: block;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
}

.feature-ecco-bag-showcase__visual-image--left {
  position: relative;
  z-index: 2;
  flex: 0 0 calc((100% + 24px) / 2);
  width: calc((100% + 24px) / 2);
}

.feature-ecco-bag-showcase__visual-image--right {
  position: relative;
  z-index: 1;
  flex: 0 0 calc((100% + 24px) / 2);
  width: calc((100% + 24px) / 2);
  margin-left: -24px;
  margin-top: 24px;
}

/* -------------------------------------------------------------------------
   7. 商品ショーケース（グレー背景 / カルーセル土台）
   ------------------------------------------------------------------------- */
.feature-ecco-bag-showcase {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 96px 0;
  z-index: 1;
  overflow: hidden;
}

.feature-ecco-bag-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #222222 0%, #222222 46%, #cfcfcf 46%, #cfcfcf 100%);
  z-index: -1;
  pointer-events: none;
}

.feature-ecco-bag-showcase + .feature-ecco-bag-showcase {
  padding-top: 96px;
}

/* 見出し */
.feature-ecco-bag-showcase__head {
  position: relative;
  z-index: 2;
  margin: 0 0 44px;
}

.feature-ecco-bag-showcase__title-wrap {
  text-align: center;
}

.feature-ecco-bag-showcase__title {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #f1eee8;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.22em;
}

.feature-ecco-bag-showcase__title--accessory {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: 0.22em;
}

/* スクロールバー（下地の白線） */
.feature-ecco-bag-showcase__scrollbar {
  position: relative;
  width: min(100%, 580px);
  height: 22px;
  margin: 5px auto 0;
}

.feature-ecco-bag-showcase__scrollbar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: translateY(-50%);
}

/* 可動インジケーター */
.feature-ecco-bag-showcase__range {
  position: absolute;
  top: 50%;
  left: var(--feature-ecco-indicator-left, 0%);
  display: block;
  width: var(--feature-ecco-indicator-size, 33.333%);
  height: 8px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  outline: none;
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    left 500ms cubic-bezier(0.22, 0.61, 0.36, 1),
    width 300ms ease;
}
.feature-ecco-bag-showcase__range::-webkit-slider-thumb {
  width: 0;
  height: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
}
.feature-ecco-bag-showcase__range::-moz-range-thumb {
  width: 0;
  height: 0;
  background: transparent;
  border: 0;
}

/* ビューポート / トラック / アイテム（モバイル＝チラ見せカルーセル） */
.feature-ecco-bag-showcase__viewport {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  padding-left: 30px; /* SP: 左余白（チラ見せの起点） */
  cursor: grab;
  touch-action: pan-y;
}
.feature-ecco-bag-showcase__viewport.is-dragging {
  cursor: grabbing;
}

.feature-ecco-bag-showcase__track {
  display: flex;
  gap: 30px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.feature-ecco-bag-showcase__item {
  flex: 0 0 72%;
  min-width: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.feature-ecco-bag-showcase__image-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  background: #2b2b2b;
}

.feature-ecco-bag-showcase__image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  opacity: 1;
  transform: translateZ(0);
  transition: none;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
  backface-visibility: hidden;
}

.feature-ecco-bag-showcase__info {
  position: relative;
  z-index: 2;
  padding: 16px 0 0;
  background: transparent;
}

.feature-ecco-bag-showcase__color {
  margin: 0;
  color: #111111;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.09em;
}

.feature-ecco-bag-showcase__price {
  margin: 10px 0 0;
  color: #555555;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* ショーケース フッター */
.feature-ecco-bag-showcase-footer {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.feature-ecco-bag-showcase-footer__title {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.feature-ecco-bag-showcase-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  background: #d8d8d8;
  color: #222222;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 12px;
  transition:
    background 300ms ease,
    transform 300ms ease;
}
.feature-ecco-bag-showcase-footer__button:hover,
.feature-ecco-bag-showcase-footer__button:focus-visible {
  background: #f0f0f0;
}
.feature-ecco-bag-showcase-footer__button span {
  font-size: 20px;
}

/* -------------------------------------------------------------------------
   8. 画像フィット（BOSTON / TOTE / ACCESSORY / BODY は白枠内に収める）
   ------------------------------------------------------------------------- */
.feature-ecco-bag-showcase--boston .feature-ecco-bag-showcase__image-wrap,
.feature-ecco-bag-showcase--tote .feature-ecco-bag-showcase__image-wrap,
.feature-ecco-bag-showcase--accessory .feature-ecco-bag-showcase__image-wrap,
.feature-ecco-bag-showcase--body .feature-ecco-bag-showcase__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  background: #ffffff;
  overflow: hidden;
}

.feature-ecco-bag-showcase--boston .feature-ecco-bag-showcase__image-wrap a,
.feature-ecco-bag-showcase--tote .feature-ecco-bag-showcase__image-wrap a,
.feature-ecco-bag-showcase--accessory .feature-ecco-bag-showcase__image-wrap a,
.feature-ecco-bag-showcase--body .feature-ecco-bag-showcase__image-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.feature-ecco-bag-showcase--boston .feature-ecco-bag-showcase__image,
.feature-ecco-bag-showcase--tote .feature-ecco-bag-showcase__image,
.feature-ecco-bag-showcase--accessory .feature-ecco-bag-showcase__image,
.feature-ecco-bag-showcase--body .feature-ecco-bag-showcase__image {
  display: block;
  width: 84%;
  height: 84%;
  max-width: 84%;
  max-height: 84%;
  margin: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
}

/* ROUND TOTE だけ個別に小さく（TOTE内の 39295 系に付与したクラス） */
.feature-ecco-bag-showcase--tote .feature-ecco-bag-showcase__image.feature-ecco-round-tote-fit {
  width: 70%;
  height: 70%;
  max-width: 70%;
  max-height: 70%;
}

/* -------------------------------------------------------------------------
   9. TAP TO DISCOVER / ホットスポット
   ------------------------------------------------------------------------- */
.feature-ecco-hotspot {
  position: relative;
  width: 100%;
  margin: 96px auto;
}

.feature-ecco-hotspot__guide {
  margin: 0 0 40px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.24em;
  text-align: center;
}

.feature-ecco-hotspot__image {
  display: block;
  width: 100%;
  height: auto;
}

.feature-ecco-hotspot__area {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.feature-ecco-hotspot__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  transition:
    background 300ms ease,
    transform 300ms ease,
    opacity 300ms ease;
  animation: featureEccoHotspotPulse 2400ms ease-in-out infinite;
}

.feature-ecco-hotspot__area:hover .feature-ecco-hotspot__mark,
.feature-ecco-hotspot__area:focus-visible .feature-ecco-hotspot__mark {
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
  transform: scale(1.08);
}

@keyframes featureEccoHotspotPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* ホットスポット位置（SP） */
.hotspot-01 {
  left: 9%;
  bottom: 4%;
  width: 18%;
  height: 28%;
}
.hotspot-02 {
  left: 24%;
  bottom: 0%;
  width: 24%;
  height: 36%;
}
.hotspot-03 {
  left: 46%;
  bottom: 0%;
  width: 24%;
  height: 48%;
}
.hotspot-04 {
  right: 6.5%;
  bottom: 3%;
  width: 22%;
  height: 38%;
}

/* -------------------------------------------------------------------------
   10. モーダル（商品カード風ポップアップ）
   ------------------------------------------------------------------------- */
.feature-ecco-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.55);
  padding: 24px;
}
.feature-ecco-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-ecco-modal__overlay {
  position: fixed;
  inset: 0;
}

.feature-ecco-modal__inner {
  position: relative;
  width: min(100%, 376px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  margin: 0;
  padding: 24px;
  background: #cfcfcf;
  text-align: left;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.feature-ecco-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.86);
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}

.feature-ecco-modal__image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 24px;
  aspect-ratio: 1 / 1.25;
  border: 0;
  background: #ffffff;
  overflow: hidden;
}

.feature-ecco-modal__image {
  width: 86%;
  height: 86%;
  object-fit: contain;
  object-position: center center;
}

.feature-ecco-modal__name {
  margin: 0 14px 22px;
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: left;
}

.feature-ecco-modal__price {
  margin: -10px 14px 22px;
  color: #555555;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: left;
}

.feature-ecco-modal__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 2px);
  min-height: 74px;
  margin: 0 auto;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  background: #202020;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
}
.feature-ecco-modal__link:hover,
.feature-ecco-modal__link:focus-visible {
  opacity: 0.9;
  transform: none;
}

/* -------------------------------------------------------------------------
   11. フッター
   ------------------------------------------------------------------------- */
.feature-ecco-footer {
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222222;
}

.feature-ecco-footer__logo {
  width: 220px;
  max-width: 70vw;
  height: auto;
  display: block;
}

/* =========================================================================
   PC : @media (min-width: 768px)
   ========================================================================= */
@media screen and (min-width: 768px) {
  .feature-ecco-loading__logo {
    width: min(90vw, 540px);
  }

  .kv-wrapper__header {
    padding: 80px 40px 40px;
  }
  .kv-wrapper__header h2 {
    font-size: 72px;
  }
  .kv-wrapper__header p {
    font-size: 18px;
  }

  .feature-ecco-about {
    padding: 120px 40px;
  }
  .feature-ecco-about__title {
    margin-bottom: 40px;
  }
  .feature-ecco-about__text p {
    font-size: 18px;
  }

  .feature-ecco__section {
    padding: 120px 0 140px;
  }
  .feature-ecco__section:last-child {
    padding-bottom: 0;
  }
  .feature-ecco__inner {
    padding: 0 40px;
  }

  .feature-ecco-bag-showcase {
    padding: 120px 0 140px;
  }
  .feature-ecco-bag-showcase + .feature-ecco-bag-showcase {
    padding-top: 140px;
  }

  .feature-ecco-bag-showcase__visual {
    margin-bottom: 120px;
  }
  .feature-ecco-bag-showcase__visual-image--left,
  .feature-ecco-bag-showcase__visual-image--right {
    flex-basis: calc((100% + 50px) / 2);
    width: calc((100% + 50px) / 2);
  }
  .feature-ecco-bag-showcase__visual-image--right {
    margin-left: -50px;
    margin-top: 50px;
  }

  .feature-ecco-bag-showcase__head {
    margin-bottom: 56px;
  }
  .feature-ecco-bag-showcase__title {
    font-size: 32px;
    letter-spacing: 0.28em;
  }
  .feature-ecco-bag-showcase__title--accessory {
    font-size: 56px;
    letter-spacing: 0.34em;
  }

  .feature-ecco-bag-showcase__color {
    font-size: 15px;
    letter-spacing: 0.08em;
  }
  .feature-ecco-bag-showcase__price {
    margin-top: 8px;
    font-size: 14px;
  }
  .feature-ecco-bag-showcase__info {
    padding: 32px 24px 34px;
  }

  /* PC は左右のチラ見せを viewport の visible で表現。SP の左padはリセット */
  .feature-ecco-bag-showcase__viewport {
    overflow: visible;
    padding-left: 0;
  }

  /* 共通カード幅（可変） */
  .feature-ecco-bag-showcase__item {
    flex: 0 0 var(--ecco-pc-item) !important;
    max-width: var(--ecco-pc-item) !important;
  }

  /* ---- CADDY / BODY / ACCESSORY : カルーセル停止（静的3列・中央寄せ） ---- */
  .feature-ecco-bag-showcase--caddy .feature-ecco-bag-showcase__item--clone,
  .feature-ecco-bag-showcase--body .feature-ecco-bag-showcase__item--clone,
  .feature-ecco-bag-showcase--accessory .feature-ecco-bag-showcase__item--clone {
    display: none;
  }
  .feature-ecco-bag-showcase--caddy .feature-ecco-bag-showcase__viewport,
  .feature-ecco-bag-showcase--body .feature-ecco-bag-showcase__viewport,
  .feature-ecco-bag-showcase--accessory .feature-ecco-bag-showcase__viewport {
    overflow: visible;
    cursor: default;
  }
  .feature-ecco-bag-showcase--caddy .feature-ecco-bag-showcase__track,
  .feature-ecco-bag-showcase--body .feature-ecco-bag-showcase__track,
  .feature-ecco-bag-showcase--accessory .feature-ecco-bag-showcase__track {
    transform: none !important;
    transition: none !important;
    justify-content: center;
    gap: var(--ecco-pc-gap) !important;
  }

  /* CADDY / BODY / ACCESSORY を TOTE と揃える：下地の白線を表示（可動バーは消す） */
  .feature-ecco-bag-showcase--caddy .feature-ecco-bag-showcase__scrollbar,
  .feature-ecco-bag-showcase--body .feature-ecco-bag-showcase__scrollbar,
  .feature-ecco-bag-showcase--accessory .feature-ecco-bag-showcase__scrollbar {
    display: block;
  }
  .feature-ecco-bag-showcase--caddy .feature-ecco-bag-showcase__range,
  .feature-ecco-bag-showcase--body .feature-ecco-bag-showcase__range,
  .feature-ecco-bag-showcase--accessory .feature-ecco-bag-showcase__range {
    display: none;
  }

  /* ---- BOSTON / TOTE : 1〜3枚フル表示＋4枚目を右端で半分見せる ----
     ・カード幅/余白は --ecco-pc-item / --ecco-pc-gap（可変）で共通
     ・1枚目の左端を BODY の1枚目に合わせる（同じ計算式）
     ・4枚目の半分が常に画面右端に来るよう width を算出 */
  .feature-ecco-bag-showcase--boston,
  .feature-ecco-bag-showcase--tote {
    overflow: hidden;
  }

  .feature-ecco-bag-showcase--boston .feature-ecco-bag-showcase__viewport,
  .feature-ecco-bag-showcase--tote .feature-ecco-bag-showcase__viewport {
    margin-left: calc((100vw - (var(--ecco-pc-item) * 3 + var(--ecco-pc-gap) * 2)) / 2) !important;
    margin-right: 0 !important;
    width: calc(var(--ecco-pc-item) * 3 + var(--ecco-pc-gap) * 3 + var(--ecco-pc-item) / 2) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box;
  }
  .feature-ecco-bag-showcase--boston .feature-ecco-bag-showcase__track,
  .feature-ecco-bag-showcase--tote .feature-ecco-bag-showcase__track {
    gap: var(--ecco-pc-gap) !important;
    padding-left: 0 !important;
    justify-content: flex-start !important;
  }
  .feature-ecco-bag-showcase--boston .feature-ecco-bag-showcase__item,
  .feature-ecco-bag-showcase--tote .feature-ecco-bag-showcase__item {
    flex: 0 0 var(--ecco-pc-item) !important;
    max-width: var(--ecco-pc-item) !important;
  }

  /* BOSTON / TOTE : カードを掴んでスライド（リンク/画像ドラッグ無効・クリック遷移は維持） */
  .feature-ecco-bag-showcase--boston .feature-ecco-bag-showcase__viewport a,
  .feature-ecco-bag-showcase--tote .feature-ecco-bag-showcase__viewport a,
  .feature-ecco-bag-showcase--boston .feature-ecco-bag-showcase__viewport img,
  .feature-ecco-bag-showcase--tote .feature-ecco-bag-showcase__viewport img {
    -webkit-user-drag: none;
    user-drag: none;
  }

  /* ホットスポット */
  .feature-ecco-hotspot {
    margin: 120px auto 140px;
  }
  .feature-ecco-hotspot__guide {
    font-size: 32px;
    margin-bottom: 56px;
  }
  .feature-ecco-hotspot__mark {
    width: 34px;
    height: 34px;
    font-size: 27px;
  }

  .hotspot-01 {
    left: 9%;
    bottom: 8%;
  }
  .hotspot-02 {
    left: 24.5%;
    bottom: 3%;
  }
  .hotspot-03 {
    left: 46%;
    bottom: 3%;
  }
  .hotspot-04 {
    right: 6.5%;
    bottom: 7%;
  }

  /* モーダル */
  .feature-ecco-modal__inner {
    width: min(92vw, 380px);
    padding: 20px 20px 28px;
  }
  .feature-ecco-modal__close {
    top: 12px;
    right: 16px;
  }
  .feature-ecco-modal__image-frame {
    width: calc(100% - 24px);
    margin: 10px auto 26px;
  }

  /* フッター */
  .feature-ecco-footer__logo {
    width: 440px;
  }

  /* ショーケース フッター（PCは横並び） */
  .feature-ecco-bag-showcase-footer {
    flex-direction: row;
    align-items: center;
  }
  .feature-ecco-bag-showcase-footer__button {
    width: 250px;
  }
}

/* =========================================================================
   PC : @media (min-width: 1024px)
   ========================================================================= */
@media screen and (min-width: 1024px) {
  .feature-ecco-footer {
    padding: 240px 0;
  }
}

/* =========================================================================
   モーション低減
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  .feature-ecco-loading,
  .feature-ecco-loading__logo,
  .js-feature-ecco-image-fade,
  .js-feature-ecco-fade-up,
  .js-feature-ecco-image-fade-left,
  .js-feature-ecco-image-fade-right,
  .feature-ecco-hotspot__mark {
    animation: none;
    transition: none;
  }
  .feature-ecco-loading__logo,
  .js-feature-ecco-image-fade,
  .js-feature-ecco-fade-up,
  .js-feature-ecco-image-fade-left,
  .js-feature-ecco-image-fade-right {
    opacity: 1;
    transform: none;
  }
}
