@charset "UTF-8";
.c-icon-button {
  position: absolute;
  bottom: clamp(0.5rem, calc(16 / var(--content-base-width, 1440) * 100vw), 1rem);
  width: 48px;
  height: 48px;
  z-index: 10;
  display: grid;
  align-items: center;
  justify-items: center;
  transition-property: opacity;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
}
.c-icon-button::before, .c-icon-button::after {
  content: "";
  width: 32px;
  height: 32px;
  display: block;
  grid-area: 1/-1;
  transition-property: opacity, visibility;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
}
.c-icon-button[data-type=plus] {
  right: clamp(0.5rem, calc(16 / var(--content-base-width, 1440) * 100vw), 1rem);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
}
.c-icon-button[data-type=plus]::before {
  background: transparent url("/public/assets/img/svg/icons/plus-icon-default.svg") center center no-repeat;
  background-size: contain;
}
.c-icon-button[data-type=plus]::after {
  background: transparent url("/public/assets/img/svg/icons/plus-icon-hover.svg") center center no-repeat;
  background-size: contain;
}
.c-icon-button[data-type=plus].is-active {
  transform: rotate(135deg);
}
.c-icon-button[data-type=plus].is-active::before {
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 48.0625em) {
  .c-icon-button[data-type=plus]:hover::before {
    opacity: 0;
    visibility: hidden;
  }
  .c-icon-button[data-type=plus]:not(:hover, .is-active)::after {
    opacity: 0;
    visibility: hidden;
  }
}
.c-icon-button[data-type=volume] {
  right: clamp(0.5rem, calc(16 / var(--content-base-width, 1440) * 100vw), 1rem);
}
.c-icon-button[data-type=volume]::before {
  background: transparent url("/public/assets/img/svg/icons/volume-icon-off.svg") center center no-repeat;
  background-size: contain;
}
.c-icon-button[data-type=volume]::after {
  background: transparent url("/public/assets/img/svg/icons/volume-icon-on.svg") center center no-repeat;
  background-size: contain;
}
.c-icon-button[data-type=volume].is-muted::after {
  opacity: 0;
  visibility: hidden;
}
.c-icon-button[data-type=volume]:not(.is-muted)::before {
  opacity: 0;
  visibility: hidden;
}
.c-icon-button[data-type=volume]:hover {
  cursor: pointer;
}
.c-icon-button[data-type=volume]:not(:hover) {
  opacity: 0.5;
}
.c-icon-button[data-type=expand] {
  left: clamp(0.5rem, calc(16 / var(--content-base-width, 1440) * 100vw), 1rem);
}
.c-icon-button[data-type=expand]::before {
  background: transparent url("/public/assets/img/svg/icons/expand-icon-default.svg") center center no-repeat;
  background-size: contain;
}
.c-icon-button[data-type=expand]::after {
  background: transparent url("/public/assets/img/svg/icons/expand-icon-hover.svg") center center no-repeat;
  background-size: contain;
}
.c-icon-button[data-type=expand]:hover {
  cursor: pointer;
}
.c-icon-button[data-type=expand]:not(:hover) {
  opacity: 0.5;
}
@media (max-width: 48em) {
  .c-icon-button[data-type=expand] {
    display: none;
  }
}

html[data-env=LOCAL] :focus {
  outline: 3px solid red !important;
}

.collection-ski-fw26 {
  --content-min-margin: 16;
  --min: 20px;
  background-color: #f7f7f7;
  color: #000;
  position: relative;
}
@media (min-width: 48.0625em) {
  .collection-ski-fw26 .swiper:hover .swiper-button {
    opacity: 1;
    visibility: visible;
  }
}
.collection-ski-fw26 .swiper-slide img {
  width: 100%;
}
.collection-ski-fw26 .swiper-button {
  position: absolute;
  width: 44px;
  height: 44px;
  top: 50%;
  outline: none;
  transform: translateY(-50%);
  z-index: 100;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
}
.collection-ski-fw26 .swiper-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}
.collection-ski-fw26 .swiper-button::after {
  content: "";
  --size: 8px;
  --bdw: 1px;
  --clr: #000;
  display: block;
  width: var(--size);
  height: var(--size);
  border-top: var(--bdw) solid var(--clr);
  border-right: var(--bdw) solid var(--clr);
  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;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.collection-ski-fw26 .swiper-button-prev {
  left: min(2%, 14px);
}
.collection-ski-fw26 .swiper-button-prev::after {
  transform: translateX(25%) rotate(-135deg);
}
.collection-ski-fw26 .swiper-button-next {
  right: min(2%, 14px);
}
.collection-ski-fw26 .swiper-button-next::after {
  transform: translateX(-25%) rotate(45deg);
}
@media (max-width: 48em) {
  .collection-ski-fw26 .swiper-button {
    display: none;
  }
}
@media (min-width: 48.0625em) {
  .collection-ski-fw26 .swiper-button::before {
    width: 32px;
    height: 32px;
  }
  .collection-ski-fw26 .swiper-button:hover {
    cursor: pointer;
  }
}
.collection-ski-fw26 .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  z-index: 100;
  bottom: 0;
}
.collection-ski-fw26 .swiper-pagination-bullet {
  display: block;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  outline: none;
  opacity: 1;
}
.collection-ski-fw26 .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin: 0 0 0 12px;
}
.collection-ski-fw26 .swiper-pagination-bullet-active {
  background-color: #000;
}
.collection-ski-fw26 .swiper-pagination-fraction {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.125rem 0.5rem;
  gap: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  font-size: 0.8125rem;
  line-height: 150%;
  /* 19.5px */
}
@media (max-width: 48em) {
  .collection-ski-fw26 .pg-buttons {
    order: 5;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 48.0625em) {
  .collection-ski-fw26 .pg-buttons {
    justify-content: center;
  }
}
.collection-ski-fw26 .pg-fill-button {
  height: 56px;
}
@media (min-width: 48.0625em) {
  .collection-ski-fw26 .pg-fill-button {
    max-width: 560px;
    height: 80px;
  }
}

.js-follow-area {
  position: relative;
}

.pg-header-follow-link {
  --sp-top: calc(var(--header-height) + 20px);
  --pc-top: calc(var(--header-height) + 30px);
}
.header-fixed .pg-header-follow-link {
  --sp-top: calc(var(--header-fixed-height) + 20px);
  --pc-top: calc(var(--header-fixed-height) + 30px);
}
.pg-header-follow-link {
  position: absolute;
  top: var(--fixed-header-height);
  right: 0;
  font-size: clamp(1rem, calc(20 / var(--content-base-width, 1440) * 100vw), 1.25rem);
  padding: clamp(1.25rem, calc(40 / var(--content-base-width, 1440) * 100vw), 2.5rem) max(var(--content-min-margin, 24) * 1px, var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw);
  mix-blend-mode: difference;
  color: #fff;
  z-index: 500;
  transition-property: opacity, visibility;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
  line-height: 1.3;
  opacity: 0;
  visibility: hidden;
}
.pg-header-follow-link a {
  text-decoration: underline;
}
.pg-header-follow-link a:hover {
  text-decoration: none;
}
.pg-header-follow-link.is-fixed-start {
  position: fixed;
  top: var(--fixed-header-height);
  opacity: 1;
  visibility: visible;
}
.pg-header-follow-link.is-fixed-end {
  opacity: 0;
  visibility: hidden;
}

.pg-mv {
  position: relative;
}
.pg-mv.is-loaded .pg-mv__img {
  opacity: 0;
  visibility: hidden;
}
.pg-mv__mov {
  position: relative;
}
.pg-mv__mov video {
  display: block;
  aspect-ratio: 9/16;
  width: 100%;
  height: auto;
}
@media (min-width: 48.0625em) {
  .pg-mv__mov video {
    aspect-ratio: 16/9;
  }
}
.pg-mv__img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition-property: opacity, visibility;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
}
.pg-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pg-local-header {
  padding-block: clamp(3.5rem, calc(80 / var(--content-base-width, 1440) * 100vw), 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);
}
.pg-local-header__heading {
  font-size: clamp(2.5rem, calc(48 / var(--content-base-width, 1440) * 100vw), 3rem);
  line-height: 1.1;
  font-weight: normal;
  text-align: center;
}
.pg-local-header__buttons {
  margin-top: clamp(1.75rem, calc(40 / var(--content-base-width, 1440) * 100vw), 2.5rem);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.875rem, calc(32 / var(--content-base-width, 1440) * 100vw), 2rem);
}
@media (max-width: 48em) {
  .pg-local-header__buttons {
    flex-direction: column;
  }
}
.pg-local-header .c-stroke-button {
  --w: 220px;
  --bgc: #f7f7f7;
  margin: 0;
}

.pg-header-navi__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, calc(32 / var(--content-base-width, 1440) * 100vw), 2rem);
  margin-top: clamp(1.5rem, calc(48 / var(--content-base-width, 1440) * 100vw), 3rem);
}
.pg-header-navi__item {
  font-size: 1rem;
  line-height: 1.2;
}
.pg-header-navi__item a {
  text-decoration: underline;
}
.pg-header-navi__item a:hover {
  text-decoration: none;
}
.pg-header-navi__item.is-current {
  color: #000;
}
.pg-header-navi__item.is-coming-soon {
  color: #ccc;
}
.pg-header-navi__item.is-coming-soon a {
  pointer-events: none;
}
@media (min-width: 48.0625em) {
  .pg-header-navi__item {
    font-size: 1.25rem;
  }
}

.pg-early-order {
  position: relative;
  background-color: #d5dce2;
  padding: clamp(3rem, calc(80 / var(--content-base-width, 1440) * 100vw), 5rem) clamp(1.5rem, calc(64 / var(--content-base-width, 1440) * 100vw), 4rem);
  border-radius: 0.5rem;
  container-type: inline-size;
  container-name: early-order;
  --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);
  display: flex;
  justify-content: center;
}
@media (max-width: 48em) {
  .pg-early-order .pg-early-order__content {
    flex-direction: column;
  }
}
@media (min-width: 48.0625em) {
  .pg-early-order:hover .pg-early-order__button {
    background-color: #000;
    color: #fff;
  }
}
.pg-early-order__inner {
  display: grid;
  gap: clamp(1rem, calc(48 / var(--content-base-width, 1440) * 100vw), 3rem);
}
@media (min-width: 48.0625em) {
  .pg-early-order__inner {
    grid-template-columns: max-content 1fr;
  }
}
.pg-early-order__header {
  font-size: clamp(1.25rem, calc(24 / var(--content-base-width, 1440) * 100vw), 1.5rem);
  font-weight: bold;
  text-align: center;
}
@media (min-width: 48.0625em) {
  .pg-early-order__header {
    text-align: left;
  }
}
.pg-early-order__content {
  display: flex;
  gap: 1.5rem;
}
@container early-order (max-width: 976px) {
  .pg-early-order__content {
    flex-direction: column;
  }
}
.pg-early-order__text {
  font-size: clamp(0.75rem, calc(16 / var(--content-base-width, 1440) * 100vw), 1rem);
  line-height: 2;
}
.pg-early-order__button {
  color: inherit;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  gap: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 2px solid #000;
  font-size: clamp(0.75rem, calc(14 / var(--content-base-width, 1440) * 100vw), 0.875rem);
  flex-shrink: 0;
  border-radius: 24px;
  padding-inline: 2rem;
  transition-property: color, background-color;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
}
.pg-early-order__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 48em) {
  .pg-early-order__button {
    width: 100%;
    margin: auto;
    justify-content: center;
  }
}

.pg-leadtext {
  margin-top: 32px;
  font-size: 0.75rem;
}
.pg-leadtext strong {
  font-weight: bold;
  font-size: 0.875rem;
}
.pg-leadtext a {
  text-decoration: underline;
}
.pg-leadtext a:hover {
  text-decoration: none;
}
@media (min-width: 48.0625em) {
  .pg-leadtext {
    margin-top: 48px;
    font-size: 0.875rem;
  }
  .pg-leadtext strong {
    font-size: 1rem;
  }
}

.pg-products {
  position: relative;
  overflow: hidden;
  --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);
  margin-top: 4rem;
}
:is(.pg-products, .pg-styles) + .pg-products {
  margin-top: clamp(6rem, calc(200 / var(--content-base-width, 1440) * 100vw), 12.5rem);
}
.pg-products__header {
  padding-bottom: 1rem;
  margin-bottom: clamp(1rem, calc(64 / var(--content-base-width, 1440) * 100vw), 4rem);
  border-bottom: 1px solid #000;
}
.pg-products__heading {
  font-weight: normal;
  font-size: clamp(1.25rem, calc(24 / var(--content-base-width, 1440) * 100vw), 1.5rem);
}

.pg-product {
  background-color: #f7f7f7;
}
.pg-product.is-image-left .pg-product__container {
  flex-direction: row;
}
.pg-product.is-image-left .pg-product__content {
  padding-left: max(var(--content-min-margin, 24) * 1px, var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw);
}
.pg-product.is-image-right .pg-product__container {
  flex-direction: row-reverse;
}
.pg-product.is-image-right .pg-product__content {
  padding-right: max(var(--content-min-margin, 24) * 1px, var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw);
}
.pg-product + .pg-product {
  margin-top: clamp(2.5rem, calc(80 / var(--content-base-width, 1440) * 100vw), 5rem);
  padding-top: clamp(2.5rem, calc(80 / var(--content-base-width, 1440) * 100vw), 5rem);
}
@media (max-width: 48em) {
  .pg-product {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 48em) {
  .pg-product__container {
    display: contents;
  }
}
@media (min-width: 48.0625em) {
  .pg-product__container {
    display: flex;
    align-items: center;
  }
}
.pg-product__slider {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 48em) {
  .pg-product__slider {
    order: 2;
    margin-top: 20px;
  }
}
@media (min-width: 48.0625em) {
  .pg-product__slider {
    width: 50%;
  }
}
.pg-product__slides {
  display: flex;
}
.pg-product__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: auto 720/1080;
}
.pg-product__img {
  position: relative;
}
.pg-product__img::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.15));
}
.pg-product__content {
  padding-block: 80px;
}
@media (max-width: 48em) {
  .pg-product__content {
    display: contents;
  }
}
@media (min-width: 48.0625em) {
  .pg-product__content {
    width: 50%;
  }
}
@media (max-width: 48em) {
  .pg-product__header {
    order: 1;
    width: 100%;
  }
}
.pg-product__title {
  font-size: clamp(1.75rem, calc(40 / var(--content-base-width, 1440) * 100vw), 2.5rem);
  line-height: 1.1;
  font-weight: normal;
}
.pg-product__title small {
  font-size: clamp(1.25rem, calc(28 / var(--content-base-width, 1440) * 100vw), 1.75rem);
  display: inline-block;
  line-height: 1.4;
}
@media (min-width: 48.0625em) {
  .pg-product__title small {
    display: block;
  }
}
.pg-product__credits {
  margin-top: 2.5rem;
}
@media (max-width: 48em) {
  .pg-product__credits {
    order: 5;
  }
}
.pg-product__credit {
  font-size: 0.8125rem;
  line-height: 1.4;
}
.pg-product__credit small {
  font-size: 0.625rem;
}
.pg-product__title + .pg-product__credit {
  margin-top: 8px;
}
@media (min-width: 48.0625em) {
  .pg-product__title + .pg-product__credit {
    margin-top: 20px;
  }
}
.pg-product__credit + .pg-product__credit {
  margin-top: 24px;
}
.pg-product__credit-title {
  font-size: 0.9375rem;
}
.pg-product__credit-price {
  font-size: 0.8125rem;
  margin-top: 4px;
}
.pg-product__credit-price small {
  font-size: 0.625rem;
}
.pg-product__credit-link {
  font-size: 0.9375rem;
}
.pg-product__credit-link a {
  text-decoration: underline;
}
.pg-product__credit-link a:hover {
  text-decoration: none;
}
.pg-product__credit-link.is-coming-soon {
  display: none;
}
.pg-product__richtext {
  font-size: clamp(0.875rem, calc(15 / var(--content-base-width, 1440) * 100vw), 0.9375rem);
  line-height: 2;
}
@media (max-width: 48em) {
  .pg-product__richtext {
    order: 3;
    padding-top: 40px;
  }
}
@media (min-width: 48.0625em) {
  .pg-product__richtext {
    margin-top: 40px;
  }
}
@media (max-width: 48em) {
  .pg-product .pg-product-gallery {
    order: 4;
    margin-top: 40px;
  }
}
.pg-product .pg-fill-button {
  height: 56px;
  border-radius: 56px;
}
.pg-product .pg-fill-button.is-coming-soon {
  display: none;
}
@media (min-width: 48.0625em) {
  .pg-product .pg-fill-button {
    max-width: 200px;
  }
}

.pg-buy-buttons {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.75rem;
  margin-top: 32px;
  order: 4;
}
@media (max-width: 48em) {
  .pg-buy-buttons {
    flex-direction: column;
  }
}

.pg-styles {
  margin-top: 32px;
}
.pg-styles:not(:last-child) {
  padding-bottom: 64px;
}
@media (min-width: 48.0625em) {
  .pg-styles {
    margin-top: 160px;
  }
  .pg-styles:not(:last-child) {
    padding-bottom: 100px;
  }
}
@media (min-width: 48.0625em) {
  .pg-styles__container {
    --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);
  }
}
.pg-styles__header {
  text-align: center;
}
.pg-styles__heading {
  font-size: 1.25rem;
  font-weight: normal;
}
@media (min-width: 48.0625em) {
  .pg-styles__heading {
    font-size: 1.75rem;
  }
}
.pg-styles__content {
  margin-top: 24px;
}
@media (min-width: 48.0625em) {
  .pg-styles__content {
    margin-top: 64px;
    display: grid;
    gap: 64px 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 48em) {
  .pg-style + .pg-style {
    margin-top: 40px;
  }
}
.pg-style__slider img {
  height: auto;
  aspect-ratio: auto 440/550;
}
.pg-style__content {
  margin-top: 16px;
}
@media (max-width: 48em) {
  .pg-style__content {
    text-align: center;
  }
}
.pg-style__title {
  font-size: 0.9375rem;
}
.pg-style__title:not(:first-child) {
  margin-top: 16px;
}
@media (min-width: 48.0625em) {
  .pg-style__title {
    font-size: 1.125rem;
  }
}
.pg-style__price {
  font-size: 0.75rem;
}
.pg-style__price small {
  font-size: 0.625rem;
}
.pg-style__link + .pg-style__price {
  margin-top: 24px;
}
.pg-style__link {
  font-size: 0.9375rem;
}
.pg-style__link a {
  text-decoration: underline;
}
.pg-style__link a:hover {
  text-decoration: none;
}

.pg-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 60px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48.0625em) {
  .pg-buttons {
    padding: 100px 0;
  }
}

.pg-fill-button {
  position: relative;
  border: 1px solid #000;
  background-color: #000;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: background-color;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
  font-size: 0.875rem;
}
.pg-fill-button a {
  color: #fff;
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
}
.pg-fill-button a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.pg-fill-button--disabled {
  background-color: #fff;
}
.pg-fill-button--disabled::before {
  content: "12月24日(金)発売予定";
  color: #000;
}
.pg-fill-button--disabled a {
  pointer-events: none;
  color: #000;
  display: none;
}
@media (min-width: 48.0625em) {
  .pg-fill-button {
    max-width: 560px;
    height: 80px;
  }
  .pg-fill-button:hover {
    background-color: #fff;
  }
  .pg-fill-button:hover a {
    color: #000;
  }
}

.pg-article {
  background-color: #fff;
  border-radius: 1.5rem;
  padding-block: 5rem;
  max-width: 800px;
  margin-inline: auto;
}
.pg-article__header {
  text-align: center;
  padding-inline: clamp(1.25rem, calc(80 / var(--content-base-width, 1440) * 100vw), 5rem);
  padding-bottom: clamp(3rem, calc(64 / var(--content-base-width, 1440) * 100vw), 4rem);
}
.pg-article__heading {
  font-size: clamp(1.5rem, calc(32 / var(--content-base-width, 1440) * 100vw), 2rem);
}
.pg-article__content {
  margin-top: clamp(3rem, calc(64 / var(--content-base-width, 1440) * 100vw), 4rem);
  padding-inline: clamp(2.5rem, calc(80 / var(--content-base-width, 1440) * 100vw), 5rem);
  line-height: 2;
  font-size: clamp(0.875rem, calc(15 / var(--content-base-width, 1440) * 100vw), 0.9375rem);
}
.pg-article__content > *:not(:first-child) {
  margin-top: var(--stack-space, 2em);
}
.pg-article__content p small {
  font-size: 0.8em;
}
.pg-article__content p a {
  text-decoration: underline;
}
.pg-article__content p a:hover {
  text-decoration: none;
}
.pg-article .c-button {
  --button-h: 3rem;
  --button-fw: normal;
  margin-block: 1em;
}

.pg-footer {
  padding: clamp(4rem, calc(100 / var(--content-base-width, 1440) * 100vw), 6.25rem) max(var(--content-min-margin, 24) * 1px, var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw);
  background-color: #fff;
  margin-top: clamp(4rem, calc(80 / var(--content-base-width, 1440) * 100vw), 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);
  border-radius: 0.625rem;
}
.pg-footer__heading {
  font-size: clamp(1.75rem, calc(40 / var(--content-base-width, 1440) * 100vw), 2.5rem);
  text-align: center;
  line-height: 1.1;
}
.pg-footer__heading span {
  display: inline-block;
}
.pg-footer .pg-header-navi__items {
  margin-top: clamp(1rem, calc(24 / var(--content-base-width, 1440) * 100vw), 1.5rem);
}
.pg-footer .p-buttons {
  margin-top: clamp(1.5rem, calc(40 / var(--content-base-width, 1440) * 100vw), 2.5rem);
}
.pg-footer .c-button {
  --button-w: 100%;
  --button-maw: 320px;
  --button-h: clamp(3.5rem, calc(80 / var(--content-base-width, 1440) * 100vw), 5rem);
  --button-fz: clamp(0.875rem, calc(16 / var(--content-base-width, 1440) * 100vw), 1rem);
  --button-fw: 400;
}

.l-modal#PreOrderModal {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}
.l-modal#PreOrderModal .l-modal__content {
  display: grid;
  --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, -moz-fit-content);
  max-width: var(--content-max-width, fit-content);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}
.l-modal#PreOrderModal .l-modal__content > * {
  grid-area: 1/-1;
}
.l-modal#PreOrderModal .l-modal__close {
  position: sticky;
  width: 44px;
  height: 44px;
  background-color: #000;
  border-radius: 50%;
}
.l-modal#PreOrderModal .l-modal__close::before, .l-modal#PreOrderModal .l-modal__close::after {
  width: 20px;
  height: 2px;
  border-radius: 1px;
}
.l-modal#PreOrderModal .l-modal__close {
  align-self: start;
  justify-self: end;
  top: 20px;
  margin: 20px;
  border: none;
}/*# sourceMappingURL=index.css.map */