@layer component {
  .c-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: var(--button-items, center);
        -ms-flex-align: var(--button-items, center);
            align-items: var(--button-items, center);
    -webkit-box-pack: var(--button-justify, center);
        -ms-flex-pack: var(--button-justify, center);
            justify-content: var(--button-justify, center);
    gap: var(--button-gap, 0.5em);
    width: var(--button-w, -webkit-fit-content);
    width: var(--button-w, -moz-fit-content);
    width: var(--button-w, fit-content);
    min-width: var(--button-miw, 0);
    max-width: var(--button-maw, 100%);
    height: var(--button-h, 3.5rem);
    color: var(--button-clr, currentColor);
    border: 1px solid var(--button-bdc, transparent);
    background-color: var(--button-bgc, transparent);
    font-size: var(--button-fz, clamp(0.8125rem, 0.9722222222vw, 0.875rem));
    font-weight: var(--button-fw, 700);
    -webkit-transition-property: opacity, color, background-color, border-color;
    transition-property: opacity, color, 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;
  }
  .c-button:has(:is(a, span)) {
    padding: var(--button-p-y, 0.5em) var(--button-p-x, 2.5em);
  }
  .c-button a,
  .c-button span,
  .c-button button,
  .c-button input[type=submit],
  .c-button input[type=button] {
    color: currentColor;
  }
  .c-button a::after,
  .c-button span::after,
  .c-button button::after,
  .c-button input[type=submit]::after,
  .c-button input[type=button]::after {
    content: "";
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .c-button button,
  .c-button input[type=submit],
  .c-button input[type=button] {
    padding: var(--button-p-y, 0.5em) var(--button-p-x, 1.5em);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    height: 100%;
  }
  .c-button .c-svg {
    width: 1.5em;
    height: 1.5em;
  }
  .c-button[data-variant*=primary], .c-button:not([data-variant]) {
    --button-clr: #fff;
    --button-bdc: var(--clr--theme-red);
    --button-bgc: var(--clr--theme-red);
    --svg-fill: var(--clr--theme-red);
  }
  .c-button[data-variant*=primary]:hover, .c-button:not([data-variant]):hover {
    --button-clr: var(--clr--theme-red);
    --button-bgc: #fff;
    --triangle-bgc: var(--clr--theme-red);
    --svg-fill: var(--clr--theme-red);
  }
  .c-button[data-variant*=secondary] {
    --button-bdc: var(--clr--theme-gray);
    --svg-fill: var(--clr--theme-red);
  }
  .c-button[data-variant*=secondary]:hover {
    --triangle-bgc: #fff;
    --svg-fill: #fff;
    background-color: var(--clr--theme-red);
    color: #fff;
  }
  .c-button[data-variant*=rounded-sm] {
    border-radius: 4px;
  }
  .c-button[data-variant*=rounded-md] {
    border-radius: 8px;
  }
  .c-button[data-variant*=rounded-full] {
    border-radius: var(--button-h, 3.5rem);
  }
  .c-button[data-variant*=has-triangle] {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-button[data-variant*=has-triangle] a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
  .c-button[data-variant*=has-triangle]::after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-width: 6px 4px 0 4px;
    border-style: solid;
    border-color: var(--triangle-bgc, var(--clr--theme-red)) transparent transparent transparent;
    -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;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
@layer component {
  .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: 0.8125rem;
    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: 0.9375rem;
    }
    .c-stroke-button:hover:not(.is-coming-soon) {
      background-color: var(--clr, #000);
      color: #fff;
    }
    .c-stroke-button:hover:not(.is-coming-soon) .c-stroke-arrow {
      border-color: #fff;
    }
  }
  .c-stroke-button a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .c-stroke-button.is-coming-soon {
    opacity: 0.5;
  }
  .c-stroke-button.is-coming-soon::before {
    content: attr(data-label);
  }
  .c-stroke-button.is-coming-soon a {
    pointer-events: none;
    font-size: 0;
  }
}
@layer component {
  .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, 0.8125rem);
    }
    .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;
  }
}
@layer component {
  .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: 0.8125rem;
    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: 0.875rem;
      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;
  }
}
@layer component {
  .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;
    }
  }
}
@layer utility {
  .u-d-b--sp {
    display: none;
  }
  @media (max-width: 30em) {
    .u-d-b--sp {
      display: block;
    }
  }
  .u-d-b--not-sp {
    display: none;
  }
  @media (min-width: 30.0625em) {
    .u-d-b--not-sp {
      display: block;
    }
  }
  .u-d-b--tb {
    display: none;
  }
  @media (min-width: 30.0625em) and (max-width: 48em) {
    .u-d-b--tb {
      display: block;
    }
  }
  .u-d-b--not-pc {
    display: none;
  }
  @media (max-width: 48em) {
    .u-d-b--not-pc {
      display: block;
    }
  }
  .u-d-b--pc {
    display: none;
  }
  @media (min-width: 48.0625em) {
    .u-d-b--pc {
      display: block;
    }
  }
  @media (max-width: 30em) {
    .u-d-n--sp {
      display: none;
    }
  }
  @media (min-width: 30.0625em) {
    .u-d-n--not-sp {
      display: none;
    }
  }
  @media (min-width: 30.0625em) and (max-width: 48em) {
    .u-d-n--tb {
      display: none;
    }
  }
  @media (max-width: 48em) {
    .u-d-n--not-pc {
      display: none;
    }
  }
  @media (min-width: 48.0625em) {
    .u-d-n--pc {
      display: none;
    }
  }
}
@layer utility {
  @-webkit-keyframes accordion-open {
    0% {
      height: 0;
    }
    99% {
      height: var(--accordion-h);
    }
    100% {
      height: auto;
    }
  }
  @keyframes accordion-open {
    0% {
      height: 0;
    }
    99% {
      height: var(--accordion-h);
    }
    100% {
      height: auto;
    }
  }
  @-webkit-keyframes accordion-close {
    0% {
      height: var(--accordion-h);
    }
    100% {
      height: 0;
    }
  }
  @keyframes accordion-close {
    0% {
      height: var(--accordion-h);
    }
    100% {
      height: 0;
    }
  }
}
.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 {
  --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, 720px);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}
.pg-introduction__richtext p {
  font-weight: bold;
  line-height: 1.8;
  font-size: 0.8125rem;
}
@media (min-width: 48.0625em) {
  .pg-introduction__richtext p {
    font-size: 1rem;
  }
}
.pg-introduction .p-buttons {
  margin-top: 32px;
}
@media (min-width: 48.0625em) {
  .pg-introduction .p-buttons {
    margin-top: 48px;
  }
}
.pg-introduction .c-stroke-button {
  font-size: 1rem;
  --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 {
  --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, 1112px);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}
@media (min-width: 48.0625em) {
  .pg-functions__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(32px, 4.4444444444vw, 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;
  --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: var(--global-settings-duration, 0.4s);
          transition-duration: var(--global-settings-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: 0.75rem;
  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: 0.875rem;
  }
  .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 {
  --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, 1200px);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}
.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: 1.25rem;
  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: 1.5rem;
  }
}
.pg-anchor-navi__item::after {
  content: "";
  --size: 7px;
  --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: var(--global-settings-duration, 0.4s);
          transition-duration: var(--global-settings-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: 1rem;
  --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 {
  --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-section-header + * {
  margin-top: 32px;
}
@media (min-width: 48.0625em) {
  .pg-section-header + * {
    margin-top: 64px;
  }
}
.pg-section-header__heading {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 48.0625em) {
  .pg-section-header__heading {
    font-size: 2.5rem;
  }
}
.pg-section-header__richtext {
  margin-top: 40px;
}
.pg-section-header__richtext p {
  font-size: 0.8125rem;
}
@media (min-width: 48.0625em) {
  .pg-section-header__richtext {
    margin-top: 60px;
  }
  .pg-section-header__richtext p {
    font-size: 1rem;
  }
}
.pg-section-header__note {
  font-size: 0.625rem;
}
.pg-section-header__note:not(:first-child) {
  margin-top: 4px;
}
@media (min-width: 48.0625em) {
  .pg-section-header__note {
    font-size: 0.75rem;
  }
}

@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;
    --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, 1200px);
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--minmax) * 2);
  }
}
@media (min-width: 48.0625em) {
  .pg-product__img {
    width: 50%;
  }
}
.pg-product__content {
  --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 (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: 0.9375rem;
  font-weight: bold;
}
@media (min-width: 48.0625em) {
  .pg-product__title {
    font-size: 1.125rem;
  }
}
.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: 0.6875rem;
  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: 0.625rem;
}
.pg-product__note:not(:first-child) {
  margin-top: 12px;
}
.pg-product__richtext {
  grid-column: 2/3;
  grid-row: 1/3;
  font-size: 0.8125rem;
}
@media (max-width: 48em) {
  .pg-product__richtext {
    padding: 24px 0;
  }
}
@media (min-width: 48.0625em) {
  .pg-product__richtext {
    font-size: 0.875rem;
  }
}

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

.pg-credit__heading {
  font-size: 0.9375rem;
  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: 0.75rem;
  font-weight: bold;
}
@media (min-width: 48.0625em) {
  .pg-credit__title {
    font-size: 0.8125rem;
  }
}
.pg-credit__text {
  font-size: 0.75rem;
}
.pg-credit__text small {
  font-size: 0.625rem;
}
@media (min-width: 48.0625em) {
  .pg-credit__text {
    font-size: 0.8125rem;
  }
  .pg-credit__text small {
    font-size: 0.6875rem;
  }
}
.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 {
  --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, 1320px);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}/*# sourceMappingURL=index.css.map */