.c-anchor-target {
  position: absolute;
  margin-top: calc(var(--fixed-header-height) * -1);
}

.c-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-buttons [class$=button] + [class$=button] {
  margin-left: var(--margin, 16px);
}
@media (min-width: 48.0625em) {
  .c-buttons [class$=button] + [class$=button] {
    margin-left: var(--margin, 24px);
  }
}

.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: 1.3rem;
  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: 1.5rem;
  }
  .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;
}

.c-fill-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--w, fit-content);
  height: var(--sp-h, var(--h, 60px));
  font-size: var(--sp-fz, var(--fz));
  font-weight: bold;
  border-radius: var(--bdr, 0);
  background-color: var(--bgc, #000);
  border: 1px solid var(--bdc, var(--bgc, #000));
  color: var(--color, #fff);
  transition-property: color, background-color;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
  max-width: var(--maw, 100%);
  padding: 0 32px;
}
@media (min-width: 48.0625em) {
  .c-fill-button {
    height: var(--h, 60px);
    font-size: var(--fz, 1.3rem);
  }
  .c-fill-button:hover {
    border-color: var(--bdc-h, var(--bdc, var(--bgc-h, var(--bgc, #fff))));
    background-color: var(--bgc-h, var(--bgc, #fff));
    color: var(--color-h, var(--color, #000));
  }
}
.c-fill-button a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.c-buy-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--h, 32px);
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: var(--bdr, 0);
  background-color: var(--bgc, #000);
  border: 1px solid var(--bdc, var(--bgc));
  color: var(--color, #fff);
  transition-property: color, background-color;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
  max-width: var(--maw, 56px);
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 48.0625em) {
  .c-buy-button {
    height: var(--h, 32px);
    font-size: 1.4rem;
    max-width: var(--maw, 80px);
  }
  .c-buy-button::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bgc-h, #fff);
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 0s;
  }
  .c-buy-button:hover {
    color: var(--color-h, var(--color));
  }
  .c-buy-button:hover::before {
    opacity: 1;
    background-color: var(--bgc-h, #fff);
    border-color: var(--bdc-h, var(--bdc));
  }
}
.c-buy-button a {
  z-index: 2;
}
.c-buy-button a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.c-color-chip__items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.c-color-chip__item {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: var(--color1, #ccc);
}
.c-color-chip__item + .c-color-chip__item {
  margin-left: 8px;
}
.c-color-chip__item::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  z-index: 2;
  background-color: var(--color2, transparent);
}
@media (min-width: 48.0625em) {
  .c-color-chip__item {
    width: 32px;
    height: 32px;
  }
  .c-color-chip__item::after {
    width: 14px;
    height: 14px;
  }
}

.c-stroke-arrow {
  display: block;
  width: var(--size, 8px);
  height: var(--size, 8px);
  border-top: var(--bdw, 1px) solid var(--clr, #000);
  border-right: var(--bdw, 1px) solid var(--clr, #000);
  transition-property: border-color;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
}
.c-stroke-arrow--prev {
  transform: translateX(25%) rotate(-135deg);
}
.c-stroke-arrow--next {
  transform: translateX(-25%) rotate(45deg);
}
.c-stroke-arrow--top {
  transform: translateY(25%) rotate(-45deg);
}
.c-stroke-arrow--bottom {
  transform: translateY(-25%) rotate(135deg);
}

.p-buttons {
  display: flex;
  align-items: center;
}
@media (max-width: 48em) {
  .p-buttons {
    flex-direction: column;
  }
}
@media (min-width: 48.0625em) {
  .p-buttons--horizon .c-fill-button + .c-fill-button, .p-buttons--horizon .c-fill-button + .c-stroke-button,
  .p-buttons--horizon .c-stroke-button + .c-fill-button,
  .p-buttons--horizon .c-stroke-button + .c-stroke-button {
    margin-left: 40px;
  }
}
.p-buttons--center {
  justify-content: center;
}

.u-d-n--sp {
  display: none;
}
@media (min-width: 48.0625em) {
  .u-d-n--sp {
    display: block;
  }
}
.u-d-n--tb {
  display: none;
}
@media (min-width: 48.0625em) {
  .u-d-n--tb {
    display: block;
  }
}
.u-d-b--sp {
  display: block;
}
@media (min-width: 30.0625em) {
  .u-d-b--sp {
    display: none;
  }
}
.u-d-b--tb {
  display: block;
}
@media (min-width: 48.0625em) {
  .u-d-b--tb {
    display: none;
  }
}
.u-d-ib--sp {
  display: inline-block;
}
@media (min-width: 30.0625em) {
  .u-d-ib--sp {
    display: none;
  }
}
.u-d-ib--tb {
  display: inline-block;
}
@media (min-width: 48.0625em) {
  .u-d-ib--tb {
    display: none;
  }
}

.js-fadein-up:not(.is-animated), [class*=js-fadein-lag][class*="--up"]:not(.is-animated) [style*="--delay-order"] {
  --transform: translateY(var(--translate-rate, 48px));
  transform: var(--transform);
}

.js-fadein-down:not(.is-animated), [class*=js-fadein-lag][class*="--down"]:not(.is-animated) [style*="--delay-order"] {
  --transform: translateY(var(--translate-rate, -48px));
  transform: var(--transform);
}

.js-fadein-ltr:not(.is-animated), [class*=js-fadein-lag][class*="--ltr"]:not(.is-animated) [style*="--delay-order"] {
  --transform: translateX(var(--translate-rate, -72px));
  transform: var(--transform);
}

.js-fadein-rtl:not(.is-animated), [class*=js-fadein-lag][class*="--rtl"]:not(.is-animated) [style*="--delay-order"] {
  --transform: translateX(var(--translate-rate, 72px));
  transform: var(--transform);
}

.js-fadein-zoomin:not(.is-animated), [class*=js-fadein-lag][class*="--zoomin"]:not(.is-animated) [style*="--delay-order"] {
  --transform: scale(var(--scale-rate, 0.9));
  transform: var(--transform);
}

.js-fadein-zoomout:not(.is-animated), [class*=js-fadein-lag][class*="--zoomout"]:not(.is-animated) [style*="--delay-order"] {
  --transform: scale(var(--scale-rate, 1.1));
  transform: var(--transform);
}

[class*=js-fadein] {
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: var(--delay, 0s);
}
[class*=js-fadein]:not([class*=js-fadein-lag]):not(.is-animated) {
  opacity: 0;
}

[class*=js-fadein-lag] [style*="--delay-order"] {
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: calc(0.12s * var(--delay-order));
}
[class*=js-fadein-lag]:not(.is-animated) [style*="--delay-order"] {
  opacity: 0;
}
[class*=js-fadein-lag][class*="--ltr"] {
  overflow-x: hidden;
}
[class*=js-fadein-lag][class*="--rtl"] {
  overflow-x: hidden;
}
.feature-motion-install {
  position: relative;
  line-height: 1.4;
}
.feature-motion-install ul:before,
.feature-motion-install ol:before,
.feature-motion-install dl:before,
.feature-motion-install .clearfix:before,
.feature-motion-install ul:after,
.feature-motion-install ol:after,
.feature-motion-install dl:after,
.feature-motion-install .clearfix:after {
  display: none;
}
.feature-motion-install :where(*, *::before, *::after) {
  line-height: 1.4;
}

.pg-mv {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--active-header-height));
}
.pg-mv__container {
  position: fixed;
  width: 100%;
  height: calc(100vh - var(--active-header-height));
  overflow: hidden;
  top: var(--active-header-height);
  left: 0;
  transition-property: height, top;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
  z-index: -1;
}
.pg-mv__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 48.0625em) {
  .pg-mv__img img {
    object-position: 20% 50%;
  }
}
.pg-mv__content {
  position: absolute;
}
@media (max-width: 48em) {
  .pg-mv__content {
    width: 68%;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 48.0625em) {
  .pg-mv__content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 48.0625em) {
  .pg-mv__title {
    max-width: 448px;
  }
}
.pg-mv__subtitle {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-top: 20.8px;
}
@media (min-width: 48.0625em) {
  .pg-mv__subtitle {
    font-size: 2.8rem;
    margin-top: 58.4px;
  }
}

.pg-introduction {
  --pt: 60px;
  --pb: 56px;
  background-color: #fff;
  padding: var(--pt, 64px) 0 var(--pb, 64px);
}
@media (min-width: 48.0625em) {
  .pg-introduction {
    --pt: 58.8px;
    --pb: 57.5px;
    padding: var(--pt, 80px) 0 var(--pb, 80px);
  }
}
.pg-introduction__container {
  width: calc(100% - max(40px, 5.5555555556vw) * 2);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pg-introduction__heading {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 48.0625em) {
  .pg-introduction__heading {
    font-size: 2.6rem;
  }
}
.pg-introduction__text {
  font-size: 1.3rem;
  line-height: 2;
  font-weight: bold;
  margin-top: 17.5px;
}
@media (min-width: 48.0625em) {
  .pg-introduction__text {
    margin-top: 18.8px;
    text-align: center;
    font-size: 1.6rem;
  }
}

.pg-contents {
  position: relative;
  background-color: #fff;
}

.pg-yt {
  position: relative;
  aspect-ratio: 1440/810;
  width: 100%;
}
.pg-yt > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}

.pg-section:not(:first-child) {
  margin-top: 92.4px;
}
@media (min-width: 48.0625em) {
  .pg-section:not(:first-child) {
    margin-top: 123.2px;
  }
}
.pg-section__header {
  width: calc(100% - max(20px, 8.3333333333vw) * 2);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.pg-section__heading {
  font-size: 3.6rem;
  letter-spacing: -0.02em;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 48.0625em) {
  .pg-section__heading {
    font-size: 4.8rem;
  }
}

.pg-styling {
  overflow: hidden;
  padding: 26.6px 0 96px;
}
@media (min-width: 48.0625em) {
  .pg-styling {
    padding: 56.8px 0 96px;
  }
}
@media (min-width: 48.0625em) {
  .pg-styling .swiper-slide {
    flex-shrink: 1;
  }
}
.pg-styling .swiper-pagination {
  position: relative;
  display: flex;
  bottom: auto;
  gap: 8px;
  margin-top: 20px;
}
@media (max-width: 48em) {
  .pg-styling .swiper-pagination {
    justify-content: center;
  }
}
@media (min-width: 48.0625em) {
  .pg-styling .swiper-pagination {
    margin-top: 40px;
  }
}
.pg-styling .swiper-pagination-bullet {
  margin: 0 !important;
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #a0a0a0;
  opacity: 1;
}
.pg-styling .swiper-pagination-bullet-active {
  background-color: #000;
  border-color: #000;
}
@media (max-width: 48em) {
  .pg-styling .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
  }
}
.pg-styling .swiper-button {
  width: 80px;
  height: 80px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pg-styling .swiper-button::before {
  content: "";
  --size: 56px;
  --clr: #000;
  --bdrw: 1px;
  display: block;
  width: var(--size, 56px);
  height: var(--size, 56px);
  border-top: var(--bdrw, 1px) solid var(--clr, #000);
  border-right: var(--bdrw, 1px) solid var(--clr, #000);
  transition-property: border-color;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
  position: absolute;
  inset: 0;
  margin: auto;
}
.pg-styling .swiper-button::after {
  display: none;
}
.pg-styling .swiper-button-prev {
  left: 0;
  transform: translateX(-50%);
}
.pg-styling .swiper-button-prev::before {
  transform: translateX(25%) rotate(-135deg);
}
.pg-styling .swiper-button-next {
  right: 0;
  transform: translateX(50%);
}
.pg-styling .swiper-button-next::before {
  transform: translateX(-25%) rotate(45deg);
}
.pg-styling .swiper-button-disabled {
  visibility: hidden;
}
@media (max-width: 48em) {
  .pg-styling .swiper-button {
    display: none;
  }
}
.pg-styling__container {
  width: calc(100% - max(20px, 8.3333333333vw) * 2);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.pg-styling__heading {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
}
.pg-styling__heading span {
  font-size: 1rem;
  font-weight: normal;
}
@media (min-width: 48.0625em) {
  .pg-styling__heading {
    font-size: 2.4rem;
  }
  .pg-styling__heading span {
    font-size: 1.2rem;
  }
}
.pg-styling__content {
  margin-top: 45.6px;
}
.pg-styling__slider {
  overflow: visible;
}
.pg-styling__credit {
  margin-top: 32px;
}
.pg-styling__credit .pg-credit {
  max-width: 960px;
  margin: auto;
}
@media (min-width: 48.0625em) {
  .pg-styling__credit .pg-credit {
    display: grid;
    grid-template-columns: 1fr;
  }
  .pg-styling__credit .pg-credit__data {
    border-top: none;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin-top: 0;
    padding-top: 0;
  }
  .pg-styling__credit .pg-credit__link {
    grid-column: 1/3;
    margin-top: 28px;
  }
}

.pg-style {
  position: relative;
}
.pg-style.is-active .pg-style__trigger {
  border-color: #fff;
}
.pg-style.is-active .pg-style__trigger::before, .pg-style.is-active .pg-style__trigger::after {
  background-color: #fff;
}
.pg-style.is-active .pg-style__trigger::before {
  transform: rotate(135deg);
}
.pg-style.is-active .pg-style__trigger::after {
  transform: rotate(225deg);
}
.pg-style.is-active .pg-style__content {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 48.0625em) {
  .pg-style:hover .pg-style__content {
    opacity: 1;
    visibility: visible;
  }
}
.pg-style__trigger {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  left: 10px;
  bottom: 10px;
  z-index: 50;
  transition: border-color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.pg-style__trigger::before, .pg-style__trigger::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background-color: #000;
  position: absolute;
  inset: 0;
  margin: auto;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.pg-style__trigger::after {
  transform: rotate(90deg);
}
@media (min-width: 48.0625em) {
  .pg-style__trigger {
    display: none;
  }
}
.pg-style__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
.pg-style__content .pg-credit:not(.is-coming-soon) .pg-credit__link {
  --clr: #fff;
}
@media (min-width: 48.0625em) {
  .pg-style__content .pg-credit:not(.is-coming-soon) .pg-credit__link:hover {
    --clr: #000;
    --bgc: #fff;
  }
}

.pg-credit {
  width: 100%;
}
.pg-credit.is-coming-soon .pg-credit__link a {
  pointer-events: none;
  font-size: 0;
}
.pg-credit.is-coming-soon .pg-credit__link::after {
  content: attr(data-label);
  font-size: 1.2rem;
}
.pg-credit__title {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: bold;
}
@media (min-width: 48.0625em) {
  .pg-credit__title {
    font-size: 1.6rem;
  }
}
.pg-credit__text {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-top: 22.4px;
}
@media (min-width: 48.0625em) {
  .pg-credit__text {
    font-size: 1.4rem;
  }
}
.pg-credit__data {
  border-top: 1px solid currentColor;
  margin-top: 19.2px;
  padding-top: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pg-credit__id {
  font-size: 1.1rem;
}
@media (min-width: 48.0625em) {
  .pg-credit__id {
    font-size: 1.2rem;
  }
}
.pg-credit__price {
  font-size: 1.8rem;
  font-weight: bold;
}
.pg-credit__price small {
  font-size: 1rem;
  font-weight: normal;
}
@media (min-width: 48.0625em) {
  .pg-credit__price {
    font-size: 2rem;
  }
}
.pg-credit__link {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  height: 36px;
  margin-top: 16px;
  background-color: var(--bgc, transparent);
  transition-property: color, border-color, background-color;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
}
.pg-credit__link a {
  color: var(--clr);
}
.pg-credit__link a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (min-width: 48.0625em) {
  .pg-credit__link {
    height: 48px;
  }
}

.pg-details {
  padding: 56.8px 0 36px;
  background: transparent url("/static/full/andperse/feature/motion-install/img/details-bg@sp@2x.jpg") center center no-repeat;
  background-size: cover;
}
@media (min-width: 48.0625em) {
  .pg-details {
    padding: 86.4px 0 96px;
    background-image: url("/static/full/andperse/feature/motion-install/img/details-bg@pc@2x.jpg");
  }
}
.pg-details__container {
  width: calc(100% - max(0px, 5.5555555556vw) * 2);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.pg-details__header {
  text-align: center;
}
.pg-details__heading {
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: -0.02em;
}
@media (min-width: 48.0625em) {
  .pg-details__heading {
    font-size: 4.8rem;
  }
}
.pg-details__lead {
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  font-weight: bold;
  margin-top: 32px;
}
@media (min-width: 48.0625em) {
  .pg-details__lead {
    font-size: 3.2rem;
  }
}
.pg-details__content {
  margin-top: 48px;
}
@media (min-width: 48.0625em) {
  .pg-details__content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-top: 80px;
  }
}
.pg-details__mov {
  flex: 1;
  position: relative;
  border: 1px solid #fff;
  aspect-ratio: 1/1;
  overflow: hidden;
  max-width: 540px;
}
.pg-details__mov video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  object-fit: cover;
}
.pg-details__list {
  flex: 1;
  padding: 20px 0;
  display: grid;
  gap: 4px;
  counter-reset: item-counter;
}
@media (min-width: 48.0625em) {
  .pg-details__list {
    padding: 40px 0;
    gap: 8px;
  }
}
.pg-details__item {
  counter-increment: item-counter;
  background-color: #fff;
  padding: 24px;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.pg-details__item::before {
  content: counter(item-counter, decimal-leading-zero);
  color: #47b3e8;
  font-size: 1.4rem;
}
@media (min-width: 48.0625em) {
  .pg-details__item {
    font-size: 2rem;
    padding: 40px;
    align-items: center;
  }
  .pg-details__item::before {
    font-size: 1.8rem;
  }
}

.pg-items {
  margin-top: 28.4px;
  padding-bottom: 48px;
  counter-reset: item-counter;
}
@media (min-width: 48.0625em) {
  .pg-items {
    margin-top: 48px;
    padding-bottom: 128px;
  }
}
.pg-items__container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.pg-items__grid {
  display: grid;
  gap: 32px 0;
}
@media (min-width: 48.0625em) {
  .pg-items__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 88px;
  }
}
.pg-items__cell {
  position: relative;
}
@media (min-width: 48.0625em) {
  .pg-items__cell::after {
    content: "#" counter(item-counter, decimal-leading-zero);
    position: absolute;
    font-size: 4rem;
    font-weight: bold;
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
  }
}
.pg-items__cell:nth-of-type(odd) {
  --type: odd;
}
.pg-items__cell:nth-of-type(odd).pg-item__img::before {
  left: 0;
  transform: translateX(-100%);
}
.pg-items__cell:nth-of-type(even) {
  --type: even;
}
.pg-items__cell:nth-of-type(2n) .pg-item {
  flex-direction: row-reverse;
}

.pg-item {
  counter-increment: item-counter;
}
@media (min-width: 48.0625em) {
  .pg-item {
    display: flex;
  }
  .pg-item > div {
    width: 50%;
  }
}
@container style(--type: odd) {
  .pg-item .pg-item__img::before {
    left: 0;
    transform: translateX(-100%);
  }
}
@container style(--type: even) {
  .pg-item .pg-item__img::before {
    right: 0;
    transform: translateX(100%);
  }
}
.pg-item .pg-credit {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.pg-item .pg-credit:not(.is-coming-soon) .pg-credit__link {
  --clr: #000;
}
@media (min-width: 48.0625em) {
  .pg-item .pg-credit:not(.is-coming-soon) .pg-credit__link:hover {
    --clr: #fff;
    --bgc: #000;
  }
}
.pg-item__content {
  padding: 32px 4vw;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48.0625em) {
  .pg-item__content {
    padding: 56px 4vw;
    display: flex;
    align-items: center;
  }
}
.pg-item__img {
  position: relative;
}
.pg-item__img::before {
  content: "";
  display: block;
  width: calc(50vw - 100%);
  background-color: var(--bgc, #f8f7fa);
  position: absolute;
  top: 0;
  height: 100%;
}
.pg-item__img::after {
  content: "#" counter(item-counter, decimal-leading-zero);
  position: absolute;
  font-size: 3.2rem;
  font-weight: bold;
  right: 4vw;
  bottom: 0;
  transform: translateY(50%);
}
@media (min-width: 48.0625em) {
  .pg-item__img::after {
    content: unset;
  }
}
.pg-item__img img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}/*# sourceMappingURL=index.css.map */