.c-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;
}
.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: -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;
  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);
  -webkit-transition-property: color, background-color;
  transition-property: color, 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;
}
@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: -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;
  width: var(--w, -webkit-fit-content);
  width: var(--w, -moz-fit-content);
  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);
  -webkit-transition-property: color, background-color;
  transition-property: color, 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;
  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: -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;
  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);
  -webkit-transition-property: color, background-color;
  transition-property: color, 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;
  max-width: var(--maw, 56px);
  width: 100%;
  -ms-flex-negative: 0;
      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;
    -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;
  }
  .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: -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;
}
.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;
  }
}

.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;
  }
}

.feature-rain-wear {
  color: #000;
  padding-bottom: 64px;
}
.feature-rain-wear a {
  -webkit-transition: inherit;
  transition: inherit;
}
@media (min-width: 48.0625em) {
  .feature-rain-wear {
    padding-bottom: 160px;
  }
}

.pg-introduction {
  padding: 40px 0;
}
@media (min-width: 48.0625em) {
  .pg-introduction {
    padding: 60px 0;
  }
}
.pg-introduction__inner {
  max-width: clamp(30px, 84%, 720px);
  margin-left: auto;
  margin-right: auto;
}
.pg-introduction__richtext p {
  font-weight: bold;
  line-height: 1.8;
  font-size: 1.3rem;
}
@media (min-width: 48.0625em) {
  .pg-introduction__richtext p {
    font-size: 1.6rem;
  }
}
.pg-introduction .c-buttons {
  margin-top: 32px;
}
@media (min-width: 48.0625em) {
  .pg-introduction .c-buttons {
    margin-top: 48px;
  }
}
.pg-introduction .c-stroke-button {
  font-size: 1.6rem;
  --maw: 280px;
  --bdr: 3px;
}
@media (min-width: 48.0625em) {
  .pg-introduction .c-stroke-button {
    --maw: 400px;
  }
}

.pg-functions {
  margin-top: 48px;
}
@media (min-width: 48.0625em) {
  .pg-functions {
    margin-top: 88px;
  }
}
.pg-functions__container {
  max-width: clamp(20px, 90%, 1112px);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48.0625em) {
  .pg-functions__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(32px, 4.5714285714vw, 64px);
  }
}
.pg-functions__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid #000;
}
@media (max-width: 48em) {
  .pg-functions__content {
    padding: 20px 0;
  }
  .pg-functions__content.is-active .pg-functions__trigger::after {
    -webkit-transform: translateY(25%) rotate(315deg);
            transform: translateY(25%) rotate(315deg);
  }
}
@media (min-width: 48.0625em) {
  .pg-functions__content {
    padding-bottom: 32px;
  }
}
.pg-functions__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 48em) {
  .pg-functions__header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 48.0625em) {
  .pg-functions__header {
    height: 90px;
  }
}
.pg-functions__logo--green-material {
  width: 104px;
}
.pg-functions__logo--energy {
  width: 65px;
}
.pg-functions__logo--solotex {
  width: 102px;
}
@media (min-width: 48.0625em) {
  .pg-functions__logo--green-material {
    width: 138px;
  }
  .pg-functions__logo--energy {
    width: 86px;
  }
  .pg-functions__logo--solotex {
    width: 142px;
  }
}
.pg-functions__trigger {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #e2e2e2;
}
.pg-functions__trigger::after {
  content: "";
  --size: 8px;
  --clr: #000;
  --bdrw: 1px;
  display: block;
  width: var(--size, 8px);
  height: var(--size, 8px);
  border-top: var(--bdrw, 1px) solid var(--clr, #000);
  border-right: var(--bdrw, 1px) solid var(--clr, #000);
  -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;
  inset: 0;
  position: absolute;
  margin: auto;
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
}
@media (min-width: 48.0625em) {
  .pg-functions__trigger {
    display: none;
  }
}
.pg-functions__text {
  font-size: 1.2rem;
  line-height: 1.6;
}
.pg-functions__text p {
  padding-top: 20px;
}
.pg-functions__text b {
  font-weight: bold;
  display: block;
  margin-bottom: 12px;
}
@media (max-width: 48em) {
  .pg-functions__text {
    height: 0;
    -webkit-animation: accordion-close 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
            animation: accordion-close 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
    overflow: hidden;
  }
  .is-active .pg-functions__text {
    -webkit-animation: accordion-open 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
            animation: accordion-open 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  }
}
@media (min-width: 48.0625em) {
  .pg-functions__text {
    font-size: 1.4rem;
  }
  .pg-functions__text p {
    padding-top: 32px;
  }
  .pg-functions__text b {
    margin-bottom: 16px;
  }
}

.pg-anchor-navi {
  background-color: #f2f2f2;
  margin-top: 64px;
}
@media (min-width: 48.0625em) {
  .pg-anchor-navi {
    margin-top: 96px;
  }
}
.pg-anchor-navi__inner {
  max-width: clamp(30px, 84%, 1200px);
  margin-left: auto;
  margin-right: auto;
}
.pg-anchor-navi__items {
  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-anchor-navi__item {
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 240px;
  height: 128px;
  gap: 12px;
  -webkit-transition: background-color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: background-color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.pg-anchor-navi__item img {
  -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;
}
.pg-anchor-navi__item a {
  font-size: 2rem;
  font-weight: bold;
}
.pg-anchor-navi__item a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (min-width: 48.0625em) {
  .pg-anchor-navi__item a {
    font-size: 2.4rem;
  }
}
.pg-anchor-navi__item::after {
  content: "";
  --size: 7px;
  --clr: #000;
  --bdrw: 1px;
  display: block;
  width: var(--size, 7px);
  height: var(--size, 7px);
  border-top: var(--bdrw, 1px) solid var(--clr, #000);
  border-right: var(--bdrw, 1px) solid var(--clr, #000);
  -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;
  border-width: 1px;
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
}
@media (min-width: 48.0625em) {
  .pg-anchor-navi__item {
    max-width: 300px;
  }
  .pg-anchor-navi__item::after {
    width: 10px;
    height: 10px;
  }
  .pg-anchor-navi__item:hover {
    background-color: #e2e2e2;
  }
}

.pg-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.pg-section + .pg-section {
  border-top: 1px solid #ddd;
}
@media (min-width: 48.0625em) {
  .pg-section {
    padding-top: 120px;
    padding-bottom: 128px;
  }
}
.pg-section__container .c-stroke-button {
  font-size: 1.6rem;
  --maw: 280px;
  --bdr: 3px;
}
@media (min-width: 48.0625em) {
  .pg-section__container .c-stroke-button {
    --maw: 400px;
  }
}
.pg-section__content {
  padding-bottom: 60px;
}
.pg-section__content:not(:first-child) {
  margin-top: 40px;
}
@media (min-width: 48.0625em) {
  .pg-section__content {
    padding-bottom: 80px;
  }
  .pg-section__content:not(:first-child) {
    margin-top: 60px;
  }
}

.pg-section-header {
  width: calc(100% - max(0px, 8.3333333333vw) * 2);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.pg-section-header + * {
  margin-top: 32px;
}
@media (min-width: 48.0625em) {
  .pg-section-header + * {
    margin-top: 64px;
  }
}
.pg-section-header__heading {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 48.0625em) {
  .pg-section-header__heading {
    font-size: 4rem;
  }
}
.pg-section-header__richtext {
  margin-top: 40px;
}
.pg-section-header__richtext p {
  font-size: 1.3rem;
}
@media (min-width: 48.0625em) {
  .pg-section-header__richtext {
    margin-top: 60px;
  }
  .pg-section-header__richtext p {
    font-size: 1.6rem;
  }
}
.pg-section-header__note {
  font-size: 1rem;
}
.pg-section-header__note:not(:first-child) {
  margin-top: 4px;
}
@media (min-width: 48.0625em) {
  .pg-section-header__note {
    font-size: 1.2rem;
  }
}

@media (max-width: 48em) {
  .pg-product:not(:first-child) {
    margin-top: 64px;
  }
}
@media (min-width: 48.0625em) {
  .pg-product:not(:first-child) {
    margin-top: 80px;
  }
  .pg-product:nth-child(2n) .pg-product__slider .swiper-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.pg-product__mv {
  width: 100%;
}
@media (min-width: 48.0625em) {
  .pg-product__mv {
    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;
  }
}
@media (min-width: 48.0625em) {
  .pg-product__slider .swiper-slide:nth-child(1) {
    -webkit-box-flex: 1.67657993;
        -ms-flex: 1.67657993;
            flex: 1.67657993;
  }
  .pg-product__slider .swiper-slide:nth-child(2) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.pg-product__img {
  position: relative;
  z-index: 2;
}
@media (max-width: 48em) {
  .pg-product__img {
    margin-top: -20px;
    max-width: clamp(30px, 84%, 1200px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 48.0625em) {
  .pg-product__img {
    width: 50%;
  }
}
.pg-product__content {
  width: calc(100% - max(0px, 8.3333333333vw) * 2);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 48em) {
  .pg-product__content {
    margin-top: 30px;
  }
}
@media (min-width: 48.0625em) {
  .pg-product__content {
    display: grid;
    grid-template-columns: 1fr clamp(330px, 30%, 370px);
    grid-template-rows: auto 1fr;
    grid-gap: 24px 5%;
    margin-top: 40px;
  }
}
.pg-product__header {
  line-height: 1.2;
}
.pg-product__title {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: 48.0625em) {
  .pg-product__title {
    font-size: 1.8rem;
  }
}
.pg-product__functions {
  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;
  gap: 4px;
  margin-top: 24px;
}
.pg-product__function {
  height: 32px;
  padding: 0 12px;
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f2f2f2;
}
.pg-product__note {
  font-size: 1rem;
}
.pg-product__note:not(:first-child) {
  margin-top: 12px;
}
.pg-product__richtext {
  grid-column: 2/3;
  grid-row: 1/3;
  font-size: 1.3rem;
}
@media (max-width: 48em) {
  .pg-product__richtext {
    padding: 24px 0;
  }
}
@media (min-width: 48.0625em) {
  .pg-product__richtext {
    font-size: 1.4rem;
  }
}

.pg-credits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-gap: 12px 20px;
}

.pg-credit__heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.pg-credit__items {
  border-top: 1px solid #ccc;
}
.pg-credit__item {
  position: relative;
  padding-right: 80px;
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 48em) {
  .pg-credit__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 48.0625em) {
  .pg-credit__item {
    padding: 16px 0 12px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.pg-credit__title {
  font-size: 1.2rem;
  font-weight: bold;
}
@media (min-width: 48.0625em) {
  .pg-credit__title {
    font-size: 1.3rem;
  }
}
.pg-credit__text {
  font-size: 1.2rem;
}
.pg-credit__text small {
  font-size: 1rem;
}
@media (min-width: 48.0625em) {
  .pg-credit__text {
    font-size: 1.3rem;
  }
  .pg-credit__text small {
    font-size: 1.1rem;
  }
}
.pg-credit .c-buy-button {
  --maw: fit-content;
  --bdr: 3px;
  --bgc: #14264a;
  --bgc-h: #58c6e5;
  padding: 0 20px;
}
.pg-credit .c-buy-button.is-coming-soon {
  --bgc: #a0a0a0;
  --bdc: #a0a0a0;
  pointer-events: none;
}
.pg-credit .c-buy-button.is-coming-soon a {
  display: none;
}
.pg-credit .c-buy-button.is-coming-soon::after {
  content: "Coming soon";
}
@media (max-width: 48em) {
  .pg-credit .c-buy-button {
    --maw: 100%;
    --h: 40px;
  }
}
@media (min-width: 48.0625em) {
  .pg-credit .c-buy-button {
    --h: 30px;
    --maw: fit-content;
  }
  .pg-credit .c-buy-button:hover {
    color: #fff;
    border-color: #58c6e5;
  }
}

.pg-banner {
  margin-top: 100px;
}
@media (min-width: 48.0625em) {
  .pg-banner {
    margin-top: 160px;
  }
}
.pg-banner__inner {
  max-width: clamp(30px, 84%, 1320px);
  margin-left: auto;
  margin-right: auto;
}/*# sourceMappingURL=common.css.map */