@charset "UTF-8";
.c-buy-btn, .c-buy-btn--200, .c-buy-btn--180, .c-buy-btn--160, .c-buy-btn--140, .c-buy-btn--100 {
  padding: 13px 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background-color: #000;
  color: #fff;
  -webkit-transition-property: opacity, background-color, border-color;
  transition-property: opacity, background-color, border-color;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media (min-width: 48.0625em) {
  .c-buy-btn:hover, .c-buy-btn--200:hover, .c-buy-btn--180:hover, .c-buy-btn--160:hover, .c-buy-btn--140:hover, .c-buy-btn--100:hover {
    opacity: 0.65;
  }
}
.c-buy-btn--ja .c-buy-btn__text {
  font-size: 0.8125rem;
}
.c-buy-btn--white {
  background-color: #fff;
  color: #000;
}
.c-buy-btn--white .c-buy-btn__icon svg {
  fill: #000;
}
.c-buy-btn--stroke {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
.c-buy-btn--stroke .c-buy-btn__icon svg {
  fill: #000;
}
.c-buy-btn--not-available {
  background-color: #fff;
  color: #333;
}
.c-buy-btn--not-available a {
  pointer-events: none;
}
@media (min-width: 48.0625em) {
  .c-buy-btn--not-available:hover {
    cursor: unset;
    opacity: 1;
  }
}
.c-buy-btn--coming-soon {
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
}
.c-buy-btn--coming-soon .c-buy-btn__icon svg {
  fill: #333;
}
.c-buy-btn--coming-soon a {
  pointer-events: none;
}
@media (min-width: 48.0625em) {
  .c-buy-btn--coming-soon:hover {
    cursor: unset;
    opacity: 1;
  }
}
@media (min-width: 48.0625em) {
  .c-buy-btn--pc-white {
    background-color: #fff;
    color: #000;
  }
  .c-buy-btn--pc-white .c-buy-btn__icon svg {
    fill: #000;
  }
}
.c-buy-btn__icon svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}
.c-buy-btn__icon + .c-buy-btn__text {
  margin-left: 10px;
}
.c-buy-btn__text {
  font-size: 0.6875rem;
}
.c-buy-btn__text a {
  text-decoration: none;
}
.c-buy-btn__text a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-buy-btn__arrow {
  --size: 7px;
  --bdw: 1px;
  --clr: #fff;
  display: block;
  width: var(--size);
  height: var(--size);
  border-top: var(--bdw) solid var(--clr);
  border-right: var(--bdw) solid var(--clr);
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
.c-buy-btn__arrow .c-buy-btn--white, .c-buy-btn--stroke .c-buy-btn__arrow {
  border-color: #000;
}
@media (min-width: 48.0625em) {
  .c-buy-btn.type-thin, .type-thin.c-buy-btn--200, .type-thin.c-buy-btn--180, .type-thin.c-buy-btn--160, .type-thin.c-buy-btn--140, .type-thin.c-buy-btn--100 {
    padding: 8px 10px;
  }
}
@media (min-width: 48.0625em) {
  .c-buy-btn--100 {
    width: 90%;
    max-width: 100px;
    padding: 8px 10px;
  }
}
@media (min-width: 48.0625em) {
  .c-buy-btn--140 {
    width: 90%;
    max-width: 140px;
  }
}
@media (min-width: 48.0625em) {
  .c-buy-btn--160 {
    width: 90%;
    max-width: 160px;
  }
}
@media (min-width: 48.0625em) {
  .c-buy-btn--180 {
    width: 90%;
    max-width: 180px;
  }
}
@media (min-width: 48.0625em) {
  .c-buy-btn--200 {
    width: 90%;
    max-width: 200px;
    padding: 16px 10px;
  }
}

.p-c3fit-mv {
  overflow: hidden;
  position: relative;
}
.p-c3fit-mv:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid #000;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: circle-loader 1s linear 0s infinite;
          animation: circle-loader 1s linear 0s infinite;
  opacity: 1;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.p-c3fit-mv.ci-bgc--white:before {
  border-top-color: #0d0d0d;
  border-bottom-color: #0d0d0d;
}
.p-c3fit-mv.ci-bgc--black:before {
  border-top-color: #f2f2f2;
  border-bottom-color: #f2f2f2;
}
.p-c3fit-mv__img {
  position: relative;
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
          transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.p-c3fit-mv__info, .p-c3fit-mv__info--right {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
@media (min-width: 48.0625em) {
  .p-c3fit-mv__info, .p-c3fit-mv__info--right {
    width: auto;
    left: 10.7%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: left;
  }
}
.p-c3fit-mv__info--ct {
  top: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 48.0625em) {
  .p-c3fit-mv__info--ct {
    width: 90%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
  }
}
@media (min-width: 48.0625em) {
  .p-c3fit-mv__info--right {
    right: 10.7%;
    left: inherit;
  }
}
.p-c3fit-mv__heading1, .p-c3fit-mv__sub-title, .p-c3fit-mv__description-square {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.p-c3fit-mv__heading1 {
  font-size: 2.25rem;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media (min-width: 48.0625em) {
  .p-c3fit-mv__heading1 {
    font-size: 5.625rem;
    line-height: 1;
  }
}
.p-c3fit-mv__sub-title {
  font-size: 0.6875rem;
  font-weight: bold;
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}
@media (min-width: 48.0625em) {
  .p-c3fit-mv__sub-title {
    font-size: 1.375rem;
    margin-top: 30px;
  }
}
.p-c3fit-mv.is-animated:before {
  opacity: 0;
}
.p-c3fit-mv.is-animated .p-c3fit-mv__img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-c3fit-mv.is-animated .p-c3fit-mv__heading1,
.p-c3fit-mv.is-animated .p-c3fit-mv__sub-title,
.p-c3fit-mv.is-animated .p-c3fit-mv__description-square {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-c3fit-mv__c--black {
  color: #000;
}
.p-c3fit-mv__tb-c--black {
  color: #fff;
}
@media (min-width: 48.0625em) {
  .p-c3fit-mv__tb-c--black {
    color: #000;
  }
}
.p-c3fit-mv__description-square {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.625rem;
  padding: 2px 10px;
  border: 1px solid;
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}
@media (min-width: 48.0625em) {
  .p-c3fit-mv__description-square {
    font-size: 0.9375rem;
  }
}

.feature-outer-23fw {
  background-color: #fff;
}
@media (min-width: 48.0625em) {
  .feature-outer-23fw .swiper:hover .swiper-button {
    opacity: 1;
  }
}
.feature-outer-23fw .swiper-button {
  position: absolute;
  width: 44px;
  height: 44px;
  top: 50%;
  outline: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  margin: auto;
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.feature-outer-23fw .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%;
}
.feature-outer-23fw .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);
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.feature-outer-23fw .swiper-button-prev {
  left: min(2%, 14px);
}
.feature-outer-23fw .swiper-button-prev::after {
  -webkit-transform: translateX(25%) rotate(-135deg);
          transform: translateX(25%) rotate(-135deg);
}
.feature-outer-23fw .swiper-button-next {
  right: min(2%, 14px);
}
.feature-outer-23fw .swiper-button-next::after {
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
@media (max-width: 48em) {
  .feature-outer-23fw .swiper-button {
    display: none;
  }
}
@media (min-width: 48.0625em) {
  .feature-outer-23fw .swiper-button::before {
    width: 32px;
    height: 32px;
  }
  .feature-outer-23fw .swiper-button:hover {
    cursor: pointer;
  }
}
.feature-outer-23fw .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
  z-index: 100;
  bottom: 0;
}
.feature-outer-23fw .swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  outline: none;
  opacity: 1;
}
.feature-outer-23fw .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 12px;
}
.feature-outer-23fw .swiper-pagination-bullet-active {
  background-color: #000;
}

.pg-header-follow-link {
  padding: clamp(1.25rem, 2.2222222222vw, 2rem);
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 0;
  right: 0;
  font-size: clamp(1rem, 1.8055555556vw, 1.625rem);
  opacity: 0;
  visibility: hidden;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  z-index: 200;
  color: #fff;
  mix-blend-mode: difference;
}
.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-header-follow-link a {
  text-decoration: underline;
}
.pg-header-follow-link a:hover {
  text-decoration: none;
}

.pg-introduction {
  padding: 60px 0 60px;
  background-color: #f7f7f7;
}
@media (min-width: 48.0625em) {
  .pg-introduction {
    padding: 120px 0;
  }
}
.pg-introduction__inner {
  --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, 800px);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}
.pg-introduction__heading {
  font-size: clamp(1.5rem, 2.7777777778vw, 2.5rem);
  font-weight: normal;
  line-height: 1.1;
  text-align: center;
}
.pg-introduction__richtext {
  line-height: 2;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
}
.pg-introduction__heading + .pg-introduction__richtext {
  margin-top: 32px;
}
.pg-introduction__richtext p + p {
  margin-top: 12px;
}
@media (min-width: 48.0625em) {
  .pg-introduction__richtext {
    text-align: center;
  }
  .pg-introduction__heading + .pg-introduction__richtext {
    margin-top: 32px;
  }
  .pg-introduction__richtext p + p {
    margin-top: 20px;
  }
}

.p-c3fit-mv {
  overflow: hidden;
}
.p-c3fit-mv::before {
  display: none;
}

.pg-products {
  position: relative;
}
.pg-products + .pg-buttons {
  padding: 32px 0 60px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 48em) {
  .pg-products + .pg-buttons .pg-fill-button {
    background-color: #fff;
  }
  .pg-products + .pg-buttons .pg-fill-button a {
    color: #000;
  }
}
@media (min-width: 48.0625em) {
  .pg-products + .pg-buttons {
    padding: 100px 0;
  }
}

.pg-product {
  padding-bottom: 60px;
}
.pg-product:nth-child(2n+1) {
  background-color: #f7f7f7;
}
.pg-product:last-child {
  padding-bottom: 0;
}
@media (max-width: 48em) {
  .pg-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 40px;
  }
}
@media (min-width: 48.0625em) {
  .pg-product {
    padding-bottom: 160px;
  }
}
@media (max-width: 48em) {
  .pg-product__container {
    display: contents;
  }
}
@media (min-width: 48.0625em) {
  .pg-product__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .pg-product:nth-child(2n+1) .pg-product__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.pg-product__slider {
  width: 100%;
}
@media (max-width: 48em) {
  .pg-product__slider {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
  }
}
@media (min-width: 48.0625em) {
  .pg-product__slider {
    width: 50%;
  }
}
.pg-product__slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pg-product__slide img {
  width: 100%;
}
.pg-product__content {
  padding: 80px 40px;
}
@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 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    --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-product__title {
  font-size: 1.75rem;
  line-height: 1.1;
  font-weight: normal;
}
@media (min-width: 48.0625em) {
  .pg-product__title {
    font-size: 2.5rem;
  }
}
.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__richtext {
  font-size: 0.875rem;
  line-height: 2;
}
@media (max-width: 48em) {
  .pg-product__richtext {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding-top: 40px;
    --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-product__richtext {
    font-size: 0.9375rem;
    margin-top: 40px;
  }
}
@media (max-width: 48em) {
  .pg-product .pg-product-gallery {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 40px;
  }
}
@media (max-width: 48em) {
  .pg-product .pg-buttons {
    margin-top: 32px;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 48.0625em) {
  .pg-product .pg-buttons {
    margin-top: 40px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.pg-product .pg-fill-button {
  height: 56px;
}
@media (min-width: 48.0625em) {
  .pg-product .pg-fill-button {
    max-width: 200px;
  }
}

@media (min-width: 48.0625em) {
  .pg-product-gallery {
    margin-top: 80px;
    max-width: 1600px;
    margin-left: max((100vw - 1600px) / 2, 40px);
    margin-right: max((100vw - 1600px) / 2, 40px);
  }
}
@media (max-width: 48em) {
  .pg-product-gallery {
    width: 100%;
  }
}
@media (min-width: 48.0625em) {
  .pg-product-gallery__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}
.pg-product-gallery__img {
  aspect-ratio: 1/1;
  background-color: #ececec;
}
@media (min-width: 48.0625em) {
  .pg-product-gallery__img {
    margin-right: 4px;
    width: calc(100 / 4 * 1% - 3px);
  }
  .pg-product-gallery__img:nth-child(4n+4) {
    margin-right: 0;
  }
  .pg-product-gallery__img:nth-child(n+5) {
    margin-top: 4px;
  }
}

.pg-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pg-fill-button {
  position: relative;
  border: 1px solid #000;
  background-color: #000;
  width: 100%;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  font-size: 0.9375rem;
}
.pg-fill-button a {
  color: #fff;
  text-decoration: none;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          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-section {
  padding: 60px 0 80px;
}
@media (min-width: 48.0625em) {
  .pg-section {
    padding: 120px 40px;
  }
}
.pg-section__inner {
  max-width: 1600px;
  margin: auto;
}
.pg-section__heading1 {
  font-size: 1.125rem;
  font-weight: normal;
}
@media (min-width: 48.0625em) {
  .pg-section__heading1 {
    font-size: 1.5rem;
  }
}
.pg-section__heading2 {
  font-size: 1.125rem;
  font-weight: normal;
}
@media (min-width: 48.0625em) {
  .pg-section__heading2 {
    font-size: 1.25rem;
  }
}
.pg-section__leadtext {
  line-height: 2;
  font-size: 0.875rem;
}
.pg-section__leadtext p + p {
  margin-top: 20px;
}
@media (min-width: 48.0625em) {
  .pg-section__leadtext {
    max-width: 680px;
    font-size: 0.9375rem;
  }
  .pg-section__heading + .pg-section__leadtext {
    margin-top: 72px;
  }
  .pg-section__leadtext p + p {
    margin-top: 28px;
  }
}

.pg-grid + .pg-grid {
  margin-top: 80px;
}
@media (max-width: 48em) {
  .pg-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 48.0625em) {
  .pg-grid {
    display: grid;
  }
  .pg-grid + .pg-grid {
    margin-top: 120px;
  }
  .pg-grid--3col {
    grid-template-columns: calc((100% - 64px) / 3) 1fr 1fr;
    grid-template-areas: "left center right";
  }
}
@media (max-width: 48em) {
  .pg-grid__cell + .pg-grid__cell {
    margin-top: 28px;
  }
}
@media (min-width: 48.0625em) {
  .pg-grid__cell {
    grid-column-start: var(--col-start);
    grid-column-end: var(--col-end);
  }
  .pg-grid__cell:nth-child(2) {
    margin-left: 32px;
  }
}

.pg-shoplist__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 48em) {
  .pg-shoplist__item {
    width: 100%;
  }
  .pg-shoplist__item + .pg-shoplist__item {
    margin-top: 40px;
  }
}
@media (min-width: 48.0625em) {
  .pg-shoplist__item {
    margin-right: 40px;
    width: calc(100 / 2 * 1% - 20px);
  }
  .pg-shoplist__item:nth-child(2n+2) {
    margin-right: 0;
  }
  .pg-shoplist__item:nth-child(n+3) {
    margin-top: 60px;
  }
}
.pg-shoplist__title {
  font-size: 1rem;
  line-height: 1.8;
}
@media (min-width: 48.0625em) {
  .pg-shoplist__title {
    font-size: 1.125rem;
  }
}
.pg-shoplist__text {
  font-size: 0.8125rem;
  margin-top: 4px;
}
@media (min-width: 48.0625em) {
  .pg-shoplist__text {
    margin-top: 12px;
  }
}
.pg-shoplist__link {
  font-size: 0.8125rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 4px;
}
.pg-shoplist__link a {
  text-decoration: none;
}
.pg-shoplist__link::after {
  content: "";
  --size: 6px;
  --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);
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  margin-left: 4px;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
.pg-shoplist__link:hover a {
  text-decoration: underline;
}
@media (min-width: 48.0625em) {
  .pg-shoplist__link {
    margin-top: 12px;
  }
}

@media (min-width: 48.0625em) {
  .pg-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 48.0625em) {
  .pg-profile__img {
    max-width: 360px;
  }
}
@media (max-width: 48em) {
  .pg-profile__info {
    margin-top: 28px;
  }
}
@media (min-width: 48.0625em) {
  .pg-profile__info {
    margin-left: 50px;
  }
}
.pg-profile__title {
  font-size: 0.875rem;
  font-weight: bold;
}
@media (min-width: 48.0625em) {
  .pg-profile__title {
    font-size: 0.9375rem;
  }
}
.pg-profile__text {
  font-size: 0.8125rem;
  line-height: 1.8;
  max-width: 400px;
}
.pg-profile__text + .pg-profile__text {
  margin-top: 20px;
}
.pg-profile__text a {
  text-decoration: underline;
}
@media (min-width: 48.0625em) {
  .pg-profile__text {
    font-size: 0.875rem;
  }
  .pg-profile__text + .pg-profile__text {
    margin-top: 24px;
  }
}/*# sourceMappingURL=index.css.map */