@layer component {
  .c-stroke-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--w, 100%);
    height: var(--h, 72px);
    max-width: var(--maw, 100%);
    font-size: 0.8125rem;
    font-weight: bold;
    border: 1px solid var(--clr, #000);
    border-radius: var(--bdr, 0);
    color: var(--clr, #000);
    transition-property: color, background-color;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 0s;
  }
  @media (max-width: 48em) {
    .c-stroke-button + .c-stroke-button {
      margin-top: 20px;
    }
  }
  @media (min-width: 48.0625em) {
    .c-stroke-button {
      max-width: var(--maw, 100%);
      height: var(--h, 80px);
      font-size: 0.9375rem;
    }
    .c-stroke-button:hover:not(.is-coming-soon) {
      background-color: var(--clr, #000);
      color: #fff;
    }
    .c-stroke-button:hover:not(.is-coming-soon) .c-stroke-arrow {
      border-color: #fff;
    }
  }
  .c-stroke-button a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .c-stroke-button.is-coming-soon {
    opacity: 0.5;
  }
  .c-stroke-button.is-coming-soon::before {
    content: attr(data-label);
  }
  .c-stroke-button.is-coming-soon a {
    pointer-events: none;
    font-size: 0;
  }
}
#site_body {
  overflow-x: unset !important;
}

.page__footer {
  position: relative;
}

.feature-athlete-look-26fw {
  --ff--roboto-condensed: roboto-condensed, sans-serif;
  --content-min-margin: 20;
  padding-bottom: clamp(8rem, 16.6666666667vw, 15rem);
}

@keyframes mv-conveyor {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.pg-mv {
  position: relative;
  padding-bottom: clamp(8rem, 13.75vw, 12.375rem);
}
.pg-mv:not(.l-wrapper.is-loaded .pg-mv) .pg-mv__img {
  opacity: 0;
  transform: translateY(50px);
}
.pg-mv__container {
  display: flex;
  gap: clamp(0.75rem, 1.1111111111vw, 1rem);
  padding-block: clamp(0.625rem, 1.1111111111vw, 1rem);
  padding-left: clamp(0.75rem, 1.1111111111vw, 1rem);
  overflow: hidden;
}
.pg-mv__images {
  display: flex;
  gap: clamp(0.75rem, 1.1111111111vw, 1rem);
  flex-shrink: 0;
  animation: mv-conveyor 20s linear 0s infinite;
}
.pg-mv__img {
  --delay-base: 0.0s;
  width: 76.9230769231vw;
  flex-shrink: 0;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-delay: 0s;
}
.pg-mv__img:nth-child(2) {
  transition-delay: calc(var(--delay-base) * 1);
}
.pg-mv__img:nth-child(3) {
  transition-delay: calc(var(--delay-base) * 2);
}
.pg-mv__img:nth-child(4) {
  transition-delay: calc(var(--delay-base) * 3);
}
.pg-mv__img:nth-child(5) {
  transition-delay: calc(var(--delay-base) * 4);
}
.pg-mv__img img {
  border-radius: 1rem;
}
@media (min-width: 48.0625em) {
  .pg-mv__img {
    width: 23.6111111111vw;
  }
}
.pg-mv__header {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  font-family: var(--ff--roboto-condensed);
  bottom: clamp(1.25rem, 2.7777777778vw, 2.5rem);
}
.pg-mv__heading {
  font-size: clamp(3.5rem, 6.1111111111vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
}
.pg-mv__season {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  letter-spacing: 0.08em;
}

.pg-contents {
  --content-min-margin: 10;
  --content-base-margin: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.25rem, 3.3333333333vw, 3rem);
  margin-top: clamp(4rem, 5.5555555556vw, 5rem);
  --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
  max-width: var(--content-max-width, 100%);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}
@media (min-width: 48.0625em) {
  .pg-contents {
    --content-base-margin: 152;
  }
}

.pg-side {
  width: clamp(4rem, 5.5555555556vw, 5rem);
}

.pg-anchor-links {
  position: sticky;
  top: calc(var(--fixed-header-height) + 1.5rem);
}
.pg-anchor-links__items {
  display: grid;
  gap: 0.25rem;
}
.pg-anchor-links__item {
  position: relative;
  padding: 0.25rem;
}
.pg-anchor-links__item img {
  border-radius: 0.5rem;
}
.pg-anchor-links__item.is-current::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  border: 2px solid #000;
  border-radius: 0.75rem;
}
.pg-anchor-links__item a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.pg-main {
  counter-reset: section-counter;
  display: grid;
  gap: clamp(5rem, 10vw, 9rem);
}

.pg-section {
  display: grid;
  gap: 0 3rem;
  counter-increment: section-counter;
}
@media (min-width: 48.0625em) {
  .pg-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.pg-section__mv {
  position: sticky;
  top: calc(var(--fixed-header-height) + 1.5rem);
}
.pg-section__mv img {
  border-radius: 1rem;
}
.pg-section__main {
  display: grid;
  gap: 2.5rem;
}
.pg-section__header {
  display: grid;
  gap: clamp(1.5rem, 2.2222222222vw, 2rem);
  padding-block: 2.5rem;
}
.pg-section__subtitle {
  display: flex;
  align-items: center;
  font-size: clamp(1.25rem, 1.5277777778vw, 1.375rem);
  line-height: 1;
  gap: 1rem;
}
.pg-section__subtitle b {
  font-weight: bold;
  display: block;
  margin-top: 0.1875rem;
}
.pg-section__subtitle::before {
  content: "#" counter(section-counter);
  font-size: clamp(2.5rem, 3.3333333333vw, 3rem);
  font-family: var(--ff--roboto-condensed);
}
.pg-section__title {
  font-size: clamp(3rem, 4.4444444444vw, 4rem);
  font-family: var(--ff--roboto-condensed);
  line-height: 1;
}
.pg-section__title::before {
  content: "(Styling)";
  display: block;
  font-size: clamp(0.8125rem, 0.9722222222vw, 0.875rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.1111111111vw, 1rem);
  letter-spacing: 0.04em;
}
.pg-section__images {
  display: grid;
  gap: clamp(1.5rem, 2.7777777778vw, 2.5rem);
}
.pg-section__img {
  position: relative;
}
.pg-section__img img {
  border-radius: 1rem;
  width: 100%;
}
.pg-section__img::before, .pg-section__img::after {
  content: "";
  display: block;
  width: clamp(2rem, 3.3333333333vw, 3rem);
  height: clamp(2rem, 3.3333333333vw, 3rem);
  position: absolute;
  right: 16px;
  bottom: 16px;
  transition-property: opacity, visibility;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
}
.pg-section__img::before {
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: background-color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  backdrop-filter: blur(10px);
}
.pg-section__img::after {
  background: transparent url("/public/assets/feature/athlete-look-25ss/svg/icon-plus.svg") center center no-repeat;
  background-size: clamp(0.75rem, 1.1111111111vw, 1rem);
}
@media (hover: hover) and (pointer: fine) {
  .pg-section__img:hover {
    cursor: pointer;
  }
  .pg-section__img:hover::before {
    background-color: #fff;
  }
}
.pg-section__buttons {
  --h: 2.75rem;
  --w: fit-content;
  padding-bottom: 2.5rem;
}
.pg-section__buttons .c-stroke-button {
  padding-inline: 2rem;
  border-radius: 3.5rem;
  margin-inline: auto;
}

.pg-look {
  --content-min-margin: 10;
  width: 100%;
}
@media (max-width: 48em) {
  .pg-look {
    padding-bottom: 80px;
  }
}
.pg-look__inner {
  display: grid;
}
@media (max-width: 48em) {
  .pg-look__inner {
    gap: 40px 0;
  }
}
@media (min-width: 48.0625em) {
  .pg-look__inner {
    gap: clamp(2rem, 4.1666666667vw, 3.75rem);
    grid-template-columns: 560fr 480fr;
  }
}
@media (min-width: 48.0625em) {
  .pg-look__mv {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
.pg-look__img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-look__img.horizon img {
  width: 100%;
  height: auto;
}
.pg-look__img.vertical img {
  width: auto;
  height: 100%;
}
.pg-look__img img {
  border-radius: 16px;
}
.pg-look__content {
  display: grid;
  align-items: center;
}

.pg-look-credits {
  display: grid;
}
.pg-look-credits__heading {
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.pg-look-credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  gap: 0 12px;
  padding: clamp(1.5rem, 2.2222222222vw, 2rem) 16px;
  border-bottom: 1px solid #e8e6e6;
}
.pg-look-credits__heading + .pg-look-credit {
  border-top: 1px solid #e8e6e6;
}
.pg-look-credit[data-label]:not([data-label=""]) .pg-look-credit__title a {
  text-decoration: none !important;
  pointer-events: none;
}
.pg-look-credit[data-label]:not([data-label=""]) .pg-look-credit__button {
  display: none;
}
.pg-look-credit[data-label]:not([data-label=""])::after {
  content: attr(data-label);
  font-size: 12px;
  color: #7d7d7d;
  flex-shrink: 0;
}
.pg-look-credit__title a {
  text-decoration: underline !important;
}
.pg-look-credit__title a:hover {
  text-decoration: none !important;
}
.pg-look-credit__price small {
  font-size: 10px;
}
.pg-look-credit__button {
  position: relative;
  width: clamp(4.25rem, 6.3888888889vw, 5.75rem);
  height: clamp(2.25rem, 2.9166666667vw, 2.625rem);
  border: 1px solid #000;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  transition: background-color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.pg-look-credit__button a {
  color: #fff;
  transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.pg-look-credit__button a::after {
  content: "";
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (min-width: 48.0625em) {
  .pg-look-credit__button:hover {
    background-color: #fff;
  }
  .pg-look-credit__button:hover a {
    color: #000;
    text-decoration: none;
  }
}

.l-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: auto;
  display: none;
  z-index: 9999;
}
.l-modal__container {
  position: relative;
  display: grid;
  grid-template-rows: 64px minmax(0, 1fr) 64px;
  min-height: 100%;
}
.l-modal__container::before, .l-modal__container::after {
  content: "";
}
@media (min-width: 48.0625em) {
  .l-modal__container {
    grid-template-rows: 100px minmax(0, 1fr) 100px;
  }
}
.l-modal__close {
  position: absolute;
  width: 48px;
  height: 48px;
  z-index: 5;
}
@media (max-width: 48em) {
  .l-modal__close {
    left: 0;
    right: 0;
    bottom: 48px;
    margin: auto;
  }
}
@media (min-width: 48.0625em) {
  .l-modal__close {
    top: 48px;
    right: 48px;
  }
}
.l-modal__close::before, .l-modal__close::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.l-modal__close::before {
  border: 1px solid #e8e6e6;
  border-radius: 50%;
  transition: border-color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.l-modal__close::after {
  background: transparent url("/public/assets/feature/athlete-look-25ss/svg/icon-plus.svg") center center no-repeat;
  transform: rotate(45deg);
}
@media (min-width: 48.0625em) {
  .l-modal__close:hover {
    cursor: pointer;
  }
  .l-modal__close:hover::before {
    border-color: #000;
  }
}
.l-modal__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
  max-width: var(--content-max-width, 1100px);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}