:root {
  --bg: #f5f6f2;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --text: #1f2329;
  --muted: #606875;
  --line: #d8dde4;
  --accent: #3c6ea8;
  --accent-soft: #e7f0fb;
  --content-max: 1440px;
  --lp-rem: 16px;
  --hero-scale: 1;
  --hero-ink: #ffffff;
  --hero-ink-muted: rgba(255, 255, 255, 0.88);
  --lp-fs-header-pad: 0;
}

/* FutureShop スマホ: 固定ヘッダー分の上余白 */
@media (max-width: 768px) {
  :root {
    --lp-fs-header-pad: 36px;
  }

  .fs-l-page {
    padding-top: var(--lp-fs-header-pad) !important;
  }
}

/* FutureShop 埋め込み: 親の width:78% 等を無視しビューポート幅いっぱい（位置は CSS のみ・JS で marginLeft しない） */
#standardLpRoot.standard-lp {
  position: relative;
  width: var(--lp-viewport, 100vw) !important;
  min-width: var(--lp-viewport, 100vw) !important;
  max-width: none !important;
  margin-left: calc(50% - (var(--lp-viewport, 100vw) / 2)) !important;
  margin-right: calc(50% - (var(--lp-viewport, 100vw) / 2)) !important;
  padding: 0;
  overflow-x: visible;
  overflow-y: visible;
  isolation: isolate;
  font-size: var(--lp-rem);
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: var(--text);
  background: #fff;
  font-family: "Noto Sans JP", "Noto Sans SC", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.02em;
}

/*
 * LP スタイル優先順位
 * 1. #standardLpRoot.standard-lp … ルートのタイポ・色
 * 2a. .standard-lp :where(見出し・p…) … margin:0（id なし＝後述の .pickup-slide h3 等が勝つ）
 * 2b. #standardLpRoot :where(ul,ol,li) … FS 用リストリセットのみ id 付き
 * 3. :where(a) / :where(button…) … リンク・フォーム
 * 4. 各コンポーネント … margin-top / gap で余白を付与
 * 5. !important … 親テーマの色・一部 font-size のみ
 */

.standard-lp :where(h1, h2, h3, h4, h5, h6, p, figure, dl, dd, dt, blockquote) {
  margin: 0;
  padding: 0;
  font-style: normal;
}

#standardLpRoot.standard-lp :where(ul, ol, li) {
  margin: 0;
  padding: 0;
}

#standardLpRoot.standard-lp :where(ul, ol) {
  list-style: none;
}

.standard-lp :where(a) {
  text-decoration: none;
}

#standardLpRoot.standard-lp :where(button, input, select, textarea) {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  margin: 0;
}

/* 5. 親テーマより優先が必要なもののみ */
#standardLpRoot.standard-lp :is(
  .pickup-buy,
  .other-item__buy,
  .pickup-carousel-btn,
  .function-carousel-btn,
  .other-list-btn,
  .gallery-expand__btn,
  .gallery-modal__close,
  .gallery-modal__nav
) {
  color: #fff !important;
}

#standardLpRoot.standard-lp :is(
  .pickup-buy:hover,
  .other-item__buy:hover,
  .other-item__buy:focus-visible,
  .pickup-carousel-btn:hover,
  .function-carousel-btn:hover,
  .other-list-btn:hover,
  .gallery-expand__btn:hover,
  .gallery-expand__btn:focus-visible
) {
  color: #111 !important;
}

#standardLpRoot.standard-lp :where(img, video) {
  border: 0;
  vertical-align: middle;
}

.standard-lp__content {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  overflow-x: visible;
  overflow-y: visible;
}

/* fixedメニューは main 外に配置 */

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

#standardLpRoot.standard-lp,
#standardLpRoot.standard-lp * {
  box-sizing: border-box;
}

.standard-lp img,
.standard-lp video {
  max-width: none;
}

.standard-lp .hero__media img,
.standard-lp .hero__video,
.standard-lp .concept__visual img,
.standard-lp .function-card__visual img,
.standard-lp .pickup__product img,
.standard-lp .pickup-slide img,
.standard-lp .pickup-color-slide img,
.standard-lp .pickup-visual-slide img,
.standard-lp .other-item__media img,
.standard-lp .masonry__item img,
.standard-lp .gallery-modal__image {
  max-width: 100%;
}

.hero {
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: none;
  --hero-ink: #ffffff;
  --hero-ink-muted: rgba(255, 255, 255, 0.88);
}

.hero--triptych {
  margin: 0;
  padding: 0;
  min-height: 0;
  height: auto;
  background: #fff;
  --hero-media-aspect: 1067 / 1600;
  --hero-gutter: clamp(8px, 1vw, 14px);
}

.hero__triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hero-gutter);
  width: 100%;
  height: auto;
  min-height: 0;
  background: #fff;
}

.hero__panel {
  position: relative;
  min-width: 0;
  background: #fff;
}

.hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: var(--hero-media-aspect);
  overflow: hidden;
  background: #fff;
}

.hero__media img,
.hero__media .hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__panel--left .hero__media img,
.hero__panel--right .hero__media img {
  filter: saturate(0.88) contrast(1.05) brightness(0.9);
}

.hero__panel--left .hero__media::before,
.hero__panel--right .hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 110% 95% at 50% 40%, transparent 30%, rgba(12, 16, 28, 0.42) 100%),
    linear-gradient(
      168deg,
      rgba(42, 52, 72, 0.32) 0%,
      rgba(22, 28, 42, 0.14) 42%,
      rgba(10, 12, 22, 0.36) 100%
    );
}

.hero__video {
  transform: none;
  filter: contrast(1.06) saturate(1.08);
}

.hero__panel--left .hero__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 52%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.22) 45%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero__copy-layer {
  display: none;
}

.hero__media-core {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__doors {
  display: none;
}

.hero__overlay--left {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: end;
  justify-items: start;
  text-align: left;
  padding: clamp(16px, 2.4vw, 32px);
  padding-bottom: clamp(20px, 3.2vw, 40px);
  color: var(--hero-ink);
  pointer-events: none;
}

.hero__overlay--left .hero__copy {
  pointer-events: auto;
}

.hero__copy {
  position: relative;
  width: 100%;
  max-width: min(calc(48 * var(--lp-rem)), 100%);
}

.hero__brand {
  margin: 0;
  line-height: 0;
}

.hero--triptych .hero__brand-logo {
  display: block;
  width: clamp(72px, 14vw, 108px) !important;
  max-width: 108px !important;
  height: auto !important;
}

.hero__title {
  margin: clamp(10px, 2vw, 14px) 0 0;
  font-size: clamp(calc(1.75 * var(--lp-rem)), 6.5vw, calc(3.4 * var(--lp-rem)));
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--hero-ink);
}

.hero__lead {
  margin: 14px 0 0;
  font-size: clamp(calc(0.8 * var(--lp-rem)), 1.9vw, calc(0.92 * var(--lp-rem)));
  line-height: 1.85;
  color: var(--hero-ink-muted);
  max-width: none;
}

.hero__jump {
  margin: 18px 0 0;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  color: var(--hero-ink);
  text-decoration: none;
  font-size: calc(0.72 * var(--lp-rem));
  letter-spacing: 0.16em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero__jump:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  color: var(--hero-ink);
}

.section-block {
  position: relative;
  z-index: 2;
  --section-inline: clamp(16px, 3.5vw, 32px);
  padding: 48px var(--section-inline);
}

.section-block::before {
  content: "";
  position: absolute;
  left: var(--section-inline);
  right: var(--section-inline);
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #cad8eb 20%, #cad8eb 80%, transparent);
}

.concept {
  width: 100%;
  max-width: none;
  background: #f4f4f4;
}

.function.section-block,
.gallery.section-block {
  width: 100%;
  max-width: none;
}

.concept__inner {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.concept.section-block::before {
  left: max(var(--section-inline), calc((100% - var(--content-max)) / 2));
  right: max(var(--section-inline), calc((100% - var(--content-max)) / 2));
  background: linear-gradient(to right, transparent, #e0e0e0 20%, #e0e0e0 80%, transparent);
}

.section-kicker {
  margin: 6px 0 0;
  color: var(--accent);
  font-size: calc(0.7 * var(--lp-rem));
  letter-spacing: 0.17em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.section-head h2,
.concept h2 {
  margin: 8px 0 0;
  font-size: clamp(calc(1.3 * var(--lp-rem)), 5vw, calc(2.1 * var(--lp-rem)));
  line-height: 1.2;
}

.concept .hero__lead {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.9;
  max-width: calc(52 * var(--lp-rem));
}

.concept__visual {
  margin: 18px 0 20px;
}

.concept__visual img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.function-carousel-block {
  margin-top: clamp(20px, 3vw, 28px);
}

.function-carousel-head {
  display: none;
}

.function-carousel-nav {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.function-carousel-btn {
  width: 32px;
  height: 18px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: calc(0.58 * var(--lp-rem));
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.function-carousel-btn:hover {
  background: #fff;
  color: #111;
  border-color: #111;
}

.function-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 40px);
  margin-top: 0;
}

.function-card {
  margin: 0;
  min-width: 0;
}

.function-card__visual {
  margin: 0;
  overflow: hidden;
}

.function-card__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.function-card__body {
  margin-top: 12px;
}

.function-card__body h3 {
  margin-top: 0;
  font-size: clamp(calc(0.95 * var(--lp-rem)), 2.2vw, calc(1.05 * var(--lp-rem)));
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.function-card__body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(calc(0.8 * var(--lp-rem)), 1.8vw, calc(0.86 * var(--lp-rem)));
  line-height: 1.85;
}

@media (max-width: 768px) {
  .function-carousel-head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
  }

  #seriesFunction .function-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 86%);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-bottom: 6px;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
  }

  #seriesFunction .function-carousel.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  #seriesFunction .function-card {
    scroll-snap-align: start;
  }
}

@media (min-width: 768px) {
  .function-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
  }

}

.masonry {
  column-count: 2;
  column-gap: 12px;
  margin: 20px 0 0;
}

@media (min-width: 640px) {
  .masonry {
    column-count: 3;
    column-gap: 14px;
  }
}

@media (min-width: 768px) {
  .masonry {
    column-count: 4;
    column-gap: 16px;
  }

  .masonry__item {
    margin-bottom: 16px;
  }
}

@media (min-width: 1200px) {
  .masonry {
    column-count: 5;
    column-gap: 18px;
  }

  .masonry__item {
    margin-bottom: 18px;
  }
}

.masonry--gallery {
  padding-bottom: 4px;
  column-gap: clamp(10px, 2.2vw, 20px);
}

.masonry--gallery .masonry__item {
  width: 100%;
  margin-bottom: var(--gallery-item-gap, 12px);
  border-radius: 4px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  vertical-align: top;
  background: #ebe8e3;
  cursor: pointer;
  transition: opacity 0.45s ease, filter 0.45s ease;
}

.masonry--gallery .masonry__item.is-portrait {
  aspect-ratio: calc(var(--gallery-aspect-w, 3) / var(--gallery-aspect-h, 4));
}

.masonry--gallery .masonry__item.is-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.masonry--gallery .masonry__item.is-landscape {
  aspect-ratio: unset;
  height: auto;
}

.masonry--gallery .masonry__item.is-landscape img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
  object-position: center;
}

.gallery-shell {
  margin-top: 20px;
}

.gallery-preview {
  --gallery-peek-height: clamp(300px, 46vh, 540px);
  position: relative;
  max-height: var(--gallery-peek-height);
  overflow: hidden;
  transition: max-height 0.75s cubic-bezier(0.33, 1, 0.32, 1);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.72) 58%,
    rgba(0, 0, 0, 0.28) 78%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.72) 58%,
    rgba(0, 0, 0, 0.28) 78%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.gallery-shell:not(.is-expanded) .masonry__item {
  opacity: 0.82;
  filter: saturate(0.92);
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-shell:not(.is-expanded) .masonry__item:nth-child(6n + 1),
.gallery-shell:not(.is-expanded) .masonry__item:nth-child(6n + 2) {
  opacity: 0.94;
}

.gallery-shell:not(.is-expanded) .masonry__item:nth-child(6n + 5),
.gallery-shell:not(.is-expanded) .masonry__item:nth-child(6n + 6) {
  opacity: 0.58;
}

.gallery-preview__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 42%,
    rgba(255, 255, 255, 0.94) 78%,
    #fff 100%
  );
  transition: opacity 0.5s ease;
}

.gallery-expand {
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 4vw, 28px);
}

#standardLpRoot.standard-lp .gallery-expand__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 clamp(16px, 3.5vw, 24px);
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: inherit;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.gallery-expand__btn::after {
  content: "↓";
  font-size: 0.8em;
  line-height: 1;
  transition: transform 0.25s ease;
}

.gallery-expand__btn:hover {
  background: #fff;
  color: #111;
}

.gallery-expand__btn:hover::after {
  transform: translateY(2px);
}

.gallery-shell.is-expanded .gallery-preview {
  max-height: 6000px;
  -webkit-mask-image: none;
  mask-image: none;
  overflow: visible;
}

.gallery-shell.is-expanded .gallery-preview__fade {
  opacity: 0;
}

.gallery-shell.is-expanded .masonry__item {
  opacity: 1;
  filter: none;
}

.gallery-shell.is-expanded .gallery-expand__btn::after {
  content: "↑";
}

@media (prefers-reduced-motion: reduce) {
  .gallery-preview,
  .gallery-preview__fade,
  .gallery-shell:not(.is-expanded) .masonry__item,
  .masonry--gallery .masonry__item img {
    transition: none;
  }

  .masonry--gallery .masonry__item:hover img {
    transform: none;
  }
}

.masonry__item {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 12px;
  overflow: hidden;
  border-radius: 12px;
}

.masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.masonry__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 22, 32, 0.12);
}

.masonry__item:hover img {
  transform: scale(1.02);
  filter: brightness(0.96);
}

.masonry--gallery .masonry__item {
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.45s ease, filter 0.45s ease;
}

.masonry--gallery .masonry__item img {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.masonry--gallery .masonry__item:hover {
  transform: none;
  box-shadow: none;
}

.masonry--gallery .masonry__item:hover img {
  transform: scale(1.045);
  filter: none;
}

/* モーダル開閉でスクロールバー消滅→レイアウトずれを防ぐ（padding 補正は使わない） */
html {
  scrollbar-gutter: stable;
}

html.is-lp-gallery-modal-open,
body.is-lp-gallery-modal-open {
  overflow: hidden;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.26s ease, visibility 0s linear 0.26s;
}

.gallery-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.26s ease;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 22, 30, 0.72);
  opacity: 0;
  transition: opacity 0.26s ease;
}

.gallery-modal__panel {
  position: relative;
  z-index: 1;
  display: block;
  width: max-content;
  max-width: min(92vw, 980px);
  margin: 0;
  background: transparent;
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 24px 64px rgba(10, 14, 22, 0.28);
  line-height: 0;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y pinch-zoom;
}

.gallery-modal__stage {
  position: relative;
  display: inline-block;
  max-width: 100%;
  line-height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #0e1116;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.gallery-modal.is-open .gallery-modal__backdrop {
  opacity: 1;
}

.gallery-modal.is-open .gallery-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-modal__close,
.gallery-modal__nav {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  color: #fff;
  background: rgba(12, 16, 22, 0.42);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  box-shadow: 0 8px 24px rgba(8, 10, 14, 0.22);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gallery-modal__close {
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
}

.gallery-modal__close:hover,
.gallery-modal__close:focus-visible,
.gallery-modal__nav:hover,
.gallery-modal__nav:focus-visible {
  background: rgba(12, 16, 22, 0.68);
  outline: none;
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 10px 28px rgba(8, 10, 14, 0.28);
}

.gallery-modal__close:hover,
.gallery-modal__close:focus-visible {
  transform: scale(1.03);
}

.gallery-modal__nav {
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
}

.gallery-modal__nav--prev {
  left: 14px;
}

.gallery-modal__nav--next {
  right: 14px;
  left: auto;
}

.gallery-modal__nav--prev:hover,
.gallery-modal__nav--prev:focus-visible {
  transform: translateY(-50%) scale(1.03);
}

.gallery-modal__nav--next:hover,
.gallery-modal__nav--next:focus-visible {
  transform: translateY(-50%) scale(1.03);
}

.gallery-modal__icon {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.gallery-modal__image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 980px);
  max-height: min(88vh, 900px);
  object-fit: contain;
  background: #0e1116;
}

.gallery-modal__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  line-height: 1.45;
  padding: 12px 16px 14px;
  border: none;
  background: rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gallery-modal__product-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gallery-modal__product-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  margin: 0;
}

.gallery-modal__role {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.gallery-modal__role::after {
  content: none;
}

.gallery-modal__product-group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
}

.gallery-modal__sep {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.28);
  user-select: none;
}

.gallery-modal__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 14px;
  border: none;
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px) saturate(1.3);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  box-shadow: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  transition: background 0.2s ease, color 0.2s ease;
}

.gallery-modal__chip:hover,
.gallery-modal__chip:focus-visible {
  background: rgba(255, 255, 255, 0.36);
  color: #fff !important;
  text-decoration: none;
  outline: none;
}

.gallery-modal__chip:active {
  background: rgba(255, 255, 255, 0.28);
  color: #fff !important;
}

/* 5. 親テーマの a 色より優先（リンクチップのみ・白文字） */
#standardLpRoot.standard-lp a.gallery-modal__chip:not(.gallery-modal__chip--text) {
  color: #fff !important;
  text-decoration: none !important;
}

#standardLpRoot.standard-lp a.gallery-modal__chip:not(.gallery-modal__chip--text):hover,
#standardLpRoot.standard-lp a.gallery-modal__chip:not(.gallery-modal__chip--text):focus-visible {
  color: #fff !important;
}

.gallery-modal__chip--text {
  display: inline;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: default;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-modal__chip--text:hover,
.gallery-modal__chip--text:focus-visible,
.gallery-modal__chip--text:active {
  background: transparent;
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .gallery-modal__foot {
    background: rgba(0, 0, 0, 0.38);
  }
}

.pickup.section-block,
.other.section-block {
  overflow: visible !important;
}

.pickup.section-block {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: max(
    var(--section-inline),
    calc((100% - var(--content-max)) / 2 + var(--section-inline))
  );
  background: #f7f7f7;
  box-sizing: border-box;
  overflow-x: visible;
  overflow-y: visible;
}

#standardLpRoot.standard-lp .pickup__layout,
#standardLpRoot.standard-lp .other .pickup__layout {
  overflow: visible !important;
}

.pickup + .pickup,
.pickup + .pickup.other,
.pickup + .other.section-block,
.pickup.other + .pickup,
.pickup.other + .pickup.other {
  border-top: 1px solid #e4e4e4;
}

.pickup__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.pickup__side-label {
  display: none;
  margin: 0;
  color: #5d6776;
  font-size: calc(0.64 * var(--lp-rem));
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  justify-self: center;
}

.pickup__visual {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.pickup__visual .pickup-visual-viewport {
  width: 100%;
}

.pickup-visual-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.pickup-visual-viewport.is-dragging {
  cursor: grabbing;
}

.pickup-visual-dots {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  gap: 7px;
  z-index: 2;
  pointer-events: none;
}

.pickup-visual-dot {
  pointer-events: auto;
  width: 5px;
  height: 5px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.pickup-visual-dot.is-active {
  background: rgba(255, 255, 255, 0.92);
  transform: scale(1.15);
}

.pickup-visual-dot:hover {
  background: rgba(255, 255, 255, 0.72);
}

.pickup-visual-carousel {
  display: flex;
  width: 100%;
  touch-action: pan-y;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s ease;
  will-change: transform;
}

.pickup-visual-carousel::-webkit-scrollbar {
  display: none;
}

.pickup-visual-slide {
  flex: 0 0 100%;
  min-width: 0;
  overflow: hidden;
}

.pickup-visual-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  opacity: 1;
  -webkit-user-drag: none;
  user-select: none;
}

.pickup-visual-carousel img.is-active {
  animation: pickupVisualZoomOut 3.2s linear both;
}

@keyframes pickupVisualZoomOut {
  from {
    transform: scale(1.14);
  }
  to {
    transform: scale(1);
  }
}

.pickup__description {
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid #1f2329;
  font-size: calc(0.86 * var(--lp-rem));
  line-height: 1.9;
  color: var(--muted);
}

.pickup-spec {
  margin: 20px 0 0;
}

.pickup-spec__title {
  margin: 0 0 10px;
  font-size: calc(0.74 * var(--lp-rem));
  letter-spacing: 0.12em;
  color: #4a5463;
}

.pickup-spec__list {
  margin: 0;
  display: grid;
  gap: 8px;
}

.pickup-spec__item {
  display: grid;
  grid-template-columns: minmax(6.5em, 8.5em) 1fr;
  gap: 12px 16px;
  font-size: calc(0.82 * var(--lp-rem));
  line-height: 1.65;
}

.pickup-spec__item dt {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.pickup-spec__item dd {
  margin: 0;
  color: var(--muted);
}

.pickup__product {
  margin: 20px 0 0;
}

.pickup__product img {
  width: 100%;
  height: auto;
  display: block;
}

.pickup-carousel-block {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #1f2329;
}

.pickup-carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.pickup-carousel-title {
  font-size: calc(0.74 * var(--lp-rem));
  letter-spacing: 0.12em;
  color: #4a5463;
}

.pickup-carousel-nav {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.pickup-carousel-btn {
  width: 32px;
  height: 18px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px !important;
  line-height: 1 !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pickup-carousel-btn:hover {
  background: #fff;
  color: #111;
  border-color: #111;
}

/* FUNCTION 等（カラーチップなし） */
.pickup-carousel-block:not(:has(.pickup-color-chips)) > .pickup-carousel {
  margin-top: 10px;
}

.pickup-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 78%);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 6px;
  cursor: grab;
  user-select: none;
}

.pickup-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.pickup-slide,
.pickup-color-slide {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e4e7eb;
  padding: 10px;
}

.pickup-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

.pickup-slide h3 {
  margin: 10px 0 0;
  font-size: calc(0.82 * var(--lp-rem));
}

.pickup-slide p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: calc(0.75 * var(--lp-rem));
  line-height: 1.7;
}

.pickup-color-slide {
  display: grid;
  gap: 8px;
  min-height: 0;
  align-content: start;
}

.pickup-color-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

.pickup-color-slide p {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: calc(0.72 * var(--lp-rem));
  letter-spacing: 0.08em;
}

.pickup-color-slide .chip {
  width: 10px;
  height: 10px;
}

/* カラーバリ: ul/li は 2b で margin:0。縦間隔は gap のみ */
.pickup-carousel-block:has(.pickup-color-chips) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pickup-carousel-block:has(.pickup-color-chips) > .pickup-carousel {
  margin-top: 0;
}

.pickup-color-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.pickup-color-chips > li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.pickup-color-chips .chip {
  width: 11px;
  height: 11px;
}

.pickup-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  min-width: 112px;
  min-height: 32px;
  padding: 0 24px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: calc(0.7 * var(--lp-rem));
  letter-spacing: 0.14em;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pickup-buy:hover {
  background: #fff;
  color: #111;
  border-color: #111;
}

.other.section-block {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: max(
    var(--section-inline),
    calc((100% - var(--content-max)) / 2 + var(--section-inline))
  );
  background: #f7f7f7;
  box-sizing: border-box;
  overflow-x: visible;
  overflow-y: visible;
}

.other .pickup__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.other-list-block {
  margin: clamp(24px, 4vw, 40px) 0 0;
}

.other-list-head {
  display: none;
}

.other-list-nav {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.other-list-btn {
  width: 32px;
  height: 18px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: calc(0.58 * var(--lp-rem));
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.other-list-btn:hover {
  background: #fff;
  color: #111;
  border-color: #111;
}

.other-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.other-item + .other-item {
  border-top: 1px solid #e6e8ec;
}

.other-item__card {
  display: grid;
  grid-template-columns: minmax(120px, 200px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  padding: clamp(28px, 5vw, 44px) 0;
}

.other-item__media {
  display: block;
  aspect-ratio: 1;
  background: #ececec;
  overflow: hidden;
  text-decoration: none;
}

.other-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.other-item__media--placeholder {
  display: grid;
  place-items: center;
  background: #e8e8e8;
}

.other-item__media-placeholder {
  font-size: calc(0.58 * var(--lp-rem));
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #9aa0a8;
}

.other-item__code {
  margin: 0 0 8px;
  font-size: calc(0.72 * var(--lp-rem));
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #9aa0a8;
}

.other-item__name {
  margin: 0 0 10px;
  font-size: clamp(calc(1.05 * var(--lp-rem)), 2.4vw, calc(1.6 * var(--lp-rem)));
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
  color: #12151a;
}

.other-item__desc {
  margin: 0;
  max-width: 52ch;
  font-size: calc(0.86 * var(--lp-rem));
  line-height: 1.8;
  color: #1f2329;
}

/* PICKUP の .pickup-buy と同サイズ・同スタイル */
.other-item__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-width: 112px;
  min-height: 32px;
  padding: 0 24px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: calc(0.7 * var(--lp-rem));
  letter-spacing: 0.14em;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.other-item__buy:hover,
.other-item__buy:focus-visible {
  background: #fff;
  color: #111;
  border-color: #111;
  outline: none;
}

.message-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.message-list article {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 12px;
}

.message-list h3 {
  margin: 0;
  font-size: calc(0.92 * var(--lp-rem));
}

.message-list__copy {
  margin: 6px 0;
  color: #3a70ad;
  font-size: calc(0.76 * var(--lp-rem));
}

.message-list article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: calc(0.8 * var(--lp-rem));
}

.chip {
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  box-sizing: border-box;
  vertical-align: middle;
}

.chip--black {
  background: #111;
}
.chip--camel { background: #b6926c; }
.chip--khaki { background: #73705a; }
.chip--navy { background: #2c3750; }
.chip--gray { background: #8d8e8f; }
.chip--choco { background: #4c3328; }

.cta {
  text-align: center;
  padding-top: 56px;
  padding-bottom: 72px;
  background: #0a0a0a;
}

.cta.section-block::before {
  left: 0;
  right: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.12) 20%, rgba(255, 255, 255, 0.12) 80%, transparent);
}

.cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 0;
  border: 1px solid #fff;
  color: #111;
  background: #fff;
  text-decoration: none;
  font-size: calc(0.8 * var(--lp-rem));
  letter-spacing: 0.06em;
  font-weight: 600;
}

.cta__link:hover {
  background: #f2f2f2;
  color: #000;
  border-color: #f2f2f2;
}

@media (min-width: 768px) {
  .section-block {
    --section-inline: clamp(24px, 4vw, 48px);
    padding: 68px var(--section-inline);
  }

  .hero__overlay--left {
    padding-left: clamp(20px, 2.8vw, 40px);
    padding-right: clamp(12px, 2vw, 24px);
  }

  .hero__copy {
    max-width: min(calc(28 * var(--lp-rem)), 100%);
    width: 100%;
  }

  .message-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 14px;
  }

  .pickup__layout,
  .other .pickup__layout {
    grid-template-columns: 28px minmax(420px, 52%) minmax(0, 48%);
    gap: clamp(16px, 2vw, 28px);
  }

  .pickup__side-label,
  .other .pickup__side-label {
    display: flex;
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    justify-self: center;
  }

  /* サイドラベルと同じ sticky パターン（ラッパーで 100vh 列＋中身を中央） */
  .pickup__visual-pin-wrap {
    position: sticky;
    top: 0;
    align-self: start;
    width: 100%;
    min-width: 0;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  .pickup__visual,
  .other__visual {
    position: relative;
    top: auto;
    transform: none;
    align-self: center;
    width: 100%;
    height: auto;
    max-height: min(90dvh, 900px);
    margin: 0;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pickup__visual > .pickup-visual-viewport,
  .other__visual > .pickup-visual-viewport {
    position: relative;
    width: 100%;
    height: auto;
    max-height: min(90dvh, 900px);
    flex: 0 0 auto;
  }

  .pickup__visual .pickup-visual-carousel,
  .other__visual .pickup-visual-carousel {
    height: auto;
  }

  .pickup__content,
  .other__content {
    position: relative;
    z-index: 3;
    min-width: 0;
  }

  .other__visual .pickup-visual-viewport {
    width: 100%;
    height: auto;
    max-height: 100%;
  }

  .other__visual .pickup-visual-slide img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    max-height: 90svh;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .pickup__content .section-kicker,
  .other__content .section-kicker {
    margin-top: 0;
  }

  .pickup-carousel {
    grid-auto-columns: minmax(260px, 40%);
  }

}

@media (max-width: 768px) {
  .pickup__layout,
  .other .pickup__layout,
  .other__layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(24px, 5vw, 32px);
  }

  .pickup__side-label,
  .other .pickup__side-label {
    display: none !important;
  }

  .pickup__visual,
  .other__visual {
    position: relative;
    top: auto;
    order: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    display: block;
    flex: 0 0 auto;
  }

  .pickup__content,
  .other__content {
    order: 2;
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
  }

  .pickup__visual .pickup-visual-viewport,
  .other__visual .pickup-visual-viewport {
    width: 100%;
    max-height: none;
  }

  .pickup-visual-slide img,
  .other__visual .pickup-visual-slide img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }

  .other-list-head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
  }

  #sectionOther .other-list.other-list-carousel {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: thin;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
  }

  #sectionOther .other-list.other-list-carousel :is(a, button) {
    cursor: pointer;
    user-select: auto;
    -webkit-user-select: auto;
  }

  #sectionOther .other-item__buy {
    position: relative;
    z-index: 2;
    pointer-events: auto;
  }

  #sectionOther .other-list.other-list-carousel.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  #sectionOther .other-item {
    flex: 0 0 min(88%, 360px);
    scroll-snap-align: start;
    min-width: 0;
  }

  #sectionOther .other-item + .other-item {
    border-top: none;
  }
}

@media (min-width: 768px) {
  .hero__triptych {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__copy-layer {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    z-index: 5;
    position: relative;
    align-self: stretch;
    align-content: end;
    min-height: 0;
    pointer-events: none;
    background: transparent;
  }

  .hero__panel--center {
    grid-column: 2;
    grid-row: 1;
  }

  .hero__panel--left {
    grid-column: 1;
    grid-row: 1;
  }

  .hero__panel--right {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 768px) {
  .hero--slide-mode {
    --hero-reveal-2: 0;
    --hero-reveal-3: 0;
    /* スクロール量（画像1→2→動画）。fixed ピンは使わない */
    min-height: calc(100svh + 260svh);
  }

  .hero__triptych {
    position: relative;
    display: block;
    min-height: min(88vh, 780px);
    aspect-ratio: var(--hero-media-aspect);
    overflow: hidden;
    gap: 0;
  }

  .hero--slide-mode .hero__triptych {
    position: sticky;
    top: var(--lp-fs-header-pad);
    min-height: calc(100svh - var(--lp-fs-header-pad));
    height: calc(100svh - var(--lp-fs-header-pad));
    aspect-ratio: auto;
  }

  .hero__copy-layer {
    display: grid;
    position: absolute;
    inset: 0;
    z-index: 20;
    align-content: end;
    padding: clamp(16px, 4vw, 24px);
    padding-bottom: clamp(18px, 4vw, 28px);
    pointer-events: none;
  }

  .hero__copy {
    max-width: none;
    width: 100%;
  }

  .hero__title {
    font-size: clamp(calc(1.65 * var(--lp-rem)), 7.5vw, calc(2.4 * var(--lp-rem)));
  }

  .hero__lead {
    font-size: clamp(calc(0.82 * var(--lp-rem)), 3.6vw, calc(0.95 * var(--lp-rem)));
    line-height: 1.8;
  }

  .hero--slide-mode .hero__doors {
    display: none !important;
  }

  .hero--slide-mode .hero__panel {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
  }

  /* 画像1: 常に最背面 */
  .hero--slide-mode .hero__panel--left {
    z-index: 1;
    transform: none;
  }

  /* 画像2: 画像1の上に下から被さる */
  .hero--slide-mode .hero__panel--right {
    z-index: 2;
    transform: translateY(calc((1 - var(--hero-reveal-2, 0)) * 100%));
    transition: none;
    will-change: transform;
  }

  /* 動画: 最前面に下から被さる */
  .hero--slide-mode .hero__panel--center {
    z-index: 3;
    opacity: 1;
    transform: translateY(calc((1 - var(--hero-reveal-3, 0)) * 100%));
    transition: none;
    pointer-events: none;
    will-change: transform;
  }

  .hero--slide-mode .hero__panel--center.is-scroll-active {
    pointer-events: auto;
  }

  .hero--slide-mode .hero__media {
    height: 100%;
    aspect-ratio: auto;
  }

  .hero--slide-mode .hero__media-core {
    position: absolute;
    inset: 0;
  }

  .hero__panel--left .hero__media::before,
  .hero__panel--right .hero__media::before,
  .hero__panel--left .hero__media::after {
    display: none;
  }

  .hero__panel--left .hero__media img,
  .hero__panel--right .hero__media img {
    filter: none;
  }

  .hero__panel--center .hero__video {
    filter: none;
  }

  .hero__copy .hero__title {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  }

  .hero--slide-mode-fallback .hero__triptych {
    display: flex;
    flex-direction: column;
    gap: var(--hero-gutter);
    min-height: 0;
    aspect-ratio: auto;
    overflow: visible;
  }

  .hero--slide-mode-fallback .hero__copy-layer {
    display: grid;
    order: 0;
    position: relative;
    z-index: 5;
    width: 100%;
    align-content: end;
    padding: clamp(16px, 4vw, 24px);
    padding-bottom: clamp(18px, 4vw, 28px);
    pointer-events: none;
    background: #1a1f28;
  }

  .hero--slide-mode-fallback .hero__copy {
    pointer-events: auto;
  }

  .hero--slide-mode-fallback .hero__panel {
    position: relative;
    transform: none;
    opacity: 1;
  }

  .hero--slide-mode-fallback .hero__panel--center {
    order: 3;
  }

  .hero--slide-mode-fallback .hero__panel--left {
    order: 1;
  }

  .hero--slide-mode-fallback .hero__panel--right {
    order: 2;
  }

  .hero--slide-mode-fallback .hero__media {
    aspect-ratio: var(--hero-media-aspect);
    height: auto;
  }

  .hero--slide-mode-fallback .hero__media-core {
    position: relative;
  }

  @media (prefers-reduced-motion: reduce) {
    .hero--slide-mode .hero__panel--right,
    .hero--slide-mode .hero__panel--center {
      transition: none;
      transform: none;
    }
  }

  .other-item__card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: clamp(16px, 4vw, 20px);
    padding: 24px 0;
  }

  .other-item__media {
    width: 100%;
    max-width: 100%;
  }

  .other-item__body {
    width: 100%;
    min-width: 0;
  }

  .other-item__desc {
    max-width: none;
    font-size: calc(0.8 * var(--lp-rem));
    line-height: 1.7;
  }

  .other-item__name {
    font-size: calc(1 * var(--lp-rem));
  }
}

@media (min-width: 769px) {
  .other-item.is-active .other-item__name {
    color: var(--accent);
  }
}

#heroSection,
#seriesConcept,
#seriesFunction,
#sectionPickupMessenger,
#sectionPickupDaypack,
#sectionPickupSacoche,
#sectionOther,
#sectionOtherToteL,
#sectionOtherToteS,
#sectionOtherDrawstring,
#sectionOtherMobile,
#sectionOtherDrink,
#seriesGallery {
  scroll-margin-top: 16px;
}

.lp-float-menu {
  --float-menu-blur: 40px;
  --float-menu-blur-links: 16px;
  --float-menu-sheet-radius: 20px;
  --float-menu-glass-highlight: rgba(255, 255, 255, 0.72);
  --float-menu-link-bg: rgba(44, 55, 80, 0.34);
  --float-menu-link-bg-hover: rgba(44, 55, 80, 0.46);
  --float-menu-link-ink: #fff;
  --float-menu-link-text: rgba(44, 55, 80, 0.78);
  --float-menu-link-text-hover: rgba(44, 55, 80, 0.92);
  --float-menu-link-arrow-bg: rgba(255, 255, 255, 0.22);
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 4vw, 28px);
  z-index: 2147483000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  font-family: "Noto Sans JP", "Noto Sans SC", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

#lpFloatMenu .lp-float-menu__toggle,
#lpFloatMenu .lp-float-menu__sheet,
#lpFloatMenu.is-open .lp-float-menu__backdrop {
  pointer-events: auto;
}

#lpFloatMenu.is-outside-lp,
#lpFloatMenu.is-outside-lp .lp-float-menu__toggle,
#lpFloatMenu.is-outside-lp.is-open .lp-float-menu__sheet,
#lpFloatMenu.is-outside-lp.is-open .lp-float-menu__backdrop {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#lpFloatMenu.is-hero-hidden .lp-float-menu__toggle,
#lpFloatMenu.is-gallery-hidden .lp-float-menu__toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

#lpFloatMenu.is-hero-hidden.is-open .lp-float-menu__sheet,
#lpFloatMenu.is-hero-hidden.is-open .lp-float-menu__backdrop,
#lpFloatMenu.is-gallery-hidden.is-open .lp-float-menu__sheet,
#lpFloatMenu.is-gallery-hidden.is-open .lp-float-menu__backdrop {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#lpFloatMenu .lp-float-menu__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  margin: 0;
  border: none;
  padding: 0;
  background-color: rgba(12, 16, 22, 0.14);
  background-image: none;
  backdrop-filter: blur(14px) saturate(1.35);
  -webkit-backdrop-filter: blur(14px) saturate(1.35);
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
  cursor: pointer;
}

.lp-float-menu.is-open .lp-float-menu__backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease;
}

.lp-float-menu__sheet {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 1;
  width: min(920px, calc(100vw - 24px));
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
  border-radius: var(--float-menu-sheet-radius);
  background: transparent;
  transition:
    max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.42s;
}

.lp-float-menu.is-open .lp-float-menu__sheet {
  bottom: calc(100% + 16px);
  max-height: min(72vh, 680px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition:
    max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease 0.04s,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}

.lp-float-menu__sheet[hidden] {
  display: block;
}

.lp-float-menu__sheet-glass {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.58) 0%,
    rgba(255, 255, 255, 0.34) 55%,
    rgba(255, 255, 255, 0.28) 100%
  );
  border: none;
  backdrop-filter: blur(var(--float-menu-blur)) saturate(1.9);
  -webkit-backdrop-filter: blur(var(--float-menu-blur)) saturate(1.9);
  box-shadow: 0 16px 48px rgba(10, 14, 22, 0.1);
  pointer-events: none;
  z-index: 0;
}

.lp-float-menu__sheet-inner {
  position: relative;
  z-index: 1;
  max-height: min(72vh, 680px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.lp-float-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(20px, 4vw, 32px) clamp(18px, 3.5vw, 28px);
}

.lp-float-menu__col-title {
  margin: 0 0 10px;
  font-size: calc(0.62 * var(--lp-rem));
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(18, 21, 26, 0.38);
}

.lp-float-menu__col-title + .lp-float-menu__rows--compact,
.lp-float-menu__lineup {
  margin-bottom: 18px;
}

.lp-float-menu__lineup {
  display: grid;
  gap: 14px;
}

.lp-float-menu__group-title {
  margin: 0 0 8px;
  padding-left: 2px;
  font-size: calc(0.58 * var(--lp-rem));
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(18, 21, 26, 0.48);
}

.lp-float-menu__lineup .lp-float-menu__rows {
  margin: 0;
}

.lp-float-menu__lineup .lp-float-menu__sublist {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  backdrop-filter: blur(var(--float-menu-blur-links)) saturate(1.6);
  -webkit-backdrop-filter: blur(var(--float-menu-blur-links)) saturate(1.6);
}

.lp-float-menu__sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-float-menu__sublist li + li {
  margin-top: 8px;
}

.lp-float-menu__sublist a {
  display: block;
  font-size: calc(0.76 * var(--lp-rem));
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--float-menu-link-text);
  text-decoration: none;
  line-height: 1.35;
  transition: color 0.18s ease;
}

.lp-float-menu__sublist a:hover,
.lp-float-menu__sublist a:focus-visible {
  color: var(--float-menu-link-text-hover);
  outline: none;
}

.lp-float-menu__rows {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-float-menu__rows li + li {
  margin-top: 6px;
}

.lp-float-menu__rows a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: var(--float-menu-link-bg);
  border: none;
  backdrop-filter: blur(var(--float-menu-blur-links)) saturate(1.65);
  -webkit-backdrop-filter: blur(var(--float-menu-blur-links)) saturate(1.65);
  color: var(--float-menu-link-ink);
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.lp-float-menu__rows--compact a {
  padding: 10px 14px;
}

.lp-float-menu__rows a:hover,
.lp-float-menu__rows a:focus-visible {
  background: var(--float-menu-link-bg-hover);
  outline: none;
}

.lp-float-menu__row-label {
  font-size: calc(0.82 * var(--lp-rem));
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.lp-float-menu__rows--compact .lp-float-menu__row-label {
  font-size: calc(0.76 * var(--lp-rem));
  font-weight: 500;
  letter-spacing: 0.04em;
}

.lp-float-menu__row-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--float-menu-link-arrow-bg);
  color: var(--float-menu-link-ink);
}

.lp-float-menu__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp-float-menu__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  min-height: 108px;
  padding: 14px;
  background: rgba(18, 21, 26, 0.08);
  color: #12151a;
  text-decoration: none;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.lp-float-menu__tile--accent {
  background: #2c3750;
  color: #fff;
}

.lp-float-menu__tile:hover,
.lp-float-menu__tile:focus-visible {
  filter: brightness(1.04);
  outline: none;
}

.lp-float-menu__tile-label {
  font-size: calc(0.8 * var(--lp-rem));
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lp-float-menu__tile-sub {
  font-size: calc(0.68 * var(--lp-rem));
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.78;
}

.lp-float-menu__tile-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  color: currentColor;
}

.lp-float-menu__tile--accent .lp-float-menu__tile-arrow {
  background: rgba(255, 255, 255, 0.16);
}

/* 店舗テーマの button 背景を無効化し、すりガラスは ::before に集約 */
#lpFloatMenu button.lp-float-menu__toggle {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  min-width: 128px;
  margin: 0;
  padding: 0 32px 0 28px;
  border: none;
  border-radius: 999px;
  overflow: hidden;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #12151a;
  font-family: inherit;
  font-size: calc(0.65 * var(--lp-rem)) !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  line-height: 1 !important;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

#lpFloatMenu button.lp-float-menu__toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.32) 100%
  );
  border: none;
  backdrop-filter: blur(var(--float-menu-blur)) saturate(1.9);
  -webkit-backdrop-filter: blur(var(--float-menu-blur)) saturate(1.9);
  box-shadow: 0 10px 32px rgba(10, 14, 22, 0.1);
  pointer-events: none;
  z-index: 0;
}

#lpFloatMenu button.lp-float-menu__toggle:hover::before,
#lpFloatMenu button.lp-float-menu__toggle:focus::before,
#lpFloatMenu button.lp-float-menu__toggle:focus-visible::before,
#lpFloatMenu button.lp-float-menu__toggle:active::before {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.48) 50%,
    rgba(255, 255, 255, 0.4) 100%
  );
}

#lpFloatMenu button.lp-float-menu__toggle:hover,
#lpFloatMenu button.lp-float-menu__toggle:focus,
#lpFloatMenu button.lp-float-menu__toggle:focus-visible,
#lpFloatMenu button.lp-float-menu__toggle:active {
  background-color: transparent;
  background-image: none;
  color: #12151a;
  outline: none;
  box-shadow: none;
}

#lpFloatMenu button.lp-float-menu__toggle::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lp-float-menu__toggle-icon,
.lp-float-menu__toggle-label {
  position: relative;
  z-index: 1;
}

.lp-float-menu__toggle-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
}

.lp-float-menu__svg {
  display: block;
  overflow: visible;
}

.lp-float-menu__line {
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease;
}

.lp-float-menu.is-open .lp-float-menu__line--1 {
  transform: translateY(5px) rotate(45deg);
}

.lp-float-menu.is-open .lp-float-menu__line--2 {
  opacity: 0;
  transform: scaleX(0.4);
}

.lp-float-menu.is-open .lp-float-menu__line--3 {
  transform: translateY(-5px) rotate(-45deg);
}

#lpFloatMenu.is-open button.lp-float-menu__toggle::before,
#lpFloatMenu.is-open button.lp-float-menu__toggle:hover::before,
#lpFloatMenu.is-open button.lp-float-menu__toggle:focus::before,
#lpFloatMenu.is-open button.lp-float-menu__toggle:active::before {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.58) 50%,
    rgba(255, 255, 255, 0.5) 100%
  );
  box-shadow: 0 10px 32px rgba(10, 14, 22, 0.12);
}

@media (max-width: 720px) {
  .lp-float-menu__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 16px 22px;
  }

  .lp-float-menu__tiles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .lp-float-menu__tiles {
    grid-template-columns: 1fr;
  }

  .lp-float-menu__tile {
    min-height: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-float-menu__sheet,
  .lp-float-menu__backdrop,
  .lp-float-menu__line,
  .lp-float-menu__toggle {
    transition: none;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .lp-float-menu__sheet-glass {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  #lpFloatMenu button.lp-float-menu__toggle::before {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  #lpFloatMenu.is-open button.lp-float-menu__toggle::before {
    background: rgba(255, 255, 255, 0.97);
  }
}
