@charset "utf-8";
/* =========================================================
   BASE
========================================================= */ :root {
  --bg: #f6f5f2;
  --text: #292826;
  --body: #5f5c57;
  --muted: #89857f;
  --line: #ddd9d2;
  --white: #fff;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
/* =========================================================
   FIRST LOOK
========================================================= */
.first-look {
  position: relative;
  width: 100%;
  height: min(88vh, 900px);
  min-height: 650px;
  overflow: hidden;
  background: #ddd;
}
.first-look-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.first-look-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.045);
  animation:
    firstLookZoom 9s var(--ease-out) forwards;
}
@keyframes firstLookZoom {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}
.first-look::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .01) 45%, rgba(0, 0, 0, .34) 100%);
  pointer-events: none;
}
.first-look-copy {
  position: absolute;
  z-index: 2;
  left: clamp(30px, 6vw, 90px);
  bottom: clamp(45px, 8vw, 95px);
  color: #fff;
}
.first-look-kicker {
  margin-bottom: 16px;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: .25em;
}
.first-look-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: .035em;
  line-height: 1.35;
}
.first-look-sub {
  margin: 18px 0 0;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: .09em;
  line-height: 1.9;
}
.first-look-scroll {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 55px);
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-size: 0.4375rem;
  font-weight: 500;
  letter-spacing: .22em;
}
.first-look-scroll::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, .75);
  animation:
    scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% {
    transform: scaleX(.45);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
/* =========================================================
   INTRODUCTION
========================================================= */
.introduction {
  max-width: 840px;
  margin: 0 auto;
  padding:
    clamp(95px, 10vw, 145px) 24px clamp(110px, 12vw, 165px);
  text-align: center;
}
.intro-label {
  margin-bottom: 25px;
  color: #918d87;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: .28em;
}
.intro-title {
  margin: 0 0 37px;
  font-size: clamp(1.4375rem, 2.5vw, 1.9375rem);
  font-weight: 500;
  letter-spacing: .035em;
  line-height: 1.55;
  color: #292826;
  text-wrap: balance;
}
.intro-copy {
  margin: 0;
  color: var(--body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: .025em;
  line-height: 2.35;
}

.campaign-note {
        display: inline-block;
        margin-top: 32px;
        padding: 12px 28px;
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 2px;
        font-size: 0.88rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        transition: border-color var(--transition-speed);
      }

/* =========================================================
   FEATURE
========================================================= */
.feature {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding:
    0 30px clamp(120px, 13vw, 175px);
}
.feature-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 42px;
}
.feature-number {
  margin-bottom: 12px;
  color: #918d87;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: .24em;
}
.feature-title {
  margin: 0;
  font-size: clamp(1.6875rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: .025em;
  line-height: 1.5;
  color: #292826;
  text-wrap: balance;
}
.feature-description {
  width: 410px;
  max-width: 43%;
  margin: 0;
  color: var(--body);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .025em;
  line-height: 1.6;
}
/* =========================================================
   LOOK AREA
========================================================= */
.look-area {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.look-item {
  min-width: 0;
}
/* =========================================================
   SLIDER
========================================================= */
.look-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #e6e3de;
}
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition:
    transform 1s var(--ease-out);
  will-change: transform;
}
.slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  transition:
    transform 2.6s var(--ease-out);
}
.slide.active img {
  transform: scale(1);
}
/* =========================================================
   ONE ITEM SWITCH
========================================================= */
.one-item-switch {
  position: absolute;
  z-index: 10;
  top: 22px;
  left: 22px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, .92);
  color: #292826;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    opacity .5s var(--ease), transform .7s var(--ease);
}
.look-slider.changing .one-item-switch {
  opacity: .58;
  transform: translateY(-5px);
}
/* =========================================================
   PROGRESS
========================================================= */
.slider-progress {
  position: absolute;
  z-index: 10;
  left: 22px;
  right: 65px;
  bottom: 22px;
  height: 1px;
  background: rgba(255, 255, 255, .38);
}
.slider-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
}
/* =========================================================
   COUNT
========================================================= */
.slider-count {
  position: absolute;
  z-index: 10;
  right: 22px;
  bottom: 17px;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-shadow:
    0 1px 8px rgba(0, 0, 0, .28);
}
/* =========================================================
   LOOK CAPTION
========================================================= */
.look-caption {
  padding: 17px 2px 0;
}
.look-caption-title {
  margin: 0 0 7px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: .025em;
  line-height: 1.6;
  color: #33312e;
}
.look-caption-text {
  margin: 0;
  color: #817d77;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.8;
}
/* =========================================================
   NEAR ITEMS
========================================================= */
.near-items {
  margin-top: 10%;
}
.near-label {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
}
.near-label::before, .near-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.near-label span {
  color: #77736e;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .16em;
  white-space: nowrap;
}
/* =========================================================
   PRODUCT GRID
========================================================= */
.product-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  min-width: 0;
}
.product-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #e6e3de;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform .9s var(--ease);
}
.product-card:hover .product-image img {
  transform: scale(1.045);
}
.product-info {
  padding-top: 11px;
}
.product-brand {
  margin-bottom: 4px;
  color: #918d87;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
}
.product-name {
  margin: 0;
  color: #44413e;
  font-size: .7rem;
  font-weight: 500;
  line-height: 1.6;
}
.product-price {
  margin-top: 5px;
  color: #66615d;
  font-size: .7rem;
  font-weight: 400;
}
/* =========================================================
   BUTTON
========================================================= */
.list-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 49px;
  margin: 10% auto 0;
  border: 1px solid #4a4845;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .14em;
  transition:
    background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}


.list-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 10%;
}
.list-button-group .list-button {
  margin: 0 auto;
}

.list-button-arrow {
  margin-left: 17px;
  transition:
    transform .45s var(--ease);
}
.list-button:hover {
  background: #333;
  color: #fff;
  transform: translateY(-2px);
}
.list-button:hover .list-button-arrow {
  transform: translateX(5px);
}




/* =========================================================
   DIVIDER
========================================================= */
.section-divider {
  width: calc(100% - 60px);
  max-width: 1300px;
  margin:
    0 auto clamp(115px, 12vw, 160px);
  border: 0;
  border-top: 1px solid var(--line);
}
/* =========================================================
   REVEAL
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* =========================================================
   FOOTER
========================================================= */
.footer {
  padding:
    90px 24px 105px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-title {
  margin: 0;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: .06em;
}
.footer-copy {
  margin: 14px 0 0;
  color: #918d87;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: .18em;
}
/* =========================================================
   TABLET
========================================================= */
@media(max-width:900px) {
  .feature-head {
    gap: 35px;
  }
  .feature-description {
    max-width: 46%;
  }
  .product-grid {
    gap: 12px;
  }
}
/* =========================================================
   MOBILE
========================================================= */
@media(max-width:767px) {
  /* FIRST LOOK */
  .first-look {
    height: 78vh;
    min-height: 570px;
  }
  .first-look-image img {
    object-position: center center;
  }
  .first-look-copy {
    left: 20px;
    right: 20px;
    bottom: 58px;
  }
  .first-look-kicker {
    margin-bottom: 13px;
    font-size: 0.4375rem;
    font-weight: 600;
    letter-spacing: .22em;
  }
  .first-look-title {
    font-size: 1.8125rem;
    font-weight: 500;
    letter-spacing: .025em;
    line-height: 1.45;
  }
  .first-look-sub {
    margin-top: 13px;
    font-size: 0.5625rem;
    letter-spacing: .07em;
  }
  .first-look-scroll {
    display: none;
  }
  /* INTRODUCTION */
  .introduction {
    padding:
      80px 20px 95px;
  }
  .intro-label {
    margin-bottom: 21px;
    font-size: 0.4375rem;
  }
  .intro-title {
    margin-bottom: 29px;
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: .025em;
  }
  .intro-copy {
    font-size: 0.6562rem;
    letter-spacing: .015em;
    line-height: 2.35;
  }
  /* FEATURE */
  .feature {
    padding:
      0 15px 105px;
  }
  .feature-head {
    display: block;
    margin-bottom: 29px;
  }
  .feature-number {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  .feature-title {
    font-size: 1.625rem;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.5;
  }
  .feature-description {
    width: 100%;
    max-width: 500px;
    margin-top: 17px;
    font-size: 0.6562rem;
    letter-spacing: .01em;
    line-height: 2.15;
  }
  /* LOOK */
  .look-area {
    display: block;
  }
  .look-item {
    margin-bottom: 34px;
  }
  .look-slider {
    aspect-ratio: 3 / 4;
  }
  /* ONE ITEM */
  .one-item-switch {
    top: 14px;
    left: 14px;
    padding: 10px 12px;
    font-size: 0.4375rem;
    font-weight: 600;
    letter-spacing: .13em;
  }
  /* PROGRESS */
  .slider-progress {
    left: 14px;
    right: 51px;
    bottom: 15px;
  }
  .slider-count {
    right: 14px;
    bottom: 10px;
    font-size: 0.4375rem;
  }
  /* CAPTION */
  .look-caption {
    padding-top: 12px;
  }
  .look-caption-title {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: .015em;
  }
  .look-caption-text {
    font-size: 0.5625rem;
    line-height: 1.8;
  }
  /* NEAR ITEMS */
  .near-items {
    margin-top: 43px;
  }
  .near-label {
    margin-bottom: 17px;
  }
  .product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap:
      28px 10px;
  }
  .product-info {
    padding-top: 9px;
  }
  .product-brand {
    font-size: 0.5rem;
  }
  .product-name {
    font-size: 0.75rem;
    font-weight: 500;
  }
  .product-price {
    font-size: 0.7rem;
  }
  /* BUTTON */
  .list-button {
    width: 100%;
    height: 46px;
    margin-top: 30px;
    font-size: 0.6rem;
  }
  /* DIVIDER */
  .section-divider {
    width: calc(100% - 30px);
    margin:
      0 auto 100px;
  }
  /* FOOTER */
  .footer {
    padding:
      70px 20px 85px;
  }
  .footer-title {
    font-size: 1.125rem;
  }
}
/* =========================================================
   REDUCED MOTION
========================================================= */
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}