@charset "UTF-8";
/* ============================================================
   OUTDOOR PRODUCTS × VIS Suede Collection  -  LP styles
   - スマホファースト：PC もモバイルデザインを中央寄せで自然拡大
   - PSD は 2x。px は 1/2 換算。
   - メインコンテンツ幅 = 375px 中央寄せ。
   - PC：左に現在Lookサムネイル固定ナビ、右に ALL ITEMS CHECK 固定バナー。
   ============================================================ */
.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}

:root {
  --vo-text: #695d56;
  --vo-text-dark: #594634;
  --vo-white: #fff;
}

html:has(.vis-outdoor) {
  font-size: 16px;
}

.vis-outdoor {
  overflow-x: clip;
  background: #fff;
  color: var(--vo-text);
  font-family: "aktiv-grotesk", "noto-sans-cjk-jp", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
.vis-outdoor img {
  display: block;
  width: 100%;
  height: auto;
}
.vis-outdoor a {
  text-decoration: none;
  color: inherit;
}

.vo-heading-font, .vo-allitems__title, .vo-special__title, .vo-lineup__num, .vo-lineup__heading {
  font-family: "aktiv-grotesk-extended", "noto-sans-cjk-jp", sans-serif;
  font-weight: 900;
}

/* ---------- コンテナ（PC：左ナビ / 中央 / 右バナー） ---------- */
.vo-container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.vo-inner {
  width: 100%;
  max-width: 412px;
  margin-inline: auto;
  background: #fff;
}

.vo-container__left {
  width: 100%;
  max-width: 215px;
}

.vo-container__right {
  width: 308px;
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  body:has(.vis-outdoor) {
    overflow-x: clip;
  }
  .vis-outdoor {
    background: #f5f4e8;
  }
  .vo-container__left,
  .vo-container__right {
    position: sticky;
    top: 180px;
    align-self: flex-start;
  }
  .vo-container__right .vo-allitems-float {
    align-items: center;
  }
  .vo-container__right .vo-allitems-float .vo-allitems-float__heading {
    width: 40%;
  }
  .vo-container__right .vo-allitems-float__photo {
    width: 60%;
  }
}
/* ============================================================
   共通アニメーション
   ============================================================ */
.scroll-in {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.scroll-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vo-fade-in {
  opacity: 0;
  animation: vo-fade-in 1s ease forwards;
}

.vo-fade-in--delay1 {
  animation-delay: 0.5s;
}

@keyframes vo-fade-in {
  to {
    opacity: 1;
  }
}
/* 矢印の色反転を繰り返す（★C） */
.vo-arrow-blink {
  animation: vo-arrow-blink 1.2s steps(1, end) infinite;
}

@keyframes vo-arrow-blink {
  0%, 49% {
    background-image: url("../images/arrow.png");
  }
  50%, 100% {
    background-image: url("../images/arrow-outline.png");
  }
}
/* 左右に揺れる（★I） */
.vo-sway {
  animation: vo-sway 3.2s ease-in-out infinite;
  transform-origin: 50% 100%;
}

@keyframes vo-sway {
  0%, 100% {
    transform: rotate(-2.5deg);
  }
  50% {
    transform: rotate(2.5deg);
  }
}
/* OUTDOORロゴ無限マーキー（★H） */
.vo-marquee {
  overflow-x: hidden;
  margin: 1.75rem 0;
}

.vo-marquee__track {
  display: flex;
  will-change: transform;
}

.vo-marquee__item {
  flex: 0 0 auto;
  width: 85px;
  margin-right: 20px;
}

/* ============================================================
   セクション
   ============================================================ */
/* First view */
.vo-fv {
  position: relative;
  line-height: 0;
}

.vo-fv__title {
  position: absolute;
  top: 11%;
  left: 4%;
  width: 55%;
  line-height: 1.3;
}
.vo-fv__title img {
  width: 100%;
}
.vo-fv__title p {
  margin-top: 0.5rem;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  color: var(--vo-text);
}

/* ムービー＋ブランド紹介 */
.vo-intro {
  position: relative;
  padding: 4.2rem 1.25rem 4rem;
  text-align: center;
}

.vis-outdoor .vo-intro__badge {
  width: 151px;
  margin: 0 auto -27px;
  position: relative;
  z-index: 2;
}

.vo-intro__frame {
  background: url("../images/movie-border.png") no-repeat center/100% 100%;
  padding: 3rem 0.75rem 1.5rem;
}

.vo-intro__movie {
  width: 250px;
  margin: 0 auto;
}
.vo-intro__movie video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.vo-intro__text {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 2;
  color: var(--vo-text-dark);
}

/* LINE-UP */
.vo-lineup {
  padding: 1.5rem auto 0.5rem;
}

.vo-lineup__heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  padding: 0 1.3rem;
  color: var(--vo-text);
  border: 1px solid #695d56;
  border-radius: 37px;
  line-height: 1.3;
}

.vo-lineup__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 6rem;
}
.vo-lineup__item--01 .vo-lineup__num {
  padding-left: 1rem;
}
.vo-lineup__item--02 {
  flex-direction: row-reverse;
  text-align: right;
  position: relative;
}

.vo-lineup__num {
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  flex: 0 0 auto;
}

.vis-outdoor .vo-lineup__photo {
  width: 83%;
}

.vo-lineup__item--01 .vo-lineup__photo {
  margin-left: 4cqw;
}
@media screen and (min-width: 768px) {
  .vo-lineup__item--01 .vo-lineup__photo {
    margin-left: 23px;
  }
}

.vo-lineup__item--02 .vo-lineup__photo {
  width: 100%;
}

.vo-lineup__item--02 .vo-lineup__num {
  position: absolute;
}

.vo-lineup__name {
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 700;
  position: absolute;
  bottom: -1.75rem;
  left: 1.5rem;
  font-size: 1.05rem;
}

.vo-lineup__item--02 .vo-lineup__name {
  left: auto;
  right: 1.5rem;
}

.vo-lineup__price {
  flex-shrink: 0;
  font-size: 14px;
}

.vo-lineup__leader {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.45em;
  color: var(--vo-text);
}

.vo-lineup__buy {
  position: absolute;
  bottom: -3.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.vo-lineup__item--02 .vo-lineup__buy {
  left: 1.5rem;
  right: 1.5rem;
  justify-content: flex-end;
}

.vo-lineup__item--02 {
  margin-bottom: 4rem;
}

.vo-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  border-radius: 37px;
  background: var(--vo-text);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.vo-buy--dark {
  background: var(--vo-text);
}

/* OUTDOOR PRODUCTS SPECIAL COLLECTION ITEM */
.vo-special {
  margin: 7rem 1.75rem 2.5rem;
  text-align: center;
}

.vo-special__link {
  display: block;
}

.vo-special__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 0.5rem 0;
}

.vo-special__border {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vo-special__border::before, .vo-special__border::after {
  content: "";
  display: block;
  height: 1px;
  background: #695d56;
}

.vo-special__title {
  margin: 0;
  padding: 0.5rem 0;
  font-size: 18px;
  line-height: 1.2;
}

.vis-outdoor .vo-special__arrow {
  display: block;
  width: 10px;
  aspect-ratio: 19/24;
  flex: 0 0 auto;
  margin: 0;
  background: url("../images/arrow.png") center/contain no-repeat;
}

.vo-special__arrow--outline {
  background-image: url("../images/arrow-outline.png");
}

.vo-special__arrow--outline.vo-arrow-blink {
  animation: vo-arrow-blink-outline 1.2s steps(1, end) infinite;
}

@keyframes vo-arrow-blink-outline {
  0%, 49% {
    background-image: url("../images/arrow-outline.png");
  }
  50%, 100% {
    background-image: url("../images/arrow.png");
  }
}
/* ============================================================
   LOOK セクション（★D 序盤の小さいコラージュ→★E 固定表示→★F 通過→★G クレジット表示）
   ============================================================ */
.vo-look {
  position: relative;
  padding-bottom: 0.5rem;
}

.vo-look__ashirai {
  max-width: 62%;
  margin: 3rem auto 0;
  position: relative;
}

.vo-look__ashirai--stack {
  max-width: 78%;
}
.vo-look__ashirai--stack.scroll-in {
  opacity: 1;
  transform: none;
  transition: none;
}

.vo-look__ashirai-stack {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 85%;
}

.vis-outdoor .vo-look__ashirai-layer {
  position: absolute;
  width: 44%;
  height: auto;
  opacity: 0;
}
.vis-outdoor .vo-look__ashirai-layer--1 {
  left: 12%;
  top: 0;
  z-index: 1;
  --ashirai-opacity: 0.55;
}
.vis-outdoor .vo-look__ashirai-layer--2 {
  left: 26%;
  top: 7%;
  z-index: 2;
  --ashirai-opacity: 1;
}
.vis-outdoor .vo-look__ashirai-layer--3 {
  left: 40%;
  top: 14%;
  z-index: 3;
  --ashirai-opacity: 1;
}

.vo-look__ashirai--stack.is-visible .vo-look__ashirai-layer {
  animation: vo-ashirai-stack-in 0.65s ease forwards;
}

.vo-look__ashirai--stack.is-visible .vo-look__ashirai-layer--1 {
  animation-delay: 0s;
}

.vo-look__ashirai--stack.is-visible .vo-look__ashirai-layer--2 {
  animation-delay: 0.35s;
}

.vo-look__ashirai--stack.is-visible .vo-look__ashirai-layer--3 {
  animation-delay: 0.7s;
}

@keyframes vo-ashirai-stack-in {
  from {
    opacity: 0;
    transform: translateX(-1rem);
  }
  to {
    opacity: var(--ashirai-opacity);
    transform: translateX(0);
  }
}
.vo-look__ashirai--trio {
  max-width: 96%;
}
.vo-look__ashirai--trio.scroll-in {
  opacity: 1;
  transform: none;
  transition: none;
}

.vo-look__ashirai-trio {
  position: relative;
  width: 100%;
  padding-bottom: 48%;
  margin-bottom: 0.5rem;
}

.vis-outdoor .vo-look__ashirai-trio-layer {
  position: absolute;
  bottom: 0;
  width: 32%;
  height: auto;
  opacity: 0;
}
.vis-outdoor .vo-look__ashirai-trio-layer--1 {
  left: 15%;
  z-index: 1;
}
.vis-outdoor .vo-look__ashirai-trio-layer--2 {
  left: 31%;
  z-index: 2;
}
.vis-outdoor .vo-look__ashirai-trio-layer--3 {
  left: 47%;
  z-index: 1;
}

.vo-look__ashirai--trio.is-visible .vo-look__ashirai-trio-layer {
  animation: vo-ashirai-fade-up 0.65s ease forwards;
}

.vo-look__ashirai--trio.is-visible .vo-look__ashirai-trio-layer--1 {
  animation-delay: 0s;
}

.vo-look__ashirai--trio.is-visible .vo-look__ashirai-trio-layer--2 {
  animation-delay: 0.35s;
}

.vo-look__ashirai--trio.is-visible .vo-look__ashirai-trio-layer--3 {
  animation-delay: 0.7s;
}

.vo-look__ashirai--approach {
  max-width: 42.3%;
}
.vo-look__ashirai--approach.scroll-in {
  opacity: 1;
  transform: none;
  transition: none;
}

.vo-look__ashirai-approach {
  position: relative;
  width: 100%;
  padding-bottom: 142%;
}

.vis-outdoor .vo-look__ashirai-approach-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  height: auto;
  opacity: 0;
  transform: translate(calc(-50% + 2.5rem), -50%);
}
.vis-outdoor .vo-look__ashirai-approach-layer--1 {
  width: 100%;
  z-index: 3;
}
.vis-outdoor .vo-look__ashirai-approach-layer--2 {
  width: 93.1%;
  z-index: 2;
}
.vis-outdoor .vo-look__ashirai-approach-layer--3 {
  width: 86.4%;
  z-index: 1;
}

.vo-look__ashirai--approach.is-visible .vo-look__ashirai-approach-layer {
  animation: vo-ashirai-approach-in 0.65s ease forwards;
}

.vo-look__ashirai--approach.is-visible .vo-look__ashirai-approach-layer--3 {
  left: 110%;
  top: 56%;
  animation-delay: 0s;
}

.vo-look__ashirai--approach.is-visible .vo-look__ashirai-approach-layer--2 {
  left: 80%;
  top: 53%;
  animation-delay: 0.35s;
}

.vo-look__ashirai--approach.is-visible .vo-look__ashirai-approach-layer--1 {
  animation-delay: 0.7s;
}

@keyframes vo-ashirai-approach-in {
  from {
    opacity: 0;
    transform: translate(calc(-50% + 2.5rem), -50%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.vo-look__ashirai--bubble {
  max-width: 75%;
}

.vo-look__ashirai--comment {
  max-width: 65%;
}
.vo-look__ashirai--comment.scroll-in {
  opacity: 1;
  transform: none;
  transition: none;
}

.vo-look__ashirai-comment-wrap {
  position: relative;
  width: 100%;
}

.vis-outdoor .vo-look__ashirai-photo {
  width: 100%;
  opacity: 0;
}

.vis-outdoor .vo-look__ashirai-comment {
  position: absolute;
  top: 0;
  right: -22%;
  width: 98%;
  opacity: 0;
}

.vo-look__ashirai--comment.is-visible .vo-look__ashirai-photo {
  animation: vo-ashirai-fade-up 0.75s ease forwards;
}

.vo-look__ashirai--comment.is-visible .vo-look__ashirai-comment {
  animation: vo-ashirai-fade-up 0.75s ease forwards;
  animation-delay: 0.45s;
}

.vis-outdoor #look02 .vo-look__ashirai {
  margin-bottom: 0.5rem;
}

.vis-outdoor #look02 .vo-look__ashirai--comment {
  max-width: 100%;
}

.vis-outdoor #look02 .vo-look__ashirai-photo {
  width: 34%;
  margin-left: auto;
  margin-right: auto;
}

.vis-outdoor #look04 .vo-look__ashirai {
  margin-bottom: 0.5rem;
}

.vis-outdoor #look04 .vo-look__ashirai--comment {
  max-width: 100%;
}

.vis-outdoor #look04 .vo-look__ashirai-photo {
  width: 59%;
}

.vis-outdoor #look04 .vo-look__ashirai-comment {
  top: 4%;
  left: 54%;
  right: auto;
  width: 40%;
}

.vis-outdoor #look02 .vo-look__ashirai-comment {
  top: -18%;
  left: 56%;
  right: auto;
  width: 33.2%;
}

.vis-outdoor #look06 .vo-look__ashirai {
  margin-bottom: 0.5rem;
}

.vis-outdoor #look06 .vo-look__ashirai--comment {
  max-width: 100%;
}

.vis-outdoor #look06 .vo-look__ashirai-photo {
  width: 49%;
  margin-left: auto;
  margin-right: 10%;
}

.vis-outdoor #look06 .vo-look__ashirai-comment {
  top: 0;
  left: 6%;
  right: auto;
  width: 42%;
}

@keyframes vo-ashirai-fade-up {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vo-look__bubble {
  position: relative;
  width: 70%;
  margin: -1.5rem auto 0;
}
.vo-look__bubble p {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "aktiv-grotesk", sans-serif;
  font-style: italic;
  font-size: 0.6rem;
  line-height: 1.4;
  color: var(--vo-text);
  padding: 0 12%;
}

.vo-look__pin {
  position: relative;
}

.vo-look__pin-spacer {
  display: block;
  height: 0;
}

.vo-look__pin-hold {
  height: 50vh;
  min-height: 280px;
}

.vo-look__pin-release {
  display: block;
  height: 0;
}

.vo-look__pin-inner {
  position: relative;
  z-index: 1;
  line-height: 0;
}
.vo-look__pin-inner img {
  display: block;
}
.vo-look__pin-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  z-index: 1;
}
.vo-look__pin-inner.is-pinned {
  z-index: 1;
}
.vo-look__pin-inner.is-pinned > img {
  position: relative;
  z-index: 1;
}
.vo-look__pin-inner.is-pinned::after {
  z-index: 2;
}
.vo-look__pin-inner.is-pinned::after {
  opacity: 1;
}

.vo-look__extra {
  position: relative;
  z-index: 3;
  line-height: 0;
}

.vo-look__extra__first {
  margin-top: 4rem;
}

.vo-look__extra--left {
  margin-left: 0.9rem;
  margin-right: auto;
}

.vo-look__extra--left-0 {
  margin-left: 0px;
}

.vo-look__extra--right {
  margin-left: auto;
  margin-right: 2rem;
}

.vo-look__extra--right-0 {
  margin-left: auto;
  margin-right: 0px;
}

.vo-look__extra--center {
  margin-left: auto;
  margin-right: auto;
}

.vo-look__extra--w65 {
  width: 65%;
}

.vo-look__extra--w63 {
  width: 62.8%;
}

.vo-look__extra--w73 {
  width: 73.2%;
}

.vo-look__extra--w77 {
  width: 76.7%;
}

.vo-look__extra--w80 {
  width: 80.4%;
}

.vo-look__extra--w84 {
  width: 83.7%;
}

.vo-look__extra--w89 {
  width: 88.5%;
}

/* ★E：固定表示直後に出る色/品番ラベル（画像） */
.vo-look__label {
  position: absolute;
  top: 0px;
  right: 1%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 5;
  pointer-events: none;
}

.vis-outdoor .vo-look__label img {
  width: 41px;
  height: auto;
}

.vo-look__label.is-pinned {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  box-sizing: border-box;
  padding-right: 1%;
  display: flex;
  justify-content: flex-end;
}

.vo-look__label-left {
  position: absolute;
  top: 0;
  left: 3%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 5;
  pointer-events: none;
}

.vis-outdoor .vo-look__label-left img {
  width: 52%;
  height: auto;
}

.vo-look__label-left.is-pinned {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  box-sizing: border-box;
  padding-left: 1%;
  display: flex;
  justify-content: flex-start;
}

/* ★G：通過後クレジット表示、下から固定 */
.vo-look__credit {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0.9rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  color: #fff;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.7s ease, transform 0.7s ease;
  z-index: 2;
}

.vo-look__pin-inner.is-credit .vo-look__credit {
  opacity: 1;
  transform: translateY(0);
  z-index: 4;
}

.vo-look__credit-main {
  margin: 0;
  font-size: 16px;
}

.vo-look__credit-divider {
  border: 0;
  border-top: 1px solid #fff;
  margin: 0.45rem 0;
}

.vo-look__credit-row {
  align-items: center;
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.vo-look__credit-leader {
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: -0.45em;
  line-height: 1;
}

.vo-look__credit-name,
.vo-look__credit-price {
  white-space: nowrap;
}

.vo-look__credit-sub {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 72%;
  font-size: 14px;
}

.vo-look__credit .vo-buy {
  justify-self: end;
  padding: 0.12rem 0;
  font-size: 11px;
  line-height: 1.2;
  background: var(--vo-text);
  border: 1px solid #fff;
  color: #fff;
}

.vo-look__credit .vo-buy--light {
  background: #fff;
  color: var(--vo-text);
  border: 1px solid var(--vo-text);
}

/* ALL ITEMS CHECK（SP） */
.vo-allitems {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 1rem 1.5rem;
  text-align: left;
}

.vo-allitems__heading {
  flex: 0 0 38%;
  text-align: center;
}

.vo-allitems__title {
  margin: 0;
  padding: 0.45rem 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

.vo-allitems__photo {
  display: block;
  flex: 0 0 48%;
  width: 48%;
  margin: 0;
}

/* クレジット */
.vo-credit {
  padding: 0;
  text-align: left;
}

.vo-credit__visual {
  position: relative;
  line-height: 0;
}

.vo-credit__photo {
  display: block;
  width: 100%;
  margin: 0;
}

.vo-credit__staff {
  position: absolute;
  top: 1%;
  left: 5%;
  right: 8%;
  margin: 0;
  line-height: 1.85;
  font-style: italic;
  color: rgba(105, 93, 86, 0.92);
  text-align: left;
}

.vo-credit__footer {
  position: absolute;
  bottom: 3%;
  left: 5%;
  line-height: normal;
}
.vo-credit__footer img {
  width: 60px;
  margin: 0 0 0.35rem;
}
.vo-credit__footer p {
  font-size: 0.5rem;
  color: #695d56;
  margin: 0;
}

/* ============================================================
   PC専用：左ナビサムネイル / 右固定バナー
   ============================================================ */
.vo-navthumb {
  position: relative;
  width: 100%;
}

.vo-navthumb__stage {
  position: relative;
  width: 100%;
  min-height: 430px;
}

.vo-navthumb__item,
.vo-navthumb__item--first {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  z-index: 0;
}

.vo-navthumb__item.is-active,
.vo-navthumb__item--first.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.vo-navthumb__link {
  display: block;
  flex-shrink: 0;
}

.vis-outdoor .vo-navthumb__item img,
.vis-outdoor .vo-navthumb__item--first img {
  width: auto;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

.vo-navthumb__swatches-slot {
  position: relative;
  height: 42px;
  margin-top: 10px;
}

.vo-navthumb__swatches {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.vo-navthumb__swatches[hidden] {
  display: none;
}

.vo-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: var(--vo-swatch);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.vo-swatch.is-active {
  box-shadow: 0 0 0 2px var(--vo-swatch);
}

.vo-allitems-float {
  display: flex;
  text-align: center;
}

.vo-allitems-float__heading {
  text-align: center;
}

.vo-allitems-float__photo {
  width: 70%;
  margin: 0.75rem auto 0;
}/*# sourceMappingURL=style.css.map */